commit 6fa4dfadda9edc1a60d64a2ea0cfe315c8575628 Author: hawkeye Date: Thu Sep 16 23:18:02 2021 -0400 Initial checkin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b6d999b --- /dev/null +++ b/.gitignore @@ -0,0 +1,106 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +bin/ +Bin/ +obj/ +Obj/ +publish/ + +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.pfx +*.publishsettings +orleans.codegen.cs + +/node_modules + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat diff --git a/AnalysisEngine.cs b/AnalysisEngine.cs new file mode 100644 index 0000000..4bbcff0 --- /dev/null +++ b/AnalysisEngine.cs @@ -0,0 +1,260 @@ +using SixLabors.ImageSharp; +using SixLabors.ImageSharp.Processing; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using Tesseract; + +namespace MSFSPopoutPanelManager +{ + public class AnalysisEngine + { + [DllImport("user32.dll", EntryPoint = "GetWindowText", + ExactSpelling = false, CharSet = CharSet.Auto, SetLastError = true)] + private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpWindowText, int nMaxCount); + + [DllImport("user32.dll")] + [return: MarshalAs(UnmanagedType.Bool)] + private static extern bool EnumChildWindows(IntPtr window, EnumWindowProc callback, IntPtr lParam); + + [DllImport("user32.dll", ExactSpelling = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] + public static extern int GetWindowThreadProcessId(IntPtr hWnd, out int lpdwProcessId); + + [DllImport("user32.dll", CharSet = CharSet.Auto)] + public static extern Int32 GetClassName(IntPtr hWnd, StringBuilder StrPtrClassName, Int32 nMaxCount); + + [DllImport("user32.dll")] + private static extern int GetWindowRect(IntPtr hwnd, out Rect lpRect); + + [DllImport("user32.dll", EntryPoint = "SetWindowPos")] + public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, int wFlags); + + [DllImport("user32.dll", SetLastError = true)] + static extern bool SetForegroundWindow(IntPtr hWnd); + + private delegate bool EnumWindowProc(IntPtr hwnd, IntPtr lParam); + private const short SWP_NOZORDER = 0X4; + private const int SWP_SHOWWINDOW = 0x0040; + + + public AnalysisEngine() { } + + public event EventHandler> OnStatusUpdated; + public event EventHandler>> OnOcrDebugged; + + public void Analyze(ref MainWindow simWindow, string profile) + { + MainWindow processZeroMainWindow = null; + + // Get process with PID of zero (PID zero launches all the popout windows for MSFS) + foreach (var process in Process.GetProcesses()) + { + if(process.Id == 0) + processZeroMainWindow = new MainWindow() + { + ProcessId = process.Id, + ProcessName = process.ProcessName, + Title = "Process Zero", + Handle = process.MainWindowHandle + }; + } + + // Get all child windows + GetChildWindows(simWindow); + GetChildWindows(processZeroMainWindow); + + // The popout windows such as PFD and MFD attached itself to main window for Process ID zero instead of the MSFS process. + // Moving these windows back into MSFS main window + if (processZeroMainWindow != null) + { + foreach (var child in processZeroMainWindow.ChildWindowsData) + { + int parentProcessId; + GetWindowThreadProcessId(child.Handle, out parentProcessId); + + if (simWindow != null && parentProcessId == simWindow.ProcessId) + simWindow.ChildWindowsData.Add(child); + } + } + + int classNameLength = 256; + foreach (var childWindow in simWindow.ChildWindowsData) + { + StringBuilder className = new StringBuilder(classNameLength); + GetClassName(childWindow.Handle, className, classNameLength); + childWindow.ClassName = className.ToString(); + } + + // Remove all child windows where class name is not 'AceApp' + simWindow.ChildWindowsData.RemoveAll(x => x.ClassName != "AceApp" || (x.Title != null && x.Title.Contains("Microsoft Flight Simulator", StringComparison.CurrentCultureIgnoreCase))); + + if(simWindow.ChildWindowsData.Count > 0) + { + var ocrEvaluationData = FileManager.ReadProfileData().Find(x => x.Profile == profile); + var ocrImageScale = ocrEvaluationData.OCRImageScale; + Dictionary debugInfo = new Dictionary(); + + foreach (var childWindow in simWindow.ChildWindowsData) + { + // Figure out what windows is what? + if (String.IsNullOrEmpty(childWindow.Title)) + { + // Theses are the windows with no system menu bar title (ie. PFD, MFD, FMS, etc) + // We need to take a screenshot and do OCR to try to figure them out + Rect rect = new Rect(); + GetWindowRect(childWindow.Handle, out rect); + + // Set window to be custom scale (eaiser to OCR) and set to foreground before taking screenshot image + var originalWidth = rect.Right - rect.Left; + var originalHeight = rect.Bottom - rect.Top; + + var newWidth = Convert.ToInt32(originalWidth * ocrImageScale); + var newHeight = Convert.ToInt32(originalHeight * ocrImageScale); + rect.Right = rect.Left + newWidth; + rect.Bottom = rect.Top + newHeight; + SetWindowPos(childWindow.Handle, 0, rect.Left, rect.Top, newWidth, newHeight, SWP_NOZORDER | SWP_SHOWWINDOW); + SetForegroundWindow(childWindow.Handle); + Thread.Sleep(500); + + var image = TakeScreenShot(rect); + SetWindowPos(childWindow.Handle, 0, rect.Left, rect.Top, originalWidth, originalHeight, SWP_NOZORDER | SWP_SHOWWINDOW); + + // OCR the image into text + var imageText = OcrImage(image); + var popoutName = EvaluateImageText(imageText, ocrEvaluationData); + childWindow.Title = childWindow.Title ?? popoutName; + childWindow.PopoutType = PopoutType.Custom; + + if(!debugInfo.TryAdd(popoutName ?? $"Failed Analysis - {childWindow.Handle.ToString()}", imageText)) + { + debugInfo.Add($"{popoutName} - {childWindow.Handle.ToString()}", imageText); + } + } + } + + // Output debug info + if(debugInfo.Count > 0) + OnOcrDebugged?.Invoke(this, new EventArgs>(debugInfo)); + + // Remove all windows that cannot be identified + simWindow.ChildWindowsData.RemoveAll(x => x.Title == null); + } + else + { + OnStatusUpdated?.Invoke(this, new EventArgs("No pop out panels to analyze.")); + } + } + + private void GetChildWindows(MainWindow mainWindow) + { + var childHandles = GetAllChildHandles(mainWindow.Handle); + + childHandles.ForEach(childHandle => + { + mainWindow.ChildWindowsData.Add(new ChildWindow + { + Handle = childHandle, + Title = GetWindowTitle(childHandle) + }); + }); + } + + private string GetWindowTitle(IntPtr hWnd) + { + StringBuilder title = new StringBuilder(1024); + GetWindowText(hWnd, title, title.Capacity); + + return String.IsNullOrEmpty(title.ToString()) ? null : title.ToString(); + } + + private List GetAllChildHandles(IntPtr parent) + { + var childHandles = new List(); + + GCHandle gcChildhandlesList = GCHandle.Alloc(childHandles); + IntPtr pointerChildHandlesList = GCHandle.ToIntPtr(gcChildhandlesList); + + try + { + EnumWindowProc childProc = new EnumWindowProc(EnumWindow); + EnumChildWindows(parent, childProc, pointerChildHandlesList); + } + finally + { + gcChildhandlesList.Free(); + } + + return childHandles; + } + + private bool EnumWindow(IntPtr hWnd, IntPtr lParam) + { + var gcChildhandlesList = GCHandle.FromIntPtr(lParam); + + if (gcChildhandlesList.Target == null) + return false; + + + var childHandles = gcChildhandlesList.Target as List; + childHandles.Add(hWnd); + + return true; + } + + private byte[] TakeScreenShot(Rect rect) + { + var bounds = new System.Drawing.Rectangle(rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top); + var bitmap = new Bitmap(bounds.Width, bounds.Height); + + using (var g = Graphics.FromImage(bitmap)) + { + g.CopyFromScreen(new System.Drawing.Point(bounds.Left, bounds.Top), System.Drawing.Point.Empty, bounds.Size); + } + + var converter = new ImageConverter(); + var imageBytes = (byte[])converter.ConvertTo(bitmap, typeof(byte[])); + + // Convert image to grayscale and invert the color to give tesseract a better image to analyze + using(var img = SixLabors.ImageSharp.Image.Load(imageBytes)) + { + img.Mutate(x => x.Invert().GaussianSharpen().Grayscale()); + var memoryStream = new MemoryStream(); + img.Save(memoryStream, new SixLabors.ImageSharp.Formats.Bmp.BmpEncoder()); + img.Save(@".\test.jpg"); + return memoryStream.ToArray(); + } + } + + private string OcrImage(byte[] imageByteArray) + { + var ocrengine = new TesseractEngine(@".\tessdata", "eng", EngineMode.Default); + var iamge = Pix.LoadFromMemory(imageByteArray); + var result = ocrengine.Process(iamge); + + return result.GetText(); + } + + + private string EvaluateImageText(string imageText, OcrEvalData ocrEvaluationData) + { + if(ocrEvaluationData != null) + { + var popoutNames = ocrEvaluationData.EvalData.Select(x => x.PopoutName).Distinct(); + + foreach(var popoutName in popoutNames) + { + if (ocrEvaluationData.EvalData.Find(x => x.PopoutName == popoutName).Data.Any(s => imageText.Contains(s.ToLower(), StringComparison.CurrentCultureIgnoreCase))) + return popoutName; + } + } + + return null; + } + } +} diff --git a/ChildWindow.cs b/ChildWindow.cs new file mode 100644 index 0000000..b929de0 --- /dev/null +++ b/ChildWindow.cs @@ -0,0 +1,28 @@ +using System; + +namespace MSFSPopoutPanelManager +{ + public class ChildWindow + { + public ChildWindow() + { + PopoutType = PopoutType.BuiltIn; + } + + public int ProcessId { get; set; } + + public string Title { get; set; } + + public IntPtr Handle { get; set; } + + public string ClassName { get; set; } + + public PopoutType PopoutType { get; set; } + } + + public enum PopoutType + { + BuiltIn, + Custom + } +} diff --git a/FileManager.cs b/FileManager.cs new file mode 100644 index 0000000..96a895f --- /dev/null +++ b/FileManager.cs @@ -0,0 +1,52 @@ +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.IO; + +namespace MSFSPopoutPanelManager +{ + public class FileManager + { + public static UserData ReadUserData() + { + try + { + using (StreamReader reader = new StreamReader(@".\config\userdata.json")) + { + string json = reader.ReadToEnd(); + return JsonConvert.DeserializeObject(json); + } + } + catch + { + return null; + } + } + + public static void WriteUserData(UserData userData) + { + using (StreamWriter file = File.CreateText(@".\config\userdata.json")) + { + JsonSerializer serializer = new JsonSerializer(); + serializer.Serialize(file, userData); + } + } + + public static List ReadProfileData() + { + using (StreamReader reader = new StreamReader(@".\config\ocrdata.json")) + { + string json = reader.ReadToEnd(); + + try + { + return JsonConvert.DeserializeObject>(json); + } + catch + { + throw new Exception("The file ocrdata.json is invalid."); + } + } + } + } +} diff --git a/GenericEventArgs.cs b/GenericEventArgs.cs new file mode 100644 index 0000000..4119079 --- /dev/null +++ b/GenericEventArgs.cs @@ -0,0 +1,14 @@ +using System; + +namespace MSFSPopoutPanelManager +{ + public class EventArgs : EventArgs + { + public T Value { get; private set; } + + public EventArgs(T val) + { + Value = val; + } + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8567866 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + 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 +them 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. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero 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 that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state 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 Affero General Public License as published + by the Free Software Foundation, either version 3 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. \ No newline at end of file diff --git a/MSFSPopoutPanelManager.csproj b/MSFSPopoutPanelManager.csproj new file mode 100644 index 0000000..416e599 --- /dev/null +++ b/MSFSPopoutPanelManager.csproj @@ -0,0 +1,111 @@ + + + + WinExe + net5.0-windows + true + x64 + 1.0 + MSFSPopoutPanelManager + MSFSPopoutPanelManager + WindowManager.ico + Stanley Kwok + MSFS Popout Window Manager + + + + + ..\..\..\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\UIAutomationClient.dll + + + ..\..\..\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\UIAutomationTypes.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Always + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Always + + + Always + + + + \ No newline at end of file diff --git a/MSFSPopoutPanelManager.sln b/MSFSPopoutPanelManager.sln new file mode 100644 index 0000000..8db4b81 --- /dev/null +++ b/MSFSPopoutPanelManager.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MSFSPopoutPanelManager", "MSFSPopoutPanelManager.csproj", "{1E89B7B3-DBD9-4644-A0EB-26924317DD83}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1E89B7B3-DBD9-4644-A0EB-26924317DD83}.Debug|x64.ActiveCfg = Debug|x64 + {1E89B7B3-DBD9-4644-A0EB-26924317DD83}.Debug|x64.Build.0 = Debug|x64 + {1E89B7B3-DBD9-4644-A0EB-26924317DD83}.Release|x64.ActiveCfg = Release|x64 + {1E89B7B3-DBD9-4644-A0EB-26924317DD83}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D1607553-61E8-4ED6-B382-ABA6F6944586} + EndGlobalSection +EndGlobal diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs new file mode 100644 index 0000000..c171611 --- /dev/null +++ b/MainForm.Designer.cs @@ -0,0 +1,188 @@ + +namespace MSFSPopoutPanelManager +{ + partial class MainForm + { + /// + /// 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() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); + this.btnAnalyze = new System.Windows.Forms.Button(); + this.btnSave = new System.Windows.Forms.Button(); + this.comboBoxProfile = new System.Windows.Forms.ComboBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.txtStatus = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.lblMsfsRunning = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.tabControlOcrDebug = new System.Windows.Forms.TabControl(); + this.SuspendLayout(); + // + // btnAnalyze + // + this.btnAnalyze.Enabled = false; + this.btnAnalyze.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.btnAnalyze.Location = new System.Drawing.Point(332, 18); + this.btnAnalyze.Name = "btnAnalyze"; + this.btnAnalyze.Size = new System.Drawing.Size(230, 31); + this.btnAnalyze.TabIndex = 2; + this.btnAnalyze.Text = "Analyze / Load Saved Positions"; + this.btnAnalyze.UseVisualStyleBackColor = true; + this.btnAnalyze.Click += new System.EventHandler(this.btnAnalyze_Click); + // + // btnSave + // + this.btnSave.Enabled = false; + this.btnSave.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.btnSave.Location = new System.Drawing.Point(587, 18); + this.btnSave.Name = "btnSave"; + this.btnSave.Size = new System.Drawing.Size(124, 31); + this.btnSave.TabIndex = 3; + this.btnSave.Text = "Save Positions"; + this.btnSave.UseVisualStyleBackColor = true; + this.btnSave.Click += new System.EventHandler(this.btnSave_Click); + // + // comboBoxProfile + // + this.comboBoxProfile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBoxProfile.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.comboBoxProfile.FormattingEnabled = true; + this.comboBoxProfile.Location = new System.Drawing.Point(85, 21); + this.comboBoxProfile.Name = "comboBoxProfile"; + this.comboBoxProfile.Size = new System.Drawing.Size(217, 28); + this.comboBoxProfile.TabIndex = 1; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.label1.Location = new System.Drawing.Point(23, 26); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(52, 20); + this.label1.TabIndex = 4; + this.label1.Text = "Profile"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(23, 432); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(118, 15); + this.label2.TabIndex = 6; + this.label2.Text = "© 2021 Stanley Kwok"; + // + // txtStatus + // + this.txtStatus.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.txtStatus.Location = new System.Drawing.Point(85, 69); + this.txtStatus.Multiline = true; + this.txtStatus.Name = "txtStatus"; + this.txtStatus.ReadOnly = true; + this.txtStatus.Size = new System.Drawing.Size(626, 47); + this.txtStatus.TabIndex = 5; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.label3.Location = new System.Drawing.Point(23, 72); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(49, 20); + this.label3.TabIndex = 8; + this.label3.Text = "Status"; + // + // lblMsfsRunning + // + this.lblMsfsRunning.AutoSize = true; + this.lblMsfsRunning.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.lblMsfsRunning.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.lblMsfsRunning.ForeColor = System.Drawing.Color.Red; + this.lblMsfsRunning.Location = new System.Drawing.Point(562, 428); + this.lblMsfsRunning.Name = "lblMsfsRunning"; + this.lblMsfsRunning.Size = new System.Drawing.Size(145, 22); + this.lblMsfsRunning.TabIndex = 9; + this.lblMsfsRunning.Text = "MSFS is not Running"; + this.lblMsfsRunning.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.label4.Location = new System.Drawing.Point(23, 131); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(169, 20); + this.label4.TabIndex = 10; + this.label4.Text = "OCR Debug Information"; + // + // tabControlOcrDebug + // + this.tabControlOcrDebug.Location = new System.Drawing.Point(26, 154); + this.tabControlOcrDebug.Name = "tabControlOcrDebug"; + this.tabControlOcrDebug.SelectedIndex = 0; + this.tabControlOcrDebug.Size = new System.Drawing.Size(685, 266); + this.tabControlOcrDebug.TabIndex = 12; + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(733, 462); + this.Controls.Add(this.tabControlOcrDebug); + this.Controls.Add(this.label4); + this.Controls.Add(this.lblMsfsRunning); + this.Controls.Add(this.label3); + this.Controls.Add(this.txtStatus); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.comboBoxProfile); + this.Controls.Add(this.btnSave); + this.Controls.Add(this.btnAnalyze); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.Name = "MainForm"; + this.Text = "MSFS 2020 Pop Out Panel Manager"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button btnAnalyze; + private System.Windows.Forms.Button btnSave; + private System.Windows.Forms.ComboBox comboBoxProfile; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox txtStatus; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label lblMsfsRunning; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.TabControl tabControlOcrDebug; + } +} + diff --git a/MainForm.cs b/MainForm.cs new file mode 100644 index 0000000..c358bdb --- /dev/null +++ b/MainForm.cs @@ -0,0 +1,132 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Threading; +using System.Windows.Forms; + +namespace MSFSPopoutPanelManager +{ + public partial class MainForm : Form + { + private SynchronizationContext _syncRoot; + private WindowManager _popoutWindowsManager; + + public MainForm() + { + InitializeComponent(); + + _syncRoot = SynchronizationContext.Current; + + SetProfileDropDown(); + + _popoutWindowsManager = new WindowManager(); + _popoutWindowsManager.OnStatusUpdated += HandleOnStatusUpdated; + _popoutWindowsManager.OnSimulatorStarted += HandleOnSimulatorStarted; + _popoutWindowsManager.OnOcrDebugged += HandleOnOcrDebugged; + _popoutWindowsManager.CheckSimulatorStarted(); + } + + private void btnAnalyze_Click(object sender, EventArgs e) + { + txtStatus.Clear(); + + var profile = GetProfileDropDown(); + _popoutWindowsManager.Analyze(profile); + } + + private void btnSave_Click(object sender, EventArgs e) + { + txtStatus.Clear(); + + var profile = GetProfileDropDown(); + _popoutWindowsManager.SaveProfile(profile); + } + + private void SetProfileDropDown() + { + try + { + var profileData = FileManager.ReadProfileData(); + var profiles = profileData.Select(x => x.Profile).Distinct(); + var defaultProfile = profileData.Find(x => x.DefaultProfile); + + comboBoxProfile.DataSource = profiles.ToList(); + comboBoxProfile.SelectedItem = defaultProfile.Profile; + } + catch (Exception ex) + { + SetStatusMessage(ex.Message); + } + } + + private string GetProfileDropDown() + { + return comboBoxProfile.SelectedItem.ToString(); + } + + private void HandleOnStatusUpdated(object source, EventArgs arg) + { + _syncRoot.Post(SetStatusMessage, arg.Value); + } + + private void SetStatusMessage(object arg) + { + var msg = arg as string; + if (msg != null) + txtStatus.Text = msg; + } + + private void HandleOnSimulatorStarted(object source, EventArgs arg) + { + _syncRoot.Post(SetMsfsRunningMessage, "MSFS is running"); + } + + private void SetMsfsRunningMessage(object arg) + { + var msg = arg as string; + if (msg != null) + { + lblMsfsRunning.Text = "MSFS is running"; + lblMsfsRunning.ForeColor = Color.Green; + } + + btnAnalyze.Enabled = true; + btnSave.Enabled = true; + } + + private void HandleOnOcrDebugged(object source, EventArgs> arg) + { + _syncRoot.Post(SetOcrDebugInfo, arg.Value); + } + + private void SetOcrDebugInfo(object arg) + { + tabControlOcrDebug.TabPages.Clear(); + + var debugInfo = arg as Dictionary; + if (debugInfo != null && debugInfo.Count > 0) + { + foreach(var info in debugInfo) + { + var tabPage = new TabPage(); + tabPage.Name = info.Key; + tabPage.Text = info.Key; + + var txtBox = new TextBox(); + txtBox.Width = tabControlOcrDebug.Width; + txtBox.Height = tabControlOcrDebug.Height; + txtBox.ReadOnly = true; + txtBox.Multiline = true; + txtBox.BorderStyle = BorderStyle.None; + txtBox.Text = info.Value; + + tabPage.Controls.Add(txtBox); + + tabControlOcrDebug.TabPages.Add(tabPage); + } + } + } + } +} \ No newline at end of file diff --git a/MainForm.resx b/MainForm.resx new file mode 100644 index 0000000..e97d92f --- /dev/null +++ b/MainForm.resx @@ -0,0 +1,1193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABAHudAAB7nQAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrAOvr6wDr6+sA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs + 7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADs7OwA7OzsAOzs7ADr6+sA5+fnAOjo + 6ADq6uoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADj4+MA6+vrAO3t + 7QDt7e0A6+vrA+vr6wTr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr + 6wPr6+sD6+vrA+vr6wPr6+sD6+vrA+vr6wPr6+sE6+vrAevr6wDr6+sA6+vrAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOvr6wDr6+sA6+vrAOvr6wLs7OwA7OzsAOvr6wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6+vrAOvr + 6wDr6+sC6+vrAevr6wDr6+sA7u7uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADu7u4A6urqAPT0 + 9ADq6uoC6urqAOvr60Lr6+uZ6+vrquvr66jr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+up6+vrqevr + 66nr6+up6+vrqevr66nr6+up6+vrqevr66nr6+uk6+vrZuvr6wnr6+sA6+vrAezs7ADs7OwAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOrq6gDr6+sA6+vrAuvr6wDr6+uD6+vr/+vr6/7r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/3r6+v/6+vrxevr6w/r6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOvr + 6wPr6+sA6+vrROvr6//r6+v86+vr++vr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86urq/Orq6vzq6ur86urq/Orq6vzq6ur86urq/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr + 6/zr6+v86+vr/Ovr6/zr6+v86+vr/Ovr6/zr6+v86+vr++vr6/jr6+v/6+vrkevr6wDr6+sD7e3tAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADr6+sA6+vrBOvr6wDr6+uW6+vr/+vr6/vr6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vq/+rq6v/t7u7/7u7v/+7u + 7//u7u//7u7v/+7u7//u7u//6+vr/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/evr6//r6+ve6+vrB+vr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs + 7ADr6+sD6+vrAOvr66rr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6v/s7O3/7u/w/+Hg3f/d29f/3dzY/93c2P/d3Nj/3dzX/9/e2//t7e7/7e3u/+rq + 6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+3r6+sQ6+vrAOvr + 6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqOvr6//r6+v86+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/7Ozs/+np6P+wq5n/k4xx/5KL + cf+Si3H/kotx/5KLcf+Si3H/kotx/6iijv/j4+H/7e3u/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xDr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6un/6enp/+rq + 6v/r6+v/6+vr/+rq6f/x8fP/vLmr/4d/Yf+Rim//kYpv/5GKbv+Rim7/kYpu/5GKbv+Si3D/h4Bi/6+r + mf/w8PL/6urq/+vr6//r6+v/6urq/+np6f/q6en/6+vq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEOvr + 6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//q6ur/7Ozs//Hy8//y8vX/7+/w/+rq6v/r6+v/6urq/+/v8P+noo7/jYZq/5KM + cf+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+PiGz/nZeA/+np6f/s7Oz/6+vr/+rq6v/u7u//8vL0//Hy + 9P/s7e3/6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urp/+3u7v/p6en/xsS4/7y4 + qv/Y1tD/8PDy/+rq6v/q6ur/7u7v/6eijv+MhWn/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/46H + a/+dl4D/6Ojn/+zs7P/p6en/8PDy/93c2P++uq3/wr+z/+Xl4//v7/D/6unp/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr + 6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr + 6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6f/u7u//5+fm/6Sfiv+JgmT/i4Nm/46Ha//GxLn/8vL0/+no6P/x8fP/qaSQ/4yF + aP+Si3H/kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/jodr/56Ygf/s7Oz/6urp//Hy8//S0Mj/kotx/4qD + Zv+KgmX/nJV+/+Df2//v8PH/6enp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6un/7u7v/+fn5v+inYf/i4Rn/5OM + cv+TjHL/kYpv/4yFaP/Gw7j/8vP1/+Pj4P+gmoT/jodr/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5GL + cP+PiG3/mZJ5/9va1f/z9Pb/0c/H/5CJbv+PiGz/k4xy/5OMcv+NhWn/mZN7/+Df3P/v8PH/6enp/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr + 6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr + 6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6urq/+rq6f/q6un/6urp/+rq6f/q6un/6urp/+rq6v/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urq/+7u7//o5+b/op2H/4uEZ/+TjHL/kYpv/5GKb/+Si3D/kIlu/5CJbv+sqJX/lpB2/4+I + bP+RinD/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+QiW3/k4xy/62olf+UjnT/j4ds/5KL + cP+Rim//kYpv/5OMcf+Nhmr/mpN7/+Df3P/v8PH/6urp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//v8PH/8fHz//Hx + 8//x8fP/8fHz//Hx8//x8fP/7u/w/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/t7e3/5+fl/6Odh/+LhGf/k4xx/5GK + b/+Rim//kYpv/5GKb/+RinD/kYpv/4yEaP+QiW3/kYpw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+QiW7/jIRo/5CJbv+Si3D/kYpv/5GKb/+Rim//kYpv/5OMcf+Nhmr/mZN6/+Df + 2//u7u//6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr + 6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr + 66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//s7Oz/7e3u/9XTzf/KyL7/y8m//8vJv//Lyb//y8m//8vIv//b2dT/7+/w/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vq/+3u7v+qpZH/ioJl/5OMcv+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotx/5GK + cP+Rim//kYpv/5KLcP+Si3H/koxx/5KMcf+SjHH/kotx/5KLcP+Rim//kYpv/5GKb/+Si3H/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5OMcf+MhWj/n5mC/+np6P/s7Oz/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+zt7f+yrpz/i4Rn/4yF + aP+MhWj/jIRo/4yEaP+MhWj/jIVo/46Gav/CvrL/7/Dx/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/u7/D/3NrW/5CJbv+Si3D/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Si3D/j4ds/4yEaP+Kg2b/ioNm/4qD + Zv+LhGf/jodr/5GLcP+Si3H/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5OM + cf+MhWj/0c/H//Dx8v/q6un/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr + 6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6f/w8PL/0M7G/4qCZf+Si3H/kotx/5KLcf+Si3H/kotx/5KLcf+TjHH/kIht/5GK + b//g39z/7u7u/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urq/+7u7//f3tr/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + cP+Si3D/jIVp/42Faf+clX7/rqmX/7u3qf/AvbD/vbmr/7Gsm/+fmYL/jodr/4yEaP+Si3D/kotw/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//koxx/4yFaP/U0sv/8PDx/+rq6v/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/q6ur/7Ozt/+vr6//q6ur/6+vr/+vr6//r6+v/6unp//Hy9P/DwLT/i4Rn/5OM + cf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/jodr/9XTzP/w8PH/6urq/+vr6//r6+v/6+vr/+rq + 6f/s7Oz/7Ozs/+rq6f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+/v8f+1saH/iYJk/5OM + cf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/kIlu/4yFaP+oo4//0c/H/+jo5//w8PL/8fL0//Ly + 9P/x8vT/8PHy/+rq6v/W1c7/rqqX/46Gav+PiGz/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5OM + cv+Kg2b/qaSR/+zs7f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr + 6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/7e3t/+/v8f/m5uT/6+vs/+/w + 8f/q6un/6+vr/+vr6//q6en/8fL0/8TBtf+LhGf/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KL + cP+Oh2v/1dTN//Dw8f/q6ur/6+vr/+vr6//q6ur/8PDy/+np6P/n5+b/8PDy/+vr6//q6ur/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vs/+3t7v+vq5n/ioJl/5KLcP+Rim//kYpv/5GKb/+Rim//kotw/4+H + bP+TjHH/yca8/+/v8P/w8fL/7Ozs/+rq6v/q6en/6enp/+rp6f/q6un/6+vr/+/w8f/x8fP/0tDI/5iS + ef+Nhmr/kotx/5GKb/+Rim//kYpv/5GKb/+Si3H/i4Nm/6Wfiv/o6Of/7e3t/+rq6v/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urp/+7u7//m5uT/r6qY/5iReP+gmoT/0tDI//Hx8//p6en/6+vr/+np6P/w8PL/w8C0/4uE + Z/+Si3H/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/46Ha//U08z/7+/w/+rq6v/r6+v/6urq//Dw + 8v/Fwrf/m5V9/5mTev+6tqj/7e3t/+zs7P/q6ur/6+vr/+vr6//r6+v/6+vr/+vq6v/q6un/6+vr/+3t + 7v+xrZv/joZq/5KLcP+Rim//kYpv/5KLcP+PiGz/lo91/9nY0v/y8/X/6urq/+rq6f/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6urq/+rp6f/x8vP/4uHf/52XgP+Nhmr/kotx/5GKb/+Rim//kotw/46H + a/+noY3/6Ojn/+3t7f/p6en/6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs + 7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/u7u//5+bl/6Gchv+JgmT/kIlu/42F + af+Oh2v/zszD//Ly9P/p6ej/7Ozs//j5/P/Gw7j/i4Nm/5KMcf+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Si3D/jYZq/9rZ1P/09ff/6eno/+rq6f/x8vT/v7uu/4qDZv+Oh2v/kIht/4mBZP+vq5n/7u7v/+zs + 7P/q6ur/6+vr/+vr6v/q6ur/7e7u/+7v8P/s7O3/9fX4/8rHvv+LhGf/kotx/5GKb/+Rim//kYpv/5CJ + bv/W1M7/8vL0/+np6P/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+np + 6P/w8PH/4N/c/5aPdv+PiG3/kotw/5GKb/+SjHH/i4Nm/7y4qv/19vn/7Ozs/+7v8P/u7u//6+vr/+rq + 6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr + 6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//q6un/7u7v/+bm5f+hm4X/jIRo/5OMcv+Rim//koxx/5CJbv+Ph2z/zsvD//P09//h4N3/xMG1/5+Z + g/+PiGz/kYtw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+PiGz/sa2b/9rY0//u7u//8vP1/766 + rf+Lg2f/kotw/5KLcP+Si3D/k4xy/4qDZv+vq5n/7u7v/+zs7P/q6un/7Ozt/+7v8P/h4N3/3dvX/93c + 2P/e3dr/oJuE/42Gav+Si3D/kYpv/5KLcf+Lg2f/v7yu//Lz9f/p6ej/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+np6P/y8vT/zMrA/4yFaP+Si3D/kYpv/5GK + cP+PiGz/mJF4/9nY0v/e3dn/3dvX/9/e2//t7e7/7e3u/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+7u7//m5uX/oZuF/4yEaP+TjHH/kYpv/5GK + b/+Rim//kotw/4+Ibf+TjHL/sKya/5aPdf+KgmX/jodr/5GKcP+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKcP+MhWj/jodr/62olf+3s6T/jIVp/5GKcP+Rim//kYpv/5GKb/+Rim//k4xx/4qD + Zv+vq5n/7e3u/+3t7f/o6Of/sKuZ/5OMcf+Si3H/kotx/5KLcP+QiW7/kYpv/5GKb/+Si3D/jods/5yW + fv/p6ej/7Ozs/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/u7u//pqGM/42Faf+Si3D/kYpv/5GKb/+QiW7/kYpv/5OMcf+Si3H/kotx/6ii + jv/j4+H/7e3u/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr + 6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6v/s7O3/5+fm/6Kchv+MhGf/k4xx/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/5GKb/+LhGf/kIlt/5OM + cf+Si3D/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcf+Rim//jIVo/4yE + aP+Si3D/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//k4xx/4qCZf+vq5n/8/T2/7y4qv+Hf2H/kYpv/5GK + b/+Rim7/kYpv/5GKb/+Rim//kYpv/5KMcf+Lg2b/vruu//Hy9P/p6en/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6unp//Hx8//Lyb//jIRo/5KL + cf+Rim//kYpv/5GKb/+Rim//kYlu/5GKbv+Si3D/h4Bi/6+rmf/w8PL/6urq/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urp//Hx8/+6tqf/iYFk/5ONcv+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcf+RinD/kYpv/5GKb/+Si3D/kotx/5KLcf+RinD/kYpv/5GK + b/+Si3D/kotx/5KLcf+RinD/kYpv/5GKb/+Si3D/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//k4xx/4mBZP/Rzsf/rKiV/4yEaP+SjHH/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5CI + bf/Z2NL/7+/w/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6ur/7e3u/+Pi3/+Wj3X/kIlt/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KL + cP+PiGz/nZeA/+np6f/s7Oz/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr + 6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr + 6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//q6ur/7/Dx/6ijj/+Nhmr/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Si3D/kotx/4+HbP+Lg2f/i4Rn/4+HbP+Ri3D/kYpv/46Ha/+LhGf/i4Rn/5CIbf+Si3H/kYtw/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+TjHH/ioNm/767rf+uqpj/i4Nm/5KL + cP+Rim//kYpv/5GKb/+Rim//kYpv/5GLcP+PiGz/mZN6/+bm5f/s7O3/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/7Ozt/6Od + iP+Nhmr/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/46Ha/+dl4D/6eno/+zs7P/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/x8fP/vrut/4iBY/+TjHL/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//koxx/46Ha/+MhGj/nJV+/7Wxof/KyL7/19XP/9zb + 1v/b2tX/1dPM/8bEuf+wq5n/l5B3/4uDZv+PiG3/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5KLcf+Kg2X/1NLL/6ynlf+LhGf/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/46G + av+hm4X/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/v8PH/rKeU/4yEaP+Si3H/kYpv/5GKb/+Rim//kYpv/5GK + b/+Si3D/jodr/52XgP/p6ej/7Ozs/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr + 6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr + 6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+zs7P/q6ur/qaOQ/4uDZv+TjHH/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpw/5KL + cP+LhGf/npiB/8vIv//o6Of/8fHz//Hx8//v8PH/7u/w/+7v8P/w8PH/8fLz//Dx8v/k5OL/wr6y/5eQ + d/+MhGj/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3H/ioJl/7i0pP/y8/X/p6GN/4yF + aP+Si3D/kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/jYZq/6Kdh//s7Oz/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq//Dw + 8v+tqJb/jIRo/5KLcf+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Oh2v/nZeA/+np6P/s7Oz/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+3t7f/r6+r/qKOO/4uD + Zv+Si3H/kYpv/5GKb/+Rim//kYpv/5KLcP+Rim//jYVp/7i0pf/q6ur/8fLz/+zs7P/q6un/6urp/+rq + 6v/q6ur/6urq/+rq6v/q6un/6urp/+3t7f/y8vT/5OPh/6ynlP+LhGf/kotw/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/4qCZf+3s6P/7+/w/+/v8P+noo7/jIVo/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5KL + cP+Oh2v/nZeA/+np6P/s7Oz/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/7u7v/6eijv+MhWn/kotw/5GKb/+Rim//kYpv/5GK + b/+Rim//kotw/46Ha/+dl4D/6eno/+zs7P/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr + 6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr + 66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6urq/+3t7f/r6+v/qaSQ/42Gav+Si3D/kYpv/5GKb/+Rim//kYpv/46H + a//Ixbr/8vP1/+zs7P/p6en/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vq/+np + 6f/t7e7/8PDx/7i0pf+LhGf/kotx/5GKb/+Rim//kYpv/5GLcP+PiGz/uLSl//Dw8f/q6ur/7u7v/6ei + jf+NhWn/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5CJbv+UjXP/4N/c/+3u7v/q6ur/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+zs + 7P/o6Of/nJV+/4+HbP+Si3D/kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/j4ds/52XgP/o6Oj/7Ozs/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6enp//Dx + 8v+xrZv/jIRo/5KLcf+Rim//kYpv/5KLcP+MhWj/xsO4//Pz9v/p6en/6+rq/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/r6+r/8fLz/7SwoP+LhGf/koxx/5GK + b/+Rim//kIlu/5SNc//k4+H/7u7v/+np6P/w8fL/rqmW/4qDZv+UjXP/kotx/5KMcf+SjHH/kYpv/5GK + b/+Rim//kotx/4yEaP/MysD/8fHz/+rq6f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/7+/x/9jW0P+PiGz/kYpw/5GKb/+Rim//kYpv/5KL + cf+SjHH/kotx/5SNc/+MhWn/opyG/+3t7f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr + 6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6f/q6un/6urq/+np6P/u7u//2djS/4+HbP+Rim//kYpv/5GKb/+Si3H/i4Rn/7Ou + nf/x8vT/6enp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/r6+z/7Ozs/6Kdh/+Nhmr/kotw/5GKb/+Si3H/i4Nm/725q//w8fL/6Ofm/+7u + 7//X1c//kYpv/4mBZP+Lg2f/i4Nm/4uDZv+QiW7/kYpv/5GKb/+Si3H/jIVo/6umkv/v8PH/6urp/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+np + 6f/x8vT/t7Ok/4uDZ/+Si3H/kYpv/5GKb/+Rim//i4Rn/4qDZv+Lg2f/ioNm/42Gav/Ny8L/8PDx/+rq + 6f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/8fHz//Dw8v/w8PH/7+/w//b2 + +f+3s6P/i4Nm/5KMcf+Rim//kYtw/4+Ibf+YkXj/5eXj/+3t7f/q6ur/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rp6f/w8PH/19XP/4+I + bP+Rim//kYpv/5KLcP+Oh2v/m5V9/+vr7P/x8fP/7+/w//P09//i4d7/wr+y/7m1pv+6tqf/ubWm/5WO + df+QiW3/kYpv/5GKb/+RinD/j4ds/9bUzv/w8PL/6enp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/7u7v/+Df3P+UjXP/kIlu/5GKb/+Rim//kYpu/5GK + cP+2saH/u7eo/7m2pv+7t6n/19XP/+/v8P/q6ur/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr + 6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/7Ozs/+vr6//EwLX/rqmX/66pl/+uqZf/rqqY/5aQdv+QiW3/kYpv/5GKb/+SjHH/i4Nm/7+8 + r//y8vT/6enp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/w8PL/raiV/4yEaP+Si3H/kYpv/5GKb/+QiW7/qKOP/6+r + mf+uqZf/raiW/7Kunf/U0sv/9PX4//Dw8v/19vn/uLSk/4uEZ/+Si3H/kYpv/5KLcP+Nhmr/oJqE/+vr + 6//s7O3/6urp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+rq + 6v/w8PH/q6aT/4yFaP+Si3H/kYpv/5KLcP+MhWj/rKeU//Pz9f/x8fP/8fLz//Ly9P/v7/D/6urq/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/v7/D/tbGg/4d/Yv+MhWn/jIRo/4yE + aP+MhGf/kIlu/5GKb/+Rim//kYpv/5CJbv+TjHL/4N/b/+7u7//q6ur/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urp//Dx + 8v/Qzsb/jIVp/5KLcP+Rim//kYpv/5GKb/+NhWn/i4Rn/4yEaP+MhWj/i4Nn/4iAYv/Fwrf/7e3t//Hy + 8//Ixbv/jIVo/5KLcf+Rim//kYpv/5KLcf+LhGf/r6qY/+/v8P/t7e3/6enp/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rp6f/r6+v/8vL0/7q2qP+LhGf/kotx/5GKb/+Rim//kotx/4uE + Z/+7uKn/8vP1/+jo5//q6en/6unp/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs + 7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//q6ur/7e3u/+Li3/+TjXL/kYpv/5OMcf+Si3H/kotx/5KLcf+Rim//kYpv/5GKb/+Si3D/jYVp/6ah + jP/u7u//6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+r/7O3t/+Xl4/+YkXj/j4ht/5GKcP+Rim//kYpv/5KL + cP+Si3H/kotx/5KLcf+TjXL/joZq/5+ag//y8/X/0c/H/5KLcP+QiW7/kYpv/5GKb/+Rim//kYpv/5KL + cf+LhGf/raiV/+jo5//x8fP/6+vr/+np6f/q6ur/6urq/+vq6v/q6ur/6urq/+rp6f/q6ur/8PDy/+3t + 7f+3s6P/jIRo/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/46Ha//Gw7j/8fL0/+rq6v/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr + 6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/u7u//3dzY/5OMcv+Rim7/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5KMcf+Lg2b/uLSl//Hy8//q6en/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//q6ur/7u7v/6ehjf+MhWn/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Nhmr/opyH/9HO + x/+Rim//j4hs/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5KLcf+MhGj/nJZ+/87Mw//s7Oz/8fL0//Dw + 8f/u7u//7e3u/+7u7//v8PH/8fL0/+7u7//V083/o52I/4uEZ/+Si3D/kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/4yFaP/Ixbr/8PDy/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urq/+7u7//e3dn/k4xx/5CJbv+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotx/4uD + Z//EwbX/8fL0/+rp6f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/w8fL/sa2c/4uEZ/+Si3H/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpw/4+IbP+clX3/mZJ5/46Ha/+Si3H/kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5KLcf+Oh2v/jIVp/6Gbhf+/vK7/1NPM/9/e2v/i4t//4N/b/9bVz//DwLT/pqGM/46H + a/+Nhmr/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/kIlu/5GLcP/f3tv/7u7v/+rq + 6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr + 6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/7u7v/97d2f+TjHH/kIlu/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3H/jIRo/8nGu//x8fP/6urp/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urp//Hx8/+2sqL/i4Nn/5KLcf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KL + cf+Si3D/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Si3D/jYZq/4uD + Zv+Oh2v/k4xy/5WPdf+UjXP/j4ds/4uDZv+NhWn/kotw/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+TjHH/jIVo/87Lwv/x8fP/6urp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/u7u//3t3Z/5OMcf+QiW7/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KL + cf+LhGf/xsO4//Hy8//q6un/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6un/8PHz/7Ovn/+LhGf/kotx/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+PiGz/m5R8/5eQd/+Ph2z/kotw/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/koxx/5KLcP+QiW7/kIlt/5CJbv+RinD/koxx/5KL + cP+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/5GJbv+QiW7/3dzY/+7u + 7//q6ur/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr + 6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr + 6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+7u7//e3dn/k4xy/5CJ + bv+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//koxx/4uDZv+9uav/8fL0/+rp6f/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/v7/H/qqWS/4yFaP+Si3H/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/42G + av+jnYf/zcrB/4+IbP+QiW7/kotw/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/5GKb/+Si3H/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3H/kYpv/5KLcP+Rim//kYpv/5GK + b/+Rim//kYpv/5GKcP+Si3D/i4Nn/8PAtP/w8PL/6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//q6ur/7u7v/9/e2/+SjHH/kotw/5KLcP+RinD/kYpw/5GKcP+Rim//kYpv/5GK + b/+Si3H/jIRo/6ynlP/v8PH/6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/7Ozs/+no6P+cln7/jodr/5KL + cP+Rim//kYpv/5GKb/+Ri3D/kYpw/5GKcP+Si3H/j4hs/52XgP/x8fP/zcvC/46Ha/+QiW7/kotw/5GK + b/+Rim//kYpv/5KLcP+Oh2v/kYpv/4uEZ/+QiG3/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kIlu/4uEZ/+QiW7/jodr/5KLcP+Rim//kYpv/5GKb/+RinD/kotw/4uEZ//BvrH/8fHz/+rq + 6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr + 6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr + 6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/7Ozt/6Wf + iv+IgGP/kIlu/4+Ibf+PiGz/j4ht/5GKb/+Rim//kYpv/5GKcP+PiG3/mJJ5/+Xl4//s7O3/6+vq/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/v7/H/2NbQ/4+IbP+Rim//kYpv/5GKb/+Rim//kIlu/4+IbP+PiG3/j4ht/5CJ + bv+Hf2H/trKj/+/v8P/x8fP/zcrB/46Ha/+QiW7/koxx/5GKcP+TjHL/i4Nm/6ahjP/e3dn/wb6x/5aQ + dv+QiW3/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKbv+TjHL/uLSl/97d2v+xrZv/ioJl/5OM + cv+Si3D/kotw/5KLcP+LhGf/wb6x//Hy9P/q6ur/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/u7u//4N/c/6mkkP+Yknn/mJJ5/5iSef+XkXj/kYpv/5GK + b/+Rim//kYpv/5KLcf+MhGf/y8i///Hx8//q6en/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6enp//Hy9P+4tKT/i4Nm/5KM + cf+Rim//kYpv/5CJbv+VjnT/mZJ6/5iSef+Yknn/mZJ6/7Ovnv/o6Of/7Ozs/+np6P/y8vT/zcvC/46H + a/+Nhmn/kIlt/4mBZP+ln4r/6Ojn/+/v8f/09fj/qaOP/4yFaP+Si3H/kYpv/5GKb/+Rim//kYpv/5GK + b/+Si3D/jodr/56Ygf/u7u//8PDy/+3t7v+wq5n/iYFk/4+Ibf+Oh2v/i4Nm/8G+sf/x8vT/6urp/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr + 6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr + 66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq + 6v/u7u7/7u7v/+bm5P/m5eT/5ubk/+bm5f+hm4X/joZq/5KLcP+Rim//kotw/42Gav+inIf/7O3t/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+rq6v/t7e7/4uLf/5WPdf+QiW3/kYpw/5GKb/+Rim//kIht/9TTzP/p6en/5eXj/+bl + 5P/n5+b/7/Dx/+zs7f/r6+r/6+vr/+np6f/x8fP/0c/H/6CahP+Zk3r/sq6d/+jo5//t7u7/6ejo/+3u + 7v+noo7/jIVp/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Oh2v/nZeA/+jn5v/q6ur/7Ozs/+3t + 7f+6t6j/mpR7/52XgP/Ixbv/8PHy/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/q6ur/7Ozt/+zs7f/r6+v/8/P2/7+7 + rv+KgmX/k4xx/5GKb/+Rim//kotx/4uEZ//Ewbb/8vP1/+np6P/r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6enp//Hy9P+yrpz/i4Rn/5KL + cf+Rim//kotw/42Gaf+hm4X/7e3u/+zs7f/s7O3/7O3t/+zs7P/q6ur/6+vq/+vr6//r6+v/6+vr/+rq + 6f/v8PH/7Ozs/+fn5v/w8PH/7Ozt/+rq6v/q6ur/7u/w/6eijf+NhWn/kotw/5GKb/+Rim//kYpv/5GK + b/+Rim//kotw/4+HbP+dl4D/6Ojn/+zs7P/q6ur/6+vr//Dw8v/o6Of/6urq//Dw8v/q6ur/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr + 6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vq/+rq6v/t7e7/4ODc/5aQdv+QiW3/kYpw/5GKb/+Rim//kIlu/5KL + cP/Z2NL/8fHz/+np6P/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+np6P/z8/b/yca8/4yFaf+Si3D/kYpv/5GKb/+Si3D/jIVp/8rIvv/w8PL/6enp/+vr + 6//r6+r/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/r6+v/7Ozs/+rq6v/r6+r/6+vr/+rq + 6f/w8fL/rqmW/4qDZv+UjXP/kotx/5KMcf+SjHH/koxx/5KMcf+UjXP/jIVp/6Kchv/t7e3/6+vr/+vr + 6//r6+v/6urp/+zs7P/r6+v/6urp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq + 6v/y8vT/qqWS/4yFaP+Si3D/kYpv/5GKb/+Si3D/jodr/5iReP/d3Nj/8fL0/+np6f/q6ur/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/q6un/8/P2/8/Nxf+QiW3/kYlu/5GK + cP+Rim//kYpv/5KLcP+Oh2v/y8m///Lz9f/p6en/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+/v8P/Y1tD/kotw/4qCZf+Lg2f/i4Nm/4uD + Zv+Lg2b/i4Nn/4qDZv+Nhmr/zcvC//Dw8f/q6un/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr + 6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6ur/8fLz/767rf+Ph2z/kotw/5GKb/+Rim//kYpv/5GK + b/+Si3H/jodr/5aPdf/S0Mj/8vL0/+3t7v/q6en/6urp/+rq6v/r6+v/6+vr/+vr6//r6+v/6urq/+rq + 6f/q6un/7+/w//Dw8v/Fwrf/j4ht/5CJbv+Si3D/kYpv/5GKb/+Rim//kYpv/5CJbv+PiGz/zsvD//Ly + 9P/q6un/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6urq/+/v8P/c29f/vbmr/7m2pv+6tqf/uran/7q2p/+5tqf/u7ep/9fVz//v7/D/6urq/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq//Dw + 8f+/u67/i4Nn/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3H/j4ht/46Ha/+1saH/4eHe//Hx + 8//w8fL/7e7u/+zs7P/r6+v/6+vr/+zs7P/u7u//8fHz/+/w8f/a2dT/q6aS/4yEaP+Rim//kotw/5GK + b/+Rim//kYpv/5GKb/+Rim//kotw/5CJbv+Ph2z/zszD//Dw8v/q6ur/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq/+7u7//y8vT/8fLz//Hy + 9P/x8vT/8fL0//Hy8//y8vT/7+/w/+rq6v/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs + 7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/w8PL/zMrA/4qDZv+Si3D/kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Si3D/kYpw/4uEZ/+UjnT/sq6d/8/Nxf/h4N3/6ejo/+vr6//r6+v/6Ofm/97d + 2f/Kx73/q6aT/5CJbv+MhWj/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotw/5CJ + bf+Rim//3NrW/+7u7//q6ur/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6urq/+np6f/q6en/6unp/+rp6f/q6en/6urp/+np6f/q6ur/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr + 6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6urq//Dw + 8v+qpZL/jIVp/5KLcf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kotx/5CJ + bv+LhGf/jIVp/5SNc/+dln//opyG/6Gbhf+blX3/kotw/4uEZ/+MhWj/kYpv/5KLcf+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//k4xy/4qDZv+9uaz/8vL0/+np6f/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//q6un/8fHz/7Csmv+Kg2b/k4xy/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcf+Si3D/kIlu/46Ha/+Nhmr/joZq/4+I + bP+Rim7/kotx/5KLcf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+TjHL/iYJl/8PAtP/x8vT/6unp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr + 6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq + 6v/u7u//29rV/5OMcf+PiGz/kotx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Si3D/kotw/5GK + b/+Rim//kYpv/5GKb/+Rim//kotw/5KLcP+Si3D/kotw/5GKb/+Rim//kYpv/5GKb/+Si3D/kotx/5GK + b/+Si3D/kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//k4xx/4yFaP+emIH/5ubl/+zs7f/r6+r/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6f/w8fL/1tTO/5KLcP+PiGz/kotx/5GK + b/+Rim//kYpv/5GKb/+Si3D/jodr/4yFaf+NhWn/kotw/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kotw/4+IbP+LhGf/kotw/46Ha/+Si3D/kYpv/5GKb/+Rim//kYpv/5OM + cf+NhWn/nJZ+/+Lh3//u7u//6urq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr + 6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr + 6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+np6f/x8fP/1tTO/5KLcP+PiGz/kotx/5GKb/+RinD/kotx/4qDZf+5tab/z83E/6Od + h/+Oh2v/jYZq/5KLcP+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Ohmr/mZN6/726 + rP/g4Nz/qaSQ/4qDZv+TjHL/kYpv/5GKb/+TjHL/jYVp/5yWfv/i4t//7+/w/+rq6f/r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+np6f/x8fP/1tTO/5KL + cP+Ohmr/k4xx/5GKb/+KgmX/uLOk//Dw8v/x8fP/7Ozs/9nY0/+rppP/joZq/5KLcP+Rim//kYpv/5GK + b/+Rim//kYpv/5GKb/+Si3D/jodr/8G9sf/p6en/8PDy/+/w8f/q6ur/qKOP/4qCZf+Si3H/k4xx/4uE + Z/+cln7/4uLf/+/v8P/p6en/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr + 6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr + 6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+np6f/x8fP/1tTO/5mSev+MhWn/j4hs/7q2qP/v8PH/6+vr/+np + 6f/p6en/9vf6/8fEuv+Kg2b/koxx/5GKb/+Rim//kYpv/5GKb/+Rim//kYpv/5KLcP+Ohmr/2djT//Hy + 8//p6Oj/6unp/+3t7v/q6ur/raiV/42Gav+NhWn/opyG/+Lh3//v7/D/6enp/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq + 6f/v8PH/5uXk/9LQyP/c29b/7/Dx/+vr6//r6+r/6+vr/+np6f/w8fL/w8C0/4uEZ/+Si3H/kYpv/5GK + b/+Rim//kYpv/5GKb/+Rim//kotw/46Ha//V08z/7+/x/+rq6v/r6+v/6urq/+zs7f/t7e7/19bQ/9TS + y//q6ur/7u7v/+rq6f/r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr + 6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr + 66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/s7O3/8PHy/+7v8P/q6ur/6+vr/+vr + 6//r6+v/6unp//Hy9P/DwLT/i4Rn/5KLcf+Rim//kYpv/5GKb/+Rim//kYpv/5GKb/+Si3D/jodr/9XT + zP/w8PH/6urq/+vr6//r6+v/6+rq/+vr6v/v8PH/8PDy/+vr6//q6ur/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6v/q6un/6urq/+vr6//r6+v/6+vr/+vr6//q6un/8fHz/8nGvP+KgmX/lI1z/5KL + cf+Si3H/kotx/5KLcf+Si3H/koxx/5KLcf+Oh2v/2tnU/+/v8P/q6ur/6+vr/+vr6//r6+v/6+vr/+rq + 6v/q6ur/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr + 6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6v/s7O3/5ubk/56Ygf+IgWP/jIVo/4uEZ/+LhGf/i4Rn/4uEZ/+MhWj/h4Bi/62o + lv/t7e7/6+vq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/u7u//4+Lg/7u4 + qf+wrJr/sa2b/7Gsm/+xrJv/sa2b/7Gsm//Cv7P/6enp/+zs7f/r6+r/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr + 6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq6v/t7e7/8fL0//Dx8v/w8fL/8PHy//Dx8v/w8PL/8PHy//Hy + 8//s7Oz/6+vq/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+rq + 6v/q6en/6urp/+rq6f/q6un/6urp/+rq6f/q6un/6urp/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs + 7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr + 6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr + 6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr + 6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr + 6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr + 6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7OzsAOvr6wPr6+sA6+vrqevr + 6//r6+v86+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADs7OwA6+vrA+vr6wDr6+up6+vr/+vr6/zr6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/uvr + 6//r6+vu6+vrEevr6wDr6+sBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7ADr6+sD6+vrAOvr + 66nr6+v/6+vr/Ovr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v+6+vr/+vr6+7r6+sR6+vrAOvr6wEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7OzsAOrq6gPq6uoA6+vrqevr6//r6+v86+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr + 6/7r6+v/6+vr7uvr6xHr6+sA6+vrAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADt7e0A7OzsA+zs + 7ADs7Oyp7Ozs/+zs7Pzs7Oz/7Ozs/+zs7P/s7Oz/7Ozs/+zs7P/r6+z/6+vr/+vr6//r6+v/6+vr/+vr + 6//r6+v/6+vr/+vr6//r6+v/6+vr/+vr6//r6+v/6+vq/+rq6v/r6ur/6urq/+rq6v/q6ur/6urq/+rq + 6v/q6ur/6urq/+rq6v/q6ur/6urq/+rq6v/q6ur/6urq/+rq6v/q6ur/6urp/+rq6f/q6un/6urp/+rq + 6f/q6un/6urp/+rq6f/q6un/6urp/+rp6f/q6en/6unp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np + 6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np + 6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6eno/+np6P/p6en/6enp/+np6f/p6en/6enp/+np + 6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/+np + 6f/p6en/6enp/+np6f/p6en/6enp/+np6f/p6en/6enp/unp6f/p6enu6enpEenp6QDp6ekBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAOnp6ADn5+YD5+fmAOjo56nn5+f/6Ojn/Ono6P/o6Oj/6ejo/+np + 6f/p6en/6enp/+rq6v/q6ur/6urq/+vr6//r6+v/6+vr/+vr6//s7Oz/7Ozs/+zs7P/t7e3/7e3t/+3t + 7f/u7u7/7u7u/+7u7v/u7u//7+/w/+/v7//v7/D/8PDx//Dw8f/w8PH/8PHy//Hx8v/w8fL/8PHy//Hx + 8v/x8fL/8fHy//Hx8v/x8fL/8fHy//Hx8v/x8fL/8fLz//Hy8//x8vP/8vLz//Hy8//y8vP/8vLz//Ly + 8//y8vP/8vLz//Ly9P/y8vP/8vL0//Lz9P/y8/T/8vP0//Lz9P/y8/T/8vP0//Pz9P/z8/T/8/P0//Pz + 9f/z8/X/8/P1//P09f/z9PX/8/T1//P09f/z9PX/8/T1//P09f/09Pb/9PT2//T09v/09Pb/9PT2//T0 + 9v/09fb/9PX2//T09v/09Pb/9PT2//T09v/09Pb/9PT2//T09v/09Pb/9PT2//T09v/z9PX/8/T1//P0 + 9f/z9PX/8/T1//P09f/z9PX/8/T1//P09f/z8/X/8/P1//Pz9f/z8/X/8/P1//Pz9f/z8/X/8/P0//Pz + 9P/z8/T+8vP0//Lz9O7y8/QR8vP0APLz9AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmJSFAHJs + VwN0bloAiINxtYB7aP+BfGr8gn1r/4J9a/+CfWv/hH9t/4R/bf+Ef23/hYBu/4WAb/+FgG//hoFw/4eC + cf+HgnH/h4Jx/4mEc/+JhHP/iYRz/4qFdP+KhXX/ioV0/4uGdv+Mh3f/jId2/4yId/+NiXn/jYh4/46J + ef+Pinr/j4p6/4+Kev+QjHz/kIx8/5CMfP+QjHz/kYx9/5KOf/+Sjn//ko5//5SQgf+UkIH/lJCB/5WR + g/+WkoT/lpKD/5eThP+YlIb/mJSG/5mUhv+aloj/mpaI/5qWiP+cmIr/nJiL/5yYi/+dmoz/npuN/56a + jf+fm47/oJ2Q/6Ccj/+gnZD/op+S/6Kfkv+in5L/pKCU/6Shlf+koZT/paKW/6ajl/+mo5f/p6OY/6il + mf+opZn/qKWa/6qnnP+qp5z/qqec/6yonv+sqZ7/rKme/62qoP+uq6H/sK2j/7Cto/+wraP/sa+l/7Kv + pv+yr6X/s7Cm/7SxqP+0saj/tLKo/7azqv+2s6r/trOq/7i1rP+4ta3/uLWs/7m3rv+6uK//urev/7u4 + sP+8urL/vLmx/7y6sv++vLT/vry0/768tP/Avbb/wL62/8C+tv7Bv7j/wsC57sK/uBHCwLkAwsC5AQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACNiHgAWFE4A1xVPAB3cV23bWdR/25nUvxtZ1H/bWdR/21n + Uf9tZ1H/bWdR/21nUf9tZlH/bWZR/21mUf9sZlD/bGZQ/2xmUP9sZlD/bGZQ/2xmUP9sZlD/bGVP/2xl + T/9sZU//a2VP/2tlT/9rZU//a2VP/2tlT/9rZU//a2VP/2tkTv9rZE7/a2RO/2pkTv9qZE7/amRO/2pk + Tv9qZE7/amRO/2pkTv9qZE7/amRO/2pkTv9qZE7/amRN/2pkTf9qZE3/amNN/2pjTf9qY03/amNN/2pj + Tf9qY03/amNN/2ljTf9pY03/aWNN/2ljTf9pY0z/aWNM/2ljTP9pY0z/aWNM/2ljTP9pYkz/aWJM/2li + TP9pYkz/aWJM/2liTP9pYkz/aWJM/2liTP9oYkz/aGJL/2hiS/9oYkv/aGJL/2hiS/9oYkv/aGJL/2hi + S/9oYkv/aGFL/2hhS/9oYkv/aGJL/2hiS/9oYkv/aGJL/2hiS/9oYkz/aWJM/2liTP9pYkz/aWJM/2li + TP9pYkz/aWNM/2ljTP9pY0z/aWNM/2ljTf9pY03/aWNN/2pjTf9qY03/amNN/2pjTf9qY03/amNN/2pk + Tf9qZE3/amRN/mpkTv9qZE7uamROEWpkTgBqZE4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+L + ewBeWD8DYVtDAHt1Yrdxa1b/cmxX/HJsV/9ybFf/cmxX/3JsV/9ybFf/cmxX/3JsV/9ybFf/cmxX/3Js + V/9ybFf/cmxX/3JsV/9ybFf/cmxX/3JsV/9ybFf/cm1Y/3NtWf90blr/dG5a/3RuWv90blr/dG5a/3Nu + Wv9zbVj/cmxY/3JsWP9ybFj/cm1Y/3JtWP9ybVj/cm1Y/3JtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3Nt + WP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVn/c25a/3Nv + Wv9zb1r/c29a/3NvWv9zblr/c25Z/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3Nt + WP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVn/c21Z/3NtWP9zbVj/c21Y/3Nt + WP9zbVj/c21Z/3RuWf90bln/dW9Z/3VvWf91b1n/dW9Z/3RuWf9zbVn/c21Y/3NtWP9zbVj/c21Y/3Nt + WP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj/c21Y/3NtWP9zbVj+cm1Y/3JtWO5ybVgRcm1YAHJt + WAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cmxX/3Jt + Wf9walX/bWZP/2tjS/9rY0r/a2NK/2tjSv9rY0r/bWVN/3BpVP9ybVj/cmxY/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xbVj/cWxX/3BoU/9vZE//b2NN/29jTf9vY07/b2NN/29kT/9wZ1L/cWtW/3Ft + WP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3NtV/9xa1b/bWdU/2pkUv9pY1H/aWRR/2lj + Uf9pZFH/a2VS/25pVP9ybFf/cmxX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JtWf9vaFH/a2NK/3NtWf+Cgnj/kpiY/5ylq/+gqrP/nqeu/5Wb + nf+HiID/dnFf/2tkS/9tZk//cmxY/3JsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbFf/cWtW/29kT/9wZlH/dHdj/3qO + e/9/n43/gqiX/4Kpl/+AoY//e5F+/3Z8aP9waFP/b2NO/3FqVf9xbVj/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Nt + V/9walX/aWRS/3BqVf+De2D/mZBt/6iedv+vpHr/raN5/6Sac/+Simn/fHVc/2tmU/9rZVL/cmxW/3Js + V/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFr + VgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsWP9xa1b/a2NK/3t4 + af+fqbD/vM/p/8jg///M5f//zeb//83m///N5v//zeb//8ri//+/1PH/prK//4KCeP9sZEz/cGlT/3Jt + WP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cW1Y/3BmUf9waVT/e5B9/4i/rv+P2cr/kuPU/5Ll1v+S5df/kuXX/5Ll1/+S49X/kNzN/4nE + tP9+mYf/cm1Y/29kT/9xbVj/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFf/amRS/3ZvWf+imXL/zMCL/+HTl//o2pv/6tyc/+rb + nP/q3Jz/6tub/+fZmv/dz5T/wLWE/5OKaf9taFT/bWdU/3NtV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9ybFj/b2hS/3BqVP+bpKr/xNv4/83m///K4f//x97+/8bc/f/G3Pz/xtz8/8bc + /P/G3Pz/xt3+/8ng///N5v//yeD+/6eywP92cV//bWZO/3JtWf9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FsV/9vY07/d4Ju/4nFtf+S5NX/kuPU/5De + z/+Q3M3/kNvM/4/bzP+P28z/j9vM/5Dczf+Q3c7/keLT/5Ll1v+Mzr7/eo16/29kT/9xa1b/cWxX/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFb/cWtW/2tl + Uv+YkG3/1smQ/+rcnP/n2Jr/4tSX/+HTlv/g0pb/4NKW/+DSlv/g0pb/4dOW/+PVmP/p2pv/6Nma/8a6 + h/+DfGD/amRS/3NsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFr + VhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3Fr + Vvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cm1Y/25nUP93c2L/s8PY/87n + ///I3/7/xdz8/8bd/v/H3v//x97//8fe///H3v//x97//8fe///H3v//x93+/8bc/P/H3f3/zef//77S + 6/+BgHb/bGRM/3JtWf9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xbFf/b2RP/36ah/+R39D/kuPU/5DbzP+Q3Mz/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3M3/j9vM/5Hh0v+S49X/gqmX/3BnUv9xa1b/cWxX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cmxW/3BqVf9vaVX/tap9/+nbm//l15n/4NKW/+HTlv/i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+DTlv/g05b/6Nqb/+HTl/+Yj23/amRS/3JsV/9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JsWP9vaFH/eHRk/7vO5f/N5v//xdv8/8fe/v/H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///F3Pz/yuL//8Xc9/+Dg3v/bGVN/3JtWf9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cW1Y/29kTv+AoY//kuXX/5Ddzv+Q28z/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kNzN/5Dczf+T59j/hLKg/3Bm + Uf9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/b2lV/7+0 + g//s3Z3/4NKW/+HTlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//g0pb/49WY/+nam/+elXD/amRS/3NtV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b+cWtW/3Fr + Vu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3Bq + Vf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1f/cWpV/3FrV/+2x9r/zOX//8Xb + /P/H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///G3P3/yuL//8LX8P96d2n/bmhR/3JsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Ft + WP9vZE7/fJSB/5Lk1v+Q3M3/kNzN/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/4/bzP+T59j/gaaU/29kTv9xbVj/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cmxX/2tlUv+0qn3/7N2c/9/Slv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//h05b/4tSX/+fZmv+RiWj/a2VS/3Nt + V/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JtWP9rY0v/oauy/87n///F2/z/x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///F3Pz/zOX//7HB0f9uZ1H/cWxX/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbFf/cGhS/3V5Zf+P2sv/kN7P/5Dczf+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dc + zf+R4tP/eYh0/29lUP9xbFj/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3NtV/9qZVL/l45s/+nb + m//g0pb/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//h05b/5deZ/9nMkv95clr/b2lV/3JsVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFr + Vv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0 + YbdwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFj/bmZP/4B/dP/I3/z/x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///G3P3/zeb//5CUkf9sZEz/cm1Y/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fs + V/9vZU//hrem/5Ll1v+P28z/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kNzM/5Hi0/+KyLf/cWpV/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cGpV/3RuWP/Ux4//5deZ/+HTlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//g0pb/6tyc/7Oo + fP9qZFL/c21X/3FrVv9xa1b/cWtW/3FrVv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JtWP9sZEz/qLS//83m///G3P3/x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8bd/v/K4///t8nd/3Bq + Vf9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbFf/cGZR/3eAbP+Q3s//kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kNvM/5Lk1f97kH3/b2RP/3FtWP9xa1b/cWtW/3FrVv9xa1b/cWtW/3NtV/9pZFL/n5Zx/+rb + nP/g0pb/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//j1Zf/39GV/353Xf9uaFT/cmxW/3FrVv9xa1b/cWtW/3Fr + Vv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2Ba + QgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbFf/b2lT/3h1ZP/C1/L/yOD//8fe + /v/H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8bd/v/K4v//hYZ9/21lTv9ybFj/cWtW/3FrVv9xa1b/cWtW/3Ft + WP9vY07/gqmX/5Ll1v+P28z/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q28z/kuTV/4e7qv9vZVD/cWxX/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cmxW/25oVP/JvYj/59ma/+HTlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+DS + lv/q25z/pJpz/2lkUf9zbVf/cWtW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JtWP9sZEz/jJCL/8zk///G3f3/x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//xtz8/83m + //+ep6z/a2NK/3JtWf9xa1b/cWtW/3FrVv9xa1b/cWtW/3FqVf+KyLj/keLT/5Dczf+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Dczf+R39D/jtXF/3NzX/9waVT/cWxX/3FrVv9xa1b/cWtW/3JsVv9uaFT/gHhe/9/S + lf/j1Zf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4dOW/+jZmv/EuIb/bWdT/3JsV/9xa1b/cWtW/3Fr + Vv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1W + PgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cm1Z/2tjSv+eqK//zeb//8bc + /P/H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///G3f3/zOT//6++z/9tZk7/cmxY/3FrVv9xa1b/cWtW/3Fs + V/9waFP/dHdi/4/Yyf+Q3s//kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dczf+R4NH/eIVx/3Bm + UP9xbFf/cWtW/3FrVv9xa1b/cmxX/2plUv+Ti2r/6Nma/+HTlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//h05f/5daY/9fKkf92cFn/cGpV/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9ybFj/bGVN/6m2xf/M5f//xtz9/8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8bd + /v/K4v//uMvi/3FrV/9xa1b/cWtW/3FrVv9xa1b/cWxX/3BmUf93gm7/kN/Q/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kNzM/5Lj1f98k4D/b2RP/3FtWP9xa1b/cWtW/3FrVv9zbVf/aWRR/6KZ + cv/p25v/4NKW/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//j1Zf/39KV/4B5X/9uaFT/cmxW/3Fr + Vv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+K + egBdVj4DYFpCAHp0YbdwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsWP9tZU7/rr3O/8zl + ///G3f3/x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//xt3+/8nh//+80Or/dG9b/3BqVf9xa1f/cWtW/3Fr + Vv9xbFf/b2VQ/3mHdP+R4tP/kNzN/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q28z/kuTW/36Z + hv9vY07/cW1Y/3FrVv9xa1b/cWtW/3NtV/9pY1H/qJ52/+rcnP/g0pb/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/hX5i/21nU/9ybFf/cWtW/3FrVv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFr + VgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cmxY/21lTf+tu8v/zOX//8bd/f/H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///G3f7/yuL//7vO6P9zblr/cGpV/3FrVv9xa1b/cWtW/3FsV/9vZVD/eIZy/5Hh0v+Q3M3/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5DbzP+S5NX/fZeE/29kTv9xbVj/cWtW/3FrVv9xa1b/c21X/2lj + Uf+mnXX/6tuc/+DSlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+HTl/+EfWH/bWdU/3Js + V/9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybVj/bGRL/6Wx + u//N5v//xtz9/8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8bd/f/L4///tcbb/29pU/9xa1f/cWtW/3Fr + Vv9xa1b/cWxX/3BnUv92fmr/kNzN/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kNzN/5Lj + 1P96jXr/b2RP/3FsWP9xa1b/cWtW/3FrVv9zbVf/amRS/5yTb//p25v/4NOW/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//j1Zj/3c+U/3x1XP9uaVT/cmxW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFr + VgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JtWf9rY0r/l56f/83m///G3P3/x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//xtz9/8zl//+otcH/bGRM/3JtWP9xa1b/cWtW/3FrVv9xa1b/cWpU/3JwXP+N0sP/keDR/5Dc + zf+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kNzN/3Z9af9wZ1L/cWxX/3FrVv9xa1b/cWtW/3Js + V/9sZlP/i4Nl/+XXmf/h05f/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4dOW/+bYmf/Qw43/cmxW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cmxY/21m + T/+Dg3n/yeD//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///G3P3/zeb//5OZmP9rY0v/cm1Z/3Fr + Vv9xa1b/cWtW/3FrVv9xbFf/b2VQ/4e7q/+S49X/kNzM/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kNzN/5Hh + 0v+Ly7v/cWxX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3BqVf93cFn/18qR/+TWmP/h05f/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//g0pb/6dub/7esfv9qZFL/c2xX/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFr + VhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3Fr + Vvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv+4yuD/yuL//8bd/v/H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97+/8jf///E2vb/e3ho/29oUv9ybFf/cWtW/3FrVv9xa1b/cWtW/3FtWP9vY07/fZaE/5Lk + 1v+P28z/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+P28z/kuXX/4Kpl/9vY07/cW1Y/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/c2xX/2pkUv+4rX//6dub/+DSlv/i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+HTlv/o2Zr/kopp/2tl + Uv9ybFf/cWtW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9ybVn/a2NL/5acnf/N5v//xdz8/8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///F3P3/zeb//6ezvv9sZEz/cm1Y/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FqVf9ycFv/jdHC/5Hg0f+Q3M3/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3M3/dnxo/3BnUv9xbFf/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFf/bGZT/4mCZP/l15n/4dOX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//h05b/5tiZ/8/DjP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b+cWtW/3Fr + Vu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3Bq + Vf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrV/9walX/c21a/7vO4//K4v//xt39/8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x93+/8ff///G3Pj/fXtu/25nUP9ybFf/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cW1Y/29j + Tv9+m4j/kubX/4/bzP+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+P28v/kubX/4Otm/9vZE7/cW1Y/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9ybFf/a2VT/7yxgf/q25z/4NKW/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+DSlv/p25v/l45r/2pl + Uv9zbFf/cWtW/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JtWP9sZU3/iImD/8vj///H3f3/x93+/8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///F3Pz/zuf//5ifof9rY0v/cm1Z/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3BoU/+IwLD/kuTW/4/ay/+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/j9vM/5Hi + 0/+Mz7//cnBb/3FpVP9xbFf/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsVv9uaFT/e3Vc/9vN + k//l15n/4NOW/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//f0pX/69yc/72xgv9sZlP/cmxX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFr + Vv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0 + YbdwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JtWf9rY0v/mJ+j/87n + ///G3fz/xt3+/8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe///H3v//x97//8fe + ///H3v7/xdz7/87o//+ptcL/bWZP/3JsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xbFf/cGhT/3N0X/+N0cH/kuPU/4/ay/+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dd + zv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/4/bzP+R4NH/kNzM/3eBbf9wZlD/cWxY/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3NtV/9rZVL/joZn/+XWmP/k1pj/4NKW/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/39KV/+nbm//Pw4z/dW9Y/29p + Vf9ybFb/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1WPgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsWP9sZEz/m6Op/83l///I4P7/xdz8/8fe/v/H3v//x97//8fe + ///H3v//x97//8fe///H3v//x97//8fe///H3v//xtz9/8fe/f/O6P//qrfF/3BpU/9walX/cWxX/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbVj/cGZR/3V5Zf+Mz8D/kuXW/4/b + zP+Q3M3/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Ddzv+Q3c7/kN3O/5Dczf+P28z/kuPU/4/Z + yv94hnL/b2RP/3JtWP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Nt + V/9qZFL/k4pq/+LUl//n2Jr/4NKW/+HTl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LUl//i1Jf/4tSX/+LU + l//i1Jf/4dOW/+DSlv/r3Jz/z8KM/3pzW/9taFT/cmxX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2Ba + QgB6dGG3cGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Js + V/9sZEv/j5OR/8PZ9f/N5v//yN/+/8bc/f/G3f3/xt3+/8fe/v/H3v7/x97+/8fd/v/G3f3/xtz8/8fe + /v/M5f//yeD9/5ykq/9uZ1D/cGpV/3JsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xbVj/cGZR/3NyXv+HvKv/kuXW/5Hh0v+Q3M3/kNvM/5Dczf+Q3M3/kN3O/5Dd + zv+Q3c7/kNzN/5DbzP+Q28z/keDR/5Lm1/+KyLf/dnxo/29lT/9ybVj/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3NtV/9qZVL/h4Bj/9HEjf/r3Jz/5NaY/+DS + lv/g05b/4dOX/+LUl//i1Jf/4tSX/+HTl//h05b/4NKW/+HTlv/n2Jr/6dqb/7uwgf90blj/bWhU/3Ns + V/9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+KegBdVj4DYFpCAHp0YbdwalX/cWtW/HFrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsWP9sZEv/enZn/6axvv/F2/n/zeb//8zk + ///J4f//yN///8jf///I3///yeH//8vk///N5v//yOD+/6++0f+Cgnf/a2NL/3FrV/9ybFf/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbVj/cGlT/3Bn + Uf98k4D/i8u7/5Hj1P+S5db/keHT/5Hf0P+Q3s//kN7P/5Df0P+R4dL/kuTW/5Lk1f+N0cL/f5+N/3Fr + Vv9wZ1H/cW1Y/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3NtV/9sZlP/c21X/6iedv/ZzJL/6dub/+nam//m15n/5NWY/+PVmP/j1Zj/5NaY/+fY + mv/q25v/59ia/83Bi/+VjGv/a2ZT/29qVf9ybFf/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b+cWtW/3FrVu5xa1YRcWtWAHFrVgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAj4p6AF1W + PgNgWkIAenRht3BqVf9xa1b8cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3JtWf9vaFL/bGRL/3x5a/+XnqH/r73P/73R6//D2fj/xdv7/8Ta+f+/0+//s8PX/56n + r/+BgXb/bWZP/21mT/9ybVn/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xbFf/cWxX/29kTv9xbFf/eox5/4Svnv+KyLj/jtXG/4/a + y/+P2sv/jtbH/4vLu/+FtaT/fJOA/3JwW/9vY07/cWtW/3FsV/9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsV/9walb/aWRR/3hx + Wv+bkm7/vLGB/9LFjv/czpT/39GV/9/Rlf/ZzJL/zL+K/7OpfP+Ph2f/cGpV/2plUv9ybFf/cmxW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv5xa1b/cWtW7nFrVhFxa1YAcWtWAQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPinoAXVY+A2BaQgB6dGG3cGpV/3FrVvxxa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3JsV/9ybVj/b2hR/2tj + Sv9tZk//dG9b/3p3Z/99e23/e3hp/3VwXv9vaFH/a2NK/21mT/9ybFj/cmxY/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cW1Y/3FrVv9vZU//b2NO/3FqVf9zc1//dXll/3V6Zv9zdGD/cWxX/29kT/9vZE7/cWpV/3Ft + WP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9zbVf/b2lV/2pkUv9rZVL/c2xX/3t0XP+AeV//f3he/3hy + Wv9walX/aWRS/2tlU/9xa1b/c2xX/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/nFrVv9xa1bucWtWEXFrVgBxa1YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+K + egBdVz4DYFpCAHp0YbZwalX/cWtW/HFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFf/cm1Z/3JsWP9walT/b2hS/25nUf9vaFL/cGpU/3Fs + V/9ybVn/cmxY/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FsWP9xbVj/cWtW/3Bp + VP9waFP/cGhS/3BpVP9xa1b/cWxY/3FtWP9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9ya1b/c21X/3JsV/9walb/b2lV/25oVP9uaFT/b2lV/3FrVv9zbVf/cmxX/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b+cWtW/3FrVu5ybFcQcmxXAHFr + VgEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjop5AF1WPgNgWkIAenVht3BqVf9xa1b8cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrV/9ybFf/cmxX/3JsV/9xa1f/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWxX/3FsV/9xbFf/cWxX/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9ybFb/cmxW/3Js + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv5xa1b/cWtW7m5oUhBuaFIAb2lUAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACVkYMAXVU9A19YQAB7dWKvcGpV/3FrVvxxa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nFrVf9zbVntiINyEYaB + cAB+eGUBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALCtogB2cFwEdnBcAH13ZHFxa1b/cWtW+HFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFrVv5xa1b+cWtW/nFr + Vv5xa1b+cWtW/nFrVv5xa1b5cGpV/3hzX8AhGAAABAAAAZmVhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIiDcgGinpAApaGUC3hyXs1xa1X/cGpV/XFrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3Fr + Vv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/3FrVv9xa1b/cWtW/nBqVf90b1r7g35sP396 + aAB9eGUD////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACin5IAAAAAAIeCcQGWkoIAjYh4Fnp1 + YaB1b1vrcWtW73FrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFrVu5xa1bucWtW7nFr + Vu5xa1bucWtW7nFrVu5zbVnveHJexoR/bT1pY00Ac21YAk1IKQCZlIUAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACDfmsAgHpoAIWAbwFeV0IBAAAAAJuXiQxxa1YRcWtWEHFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFr + VhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFxa1YRcWtWEXFrVhFybFcQbmhSEYiDchDc29gC////AH96 + ZwJrZlAAbGZQAKGcjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKGekAB8d2MAf3pnAIR/ + bQJrZU8D7fHwAP///wBKQCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAABuZ1AAbWdQAGNdRwJ6dWIDVE40AEU/IgCXkoQAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAKaimQCUkYEAraygAKmnmwCFgG8BcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFr + VgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAXFrVgFxa1YBcWtWAW9pVAF9eGUBmJSFAJiU + hQCPi3sAoZyPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA////////////////////////////////////////////AAAAAAAAAAAA + AAAAAAP/9AAAAAAAAAAAAAAAAAABf+l/////////////////9L/iAAAAAAAAAAAAAAAAAAFf5AAAAAAA + AAAAAAAAAAAAv+gAAAAAAAAAAAAAAAAAAJ/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAA + AF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAA + AAAAAABfyAAAAAAAAAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAA + AAAAAAAAAAAAX8gAAAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAX8gA + AAAAAAAAAAAAAAAAAF/IAAAAAAAAAAAAAAAAAABfyAAAAAAAAAAAAAAAAAAAn+gAAAAAAAAAAAAAAAAA + AL/kAAAAAAAAAAAAAAAAAAFf6QAAAAAAAAAAAAAAAAACv/Sf////////////////6T/6AAAAAAAAAAAA + AAAAAAL///////////////////////////////////////////////////////////////////////// + //////////////////////////////////8= + + + \ No newline at end of file diff --git a/MainWindow.cs b/MainWindow.cs new file mode 100644 index 0000000..1db9812 --- /dev/null +++ b/MainWindow.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; + +namespace MSFSPopoutPanelManager +{ + public class MainWindow + { + public MainWindow() + { + ChildWindowsData = new List(); + } + + public int ProcessId { get; set; } + + public string ProcessName { get; set; } + + public string Title { get; set; } + + public IntPtr Handle { get; set; } + + public List ChildWindowsData { get; set; } + + } +} diff --git a/OcrEvalData.cs b/OcrEvalData.cs new file mode 100644 index 0000000..e105a66 --- /dev/null +++ b/OcrEvalData.cs @@ -0,0 +1,23 @@ +using System.Collections.Generic; + +namespace MSFSPopoutPanelManager +{ + public class OcrEvalData + { + public string Profile { get; set; } + + public bool DefaultProfile { get; set; } + + // scale the image so OCR can better recognize the text + public double OCRImageScale { get; set; } + + public List EvalData { get; set; } + } + + public class PopoutEvalData + { + public string PopoutName { get; set; } + + public List Data { get; set; } + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..5d14eef --- /dev/null +++ b/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace MSFSPopoutPanelManager +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f56680 --- /dev/null +++ b/README.md @@ -0,0 +1,85 @@ +# MSFS Pop Out Panel Manager +MSFS Pop Out Panel Manager is a utility application for MSFS 2020 which helps save and position pop out panels such as PDF and MFD to be used by applications such as Sim Innovations Air Manager's overlay. This is a **proof of concept** application since I do not use Air Manager so I'm kind of guessing how it works. I kept reading messages on flightsimulator.com that flightsimers would like a utility like this so as a coding exercise I just created it. I welcome any feedback to help improve the accuracy and usefulness of this utility. You are welcome to take a copy of this code to further enhance it and use within anything you created. + +## Pop Out Panel Positioning Annoyance +In MSFS, by holding **Right-Alt** + **Left Clicking** some instrumentation panels, these panels will pop out as floating windows that can be moved to a different monitor. But this needs to be done every time you start a new flight. Predefined toolbar menu windows such as ATC, Checklist, VFR Map can also be popped out. For these MSFS predefined toolbar menu windows, their positions can be saved easily and reposition at the start of each new flight using 3rd party windows positioning tool because these windows have a **title** for the pop out. But panels such as PFD and MFD on G1000 or the FMS panel on G3000 or panels on A320/CJ4 do not have window title. This makes remembering their last used position more difficult and it seems very annoying to resize and readjust their positions to be used by Air Manager or other overlay tool on each new flight. + +## Concept to Fix this Annoyance +The concept to determine the untitled panels to be reposition is pretty straight forward: + - User will pop out the individual untitled panel. + - This utility will take a screenshot of each panel. + - The screenshot images will be fed into OCR using [Tesseract](https://github.com/charlesw/tesseract/) package. + - The OCRed text (mostly 'gibberish' by the way) will be compared to a predefined set of keywords that are defined by the user. These comparison text can be customized and additional panel types and profiles can be [added](#profile-and-ocr-data-file-definition) for various plane configurations. + - By being able to identify the untitled panels, this solves the problem of not able to easily reposition these panel in subsequent flight. + +## Application Workflow Steps + 1. User starts the utility. The application will automatic connect when MSFS starts. + 2. User pops out the **Individual** untitled panels such as MFD or PFD on G1000 in MSFS. **Please make sure the pop out panels are not inactive/blank.** If so, there will be nothing to analyze. + 3. **Important!** User choose the desired profile. + 4. User selects **Analyze** for the panels that were popped out. + 5. Once analysis is completed, user positions these untitled panels in addition to any predefined toolbar menu panels to the desired location on the screen. + 6. User **Saves** the positions of these panels. + 7. In subsequent flight, user pops out the untitled and/or predefined panels again. + 8. User selects **Analyze**. + 9. These panels will then automatically reposition themselves to their saved positions. + +## User Interface +

+ +

+ +### OCR Debug Information +All untitled panels OCR extracted text will be represented here by an individual tab. When an untitled panel failed analysis, a tab control marked ***Failed Analysis - xxxx*** will be shown. You can use the extracted text here (if any) as basis to adjust the OCR data definition file. + +## OCR Concept / Further Enhancement + + - Currently, Tesseract OCR recognition is not very accurate but is good enough! + - Screenshot images text recognition can be [customized](#profile-and-ocr-data-file-definition) by configuration file for better accuracy. + - To enhance the initial accuracy of Tessearat OCR, the screenshot has its color inverted, then sharpened, then grayscale before text recognition occurs. + - I only used the default Tessearact OCR function. There are probably better way to improve the accuracy with OCR advanced features and more image preprocessing. + - For panels that have no obvious text such as some of the pop out gauges on A320, currently these panels cannot be recognized. Maybe for future enhancement, using color mapping or snippet of screenshot to do the comparison. + +## Profile and OCR Data File Definition +The file definition [config/ocrdata.json](config/ocrdata.json) is pretty self-explanatory. This file is used to define the plane profile for selection in the UI and to define the keywords to be compared on each panel. You can add additional profiles to the file. Below is a sample profile for G1000 that has pop out PFD and a MFD panel: +``` +[ + // G1000 + { + "profile": "G1000", + "defaultProfile": "true", + "ocrImageScale": 1.0, + "evalData": [ + { + "popoutName": "PFD", + "data": [ "PFD", "XPDR", "Nearest", "MAP/HSI", "Ident", "Tmr/Ref" ] + }, + { + "popoutName": "MFD", + "data": [ "FUEL", "QTY", "GAL", "FFLOW GPH", "OIL", "PRESS", "ELECTRICAL", "BATT", "VOLTS", "Navigation Map" ] + } + ] + } +] +``` + - ***profile*** - name of profile for selection in the UI. + - ***defaultProfile*** - set as default profile to be selected on the Profile dropdown in the UI. + - ***ocrImageScale*** - adjust the screenshot image scale to enhance OCR accuracy (can be bigger or smaller and can be different for each profile). + - ***evalData*** - a list of panels for this profile and the associated keyword comparison data + - ***popoutName*** - name for the untitled panel, you can name it anything you want but must be unique for the profile. + - ***data*** - the keyword list, add to or remove from this list to improve matching accuracy. The string comparison is **case insensitive**. + +** **evalData** comparison is executed in listed order. So if the same keyword appears in multiple pop out definitions, the first match wins. So please try to choose keywords that are unique to the panel. You can use [OCR debugger information](#user-interface) in the UI to finetune the text that are being extracted from the screenshot image. + +## Common Problem Resolution + + - Failed Analysis - Make sure to select correct/desire profile before clicking Analyze. + - Failed Analysis - Experiment with ocrImageScale and keyword list in ocrdata definition file. + +## Author +Stanley Kwok +[hawkeyesk@outlook.com](mailto:hawkeyesk@outlook.com) + +## Credits + [Charles Weld Tesseract](https://github.com/charlesw/tesseract/) .NET wrapper for Tesseract OCR package. + + [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) 2D graphics API package. \ No newline at end of file diff --git a/Rect.cs b/Rect.cs new file mode 100644 index 0000000..a5073a9 --- /dev/null +++ b/Rect.cs @@ -0,0 +1,10 @@ +namespace MSFSPopoutPanelManager +{ + public struct Rect + { + public int Left; + public int Top; + public int Right; + public int Bottom; + } +} diff --git a/UserData.cs b/UserData.cs new file mode 100644 index 0000000..1345550 --- /dev/null +++ b/UserData.cs @@ -0,0 +1,26 @@ +using System.Collections.Generic; + +namespace MSFSPopoutPanelManager +{ + public class UserData + { + public UserData() + { + Profiles = new List(); + } + + public List Profiles { get; set; } + } + + public class Profile + { + public Profile() + { + PopoutNames = new Dictionary(); + } + + public string Name { get; set; } + + public Dictionary PopoutNames; + } +} diff --git a/Welcome file.md b/Welcome file.md new file mode 100644 index 0000000..d1a6f3a --- /dev/null +++ b/Welcome file.md @@ -0,0 +1,174 @@ +# MSFS Pop Out Panel Manager + +MSFS Pop Out Panel Manager is an utility application for MSFS 2020 which help to save and position pop out panels such as PDF and MFD to be used by applications such as Sim Innovations Air Manager's overlay. This is a proof of concept application since I do not use Air Manager. I kept seeing people want an application like this in flightsimulator.com so I just create it. I welcome feedback and help to improve the accuracy and usefulness of this utility. + +## Pop Out Panel annoyance +In MSFS, by holding **Right-Alt** + **Left Clicking** selected instrumentation panels, these panels will pop out as floating windows that can be moved to a different monitor. Predefined toolbar menu windows such as ATC, Checklist, VFR Map, etc can also be popped out. For the MSFS predefined toolbar menu windows, they are easier to save and reposition in the each start of a flight using 3rd party windows position utility because these windows have a **title** for the pop out window. But panels such as PFD and MFD on G1000 or the FMS panel on G3000 do not have windows title. This makes remember there last used position more difficult and very annoying to resize and readjust their positions on every flight to be used by Air Manager. + +## Concept +The concept to determine the untitled panels is pretty simple: + + - User will pop out the untitled panel + - This utility will take a screenshot of each panel + - The screenshot image will be fed into OCR using [Tesseract](https://github.com/charlesw/tesseract/) + - The OCR text (mostly 'gibberish') will be compared to a predefined set of keyword text that is defined by the user. These comparison text can be customized and additional panel type and profile can be added by the user for more plane configuration. + - By being able to identify the untitled panel, this solves the problem of not able to easily reposition these panel in subsequent flight. + +## Workflow +: + + 1. User pops out the untitled panels such as MFD or PFD on G1000 + 2. User selects **Analyze** for the types of panel just got popped out + 3. User positions these panels in addition to any predefined toolbar menu windows to their liking + 4. User saves the position + 5. In next flight, user pops out the untitled panels + 6. User selects Analyze + 7. The windows will reposition themselves to their saved position. + +In addition, + + - Profiles can be added for each plane configuration + - Customizable + + which focuses on touch inputs to make your flying more enjoyable! It is designed for an iPad and Android tablet plus Arduino's input controls in mind to provide a simple DIY cockpit for all the casual sim fans out there. This application can also be used in any modern browser on PC or tablet with all features enabled. The initial release includes features such as: + + + +# Files + +StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible **offline!** + +## Create files and folders + +The file explorer is accessible using the button in left corner of the navigation bar. You can create a new file by clicking the **New file** button in the file explorer. You can also create folders by clicking the **New folder** button. + +## Switch to another file + +All your files and folders are presented as a tree in the file explorer. You can switch from one to another by clicking a file in the tree. + +## Rename a file + +You can rename the current file by clicking the file name in the navigation bar or by clicking the **Rename** button in the file explorer. + +## Delete a file + +You can delete the current file by clicking the **Remove** button in the file explorer. The file will be moved into the **Trash** folder and automatically deleted after 7 days of inactivity. + +## Export a file + +You can export the current file by clicking **Export to disk** in the menu. You can choose to export the file as plain Markdown, as HTML using a Handlebars template or as a PDF. + + +# Synchronization + +Synchronization is one of the biggest features of StackEdit. It enables you to synchronize any file in your workspace with other files stored in your **Google Drive**, your **Dropbox** and your **GitHub** accounts. This allows you to keep writing on other devices, collaborate with people you share the file with, integrate easily into your workflow... The synchronization mechanism takes place every minute in the background, downloading, merging, and uploading file modifications. + +There are two types of synchronization and they can complement each other: + +- The workspace synchronization will sync all your files, folders and settings automatically. This will allow you to fetch your workspace on any other device. + > To start syncing your workspace, just sign in with Google in the menu. + +- The file synchronization will keep one file of the workspace synced with one or multiple files in **Google Drive**, **Dropbox** or **GitHub**. + > Before starting to sync files, you must link an account in the **Synchronize** sub-menu. + +## Open a file + +You can open a file from **Google Drive**, **Dropbox** or **GitHub** by opening the **Synchronize** sub-menu and clicking **Open from**. Once opened in the workspace, any modification in the file will be automatically synced. + +## Save a file + +You can save any file of the workspace to **Google Drive**, **Dropbox** or **GitHub** by opening the **Synchronize** sub-menu and clicking **Save on**. Even if a file in the workspace is already synced, you can save it to another location. StackEdit can sync one file with multiple locations and accounts. + +## Synchronize a file + +Once your file is linked to a synchronized location, StackEdit will periodically synchronize it by downloading/uploading any modification. A merge will be performed if necessary and conflicts will be resolved. + +If you just have modified your file and you want to force syncing, click the **Synchronize now** button in the navigation bar. + +> **Note:** The **Synchronize now** button is disabled if you have no file to synchronize. + +## Manage file synchronization + +Since one file can be synced with multiple locations, you can list and manage synchronized locations by clicking **File synchronization** in the **Synchronize** sub-menu. This allows you to list and remove synchronized locations that are linked to your file. + + +# Publication + +Publishing in StackEdit makes it simple for you to publish online your files. Once you're happy with a file, you can publish it to different hosting platforms like **Blogger**, **Dropbox**, **Gist**, **GitHub**, **Google Drive**, **WordPress** and **Zendesk**. With [Handlebars templates](http://handlebarsjs.com/), you have full control over what you export. + +> Before starting to publish, you must link an account in the **Publish** sub-menu. + +## Publish a File + +You can publish your file by opening the **Publish** sub-menu and by clicking **Publish to**. For some locations, you can choose between the following formats: + +- Markdown: publish the Markdown text on a website that can interpret it (**GitHub** for instance), +- HTML: publish the file converted to HTML via a Handlebars template (on a blog for example). + +## Update a publication + +After publishing, StackEdit keeps your file linked to that publication which makes it easy for you to re-publish it. Once you have modified your file and you want to update your publication, click on the **Publish now** button in the navigation bar. + +> **Note:** The **Publish now** button is disabled if your file has not been published yet. + +## Manage file publication + +Since one file can be published to multiple locations, you can list and manage publish locations by clicking **File publication** in the **Publish** sub-menu. This allows you to list and remove publication locations that are linked to your file. + + +# Markdown extensions + +StackEdit extends the standard Markdown syntax by adding extra **Markdown extensions**, providing you with some nice features. + +> **ProTip:** You can disable any **Markdown extension** in the **File properties** dialog. + + +## SmartyPants + +SmartyPants converts ASCII punctuation characters into "smart" typographic punctuation HTML entities. For example: + +| |ASCII |HTML | +|----------------|-------------------------------|-----------------------------| +|Single backticks|`'Isn't this fun?'` |'Isn't this fun?' | +|Quotes |`"Isn't this fun?"` |"Isn't this fun?" | +|Dashes |`-- is en-dash, --- is em-dash`|-- is en-dash, --- is em-dash| + + +## KaTeX + +You can render LaTeX mathematical expressions using [KaTeX](https://khan.github.io/KaTeX/): + +The *Gamma function* satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via the Euler integral + +$$ +\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. +$$ + +> You can find more information about **LaTeX** mathematical expressions [here](http://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference). + + +## UML diagrams + +You can render UML diagrams using [Mermaid](https://mermaidjs.github.io/). For example, this will produce a sequence diagram: + +```mermaid +sequenceDiagram +Alice ->> Bob: Hello Bob, how are you? +Bob-->>John: How about you John? +Bob--x Alice: I am good thanks! +Bob-x John: I am good thanks! +Note right of John: Bob thinks a long
long time, so long
that the text does
not fit on a row. + +Bob-->Alice: Checking with John... +Alice->John: Yes... John, how are you? +``` + +And this will produce a flow chart: + +```mermaid +graph LR +A[Square Rect] -- Link text --> B((Circle)) +A --> C(Round Rect) +B --> D{Rhombus} +C --> D +``` diff --git a/WindowManager.cs b/WindowManager.cs new file mode 100644 index 0000000..e86a3d7 --- /dev/null +++ b/WindowManager.cs @@ -0,0 +1,143 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Runtime.InteropServices; +using System.Timers; + +namespace MSFSPopoutPanelManager +{ + public class WindowManager + { + [DllImport("user32.dll")] + public static extern bool GetWindowRect(IntPtr hwnd, ref Rect rectangle); + + [DllImport("user32.dll", EntryPoint = "SetWindowPos")] + public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, int wFlags); + + const short SWP_NOZORDER = 0X4; + const int SWP_SHOWWINDOW = 0x0040; + + private const int MSFS_CONNECTION_RETRY_TIMEOUT = 2000; + private Timer _timer; + private UserData _userData; + private MainWindow _simWindow; + private AnalysisEngine _analysisEngine; + + public WindowManager() + { + _analysisEngine = new AnalysisEngine(); + _analysisEngine.OnStatusUpdated += (source, e) => OnStatusUpdated?.Invoke(source, e); + _analysisEngine.OnOcrDebugged += (source, e) => OnOcrDebugged?.Invoke(source, e); + } + + public event EventHandler> OnStatusUpdated; + public event EventHandler OnSimulatorStarted; + public event EventHandler>> OnOcrDebugged; + + public void CheckSimulatorStarted() + { + // Autoconnect to flight simulator + _timer = new Timer(); + _timer.Interval = MSFS_CONNECTION_RETRY_TIMEOUT; + _timer.Enabled = true; + _timer.Elapsed += (source, e) => + { + var simulatorConnected = GetSimulatorWindow(); + + if (simulatorConnected) + { + OnSimulatorStarted?.Invoke(this, null); + _timer.Enabled = false; + } + }; + } + + public void Analyze(string profileName) + { + _analysisEngine.Analyze(ref _simWindow, profileName); + + // Load previously saved position if available + if(_simWindow.ChildWindowsData.Count > 0) + LoadProfile(profileName); + } + + public void SaveProfile(string profileName) + { + if (_userData == null) + _userData = new UserData(); + + var profile = _userData.Profiles.Find(x => x.Name == profileName); + if (profile == null) + { + profile = new Profile() { Name = profileName }; + _userData.Profiles.Add(profile); + } + + if (_simWindow.ChildWindowsData.Count > 0) + { + foreach (var window in _simWindow.ChildWindowsData) + { + var rect = new Rect(); + GetWindowRect(window.Handle, ref rect); + + if (!profile.PopoutNames.TryAdd(window.Title, rect)) + profile.PopoutNames[window.Title] = rect; + } + + FileManager.WriteUserData(_userData); + OnStatusUpdated?.Invoke(this, new EventArgs("Pop out panel positions have been saved.")); + } + } + + private void LoadProfile(string profileName) + { + _userData = FileManager.ReadUserData(); + var profile = _userData != null ? _userData.Profiles.Find(x => x.Name == profileName) : null; + + if(profile == null) + { + OnStatusUpdated?.Invoke(this, new EventArgs("Position settings for this profile does not exist. Please move pop out panels to desire location and click Save Positions.")); + return; + } + + if (_simWindow.ChildWindowsData.Count > 0) + { + foreach (var window in _simWindow.ChildWindowsData) + { + var coor = profile.PopoutNames.FirstOrDefault(w => w.Key == window.Title); + + if (!String.IsNullOrEmpty(coor.Key)) + { + var rect = coor.Value; + SetWindowPos(window.Handle, 0, rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top, SWP_NOZORDER | SWP_SHOWWINDOW); + } + } + + OnStatusUpdated?.Invoke(this, new EventArgs("Previously saved panel positions have been set.")); + } + } + + private bool GetSimulatorWindow() + { + // Get flight simulator process + foreach (var process in Process.GetProcesses()) + { + if (process.ProcessName == "FlightSimulator" && _simWindow == null) + { + _simWindow = new MainWindow() + { + ProcessId = process.Id, + ProcessName = process.ProcessName, + Title = "Microsoft Flight Simulator", + Handle = process.MainWindowHandle + }; + + return true; + } + } + + return false; + } + } +} \ No newline at end of file diff --git a/WindowManager.ico b/WindowManager.ico new file mode 100644 index 0000000..6966f96 Binary files /dev/null and b/WindowManager.ico differ diff --git a/config/ocrdata.json b/config/ocrdata.json new file mode 100644 index 0000000..34f7208 --- /dev/null +++ b/config/ocrdata.json @@ -0,0 +1,58 @@ +[ + // G1000 + { + "profile": "G1000", + "defaultProfile": "true", + "ocrImageScale": 1.0, + "evalData": [ + { + "popoutName": "PFD", + "data": [ "PFD", "XPDR", "Nearest", "MAP/HSI", "Ident", "Tmr/Ref" ] + }, + { + "popoutName": "MFD", + "data": [ "FUEL", "QTY", "GAL", "FFLOW GPH", "OIL", "PRESS", "ELECTRICAL", "BATT", "VOLTS", "Navigation Map" ] + } + ] + }, + // G3000 + { + "profile": "G3000", + "defaultProfile": "false", + "ocrImageScale": 1.0, + "evalData": [ + { + "popoutName": "FMS", + "data": [ "PFD Home", "NAV SOURCE", "Bearing 1", "Bearing 2", "Bearing", "Speed Bugs", "Timers", "Minimums", "PDF Settings" ] + }, + { + "popoutName": "PFD", + "data": [ "PFD", "PDF Map", "Ranges", "Range+", "Range-", "Active Nav", "WX Radar", "WX", "Controls" ] + }, + { + "popoutName": "MFD", + "data": [ "STBY", "PROP", "FUEL", "OIL", "OIL PSI", "PRESS", "CABIN PRESS", "DIFF PSI", "ELECTRICAL", "BATT", "VOLTS", "Navigation Map" ] + } + ] + }, + // Custom Sample Profile - delete this if you don't need it + { + "profile": "Custom Sample Profile", + "defaultProfile": "false", + "ocrImageScale": 1.0, + "evalData": [ + { + "popoutName": "Whatever Panel 1", + "data": [ "Text to detect 1", "Text to detect 2" ] + }, + { + "popoutName": "Whatever Panel 2", + "data": [ "Text to detect 3", "Text to detect 4" ] + }, + { + "popoutName": "Whatever Panel 3", + "data": [ "Text to detect 4", "Text to detect 4" ] + } + ] + } +] \ No newline at end of file diff --git a/images/ui-screenshot.png b/images/ui-screenshot.png new file mode 100644 index 0000000..8b36a23 Binary files /dev/null and b/images/ui-screenshot.png differ