Repository: tomighty/tomighty-windows Branch: master Commit: d0558daa4182 Files: 96 Total size: 781.6 KB Directory structure: gitextract_t938un78/ ├── .gitignore ├── GlobalAssemblyInfo.cs ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── Tomighty.Core/ │ ├── Duration.cs │ ├── Events/ │ │ ├── PomodoroCompleted.cs │ │ ├── PomodoroCountChanged.cs │ │ ├── TimeElapsed.cs │ │ ├── TimerStarted.cs │ │ └── TimerStopped.cs │ ├── ICountdownClock.cs │ ├── IEventHub.cs │ ├── IMutableUserPreferences.cs │ ├── IPomodoroEngine.cs │ ├── ITimer.cs │ ├── IUserPreferences.cs │ ├── IntervalType.cs │ ├── PomodoroEngine.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SynchronousEventHub.cs │ ├── Timer.cs │ └── Tomighty.Core.csproj ├── Tomighty.Core.Test/ │ ├── FakeEventHub.cs │ ├── PomodoroEngineTest.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Tomighty.Core.Test.csproj │ └── packages.config ├── Tomighty.Update.Swap/ │ ├── App.config │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Tomighty.Update.Swap.csproj ├── Tomighty.Windows/ │ ├── About/ │ │ ├── AboutWindow.Designer.cs │ │ ├── AboutWindow.cs │ │ ├── AboutWindow.resx │ │ └── AboutWindowPresenter.cs │ ├── App.config │ ├── AutoUpdate.cs │ ├── Directories.cs │ ├── ErrorReportWindow.Designer.cs │ ├── ErrorReportWindow.cs │ ├── ErrorReportWindow.resx │ ├── Events.cs │ ├── Flags.cs │ ├── Host.cs │ ├── IntervalTypeExtensions.cs │ ├── LICENSE.txt │ ├── Logger.cs │ ├── NOTICE.txt │ ├── Notifications/ │ │ ├── NotificationsPresenter.cs │ │ ├── SoundNotificationPlayer.cs │ │ └── Toasts.cs │ ├── Preferences/ │ │ ├── UserPreferences.cs │ │ ├── UserPreferencesForm.Designer.cs │ │ ├── UserPreferencesForm.cs │ │ ├── UserPreferencesForm.resx │ │ └── UserPreferencesPresenter.cs │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources/ │ │ ├── Toasts/ │ │ │ ├── app-updated.xml │ │ │ ├── first-run.xml │ │ │ └── interval-completed.xml │ │ ├── image_clock.tiff │ │ ├── image_stop.tiff │ │ ├── image_tomato_black.tiff │ │ ├── image_tomato_blue.tiff │ │ ├── image_tomato_green.tiff │ │ └── image_tomato_red.tiff │ ├── StartupEventFlags.cs │ ├── StartupEvents.cs │ ├── Timer/ │ │ ├── Taskbar.cs │ │ ├── TimerWindow.Designer.cs │ │ ├── TimerWindow.cs │ │ ├── TimerWindow.resx │ │ └── TimerWindowPresenter.cs │ ├── Tomighty.Windows.csproj │ ├── TomightyApplication.cs │ ├── Tray/ │ │ ├── ITrayMenu.cs │ │ ├── ITrayMenuMutator.cs │ │ ├── TrayIconController.cs │ │ ├── TrayMenu.cs │ │ └── TrayMenuController.cs │ ├── URLs.cs │ ├── Util/ │ │ └── Hash.cs │ ├── Version.cs │ └── packages.config ├── Tomighty.sln ├── dist.bat ├── pack.ps1 └── setup.nsi ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .idea/ packages/ bin/ obj/ build/ dist/ *~ .vs/ *.user ================================================ FILE: GlobalAssemblyInfo.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Reflection; using System.Resources; [assembly: AssemblyProduct("Tomighty")] [assembly: AssemblyCopyright("Copyright © 2010-2017 Celio Cidral Junior")] [assembly: NeutralResourcesLanguage("en-US")] ================================================ FILE: LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: NOTICE.txt ================================================ ========================================================================= == NOTICE file corresponding to section 4(d) of the Apache License, == == Version 2.0, in this case for the Tomighty distribution. == ========================================================================= Tomighty is a software developed by Célio Cidral Junior. You can find it at http://www.tomighty.org Pomodoro Technique® and Pomodoro™ are registered and filed trademarks owned by Francesco Cirillo. Tomighty is not affiliated by, associated with nor endorsed by Francesco Cirillo. Tomato icon designed by José Campos Clock icon designed by Thomas Le Bas ================================================ FILE: README.md ================================================ Tomighty for Windows ==================== Available for download at http://www.tomighty.org This repository contains the source code for the .NET version of Tomighty. If you are looking for the source code of the old, multiplatform (Java) version, see https://github.com/ccidral/tomighty Development Workflow ==================== We follow the development model presented by Vincent Driessen: http://nvie.com/posts/a-successful-git-branching-model/ Discuss ======= For development related discussions, please subscribe to: https://groups.google.com/forum/#!forum/tomighty-developers License ======= Tomighty for Windows is licensed under the terms of the Apache License 2.0. Read it here: https://www.apache.org/licenses/LICENSE-2.0.html ================================================ FILE: Tomighty.Core/Duration.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; namespace Tomighty { public struct Duration { public static readonly Duration Zero = new Duration(); public static Duration InSeconds(int seconds) => new Duration(seconds); public static Duration InMinutes(int minutes) => new Duration(minutes * 60); public Duration(int seconds) { if(seconds < 0) throw new ArgumentException($"Invalid duration of {seconds} seconds"); Seconds = seconds; } public int Seconds { get; } public int Minutes => Seconds / 60; public Duration AddSeconds(int delta) => new Duration(Seconds + delta); public override string ToString() => $"{GetType().Name}({Seconds})"; public string ToTimeString() { int minutes = Seconds / 60; int seconds = Seconds - minutes * 60; return $"{minutes.ToString("0#")}:{seconds.ToString("0#")}"; } public static bool operator ==(Duration a, Duration b) => a.Seconds == b.Seconds; public static bool operator !=(Duration a, Duration b) => a.Seconds != b.Seconds; } } ================================================ FILE: Tomighty.Core/Events/PomodoroCompleted.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Events { public class PomodoroCompleted { public PomodoroCompleted(Duration duration) { Duration = duration; } public Duration Duration { get; } } } ================================================ FILE: Tomighty.Core/Events/PomodoroCountChanged.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Events { public class PomodoroCountChanged { public PomodoroCountChanged(int count) { PomodoroCount = count; } public int PomodoroCount { get; } } } ================================================ FILE: Tomighty.Core/Events/TimeElapsed.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Events { public class TimeElapsed { public TimeElapsed(IntervalType intervalType, Duration duration, Duration remainingTime) { IntervalType = intervalType; Duration = duration; RemainingTime = remainingTime; } public Duration Duration { get; } public IntervalType IntervalType { get; } public Duration RemainingTime { get; } } } ================================================ FILE: Tomighty.Core/Events/TimerStarted.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Events { public class TimerStarted { public IntervalType IntervalType { get; } public Duration Duration { get; } public Duration RemainingTime { get; } public TimerStarted(IntervalType intervalType, Duration duration, Duration remainingTime) { IntervalType = intervalType; Duration = duration; RemainingTime = remainingTime; } } } ================================================ FILE: Tomighty.Core/Events/TimerStopped.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Events { public class TimerStopped { public IntervalType IntervalType { get; } public Duration Duration { get; } public Duration RemainingTime { get; } public bool IsIntervalCompleted => RemainingTime == Duration.Zero; public TimerStopped(IntervalType intervalType, Duration duration, Duration remainingTime) { IntervalType = intervalType; Duration = duration; RemainingTime = remainingTime; } } } ================================================ FILE: Tomighty.Core/ICountdownClock.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty { public interface ICountdownClock { Duration RemainingTime { get; } } } ================================================ FILE: Tomighty.Core/IEventHub.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; namespace Tomighty { public interface IEventHub { void Publish(object @event); void Subscribe(Action eventHandler); } } ================================================ FILE: Tomighty.Core/IMutableUserPreferences.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty { public interface IMutableUserPreferences : IUserPreferences { void SetIntervalDuration(IntervalType intervalType, Duration duration); new bool ShowToastNotifications { get; set; } new bool PlaySoundNotifications { get; set; } new int MaxPomodoroCount { get; set; } new bool AutoUpdate { get; set; } } } ================================================ FILE: Tomighty.Core/IPomodoroEngine.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty { public interface IPomodoroEngine { void StartTimer(IntervalType intervalType); void StopTimer(); void ResetPomodoroCount(); int PomodoroCount { get; } IntervalType SuggestedBreakType { get; } } } ================================================ FILE: Tomighty.Core/ITimer.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty { public interface ITimer : ICountdownClock { void Start(Duration duration, IntervalType intervalType); void Stop(); } } ================================================ FILE: Tomighty.Core/IUserPreferences.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; namespace Tomighty { public interface IUserPreferences { Duration GetIntervalDuration(IntervalType intervalType); int MaxPomodoroCount { get; } bool ShowToastNotifications { get; } bool PlaySoundNotifications { get; } bool AutoUpdate { get; } void Update(Action action); } } ================================================ FILE: Tomighty.Core/IntervalType.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty { public enum IntervalType { Pomodoro, ShortBreak, LongBreak } } ================================================ FILE: Tomighty.Core/PomodoroEngine.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using Tomighty.Events; namespace Tomighty { public class PomodoroEngine : IPomodoroEngine { private readonly ITimer timer; private readonly IUserPreferences userPreferences; private readonly IEventHub eventHub; private int _pomodoroCount; public PomodoroEngine(ITimer timer, IUserPreferences userPreferences, IEventHub eventHub) { this.timer = timer; this.userPreferences = userPreferences; this.eventHub = eventHub; eventHub.Subscribe(OnTimerStopped); } public int PomodoroCount { get { return _pomodoroCount; } private set { if (value != _pomodoroCount) { _pomodoroCount = value; eventHub.Publish(new PomodoroCountChanged(value)); } } } public IntervalType SuggestedBreakType => PomodoroCount != userPreferences.MaxPomodoroCount ? IntervalType.ShortBreak : IntervalType.LongBreak; public void StartTimer(IntervalType intervalType) { var duration = userPreferences.GetIntervalDuration(intervalType); timer.Start(duration, intervalType); } public void StopTimer() { timer.Stop(); } private void OnTimerStopped(TimerStopped timerStopped) { if (timerStopped.IntervalType == IntervalType.Pomodoro && timerStopped.IsIntervalCompleted) { PomodoroCompleted(timerStopped.Duration); } } private void PomodoroCompleted(Duration duration) { IncreasePomodoroCount(); eventHub.Publish(new PomodoroCompleted(duration)); } private void IncreasePomodoroCount() { var newCount = PomodoroCount + 1; PomodoroCount = newCount > userPreferences.MaxPomodoroCount ? 1 : newCount; } public void ResetPomodoroCount() { PomodoroCount = 0; } } } ================================================ FILE: Tomighty.Core/Properties/AssemblyInfo.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Tomighty Core")] [assembly: ComVisible(false)] [assembly: Guid("C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895")] ================================================ FILE: Tomighty.Core/SynchronousEventHub.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Collections.Generic; namespace Tomighty { public class SynchronousEventHub : IEventHub { private readonly IDictionary>> allSubscribers = new Dictionary>>(); public void Publish(object @event) { var eventType = @event.GetType(); if (!allSubscribers.ContainsKey(eventType)) return; foreach (var subscriber in allSubscribers[eventType]) { subscriber(@event); } } public void Subscribe(Action eventHandler) { List> subscribers; var eventType = typeof(T); if (allSubscribers.ContainsKey(eventType)) { subscribers = allSubscribers[eventType]; } else { subscribers = new List>(); allSubscribers[eventType] = subscribers; } subscribers.Add(e => eventHandler((T) e)); } } } ================================================ FILE: Tomighty.Core/Timer.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Timers; using Tomighty.Events; using SystemTimer = System.Timers.Timer; namespace Tomighty { public class Timer : ITimer { private const int IntervalInSeconds = 1; private readonly SystemTimer systemTimer = new SystemTimer(); private readonly IEventHub eventHub; // Mutable fields private Duration remainingTime = Duration.Zero; private IntervalType intervalType; private Duration duration; public Timer(IEventHub eventHub) { this.eventHub = eventHub; systemTimer.Interval = IntervalInSeconds * 1000; systemTimer.AutoReset = true; systemTimer.Elapsed += SystemTimerOnElapsed; } public Duration RemainingTime => remainingTime; public void Start(Duration duration, IntervalType intervalType) { this.duration = duration; this.intervalType = intervalType; remainingTime = duration; systemTimer.Start(); eventHub.Publish(new TimerStarted(intervalType, duration, remainingTime)); } public void Stop() { systemTimer.Stop(); eventHub.Publish(new TimerStopped(intervalType, duration, remainingTime)); remainingTime = Duration.Zero; } private void DecreaseRemainingTime(int seconds) { remainingTime = remainingTime.AddSeconds(-seconds); eventHub.Publish(new TimeElapsed(intervalType, duration, remainingTime)); if (remainingTime.Seconds == 0) { Stop(); } } private void SystemTimerOnElapsed(object sender, ElapsedEventArgs elapsedEventArgs) { DecreaseRemainingTime(IntervalInSeconds); } } } ================================================ FILE: Tomighty.Core/Tomighty.Core.csproj ================================================  Debug AnyCPU {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895} Library Properties Tomighty Tomighty.Core v4.5 512 AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 GlobalAssemblyInfo.cs ================================================ FILE: Tomighty.Core.Test/FakeEventHub.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Collections.Generic; using System.Linq; namespace Tomighty.Test { public class FakeEventHub : IEventHub { private readonly List subscribers = new List(); private readonly List publishedEvents = new List(); public IEnumerable PublishedEvents() { return publishedEvents.Where(e => e.GetType() == typeof(T)).Select(e => (T) e); } public T LastEvent() { return PublishedEvents().LastOrDefault(); } public void Publish(object @event) { publishedEvents.Add(@event); foreach (var subscriber in subscribers) { subscriber.Handle(@event); } } public void Subscribe(Action eventHandler) { Action proxy = @event => eventHandler((T) @event); subscribers.Add(new Subscriber(typeof(T), proxy)); } private class Subscriber { private readonly Type eventType; private readonly Action eventHandler; public Subscriber(Type eventType, Action eventHandler) { this.eventType = eventType; this.eventHandler = eventHandler; } public void Handle(object @event) { if (eventType == @event.GetType()) { eventHandler(@event); } } } } } ================================================ FILE: Tomighty.Core.Test/PomodoroEngineTest.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Linq; using NSubstitute; using NUnit.Framework; using Tomighty.Events; namespace Tomighty.Test { [TestFixture] public class PomodoroEngineTest { private IPomodoroEngine engine; private IUserPreferences userPreferences; private ITimer timer; private FakeEventHub eventHub; [SetUp] public void SetUp() { userPreferences = Substitute.For(); timer = Substitute.For(); eventHub = new FakeEventHub(); engine = new PomodoroEngine(timer, userPreferences, eventHub); } [Test] public void Initial_pomodoro_count_is_zero() { Assert.AreEqual(0, engine.PomodoroCount); } [Test] public void Start_the_timer() { var duration = Duration.InMinutes(25); var intervalType = IntervalType.Pomodoro; userPreferences.GetIntervalDuration(intervalType).Returns(duration); engine.StartTimer(intervalType); timer.Received().Start(duration, intervalType); } [Test] public void Stop_the_timer() { engine.StopTimer(); timer.Received().Stop(); } [Test] public void Publish_PomodoroCompleted_event_when_timer_stops_with_zero_remaining_time() { var remainingTime = Duration.Zero; var duration = Duration.InMinutes(25); var pomodoroCompletedEvent = new TimerStopped(IntervalType.Pomodoro, duration, remainingTime); eventHub.Publish(pomodoroCompletedEvent); var pomodoroCompleted = eventHub.PublishedEvents().Single(); Assert.AreEqual(duration, pomodoroCompleted.Duration); } [Test] public void Do_not_publish_PomodoroCompleted_event_when_timer_stops_with_remaining_time_greater_than_zero() { var remainingTime = Duration.InSeconds(1); var duration = Duration.InMinutes(25); eventHub.Publish(new TimerStopped(IntervalType.Pomodoro, duration, remainingTime)); var pomodoroCompletedEvents = eventHub.PublishedEvents(); Assert.AreEqual(0, pomodoroCompletedEvents.Count()); } [Test] public void Do_not_publish_PomodoroCompleted_event_when_timer_stops_and_interval_type_is_not_Pomodoro() { var remainingTime = Duration.Zero; var duration = Duration.InMinutes(25); eventHub.Publish(new TimerStopped(IntervalType.ShortBreak, duration, remainingTime)); var pomodoroCompletedEvents = eventHub.PublishedEvents(); Assert.AreEqual(0, pomodoroCompletedEvents.Count()); } [Test] public void Increase_pomodoro_count_when_timer_stops_with_zero_remaining_time() { userPreferences.MaxPomodoroCount.Returns(999); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(1, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(2, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(3, engine.PomodoroCount); } [Test] public void Reset_pomodoro_count_when_it_is_greater_than_limit_defined_by_user_preferences() { userPreferences.MaxPomodoroCount.Returns(3); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(1, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(2, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(3, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(1, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(2, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(3, engine.PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(1, engine.PomodoroCount); } [Test] public void Suggested_timer_action_is_ShortBreak_when_pomodoro_count_is_different_than_user_defined_count_limit() { userPreferences.MaxPomodoroCount.Returns(3); // pomodoro count: 0 Assert.AreEqual(IntervalType.ShortBreak, engine.SuggestedBreakType); // pomodoro count: 1 eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(IntervalType.ShortBreak, engine.SuggestedBreakType); // pomodoro count: 2 eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(IntervalType.ShortBreak, engine.SuggestedBreakType); } [Test] public void Suggested_timer_action_is_LongBreak_when_pomodoro_count_is_equal_to_user_defined_count_limit() { userPreferences.MaxPomodoroCount.Returns(3); eventHub.Publish(PomodoroCompletedEvent()); // pomodoro count: 1 eventHub.Publish(PomodoroCompletedEvent()); // pomodoro count: 2 eventHub.Publish(PomodoroCompletedEvent()); // pomodoro count: 3 Assert.AreEqual(IntervalType.LongBreak, engine.SuggestedBreakType); } [Test] public void Manually_reset_pomodoro_count() { userPreferences.MaxPomodoroCount.Returns(999); eventHub.Publish(PomodoroCompletedEvent()); eventHub.Publish(PomodoroCompletedEvent()); eventHub.Publish(PomodoroCompletedEvent()); engine.ResetPomodoroCount(); Assert.AreEqual(0, engine.PomodoroCount); } [Test] public void Publish_event_when_pomodoro_count_changes() { userPreferences.MaxPomodoroCount.Returns(3); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(1, eventHub.PublishedEvents().Count()); Assert.AreEqual(1, eventHub.LastEvent().PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(2, eventHub.PublishedEvents().Count()); Assert.AreEqual(2, eventHub.LastEvent().PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(3, eventHub.PublishedEvents().Count()); Assert.AreEqual(3, eventHub.LastEvent().PomodoroCount); eventHub.Publish(PomodoroCompletedEvent()); Assert.AreEqual(4, eventHub.PublishedEvents().Count()); Assert.AreEqual(1, eventHub.LastEvent().PomodoroCount); engine.ResetPomodoroCount(); Assert.AreEqual(5, eventHub.PublishedEvents().Count()); Assert.AreEqual(0, eventHub.LastEvent().PomodoroCount); } private static TimerStopped PomodoroCompletedEvent() { var remainingTime = Duration.Zero; var duration = Duration.InMinutes(25); return new TimerStopped(IntervalType.Pomodoro, duration, remainingTime); } } } ================================================ FILE: Tomighty.Core.Test/Properties/AssemblyInfo.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Tomighty Core Tests")] [assembly: ComVisible(false)] [assembly: Guid("CAC6A930-C0E3-422B-A49E-7DE000DC9A40")] ================================================ FILE: Tomighty.Core.Test/Tomighty.Core.Test.csproj ================================================  Debug AnyCPU {CAC6A930-C0E3-422B-A49E-7DE000DC9A40} Library Properties Tomighty Tomighty.Core.Test v4.5 512 AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 ..\packages\NSubstitute.2.0.0-rc\lib\net45\NSubstitute.dll ..\packages\NUnit.3.4.1\lib\net45\nunit.framework.dll GlobalAssemblyInfo.cs {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895} Tomighty.Core ================================================ FILE: Tomighty.Core.Test/packages.config ================================================  ================================================ FILE: Tomighty.Update.Swap/App.config ================================================  ================================================ FILE: Tomighty.Update.Swap/Program.cs ================================================ using System; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Text.RegularExpressions; using System.Threading; using Tomighty.Windows; namespace Tomighty.Update.Swap { static class Program { private static readonly Logger logger = new Logger("swap"); [STAThread] static void Main() { string[] args = Environment.GetCommandLineArgs(); if (args.Length != 5) { logger.Error($"Wrong number of arguments: {args.Length}, exiting now"); return; } var processId = args[1]; var exePath = args[2]; var sourcePackage = args[3]; var restart = args[4]; if (!IsInteger(processId)) { logger.Error($"Invalid process id: {processId}"); return; } if (!File.Exists(exePath)) { logger.Error($"File not found: {exePath}"); return; } if (!File.Exists(sourcePackage)) { logger.Error($"File not found: {sourcePackage}"); return; } var targetDir = Path.GetDirectoryName(exePath); try { Swap(int.Parse(processId), exePath, sourcePackage, targetDir, restart == "true"); } catch (Exception e) { logger.Error(e); } } private static void Swap(int processId, string exePath, string sourcePackage, string targetDir, bool restart) { try { logger.Info($"Waiting for process {processId} to exit"); Process.GetProcessById(processId).WaitForExit(); logger.Info($"Process {processId} has exited"); } catch (ArgumentException) { logger.Info($"Process {processId} doesn't exist, probably exited"); } Thread.Sleep(500); logger.Info($"Deleting directory contents: {targetDir}"); DeleteDirectoryContents(targetDir); logger.Info($"Extracting files from `{sourcePackage}` into `{targetDir}`"); ZipFile.ExtractToDirectory(sourcePackage, targetDir); if (restart) { logger.Info($"Starting process {exePath}"); Process.Start(exePath); } StartupEventFlags.Flags.TurnOn(StartupEventFlags.AppUpdatedFlag); logger.Info($"Done"); } private static void DeleteDirectoryContents(string targetDir) { foreach (var file in Directory.GetFiles(targetDir)) { File.Delete(file); } foreach (var dir in Directory.GetDirectories(targetDir)) { new DirectoryInfo(dir).Delete(true); } } private static bool IsInteger(string s) { return s != null && Regex.IsMatch(s, @"^\d+$"); } } } ================================================ FILE: Tomighty.Update.Swap/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Tomighty.Update.Swap")] [assembly: ComVisible(false)] [assembly: Guid("3fc0dc20-6120-4cd7-8f54-a1ca6f8886bf")] ================================================ FILE: Tomighty.Update.Swap/Properties/Settings.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Tomighty.Update.Swap.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } } ================================================ FILE: Tomighty.Update.Swap/Properties/Settings.settings ================================================  ================================================ FILE: Tomighty.Update.Swap/Tomighty.Update.Swap.csproj ================================================  Debug AnyCPU {3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF} WinExe Properties Tomighty.Update.Swap Tomighty.Update.Swap v4.5.2 512 true AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 Directories.cs Flags.cs Logger.cs StartupEventFlags.cs SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings True ================================================ FILE: Tomighty.Windows/About/AboutWindow.Designer.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Windows.About { partial class AboutWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.titleLabel = new System.Windows.Forms.Label(); this.urlLabel = new System.Windows.Forms.Label(); this.licenseTextBox = new System.Windows.Forms.TextBox(); this.closeButton = new System.Windows.Forms.Button(); this.productVersionTextBox = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // titleLabel // this.titleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.titleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.titleLabel.Location = new System.Drawing.Point(12, 9); this.titleLabel.Name = "titleLabel"; this.titleLabel.Size = new System.Drawing.Size(612, 40); this.titleLabel.TabIndex = 1; this.titleLabel.Text = "Tomighty"; this.titleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // urlLabel // this.urlLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.urlLabel.Location = new System.Drawing.Point(12, 49); this.urlLabel.Name = "urlLabel"; this.urlLabel.Size = new System.Drawing.Size(612, 20); this.urlLabel.TabIndex = 2; this.urlLabel.Text = "http://www.tomighty.org"; this.urlLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // licenseTextBox // this.licenseTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.licenseTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.licenseTextBox.Location = new System.Drawing.Point(18, 91); this.licenseTextBox.Multiline = true; this.licenseTextBox.Name = "licenseTextBox"; this.licenseTextBox.ReadOnly = true; this.licenseTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.licenseTextBox.Size = new System.Drawing.Size(606, 282); this.licenseTextBox.TabIndex = 3; this.licenseTextBox.WordWrap = false; // // closeButton // this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.closeButton.Location = new System.Drawing.Point(549, 379); this.closeButton.Name = "closeButton"; this.closeButton.Size = new System.Drawing.Size(75, 23); this.closeButton.TabIndex = 0; this.closeButton.Text = "Close"; this.closeButton.UseVisualStyleBackColor = true; this.closeButton.Click += new System.EventHandler(this.closeButton_Click); // // productVersionTextBox // this.productVersionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.productVersionTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; this.productVersionTextBox.Location = new System.Drawing.Point(18, 72); this.productVersionTextBox.Name = "productVersionTextBox"; this.productVersionTextBox.ReadOnly = true; this.productVersionTextBox.Size = new System.Drawing.Size(606, 13); this.productVersionTextBox.TabIndex = 4; this.productVersionTextBox.Text = ""; this.productVersionTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // AboutWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(636, 414); this.Controls.Add(this.productVersionTextBox); this.Controls.Add(this.closeButton); this.Controls.Add(this.licenseTextBox); this.Controls.Add(this.urlLabel); this.Controls.Add(this.titleLabel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AboutWindow"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "About Tomighty"; this.Load += new System.EventHandler(this.AboutForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label titleLabel; private System.Windows.Forms.Label urlLabel; private System.Windows.Forms.TextBox licenseTextBox; private System.Windows.Forms.Button closeButton; private System.Windows.Forms.TextBox productVersionTextBox; } } ================================================ FILE: Tomighty.Windows/About/AboutWindow.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.IO; using System.Reflection; using System.Windows.Forms; namespace Tomighty.Windows.About { public partial class AboutWindow : Form { public AboutWindow() { InitializeComponent(); } private void AboutForm_Load(object sender, EventArgs e) { var version = Assembly.GetExecutingAssembly().GetName().Version; titleLabel.Text = $"Tomighty {version.Major}.{version.Minor}.{version.Build}"; licenseTextBox.Text = File.ReadAllText(@"LICENSE.txt"); productVersionTextBox.Text = Version.Product; } private void closeButton_Click(object sender, EventArgs e) { Close(); Dispose(); } } } ================================================ FILE: Tomighty.Windows/About/AboutWindow.resx ================================================  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 ================================================ FILE: Tomighty.Windows/About/AboutWindowPresenter.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Windows.Forms; namespace Tomighty.Windows.About { internal class AboutWindowPresenter { private AboutWindow window; public void Show() { if (window == null) { window = new AboutWindow(); window.FormClosed += OnWindowClosed; } if (window.Visible) { window.Focus(); } else { window.ShowDialog(); } } private void OnWindowClosed(object sender, FormClosedEventArgs e) { window.Dispose(); window = null; } } } ================================================ FILE: Tomighty.Windows/App.config ================================================  ================================================ FILE: Tomighty.Windows/AutoUpdate.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Diagnostics; using System.IO; using System.Net.Http; using System.Reflection; using System.Threading.Tasks; using System.Windows.Forms; using Tomighty.Windows.Preferences; using Tomighty.Windows.Util; namespace Tomighty.Windows { internal class AutoUpdate { private const int CheckIntervalInHours = 72; private static readonly Logger logger = new Logger("update"); private readonly UserPreferences userPreferences; public AutoUpdate(UserPreferences userPreferences) { this.userPreferences = userPreferences; Application.ApplicationExit += Update; } private static string LatestPackageFile => Path.Combine(Directories.AppData, "latest.zip"); private static string LastDownloadedVersionFile => Path.Combine(Directories.AppData, "latest.version"); private static string SwapProgramFile => Path.Combine(Directories.ProgramLocation, "Tomighty.Update.Swap.exe"); public void Start() { if (userPreferences.AutoUpdate) { Task.Run(async () => { try { await CheckIfNecessary(); } catch(Exception e) { logger.Error(e); } }); } } private async Task CheckIfNecessary() { if (IsTimeToCheck) { await Check(); } } public bool IsTimeToCheck => !File.Exists(LastDownloadedVersionFile) || (DateTime.Now - LastCheckTime).TotalHours > CheckIntervalInHours; private static DateTime LastCheckTime => File.GetLastWriteTime(LastDownloadedVersionFile); private static void ResetLastCheckTime() { if (File.Exists(LastDownloadedVersionFile)) { File.SetLastWriteTime(LastDownloadedVersionFile, DateTime.Now); } else { File.Create(LastDownloadedVersionFile).Close(); } } private async Task Check() { logger.Info("Checking"); var client = new HttpClient(); var result = await client.GetAsync(URLs.UpdateFeed); if (result.StatusCode != System.Net.HttpStatusCode.OK) { logger.Error($"Received {result.StatusCode} from {URLs.UpdateFeed}"); return; } var content = await result.Content.ReadAsStringAsync(); var lines = content.Split('\t'); if (lines.Length != 3) { logger.Error($"Invalid feed file"); return; } var latestVersion = lines[0]; if (latestVersion == GetLastDownloadedVersion()) { logger.Info($"Latest version has already been downloaded: {latestVersion}"); ResetLastCheckTime(); return; } if (Version.Product == latestVersion) { logger.Info($"Already running the latest version: {latestVersion}"); ResetLastCheckTime(); return; } var url = lines[1]; var sha256 = lines[2]; if (await Download(url, sha256)) { File.WriteAllText(LastDownloadedVersionFile, latestVersion); } } private async Task Download(string url, string expectedSha256) { logger.Info($"Downloading {url}"); var client = new HttpClient(); var result = await client.GetAsync(url); if (result.StatusCode != System.Net.HttpStatusCode.OK) { logger.Error($"Received {result.StatusCode} from {url}"); return false; } var tempFile = LatestPackageFile + ".tmp"; using (var input = await result.Content.ReadAsStreamAsync()) { using (var output = new FileStream(tempFile, FileMode.Create)) { await input.CopyToAsync(output); } } logger.Info($"Download completed"); using (var stream = new FileStream(tempFile, FileMode.Open)) { var sha256 = Hash.Sha256(stream); if (sha256 != expectedSha256) { logger.Error($"Integrity error: expected hash {expectedSha256} instead of {sha256}"); return false; } } if (File.Exists(LatestPackageFile)) { File.Delete(LatestPackageFile); } File.Move(tempFile, LatestPackageFile); logger.Info($"New version available at {LatestPackageFile}"); return true; } private void Update(object sender, EventArgs e) { try { if (ShouldUpdate) { logger.Info($"Updating from version {Version.Product} to {GetLastDownloadedVersion()}"); var processId = Process.GetCurrentProcess().Id; var tomighty = Assembly.GetEntryAssembly().Location; var restart = false; var tempSwapProgramFile = CopySwapProgramFileToTempDir(); Process.Start(tempSwapProgramFile, $"{processId} \"{tomighty}\" \"{LatestPackageFile}\" {restart}"); } } catch(Exception ex) { logger.Error(ex); } } private static string CopySwapProgramFileToTempDir() { var file = Path.Combine(Path.GetTempPath(), Path.GetFileName(SwapProgramFile)); File.Copy(SwapProgramFile, file, true); return file; } public bool ShouldUpdate => userPreferences.AutoUpdate && IsOutdated && File.Exists(LatestPackageFile); private static bool IsOutdated { get { string latest = GetLastDownloadedVersion(); return !string.IsNullOrEmpty(latest) && Version.Product != latest; } } private static string GetLastDownloadedVersion() { var file = LastDownloadedVersionFile; return File.Exists(file) ? File.ReadAllText(file) : null; } } } ================================================ FILE: Tomighty.Windows/Directories.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.IO; using System.Reflection; namespace Tomighty.Windows { internal class Directories { public static string ProgramLocation => Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); public static string AppData { get { var path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Tomighty"); if (!Directory.Exists(path)) Directory.CreateDirectory(path); return path; } } } } ================================================ FILE: Tomighty.Windows/ErrorReportWindow.Designer.cs ================================================ namespace Tomighty.Windows { partial class ErrorReportWindow { /// /// 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(ErrorReportWindow)); this.label1 = new System.Windows.Forms.Label(); this.errorDescription = new System.Windows.Forms.TextBox(); this.reportButton = new System.Windows.Forms.Button(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label(); this.progressLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label1.Location = new System.Drawing.Point(55, 19); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(326, 46); this.label1.TabIndex = 1; this.label1.Text = "Oops! Looks like you found a bug in Tomighty. Below you can see the ugly details " + "of the bug. There\'s nothing to worry about, it\'s totally safe to close Tomighty." + " We apologize for the inconvenience."; // // errorDescription // this.errorDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.errorDescription.BackColor = System.Drawing.Color.White; this.errorDescription.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.errorDescription.Location = new System.Drawing.Point(17, 68); this.errorDescription.Multiline = true; this.errorDescription.Name = "errorDescription"; this.errorDescription.ReadOnly = true; this.errorDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.errorDescription.Size = new System.Drawing.Size(364, 147); this.errorDescription.TabIndex = 2; this.errorDescription.WordWrap = false; // // reportButton // this.reportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.reportButton.Location = new System.Drawing.Point(271, 274); this.reportButton.Name = "reportButton"; this.reportButton.Size = new System.Drawing.Size(110, 23); this.reportButton.TabIndex = 0; this.reportButton.Text = "Send Report Error"; this.reportButton.UseVisualStyleBackColor = true; this.reportButton.Click += new System.EventHandler(this.reportButton_Click); // // pictureBox1 // this.pictureBox1.Image = global::Tomighty.Windows.Properties.Resources.image_warning; this.pictureBox1.Location = new System.Drawing.Point(17, 19); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(32, 32); this.pictureBox1.TabIndex = 3; this.pictureBox1.TabStop = false; // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label2.Location = new System.Drawing.Point(17, 230); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(364, 41); this.label2.TabIndex = 4; this.label2.Text = "Anyway, it would be great if you send us an error report by clicking the button b" + "elow. Don\'t worry, no personal information will be sent, we only send the techni" + "cal tidbits about this error."; // // progressLabel // this.progressLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.progressLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.progressLabel.Location = new System.Drawing.Point(17, 274); this.progressLabel.Name = "progressLabel"; this.progressLabel.Size = new System.Drawing.Size(248, 23); this.progressLabel.TabIndex = 5; this.progressLabel.Text = "Progress message"; this.progressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.progressLabel.Visible = false; // // ErrorReportWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(397, 313); this.Controls.Add(this.progressLabel); this.Controls.Add(this.label2); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.reportButton); this.Controls.Add(this.errorDescription); this.Controls.Add(this.label1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ErrorReportWindow"; this.Padding = new System.Windows.Forms.Padding(4); this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Program Error - Tomighty"; this.TopMost = true; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ErrorReportWindow_FormClosed); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox errorDescription; private System.Windows.Forms.Button reportButton; private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label progressLabel; } } ================================================ FILE: Tomighty.Windows/ErrorReportWindow.cs ================================================ using System; using System.ComponentModel; using System.Drawing; using System.IO; using System.Net.Http; using System.Runtime.Serialization; using System.Runtime.Serialization.Json; using System.Text; using System.Windows.Forms; namespace Tomighty.Windows { public partial class ErrorReportWindow : Form { public ErrorReportWindow(Exception exception) { InitializeComponent(); errorDescription.Text = exception.ToString(); } private void ErrorReportWindow_FormClosed(object sender, FormClosedEventArgs e) { Application.Exit(); } private void reportButton_Click(object sender, EventArgs e) { reportButton.Enabled = false; progressLabel.Text = "Sending error report, please wait..."; progressLabel.ForeColor = Color.Blue; progressLabel.Visible = true; var worker = new BackgroundWorker(); worker.DoWork += SendErrorReport; worker.RunWorkerCompleted += OnErrorReportSent; worker.RunWorkerAsync(); } private void SendErrorReport(object sender, EventArgs e) { var data = GetReportData(); var client = new HttpClient(); var json = ToJson(data); var content = new StringContent(json, Encoding.UTF8, "application/json"); var task = client.PostAsync(URLs.ErrorReport, content); task.Wait(); if (task.Exception != null) throw new Exception("Failed to send error report", task.Exception); } private static string ToJson(ReportData data) { var serializer = new DataContractJsonSerializer(typeof(ReportData)); var stream = new MemoryStream(); serializer.WriteObject(stream, data); return Encoding.UTF8.GetString(stream.ToArray()); } private ReportData GetReportData() { return new ReportData { version = Version.Product, host_id = Host.Id, error = errorDescription.Text }; } private void OnErrorReportSent(object sender, RunWorkerCompletedEventArgs e) { var success = e.Error == null; if (success) { progressLabel.Text = "Done"; progressLabel.ForeColor = Color.Green; MessageBox.Show(this, "Thanks for sending the error report. Bye!", "Error Report Sent", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); Application.Exit(); } else { reportButton.Enabled = true; progressLabel.Text = "Failed to send report. Try again later."; progressLabel.ForeColor = Color.Red; } } [DataContract] private class ReportData { [DataMember] public string version { get; set; } [DataMember] public string host_id { get; set; } [DataMember] public string error { get; set; } } } } ================================================ FILE: Tomighty.Windows/ErrorReportWindow.resx ================================================  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 AAABAAYAAAAAAAEAIAAoIAQAZgAAAICAAAABACAAKAgBAI4gBABAQAAAAQAgAChCAAC2KAUAMDAAAAEA IACoJQAA3moFACAgAAABACAAqBAAAIaQBQAQEAAAAQAgAGgEAAAuoQUAKAAAAAABAAAAAgAAAQAgAAAA AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEASt4BAEreAQBK3wIASt4EAErdBABJ3AIARtsBAEfbAQBH 2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH 2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH2wEAR9sBAEfbAQBH 2wEAR9sBAEbbAQBK3AMASt4EAEneAwBJ3QIASt4BAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABJ3QEASd0CAEreBABJ3gQAStsBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8CAErdBABK3gMASd8CAEreAQBK 3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBJ 3gEASt4EAEnfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3QcAS98WAErfOQBK3lwASt6FAErepwBK 3q4ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK 3q0ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK3q0ASt6tAErerQBK 3q0ASt6tAErerQBK3q0ASt6uAErenwBK3nUASd5SAErdLgBL3hAASd4EAAAAAAAAAAAAAAAAAAAAAAAA AAAASuABAEreBABJ3gIASt8BAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAQBK3gIASt0FAEveAwAA AAAAAAAAAAAAAAAAAAAATuMBAEjbDABJ3SwASt5aAEreiwBK3rgASt7fAEre9QBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7xAEre1ABK3qwASt57AEreSgBJ 3h4ASt0HAAAAAAAAAAAAAAAAAAAAAABF2QEAS98EAEreBABJ3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gIASt0EAEreAwAAAAAAAAAAAAAAAAAA AAAAS9oDAEneIwBK3lQASt6QAErewgBK3uoASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3vsASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK 3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK 3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt77AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt74AEre4ABK3rQASt59AEneRABL4BMASNcBAAAAAAAAAAAAAAAAAAAAAABJ3gQASt4EAEvfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEASd4DAErdBABK2wEAAAAAAAAAAAAAAAAATOQFAEneNABK 3nAASt6eAEre0gBK3vkASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/ABK3v4ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt79AEre+wBK 3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7xAErewgBK3pAASt5fAEnfIQBC2AEAAAAAAAAAAAAA AAAAS94CAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8BAEneAwBK3QMAAAAAAAAAAAAAAAAASuABAEneJgBK3WUASt6YAEre1QBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt79AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v4ASt7+AEre/ABK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3vcASt7FAEreiQBK 3lEATN8VAAAAAABJ3QEAAAAAAEnaAQBK3gQASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErfAQBK3gMASt4DAAAAAAAAAAAAAAAAAEviBQBJ3TgASt5+AErexABK3vkASt7/AEre/wBK 3v8ASt7/AEre/ABK3vsASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt79AEre+gBK3v0ASt7/AEre/wBK 3v8ASt7/AEre7QBK3qwASt5oAErfIwBA5wEAAAAAAAAAAABH2wEASt0EAEveAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAEreAwAAAAAAAAAAAAAAAABK4AkASd5OAErekwBK3tYASt7+AEre/wBK3v8ASt7/AEre/ABK 3vsASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt77AEre/gBK3v8ASt7/AEre/wBK3vkASt7DAEregABK3jQATtYBAAAAAAAAAAAASuABAEneBABK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAQBK 3gMASd8CAAAAAAAAAAAATeAEAEreOQBK3osASt7dAEre/wBK3v4ASt7/AEre/gBK3vsASt78AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3vwASt7/AEre/wBK3v8ASt78AErexABK3nEAS94hAAAAAAAA AAAAAAAAAEneAwBJ3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0CAEneAwAA AAAAReABAAAAAABK3iIASt59AEre1wBK3v4ASt7/AEre/wBK3v0ASt76AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt77AEre/gBK3v8ASt7/AEre+ABK 3r0ASt5hAEncDwAAAAAAAAAAAEngAQBJ3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASd0CAAAAAAAA AAAATd8KAEreUQBK3rAASt73AEre/wBK3v8ASt7+AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/ABK 3v8ASt7+AEre/wBK3uYASt6QAEjdNABK3AIAAAAAAAAAAABJ3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEndAwBK3QEAR+IBAAAAAABK 3SAASt6HAEre4wBK3v8ASt7+AEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v0ASt7/AEre/wBK3v0ASt7LAEreYQBJ3gsAAAAAAAAAAABL3gIASt0CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94DAEzeAQAAAAAAR94BAEreOABK 3p8ASt7zAEre/wBK3v8ASt79AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt7+AEre/gBK3v8ASt7gAErefQBK3xwAAAAAAAAAAABJ 3gIASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEjgAQBK3QMAS9wBAAAAAABV5AIASd5LAErewgBK 3v4ASt7/AEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK3v8ASt70AErenwBK 3SsAAAAAAAAAAABK3QIASd4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAwBJ3QIAAAAAAEvZBABK3lIASt7IAEre/wBK 3v8ASt7+AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/gBK 3v8ASt75AErepABK3jEAAAAAAAAAAABJ3QIASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAgAAAAAAR+IGAEreXQBK3s8ASt7/AEre/wBK 3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/gBK3v8ASt76AErerQBK3jkAAAAAAEXZAQBK3gMAS98CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt8CAAAAAAAAAAAASd1HAEreyABK3v8ASt7+AEre/QBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt78AEre/gBK3v8ASt77AEreogBL3yYAAAAAAEveAQBK3wMAS94BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAErfAQBK3gMASN0BAAAAAABJ3jIASt6xAEre/wBK3v8ASt79AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/QBK3v8ASt71AErekQBK3hwAAAAAAEzeAgBL 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwBJ3gIAAAAAAEndFwBK3pwASt78AEre/wBK3v0ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/gBK3v8ASt7wAErecgBN 3gYAAAAAAEreAwBJ3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd0BAErdAwAAAAAASeAFAEreaABK3ukASt7/AEre/QBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/gBK 3v8ASt7NAErfQQAAAAAAS94BAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd8DAEneAgAAAAAASt5AAEreygBK3v8ASt7+AEre/ABK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt78AEre/wBK3v0ASt6jAEreHAAAAAAAS94DAErfAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3wEASt4DAAAAAABI3A0ASt6OAEre/ABK3v8ASt79AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3ukASt5ZAAAAAABH3gEASt4DAEveAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABJ3gIAS94CAAAAAABK3kMASt7YAEre/wBK3vwASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7+AEre/wBK3q8ASt8eAAAAAABL3wMASd4BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEngAQBJ3gQAAAAAAErgCQBK3pQASt7/AEre/wBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre7wBK3l4AAAAAAEndAgBL 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAQBL3gMAAAAAAEneLgBK3swASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v4ASt7/AEreoABK 3Q8AAAAAAErfAwBJ3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEndAgBL3AIAAAAAAEreaABK3vQASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3v8ASt7WAErePAAAAAAAS94DAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAAS94NAErepwBK3v8ASt79AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/wBK3vwASt5zAAAAAABK3QIASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd8BAEreAwAAAAAASdwnAErezwBK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3qAAS9sKAAAAAABL3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS98BAEvfAwAAAAAASt5SAEre7QBK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AEreyABK3yIAAAAAAEvfBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAEveAwAAAAAASt58AEre/wBK3v4ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt7rAErfQwAAAAAASt4EAEneAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS98CAAAAAABT4wQASt6ZAEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3vcASt5dAAAAAABJ 3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABJ3REASt61AEre/wBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/wBK 3noAAAAAAEzfAgBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABL3x0ASt7RAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vsASt7/AEremAAAAAAAStwBAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS98DAAAAAABL3yEASt7XAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v8ASt6hAEbkBABJ2gEASd4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt0DAAAAAABJ3igASt7dAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3qwAS98JAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3S8ASt7lAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreugBL3QwAAAAAAEreAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3icASt7hAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6xAEvhBgBI2wEASt8CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS94DAAAAAABL3yMASt7dAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3qcAR+QCAEnaAQBJ 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAAAAAABJ3iAASt7YAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErenwAA AAAAStoBAEngAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS94CAAAAAABL3hAASt7KAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6NAAAAAABJ3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAAAAAABK2QQASt6zAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt77AEre/wBK3nUAAAAAAErdBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEjbAwAAAAAASt6aAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK 3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v0ASt7/AEreXAAAAAAASt0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt5/AEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vgAS94/AAAAAABL3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAwAAAAAASt5VAEre/wBK3v0ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre6ABK3tkASt7mAEre4gBK3uIASt7iAEre4gBK3uIASt7iAEre4gBK3uIASt7iAEre4gBK 3uIASt7iAEre4gBK3uIASt7iAEre4gBK3uIASt7iAEre5gBK3toASt7oAEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre4ABJ3iEAAAAAAEreAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEneAgAAAAAASd4uAEre7ABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3tUASt8pAAAAAABK3g0ASt4JAEreCQBK3gkASt4JAEreCQBK3gkASt4JAEreCQBK 3gkASt4JAEreCQBK3gkASt4JAEreCQBK3gkASt4JAEreDQAAAAAASt8mAEre0wBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6/AE7eBQAAAAAAS94BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQAAAAAAS98TAEre0gBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre5ABK3joAAAAAAEveAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErcAgAAAAAASt03AEre4QBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3pMAAAAAAErgAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3wIAAAAAAErepABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt71AEreVwAAAAAASt4EAEreAgBK3gEASt4BAEreAQBK 3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASt0CAEneBAAAAAAASt5UAEre8gBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreXAAA AAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3gMAAAAAAEreZgBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/QBK3v8ASt5yAAAAAABK3QMASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEndAwAAAAAASt5xAEre/gBK3v0ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3usASt4qAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAErfLwBK3vAASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3pYAStwDAErkAQBK 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAFDjAQAtxQEASt6QAEre/wBK3vwASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AErewgBF3AUAAAAAAEjdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3QEAAAAAAEndBwBK3sYASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AEretABL 3xIAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABJ3w8ASt6vAEre/wBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt6IAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8DAAAAAABK3oEASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK 3v8ASt7NAErfHgAAAAAASt4EAAAAAAAAAAAAS94EAAAAAABL3xwASt7JAEre/wBK3vsASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3j8AAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3jgASt75AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt7+AEre/gBK 3v4ASt76AEre/wBK3uIASt01AAAAAABJ3wIAS94DAAAAAABK4DMASt7gAEre/wBK3voASt7+AEre/gBK 3v4ASt7+AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7LAEjeCAAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS98BAAAAAABQ4wUASt7FAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/gBK3v4ASt79AEre/ABK3vwASt77AEre+gBK3vwASt79AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre9wBK3lwAAAAAAAAAAABK3lcASt70AEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v0ASt78AEre+wBK3vsASt78AEre/ABK3v0ASt7+AEre/gBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3oEAAAAAAErfAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAErfAwAAAAAASt57AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK3v0ASt78AEre+wBK 3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3vcASt71AEre8wBK3u4ASt7lAEre3wBK3uMASt7iAEreSwBK3kYASt7hAEre3wBK3tcASt7cAEre5ABK 3u0ASt7yAEre9QBK3vgASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3vsASt77AEre/ABK3v0ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt75AEvfNwAAAAAAS94CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgAAAAAAS94rAEre8QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt79AEre+wBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt74AEre6QBK3s8ASt64AErepgBK3pIASt5/AErebQBK3l0ASt5OAErePgBK 3S8ASt0jAErfGwBK3RIASt0MAEreCgBK3gkASt4GAErhCABK3g8ASt4PAErhCABK5AQASuIHAErgBwBJ 3gkASt4MAEreEQBL4BkASt4jAEreMABK3j4ASt5LAEneWQBK3moASt59AErekABK3qMASt63AEre0gBK 3uwASt74AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3vwASt79AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rwAAAAAAEvgAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gIAAAAAAErerQBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/gBK3v0ASt77AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7sAErezABK 3q0ASt6PAErecgBJ3VUASd46AErfHwBI3wsAS94DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABG 3wQASN0NAErdIQBK3j0ASt5ZAEredgBK3pUASt6xAEre1ABK3vMASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre+wBK3vsASt7+AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEreXgAA AAAASd4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QMAAAAAAErdTABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK 3vsASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt79AEre8ABK3swASt6iAEreegBK3lYAS94wAEzeDwBP 3QIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3QEAS94CAEreAwBK3gUASt4EAEreAwBK 3gMASt4DAErdAgBK3gIASt8BAErdAQBK3gEASt4BAEreAQBK3gEASt8BAAAAAAAAAAAASt8BAErfAQBK 3wEASt4BAEreAQBK3gEASt4BAErfAQBK3gIASt4CAEreAwBK3gMASd4DAEreBABK3gUASd0EAEvfAgBL 3AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL4AQASd4WAEveOQBK3l4ASt6EAErerQBK 3tcASt71AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v0ASt7+AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3t0AS98VAAAAAABL3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABI3QEAAAAAAEDcBQBK3swASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt78AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7xAErezQBK3psASt5lAErdOQBJ3RMAS98CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErgAQBK3wQASt4FAErdAwBJ3gMASt4BAEnfAQBK3gEASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAQBJ3gEASd4BAEreAwBK3gMASt4FAErdBABL3AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAATOAEAEveGwBK3kQASt50AErepQBK3tkASt73AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/ABK 3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEreiQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3mQASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt77AEre/gBK3v8ASt7/AEre/wBK 3v0ASt7mAEresABK3nUASt47AErdEgBK3wMAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4EAEreAwBL 3gIAS94BAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gEAS94CAEreBABK 3gQATd0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAS90FAEnfGwBK3kwASt6FAErevwBK3u0ASt7+AEre/wBK 3v8ASt7/AEre/gBK3vsASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBK3vIASt0nAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3w0ASt7YAEre/wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/QBK3v8ASt7/AEre/wBK3v4ASt7nAErerQBK 3m4ASt0yAEncCgAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAwBK3gQASt0CAEreAQBK3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEASt4BAEreAwBK3gQAS94CAAAAAAAAAAAAAAAAAAAAAABN4QEASd0OAErePQBK 3nsASt69AEre7wBK3v8ASt7/AEre/wBK3v8ASt78AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vsASt7/AEremgAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAwAAAAAASt5zAEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v4ASt7/AEre/wBK3v8ASt71AErewwBK3noASt85AErfCwAA AAAAAAAAAAAAAAAAAAAAS94BAEveBABK3gIASt4BAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4BAEreBABJ3gQASdwBAAAAAAAA AAAAAAAAAAAAAABK3hEASt9GAEreiwBK3tIASt76AEre/wBK3v8ASt7/AEre/ABK3vsASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3voAS98xAAAAAABL3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAAAAAASt8UAEre4gBK3v8ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vsASt7+AEre/wBK3v8ASt7/AEre4QBK3pwASt5YAEvfGgBJ4gEAAAAAAAAAAAAA AAAASt8BAEreBABK3QIASd4BAEneAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gEASt4DAEreBABI3AEAAAAAAAAAAAAAAAAATeEDAEveJQBK3mcASt6wAEre8QBK3v8ASt7+AEre/wBK 3v0ASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErepwAAAAAASN0CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gQAAAAAAEredQBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/gBK3v8ASt7/AEre/wBK3tQASt6LAEreSgBK4AsAAAAAAAAAAAAAAAAAStsBAEreBABK 3wMASt4BAEndAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEreAQBK3wMASd4DAAAAAAAAAAAATOABAAAAAABK3BoASt5fAEreogBK 3uoASt7/AEre/gBK3v8ASt78AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vwAS98yAAAAAABL3wIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEAAAAAAEvfDQBK3tsASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK 3v0ASt7/AEre/wBK3v8ASt7aAErejQBK3kEAS9wGAAAAAAAAAAAAAAAAAEndAwBK3gQAS98BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAS90BAErfBABL4AIAAAAAAEnfAQAA AAAASd8SAErdWQBK3qIASt7qAEre/wBK3v4ASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErenQAAAAAASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABL3mcASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/wBK 3v8ASt7/AEre7ABK3qAASt1FAEvbBwAAAAAAAAAAAAAAAABK3gQASt4DAErfAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAQBK 3gQAS9wDAAAAAABJ3gEAAAAAAEreEQBK3lwASt64AEre9gBK3v8ASt7/AEre/gBK3vsASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vYASd4oAAAAAABJ 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS90BAAAAAABO3AYASt7SAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v0ASt7/AEre/wBK 3vkASt60AEreWgBI2xIAAAAAAAAAAAAAAAAASt4DAEreAwBK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3wEASt0EAEveAwAAAAAAAAAAAAAAAABL3R8ASt5xAErezQBK3v8ASt7/AEre/wBK 3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErejwAA AAAASt8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt5TAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3v4ASt7/AEne1wBK 3oEASt4rAAAAAABO4QEAAAAAAErdAwBL3QMASt0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABL3gEAAAAAAAAAAABK2AQASt5HAErenQBK 3u0ASt7/AEre/wBK3v4ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3ugASt0UAAAAAABK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEAAAAAAEresgBK 3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre/wBK3vsASt69AEreVABF 3AcAAAAAAAAAAABJ3gIASt4EAEncAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAgBK3gQARtoBAEveAQAA AAAASd4bAEredgBK3tQASt7/AEre/wBK3v4ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEreaAAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wIAAAAAAErfMABK 3vsASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/QBK3v8ASt7/AEre7QBK3pEASt4uAAAAAAAA AAAAAAAAAEreAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMASt0DAAAAAAAAAAAAStsFAEreRgBK3q4ASt76AEre/wBK3v8ASt78AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3sgASt4CAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK 3o0ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK3v8ASt7YAEreeQBJ3xsAAAAAAErcAQBL 3gEASt4DAEjdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABJ3gIASt4EAAAAAABH3wEAAAAAAEreMQBK3pgASt7vAEre/wBK3v4ASt78AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AErdRAAAAAAASt0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK 3gwASt7iAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v0ASt7+AEre/wBK3tEASt1aAErdBwAAAAAAAAAAAEneAwBJ 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QEASt4DAErdAgAAAAAAAAAAAErdGQBK3oQASt7rAEre/wBK 3v4ASt79AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3pwAAAAAAEneAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASt5VAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/QBK3v8ASt7/AErexABK3lUAR98GAAAAAABJ3gEASt0EAEnfAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEndAwBJ3gEAAAAAAEnfFQBK 3nUASt7dAEre/wBK3v4ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7pAEjcEwAAAAAASd0BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIAAAAAAErepwBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt79AEre/gBK3v8ASt7MAErdSwBE6AEAAAAAAEfbAQBK3AMASt0BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEveAwBK 3gEAAAAAAErdCgBK3m4ASt7jAEre/wBK3v4ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3l4AAAAAAEreBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3gEAAAAAAEveGwBK3vAASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vwASt7+AEre/wBK3skASt5TAEraBAAAAAAASN0CAEneBABK3wEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAEreBABK3wEAAAAAAEneDwBK3nIASt7hAEre/wBK3v4ASt78AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6yAAAAAABK2gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3mcASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v4ASt7/AEre2QBK3lkAQtoDAAAAAABI3QEASt8DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt0BAEreAwBL3gEAAAAAAEreDgBK3oEASt7yAEre/wBK3v0ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9QBL3yAAAAAAAEveAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEfbAQAAAAAASt6uAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/gBK3v8ASt7hAErebABI3woAAAAAAEneAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4CAEreBABK3gEAAAAAAEvfHwBK3pUASt73AEre/wBK 3v0ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5nAAAAAABK 3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAQAAAAAAS98WAEre7gBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt79AEre/wBK3vQASt6JAEneEgAAAAAASt0BAEreAwBI3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAErfAwBJ3gEAAAAAAEneMABK 3rYASt7/AEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErerAAA AAAAStsBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gQAAAAAAEreWwBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3vwASt7/AEre/ABK3qQASt0nAAAAAABM3gEASt8DAEjeAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS98CAEvfAwAA AAAAAAAAAEreSQBK3soASt7/AEre/gBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3u4AS94WAAAAAABL3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS94CAAAAAABK3p8ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v4ASt7/AErezABK30MAAAAAAEngAQBL3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4CAErfAgAAAAAASN4GAErebQBK3usASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEreWgAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3gkASt7gAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3v8ASt7sAErecgBK3AgAAAAAAEveAwBK3QIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAErdAgAAAAAASd4cAErengBK3v0ASt7/AEre/ABK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt77AEre/wBK3pYAAAAAAEneAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEvdAgAAAAAAS902AEre/gBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/gBK 3v8ASt6uAErfHwAAAAAASt8DAErfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS98BAEvfAQBK3gEASt4BAEreAQBK 3gEAS94BAErfAQBK3wEAS98BAAAAAAAAAAAASt4BAErfAQBK3wEASt4BAEreAQBK3gEASd4BAEveAQBK 3gEASt0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gEASt4DAEvfAQAAAAAASt5HAEre2QBK3v8ASt79AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7VAEreBQAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAEredABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/wBK 3uEASt5UAAAAAABM3wEASt4DAErdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASd4BAEreAQBL3QIASt4DAEreAwBK3gQASt4FAEreBABK3gIARtoBAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3AEAS98CAEveBABK3gUASd4EAEreAwBK3gMAS94CAEndAQBJ3gEAS94BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gIASt0DAAAAAABJ3gwASt6JAEre+QBK 3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre+gBK3yoAAAAAAErfAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3q8ASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7+AEre/wBK 3psATN8PAAAAAABL3wMASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt8BAEreAgBK3gMASt4FAEreBABJ 3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT+UCAEvgBwBK 3gkASt4LAEreDgBL3hUASeAWAEvgHgBL4BgATuABAAAAAABK3gUASt8VAErfEABK3g0ASt4LAErdCgBI 3gcATuADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3QEAS94EAEveBQBK3gMASt4CAEreAQBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gMASd0CAAAAAABL 3zMASt7PAEre/wBK3v0ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5pAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd0BAAAAAABH3A0ASt7oAEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre4QBK 3koAAAAAAEneAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEreAQBK3gIASt4EAEveBABJ3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAE3eAgBH3gkASt4WAEvdLQBK3kQASt5ZAErebQBK3n8ASt6RAEreogBK3rEASt6/AErezQBK 3tkASt7hAEre6QBK3vAASt7zAEre8gBK3v4ASt7OAEreBwAAAAAASt89AEre9QBK3vIASt7vAEre6gBK 3uUASt7ZAEre0ABK3sYASt67AErerQBK3p4ASt6PAErefwBJ3m4ASt5YAEreQQBL3isASdwVAEjdCABW 3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAQBK3QQAS94EAEneAgBK3QEASt4BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gMAAAAAAEjfBgBK3n0ASt74AEre/wBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreoAAAAAAASt0CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEndAgAAAAAASd02AEre/QBK3v8ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v4ASt7/AEreowBL 3RAAAAAAAErdAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4BAEreAwBK3gUASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEnfAwBL4BIASt4yAEreUwBK 3nQASt6TAErerQBK3sgASt7jAEre9ABK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre1gBK3ggAAAAAAErfQABK3v8ASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre8wBK 3uAASt7FAEreqwBK3pIASt50AEreUwBK3jEASt4SAEnaAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3gMASt4FAEreAgBK3QEASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBJ3gIAAAAAAErfMQBK3tAASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tUASt4FAAAAAABK3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAEreagBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt7sAEreWwAA AAAATOABAEvfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt0BAEreBABK 3wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd0PAEreOQBK3mUASt6LAErergBK3tIASt7xAEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v0ASt78AEre+gBK3vsASt78AEre/ABK 3vwASt79AEre/QBK3v0ASt7+AEre/gBK3v4ASt78AEre/wBK3tQASt4IAAAAAABK30AASt7/AEre/gBK 3v0ASt7+AEre/gBK3v0ASt79AEre/QBK3vwASt78AEre+wBK3vsASt76AEre/ABK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre8QBK3tMASt6rAErehQBK3l4ASd43AEvdDwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wQASt4EAErdAQBJ3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd8BAEreAwAAAAAAR9wKAErekQBK3v8ASt7+AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt73AEvfIAAAAAAAS94CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS98DAAAAAABK3pkASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3v8ASt63AEzfIQAA AAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0CAErdBABJ3gMAAAAAAAAAAAAA AAAAAAAAAAAAAABJ3xQASt5AAErebABK3pEASt68AEre6gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre+wBK3vsASt78AEre/ABK3v4ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7VAEreCAAAAAAASt9AAEre/wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v4ASt7+AEre/gBK3v0ASt77AEre+wBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3uoASt68AErelABK3nEASt5CAEndEQAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gQASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEneAgAAAAAASt5IAEre4QBK3v8ASt78AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3lQAAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3gMASt7NAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3voASt58AFDkAgAA AAAASd0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABJ3gQAAAAAAAAAAAAAAAAAAAAAAEXjAgBK 3igASt5fAEreiwBK3rwASt7uAEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3voASt78AEre/QBK 3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre1QBK3ggAAAAAAErfQABK 3v8ASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7+AEre/QBK3vwASt77AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3usASt66AEreiQBK3lwASt0kAEbgAgAAAAAAAAAAAAAAAAAA AAAASt8EAEveBABJ3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QEASd0DAAAAAABK3RgASt6yAEre/wBK 3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6EAAAAAABL 3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAQAAAAAAS+AVAEre8gBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/wBK3uAASd1CAAAAAABK 3gMAS98CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAErfAgBJ3gQASd8BAAAAAAAAAAAAAAAAAEDcAQBJ3SUASt1lAErelwBK 3s8ASt76AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre+gBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tYASt4KAAAAAABK 30EASt7/AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/gBK3vwASt77AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre+ABK3soASt6WAEreZQBK 3iYAROIBAAAAAAAAAAAAAAAAAErfAQBK3gQASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAACbYAQBK 3nsASt77AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErerwAA AAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3wIAAAAAAEnfOgBK 3v8ASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/wBK3rYASd8UAAAAAABK 3gQASt8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASt4EAEzeAQAAAAAAAAAAAAAAAABJ3hEASt5NAEreiABK3sUASt75AEre/wBK 3v8ASt7/AEre/wBK3v0ASt76AEre/QBK3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7UAEreBwAA AAAASt89AEre/wBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt76AEre/QBK3v8ASt7/AEre/wBK 3v8ASt75AErexQBK3osASt5VAEjfFQAAAAAAS94BAAAAAABK2wEASt4EAErfAgBK3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBJ 3QMAAAAAAErfQABK3uUASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3tcASt4GAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK 3mIASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/wBK3okARNoDAAAAAABJ 3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt0BAEreBABK4wEAAAAAAAAAAAAAAAAAS98oAErecgBK3q0ASt7pAEre/wBK3v8ASt7/AEre/wBK 3vwASt77AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre3wBL 30EAS98xAErebABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/QBK 3vsASt78AEre/wBK3v8ASt7/AEre/wBK3uwASt6tAErecQBK3y0ATOACAAAAAAAAAAAAAAAAAEreAwBK 3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4BAEneBAAAAAAASd4cAErevgBK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v8ASt71AEnfGgAAAAAASd8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfBAAA AAAASt6JAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre7wBK3lUAAAAAAEreAwBJ 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd8BAEneAQAA AAAAAAAAAAAAAAAAAAAATuECAEreJgBK3nEASt6+AEre+QBK3v8ASt7/AEre/wBK3v4ASt77AEre/ABK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt79AEre+gBK3v0ASt7/AEre/wBK3v8ASt77AErexgBK3ngASt8tAEvfAwAA AAAAAAAAAEzdAQBK3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8DAAAAAABL5AUASt6MAEre/wBK3v0ASt79AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre/wBK3kEAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 2wEAAAAAAErerwBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre2ABK3i8AAAAAAEncBABL 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gEASt4DAEnfAgAA AAAASt0BAAAAAABK3RsASt5+AEreygBK3voASt7/AEre/wBK3v8ASt78AEre+wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt78AEre/wBK3v8ASt7/AEre/ABK 3tIASt6DAErdMQAAAAAAAAAAAAAAAABJ3wIASt8EAEvfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gIASt4DAAAAAABK3mQASt73AEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt5oAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3gEAAAAAAFPeAwBK3s0ASt7/AEre/QBK3v8ASt7/AEre/gBK3vwASt7/AEreuQBK3xUAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAgBK3gMAAAAAAAAAAABO 5wEASd4VAEncBgAAAAAASt5eAEre/wBK3v0ASt7/AEre/ABK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/ABK 3v8ASt7/AEre/wBK3vwASt7AAEredABK3iMAAAAAAE3iAQAAAAAAS98DAEvfAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gQAAAAAAEreQwBK3ugASt7/AEre+wBK 3v8ASt7/AEre/wBK3vsASt7/AErehQAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt8BAAAAAABK3wwASt7pAEre/wBK3v4ASt7/AEre/gBK3vwASt7/AEremABK4QMAAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3AEASt4DAEnfAQAAAAAAAAAAAE3fCgBK 3k4ASt68AEresQBKywEAAAAAAEreXABK3v8ASt76AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/QBK3vsASt7/AEre/wBK3v8ASt71AErerQBK3lcAS+AOAAAAAAAAAAAASt8BAErfAwBK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneBAAAAAAASd4iAEre0wBK 3v8ASt77AEre/wBK3v8ASt77AEre/wBK3qIAAAAAAEveAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAgAAAAAAS98iAEre9wBK3v8ASt7+AEre/QBK3v0ASt7/AErefgAAAAAASd4CAEvfAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAgBK3gQAAAAAAAAAAAAAAAAASt8sAEreiQBK 3uIASt7+AEre/wBK3rkAAAAAAAAAAABK3l0ASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt78AEre/wBK3v4ASt7/AEre6ABK3pAAS98sADbiAQAA AAAAAAAAAEreAwBL3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABL 3xIASt64AEre/wBK3vsASt7+AEre/QBK3v8ASt6/AAAAAAAAAAAASt8BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gMAAAAAAEreQABK3v8ASt7/AEre/ABK3v8ASt74AEreYAAAAAAASt4DAEneAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4CAEreAwAAAAAAAAAAAEvbCQBK3loASt6/AEre+wBK 3v8ASt7/AEre+gBK3v8ASt64AAAAAAAAAAAASt5dAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/QBK3v8ASt7/AEre/ABK 3sEASt5fAEzeDAAAAAAAAAAAAEvfAgBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMAAAAAAE3eBQBK3pkASt7/AEre/ABK3vwASt7/AEre3QBK3gcAAAAAAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3loASt7/AEre+wBK3v8ASt7zAEreSwAAAAAAS94EAEvfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAS98CAAAAAAAAAAAASd0XAErecgBK3tcASt7/AEre/gBK 3v8ASt77AEre/QBK3vwASt7/AEreuQAAAAAAAAAAAEreXQBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3v8ASt7+AEre/wBK3t0ASt59AEveHwAAAAAAAAAAAEveAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErfAgBL3AMAAAAAAErehABK3v8ASt77AEre/wBK3vMAS9wTAAAAAABL3QEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt5uAEre/wBK3v8ASt7pAEreOwAAAAAASt4EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwBL3wIAAAAAAAAAAABK3jAASt6bAEre8ABK3v8ASt7/AEre/QBK 3vwASt7+AEre/wBK3v8ASt78AEre/wBK3rkAAAAAAAAAAABK3l0ASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v0ASt7/AEre/wBK3vYASt6lAErdMwAAAAAAAAAAAErdAQBK3QMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEndAwAAAAAASt5wAEre/wBK3v8ASt73AErdJgAAAAAASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAErefQBK3v8ASt7aAEndKQAAAAAASd0EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABN3wEASt4EAEreAQAAAAAAAAAAAEreRABK3rgASt78AEre/wBK3v8ASt78AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt65AAAAAAAAAAAASt5dAEre/wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre/wBK3vwASt66AEreTABM2wMAAAAAAEjdAgBK 3QQATN8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3wEASt4DAAAAAABK3lsASt78AEre/gBL3jgAAAAAAEveAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3poASt7rAEndIAAAAAAASd4EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gMAR94BAAAAAAA22gIASt5IAEreuQBK3v8ASt7/AEre/gBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreuQBK1wMAAAAAAEreXABK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7+AEre/wBK3v8ASt7DAEreTQBV 4wIAAAAAAE3fAQBK3wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gQAAAAAAEreVQBK3v8ASt5QAAAAAABK 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt55AEreLgAAAAAASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwBK3gIAAAAAAE/fBgBK3lUASt7CAEre/wBK3v8ASt79AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rgAAAAAAAAAAABK3mQASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK 3v8ASt7GAEreVQBM3QUAAAAAAEreAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneBAAAAAAASt5aAErfVgAA AAAASt8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATN4BAEzeBAAAAAAASt0CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4CAEveAgAAAAAAAAAAAEreSgBK3tAASt7/AEre/gBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt66AErdNQBK3pwASt7vAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt79AEre/gBK3v8ASt7MAEreSwBD6gEAAAAAAEveAgBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8CAErfAgBK 3wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK4AEASt8BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3wIASd8CAErjAQAAAAAASt4/AErewQBK3v8ASt7/AEre/QBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+gBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt79AEre/wBK3v8ASt7FAErfRgAAAAAAAAAAAEreAgBJ3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAQBK 3gMAStwBAAAAAABJ3iwASt6qAEre/QBK3v8ASt79AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/wBK3v8ASt6xAEreLwAAAAAASd8BAEreAwBL 3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAwBL 3gIAAAAAAEneGwBK3pwASt75AEre/wBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK3voASt6hAEneIQAA AAAASt4CAEndAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEveAwAA AAAAS9wGAEreagBK3uoASt7/AEre/QBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK 3u4ASt52AEvhCgAAAAAASt8DAEvfAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4DAEncAQAA AAAASt5GAErezQBK3v8ASt7+AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt7+AEre/wBK3tQASt1RAAAAAABI3gEASt4DAEvfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4DAAAAAABJ 3iUASt6pAEre/gBK3v8ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vwASt7+AEre/wBK3q8ATN8nAAAAAABJ3QMASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBJ3QMAAAAAAErdBQBK 3nEASt7vAEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre8QBK3noAS+EJAAAAAABL3gMAS98BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAgBJ3gIAAAAAAEreLwBK 3sIASt7/AEre/QBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v0ASt7/AErezABK3TYAAAAAAErdAgBK 3QIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEneAwAAAAAAS98JAEregABK 3vcASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt75AErehgBM 3wsAAAAAAErfBABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0CAErdAwAAAAAASt1AAEre1gBK 3v8ASt79AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/ABK 3v8ASt7WAEvePgAAAAAASt0DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ4AEASt4DAAAAAABH3gUASt5+AEre+gBK 3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/wBK3vkASt6AAEfeBwAAAAAASd8DAEnfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QEASt4DAAAAAABJ3SYASt7GAEre/wBK 3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3soASt4rAAAAAABJ3QMASt0CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QMASNoBAAAAAABK3mMASt7xAEre/wBK 3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEre9ABK3mkAAAAAAE7bAQBL3wMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAQBJ3QQAAAAAAEndFABK3q8ASt7/AEre/QBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v0ASt7/AEresgBK3RgAAAAAAEreBABI 4AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMAAAAAAEndNABK3tkASt7/AEre+wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3v8ASt7fAEvePQAA AAAASt0DAEnfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBM3QIAAAAAAEreZQBK3vUASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK 3vkASt5sAAAAAABL3AIASd4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAQAAAAAASt0LAEreoABK3v8ASt79AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt78AEre/wBK3qQASd4LAAAAAABK3QQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAQAAAAAARt4EAErewgBK3v8ASt77AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3vwASt7/AEreywBJ3igAAAAAAEreBABI3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAErdAQBI3gEAAAAAAEjeEgBK3vIASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt7sAEreTgAAAAAASt8DAErfAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEvfAQAAAAAAR9YDAAAAAABI3hEASt7wAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/gBK3v0ASt5yAAAAAABM3QIASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEzjAQBF1wMASt6BAEvfJQAAAAAASN4TAEre8gBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3pYATOMFAEvWAQBK 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABN3wgASt6rAEre/gBL3x8AAAAAAEjeEwBK 3vIASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEreuABJ 3xAAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3xYASt6+AEre/wBK3vMAS98hAAAAAABI 3hMASt7yAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt7MAEreHQAAAAAASt0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3igASt7VAEre/wBK3v4ASt73AEvfIQAA AAAASN4TAEre8gBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/wBK3t4ASt4vAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd0EAAAAAABK3j0ASt7nAEre/wBK3vsASt7/AEre9wBL 3yEAAAAAAEjeEwBK3vIASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEre6wBK3j8AAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3kkASt7xAEre/wBK3vwASt7+AEre/wBK 3vcAS98hAAAAAABI3hUASt7zAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7yAEreSgAAAAAAS98EAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4DAAAAAABK3lkASt74AEre/wBK3v0ASt7/AEre/gBK 3v8ASt73AEvfIQAAAAAASt4QAEre8QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3vkASt5bAAAAAABJ3gMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd0CAAAAAABK3mEASt7+AEre/QBK3v0ASt7/AEre/wBK 3v4ASt7/AEre9wBL3yQAAAAAAEreRgBK3v8ASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/wBK3mEAAAAAAEfeAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS98CAAAAAABK3mYASt7/AEre/QBK3v4ASt7/AEre/wBK 3v8ASt7+AEre/wBK3vcAS+AUAEreTwBK3vUASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v0ASt7+AEreZAAA AAAAS90CAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3kwASt7/AEre/QBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt7xAErekgBK3vkASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/QBK 3v8ASd5KAAAAAABJ3gMAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt6FAEre/wBK3voASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vkASt7/AEnehAAAAAAASd4EAAAAAAAAAAAAAAAAAAAAAABK4AIAAAAAAErepQBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt77AEre/wBK3qMAAAAAAEneAgAAAAAAAAAAAAAAAABK3gEAAAAAAEreAgBK3soASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7IAF/zAQAAAAAAS98BAAAAAAAAAAAASt8BAAAAAABJ3w4ASt7sAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre6gBJ3g0AAAAAAEreAQAAAAAAAAAAAEveAgAAAAAAS94sAEre+wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3voASt8rAAAAAABK3wIAAAAAAAAAAABK3gMAAAAAAEreUQBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AErfTwAAAAAASt8DAAAAAAAAAAAASt4EAAAAAABK 3nEASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3m8AAAAAAEreBAAAAAAAAAAAAEreBAAA AAAASt6MAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6KAAAAAABK3QQAAAAAAAAAAABK 3gEAAAAAAErerABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreqQAAAAAASt4CAAAAAABK 3gEAAAAAAErfAgBK3sgASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3sUASuIBAAAAAABK 3gEASt4BAAAAAABK3gkASt7iAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7fAEreCAAA AAAASt4BAEreAQAAAAAASt8WAEre9ABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre8wBJ 3BQAAAAAAEndAQBL3wIAAAAAAEvfMQBK3vwASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3vsAS94uAAAAAABL3gIASt4DAAAAAABK3kcASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEreRQAAAAAASt4DAEneBAAAAAAASd5bAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3lkAAAAAAEreBABJ3gQAAAAAAEnecABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt5tAAAAAABK3gQASt4FAAAAAABK3oQASt7/AEre+gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3voASt7/AEregAAAAAAASt4FAEveAwAAAAAASt6VAEre/wBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3pIAAAAAAEreBABK3gIAAAAAAEreogBK3v8ASt77AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6gAAAAAABL3QMASt4BAAAAAABK3rAASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErergAAAAAAStsBAAAAAAAAAAAASt6+AEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rwAAAAAAAAAAAAAAAAASt4BAEreyQBK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7HAEreAQAAAAAAAAAAAEreAwBK 3s8ASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AErezQBB3gMAAAAAAAAAAABP 3gUASt7WAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tQARN4EAAAAAAAA AAAASt4HAEre3QBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7bAEreBwAA AAAAAAAAAEreCABK3uEASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre3wBK 2ggAAAAAAAAAAABK3ggASt7fAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3t4ASt4HAAAAAAAAAAAASt4HAEre3QBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt7bAEreBwAAAAAAAAAAAEreBwBK3tsASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEre2gBK3gYAAAAAAAAAAABK2QUASt7XAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3tYASt4FAAAAAAAAAAAASt4CAErezABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7LAErRAgAAAAAAAAAAAAAAAABK3r8ASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AErevQAAAAAAAAAAAEriAQAAAAAASt6zAEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rEAAAAAAEreAQBK3gIAAAAAAErepQBK3v8ASt77AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6iAAAAAABL3wIASt4EAAAAAABK3owASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7NAEretgBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rQASt7OAEre/wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreigAAAAAASt4EAEreBQAAAAAASt5zAEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErevgBL4goASt61AEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3rMASN0JAErewQBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3nIAAAAAAEreBQBK3QQAAAAAAErdWQBK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3r8AAAAAAEjdCgBK 3rQASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3rIAS+EJAAAAAABK3sIASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt5XAAAAAABK3gQASd4DAAAAAABJ 3j0ASt7/AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt66AAAAAAAA AAAAS+AJAErergBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3qsASdsIAAAAAAAAAAAASt69AEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7/AErdOwAAAAAASt0DAEveAQAA AAAAS94aAEre9QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEretgAA AAAASuACAEzjAQBJ2wcASt6sAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3qgATeEGAEXaAQBM4QIAAAAAAEreuQBK 3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9ABK3hgAAAAAAEreAQBK 3gEAAAAAAEreBgBK3tcASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3rcAAAAAAAAAAABK3gIATtwBAEPeAwBK3qEASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3p4AUdMCAErgAQBK3QIAAAAAAAAAAABK 3rsASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tQASt4FAAAAAABK 3gEAAAAAAEreAgAAAAAASt6mAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v8ASt6/AAAAAAAAAAAAAAAAAErdAQBI3wEAVc8BAEremwBK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/wBK3pgAAAAAAEfeAgBL3wEAAAAAAAAAAAAA AAAASt7DAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6kAAAAAABK 3gIAAAAAAAAAAABK3gQAAAAAAEredQBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEreyABf8wEAAAAAAEvfAQAAAAAASt0BAEvgAgAAAAAASt6OAEre/wBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3osAAAAAAEjdAgBK3wEAAAAAAEreAQAA AAAASt4CAErezABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErecgAA AAAASt4EAAAAAAAAAAAAS98CAAAAAABL3zkASt7+AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3s8AQ94DAAAAAABJ3gEAAAAAAAAAAABK3gEASd0DAAAAAABK3n8ASt7/AEre/ABK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3nwAAAAAAEzfAgBL3gEAAAAAAAAAAABK 3gEAAAAAAEreBQBK3tMASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre/QBK 3TYAAAAAAErdAgAAAAAAAAAAAEneAQAAAAAAR98IAEre3QBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7YAEreBgAAAAAASt4BAAAAAAAAAAAAAAAAAEndAQBL3gMAAAAAAErebABK 3v4ASt7+AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7+AEre/QBK3moAAAAAAEreAwBK3gEAAAAAAAAAAAAA AAAASt4BAAAAAABK3gcASt7cAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3tsASt4HAAAAAABK3gEAAAAAAAAAAAAAAAAASt8DAAAAAABK3pQASt7/AEre+wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre6wBK3gwAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAS98BAEneBAAA AAAASt5ZAEre9wBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre9gBK3lcAAAAAAEneBABJ3gEAAAAAAAAAAAAA AAAAAAAAAEneAQAAAAAASN4OAEre7QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6TAAAAAABL3gMAAAAAAAAAAAAAAAAAAAAAAEveAwAAAAAAS95CAEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vYASd0cAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3kUASt7vAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre7ABK3kIAAAAAAEndBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAEveIABK3vcASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEreQQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEneAwBK3soASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt78AEreMgAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3gQAAAAAAEveMABK3uAASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEre4ABL3i4AAAAAAEvfBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS98CAAAAAABL3zYASt7+AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEreyABL6QIAAAAAAErfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt5gAEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK30cAAAAAAErfAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAErfAwAAAAAAS98gAErezABK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEreyQBK3h0AAAAAAEveAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEveAwAAAAAAS95LAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/wBK3l4AAAAAAEvfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEAAAAAAE3YAwBK 3ssASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5nAAAAAABK3gQAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3xAASt6xAEre/wBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AErerwBM3A4AAAAAAErdAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAEreawBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/wBK3soARucCAAAAAABK3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASt5IAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreiwAAAAAASt4EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3wMARtwBAGP0AQBK3o0ASt7/AEre/ABK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v0ASt7/AEreigAAAAAAR9sBAEveAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94EAAAAAABK3o4ASt7/AEre+wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASd1HAAAAAABJ3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt0CAAAAAABK3ooASt7/AEre+gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3q8AAAAAAErbAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMAAAAAAEreYwBK 3vgASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt74AEreYQAAAAAAS90DAEvdAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEraAQAAAAAASt6yAEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+wBK3v8ASt6IAAAAAABK3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAUt0CAErerABK3v8ASt77AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7XAEreBgAA AAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEndAwAA AAAASt08AEre4gBK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt7gAEveOgAAAAAASt4DAEveAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAAAAAASt4GAEre2gBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre+wBK3v8ASt6qADnOAQBN5AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS94BAAAAAABO3wkASt6kAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9wBL 3iIAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3gEASt4EAAAAAABJ3hsASt68AEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3v8ASt66AEndGgAAAAAASt4EAEndAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wIAAAAAAErfJgBK3vgASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt6jAEjdCAAAAAAASd0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASd0CAAAAAABK3mUASt7jAEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt5aAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3wMAAAAAAE3dBABK3owASt7/AEre/gBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/gBK3v8ASt6KAETeBAAAAAAASt0DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4EAAAAAABJ3l4ASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBK3uMASt5kAAAAAABL3wIASd4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAQBJ3QMAAAAAAErepgBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vsASt7/AErejAAAAAAASt8EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEneAgBJ3gMAAAAAAEreTwBK3ugASt7/AEre+wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3ucASt5NAAAAAABK3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAwAAAAAASt6QAEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt6lAAAAAABL3QMASt0BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gIAAAAAAEveNABK3vwASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3swASt4DAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEndAwAAAAAASt4bAEretgBK3v8ASt79AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt79AEre/wBK3rQAS98aAAAAAABK3gQAS94BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAAAAAASt4EAEre0ABK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre/ABJ3TMAAAAAAEndAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3mUASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt76AEneLAAAAAAASd4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK4wEASt5xAEre9QBK 3v8ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vwASt7/AEre9ABK3m8AAAAAAFboAQBL3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3wIAAAAAAEnfMABK 3vwASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5jAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt5wAEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3nMAAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASd0DAAAAAABJ 3y0ASt6+AEre/wBK3v4ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v4ASt7/AErevQBJ3ywAAAAAAEreAwBL3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK 3ncASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErebwAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAEreYwBK 3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7EAEj3AQAAAAAASt8BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAQBJ 3gMAAAAAAFHUAgBK3moASt7tAEre/wBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/QBK3v8ASt7sAEreaQBW3gIAAAAAAErdAwBI3AEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94BAAAAAABV 3gIASt7IAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBJ3mIAAAAAAEneBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK 3kEASt7/AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre/wBL3j0AAAAAAEveAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEnfAgBJ3gMAAAAAAEneGQBK3qMASt7/AEre/wBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt79AEre/wBK3v0ASt6eAEvfGQAAAAAAS94DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAwAA AAAASt9CAEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3v8ASd5AAAAAAABJ3gMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAQAA AAAASt0SAEre7QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6dAAAAAABK3QMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS9wBAEreAwBK3AEAAAAAAEneOwBK3rsASt7/AEre/wBK3v0ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v0ASt7/AEre/wBK3roASt85AAAAAABL4AEAS98DAEveAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3gIAAAAAAEreoQBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7rAEneEQAAAAAASt4BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAAAAAABK3rAASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9QBK3ykAAAAAAErfAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4CAEndAgAAAAAAAAAAAEreSgBK3scASt7/AEre/gBK 3v8ASt77AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/wBK 3v4ASt7/AErexQBK3kgAAAAAAAAAAABL3gIAS94CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIAAAAAAEreLQBK3vcASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErerwAAAAAATeEBAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAASt5kAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6XAAAAAABL 3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4DAEnfAgAAAAAASuIDAErfTQBK 3rgASt78AEre/wBK3v8ASt7+AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v4ASt7/AEre/wBK 3vwASt63AEreSQBP5AMAAAAAAEreAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3psASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3mIAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEAAAAAAErfFgBK3uoASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre+QBK 3jMAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd0DAErfAQAA AAAAAAAAAEreLQBK3o0ASt7iAEre/wBK3v4ASt7/AEre/wBK3vwASt77AEre/QBK3v4ASt7+AEre/gBK 3v4ASt7/AEre/wBK3v4ASt7+AEre/gBK3v4ASt79AEre+wBK3vwASt7/AEre/wBK3v4ASt7/AEre4gBK 3owASt8sAAAAAAAAAAAAS9wBAErdAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3jYASt77AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3uoASt4VAAAAAABK 3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6UAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v8ASt66AAAAAABN4AIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt8DAEvfAgAAAAAAAAAAAEnfCwBK3k0ASt6bAEre4ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3t8ASt6bAEneSwBL 3QoAAAAAAAAAAABJ3QIASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErhAgAAAAAASt69AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6RAAAAAABK 3wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3wIAAAAAAEnfLwBK3vkASt7/AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3mwAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8CAErfAwAAAAAAAAAAAAAAAABG2ggASt43AErfawBK3p0ASt7IAEre5QBK 3vcASt79AEre/wBK3v8ASt7/AEre/wBK3v0ASt73AEre5QBK3scASt6cAEreawBK3jYAStwIAAAAAAAA AAAAAAAAAEnfAwBK3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt5xAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt74AEvdLQAA AAAAS90CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAgAAAAAASt6dAEre/wBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt71AEreNwAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwBK3QMAAAAAAAAAAAAAAAAAAAAAAE3hAgBM 3wkASt0eAEreNABK3z4ASd5JAEreSQBL3z4ASt40AEvdHgBM3QkASN8CAAAAAAAAAAAAAAAAAAAAAABJ 3gMASt4DAErdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAASt47AEre+ABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEremwAA AAAASt8DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEreJwBK3vEASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tkASd4cAAAAAABJ3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEjdAQBK3gIASt8EAEjeAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3wMASt4EAEreAgBK 3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErfAwAAAAAASt8fAEre3ABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre8QBK 3SYAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6CAEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErexQBL3Q4AAAAAAEveAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEveAQBK3gIASt4CAEreAgBJ3gMASt4DAEveAgBK3gIAS94CAEveAQBJ3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEneAwAAAAAASN0RAEreygBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3oEAAAAAAEnfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEAAAAAAErdEABK 3tcASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt69AEreEgAAAAAASd4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAAS98SAErewABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3tYAS+APAAAAAABK3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAwAA AAAASt5SAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3s0AS98cAAAAAABK 3gQAS94BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS94BAEreBAAAAAAASt8fAEre0ABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt5QAAAAAABK3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAATN4CAAAAAABK3qEASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEre5ABK 3kAAAAAAAEreAwBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAEnfAwAAAAAASt5DAEre5QBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6gAAAAAABJ3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEvfAQAAAAAATOAbAEre3gBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt75AEregQBM3ggAAAAAAErdAwBK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3gEASt4DAAAAAABM3wgASt6DAEre+gBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt7dAErfGgAAAAAASt8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8DAAAAAABK3koASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/ABK3v8ASt7MAEreOwAAAAAAS94BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASeABAAAAAABK3z4ASt7MAEre/wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEreRwAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAErehABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt77AEre/gBK3v8ASt6jAEreDgAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 4AEAAAAAAEjhDwBK3qQASt7/AEre/gBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEreggAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASdwBAEzgAQBI2QEASt63AEre/wBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/QBK3v8ASt73AErefgBA1QMAAAAAAEjcAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS98BAAAAAABN4QQASt6AAEre9wBK3v8ASt79AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vsASt7/AEretgBnwwEASN4CAEzeAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEveGQBK3tkASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vwASt7+AEre/wBK3v8ASt61AErdKAAAAAAASNwBAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt0BAAAAAABK3ysASt62AEre/wBK3v8ASt7+AEre/ABK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEre2ABL3RgAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt01AEre8QBK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt78AEre+gBK3vsASt78AEre/ABK3vwASt79AEre/gBK3v4ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK 3v0ASt77AEre/gBK3v8ASt7/AEre+wBK3rYASt5EAAAAAABJ4gEASt0DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wIAAAAAAAAAAABK3kUASt64AEre/ABK3v8ASt7/AEre/gBK 3vsASt79AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v4ASt7+AEre/gBK3v0ASt78AEre/ABK3vwASt77AEre+gBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEre8ABJ3TQAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0DAAAAAABK 3lEASt7+AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3vwASt77AEre+wBK3vsASt77AEre/ABK3vwASt79AEre/QBK3v0ASt79AEre/gBK 3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt79AEre/QBK3vwASt78AEre+wBK3voASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7kAErekwBK3jIAAAAAAAAAAABK3wIASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAQBK3gEASt4BAEreAQBK 3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAgBL3gIAAAAAAAAAAABJ3TQASt6UAEre5ABK 3v8ASt7+AEre/wBK3v8ASt7/AEre/QBK3voASt77AEre/ABK3vwASt79AEre/QBK3v4ASt7+AEre/gBK 3v4ASt7+AEre/gBK3v4ASt7+AEre/QBK3v0ASt79AEre/QBK3vwASt78AEre/ABK3vsASt76AEre+wBK 3vwASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7+AEre/QBK3lAAAAAAAEveAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gQAAAAAAEreaABK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt7/AErerQBK3l8ASt6EAErekQBK3qMASt61AErexgBK3tcASt7qAEre9ABK 3vkASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7qAErevQBK3oMASt5GAEnfCwAAAAAAAAAAAEnfAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gIAAAAAAAAAAABJ 3gwASt5HAErehABK3r4ASt7rAEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre+QBK3vQASt7pAEre1wBK3sYASt60AEreogBK3pEASt6DAEreXwBK 3q8ASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt79AEre/wBK3mUAAAAAAEvfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAwAAAAAASt56AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3u8ASt44AAAAAABK3gIAAAAAAAAAAABD0wEATN0GAEnfCwBK 3xcAS90oAEreOABK3UcASt5WAEreZgBK3nUASt6EAErelABK3qIASt6yAEreuwBK3sQASt7OAEre1wBK 3t0ASt7jAEre6gBK3u8ASt7xAEre8QBK3vIASt7uAEre5ABK3tsASt7OAErevgBK3rAASt6YAEreeQBK 3lsASt4zAErcDQBL4wEAAAAAAAAAAAAAAAAAS90DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAStcCAErdBABK 3gQASt4EAEreBABK3gQASt4EAEreBABK3gQASt4EAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBL 3wMAAAAAAAAAAAAAAAAASugBAEreDgBK3zQASt9cAEreegBK3pkASt6wAErevgBK3s4ASt7bAEre5ABK 3u4ASt7yAEre8QBK3vEASt7vAEre6gBK3uMASt7eAEre1wBK3s0ASt7EAEreuwBK3rEASt6jAErekwBK 3oQASt50AEreZgBL3lYASt1HAEreOABL3igAS98WAEreCwBK3gYASuwBAAAAAAAAAAAASd4CAAAAAABK 3joASt7xAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/wBK3ncAAAAAAEneAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd4DAAAAAABK3oQASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9ABK3kgAAAAAAEreBgBI3wEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErbAwBK 4gYASuAIAEreCQBK3gsASt4NAEreDgBK3g4ASt4OAEreDQBK3gkASt4HAELaAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAR+EBAEneBABK3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wQAAAAAAEreawBK 3uMASt7PAEre0wBK3tMASt7TAEre0wBK3tMASt7TAEre0ABK3uEASd5/AAAAAABM3wIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQBK3gMASt8EAEjfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQtoDAEreBwBK 3gkASt4NAEreDgBK3g4ASt4OAEreDQBK3gsASt0JAEreCABN4gYAUOMDAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABM3gEASt4GAAAAAABK 3ksASt72AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/wBK3oMAAAAAAEvdAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEndAQBK3wMAAAAAAErejABK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7zAErfTAAAAAAAS98EAEreAgBK 3gEASt4BAEreAQBK3QIASt4CAErdAwBK3gQASt4EAEreBQBJ3gUAS98DAEzdAgBI2QEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEfeAQBK 3gMASt4FAEreAwBK3gIASt4BAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATN4CAAAAAABK 3qYASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreuwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEASt4BAErfAgBK3wQASt4FAEveAwBG3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEjZAQBM 3QIASt8DAEveBQBK3gUASt4EAEveBABK3QMASt4CAEveAgBL3wEASt4BAEreAQBL3gIASt0EAAAAAABK 3k4ASt7zAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/wBK3osAAAAAAErgAgBK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATN8BAEvdAgAAAAAASt6JAEre/wBK3vwASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3vgASt5dAAAAAABK 3wMAS98BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEndAQBK 3gEASt4BAErfAQBK3wEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASd4BAEvfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK 3gEASt7FAEre/wBK3vsASt79AEre/QBK3v0ASt79AEre/QBK3v0ASt77AEre/wBK3tYASt4GAAAAAABK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAQBJ 3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEASt4BAEvfAQBL3wEASt4BAEndAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEASt0DAAAAAABK 3mMASt76AEre/gBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt78AEre/wBK3oYAAAAAAEffAgBL3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEASt0DAAAAAABK3nsASt7/AEre/ABK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/wBK 3oMAAAAAAEfdAQBK3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAA AAAASt4JAEre4wBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7vAEvdDwAA AAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAAAAAABK 3oYASt7/AEre/QBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt78AEre/wBK3noAAAAAAEveAwBJ3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAQBK3wMAAAAAAEreawBK 3v4ASt7+AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt7/AErerwBK3xIAAAAAAEvfBABK3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3wEAAAAAAErfHABK3vYASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre+QBK 3ycAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAgBK3gMAAAAAAEvdEwBK 3rIASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7+AEre/gBK3mkAAAAAAEvdAwBL3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS98BAEjeAwAA AAAAS95RAEre8ABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v8ASt7cAEreQQAAAAAASd0CAErdAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wIAS98DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAAAAAABK3jUASt79AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3v8ASt88AAAAAABK3wMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdAwBK3QIAAAAAAErdQwBK 3twASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEre8ABK3lAAAAAAAEreAwBK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABJ3jMASt7fAEre/wBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3vwASt6SAEzeDwAAAAAAS98DAEreAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABJ3QMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErfAwAAAAAASt9DAEre/wBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AErdSAAAAAAASt0DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3QMASt4EAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAErfAgAAAAAASt8QAErelgBK 3v0ASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vsASt7/AEre3gBL3jMAAAAAAErdAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gQAAAAAAErfGQBK3rkASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3toASt5VAAAAAAAAAAAASd8CAErdAwBL 3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0BAEnfAgBK3gQAS90BAAAAAABM3wEAAAAAAEvfFwBL 30sATN0FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABJ3QMAAAAAAEndSQBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBJ3k0AAAAAAEneAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR9wGAEreSwBL3xcAAAAAAErfAQAAAAAASd8BAErdBABJ 3gIASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEnfAQBK3gMATN0CAAAAAABn6gEASd5XAEre3ABK 3v8ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3vwASt7/AEreuQBL3xkAAAAAAEneBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEneAwAAAAAAReEEAEreiwBK3v8ASt7+AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7+AEre/wBK3rwASt5EAFLmAQAA AAAAAAAAAEreAwBL3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAS94BAEneAQBK3gQASt0DAAAAAAAAAAAAAAAAAAAAAABK3xUASt5bAErengBK 3vEASt7WAEreBAAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3kYASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt5JAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gEAAAAAAEXeBQBK3toASt7wAErengBK3loASt4UAAAAAAAA AAAAAAAAAAAAAABK3gMASt4EAErdAQBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAwAAAAAAAAAAAErqAQBK3kYASt7AAEre/wBK 3v4ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v4ASt7/AEreigBK3QQAAAAAAErdAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwAAAAAASt9MAEre5QBK3v8ASt78AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v0ASt7/AEre/wBK 3sIASt5UAEzbBwAAAAAAAAAAAEvkAQBK3wQASt4DAEveAQBL3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASt0BAEreAgBK3gQASd4DAAAAAAAAAAAAAAAAAAAAAABI2wMASd4tAErecQBK3rMASt7vAEre/wBK 3vwASt7/AEretgAAAAAAUuYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgAAAAAASt43AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt79AErdNgAAAAAASt0CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt66AEre/wBK3vwASt7/AEre7wBK 3rIASt5wAEreLABN4gMAAAAAAAAAAAAAAAAAAAAAAErfAwBK3gQASd4CAEveAQBJ3QEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3QEASd4BAErfAwBK3gQAQ94BAAAAAAAAAAAAS98IAEreVgBK3sQASt7/AEre/wBK 3v0ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3v8ASt7kAEreSgAAAAAASd4DAErfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASd4EAAAAAABK3hgASt6vAEre/wBK 3v4ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v0ASt7/AEre/wBK3tkASt59AEveLABA3gEAAAAAAAAAAAAAAAAATd4BAEvfAwBJ3gQASd4DAEveAgBL 3gEASt4BAEreAQBK3gEASd4BAEneAQBK3gEASt4BAEreAQBK3gEASt4BAErdAgBK3gIASt8EAEneBABK 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QIASd4hAEreXABK3pQASt7RAEre/ABK3v8ASt7/AEre/wBK 3vwASt73AEre/wBK3pIAAAAAAErfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3QEAAAAAAEndEQBK3uwASt7/AEre+wBK3v4ASt7+AEre/wBK 3v8ASt7/AEre/gBK3vwASt7/AEre8QBK3hQAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gMAAAAAAErelQBK3v8ASt73AEre/QBK 3v8ASt7/AEre/wBK3vwASt7RAErelABK3VsAS90hAEjdAgAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK 3QQASt4EAEneAgBK3QIASt4BAEreAQBK3gEASt4BAEreAQBJ3gEASd4BAEreAQBK3gEASt4BAErfAQBK 3QIASt0DAEreBABK3gMAStsBAAAAAAAAAAAAAAAAAE3nAQBK3i8ASt6AAEre2wBK3v8ASt7/AEre/QBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/gBK 3v8ASt6uAEneFwAAAAAASt0EAEveAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wMATOABAAAAAABK 3lsASt7lAEre/wBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v0ASt7/AEre/wBK3vsASt7IAEregQBK3kEATN4PAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEzjAQBK3Q8ASt45AEreagBK3pgASt7NAEre+ABK3v8ASt7/AEre/wBK3v8ASt78AEre+wBK 3v4ASt7/AEre/QBK3v8ASt5iAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAgAAAAAASt6CAEre/wBK3v0ASt7/AEre/wBK 3v8ASt7+AEre/gBK3v8ASt78AEre/wBK3pgAAAAAAErgAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3mUASt7/AEre/ABK 3v8ASt7+AEre+wBK3vwASt7/AEre/wBK3v8ASt7/AEre+ABK3swASt6XAEreaQBK3jkAS90PAEfTAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABI3xAASt9CAEreggBK3soASt78AEre/wBK3v8ASt79AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK 3uUASt5aAAAAAABP3gEAS98DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBL 3wMAAAAAAEjeFQBK3pwASt79AEre/wBK3v0ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre/wBK3v8ASt7/AEre6gBK3rsASt6PAEneaABJ 3kUAS94pAEveEgBK3gkASuEFAErdAQAAAAAAAAAAAEzlAgBN3QMASt4FAEreCQBJ3hYASt0rAErePwBK 310ASt6AAEreowBK3sUASt7qAEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v0ASt7+AEre/wBK 3v8ASt7/AEre/gBK3v8ASt73AEneIwAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARtkBAAAAAABK3lcASt68AEre8ABK 3v0ASt7/AEre/wBK3v8ASt77AEre3QBK3noATOIKAAAAAABM4QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAgAAAAAASt8mAEre+ABK 3v8ASt7+AEre/wBK3v8ASt7/AEre/gBK3v0ASt77AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre6gBK 3sQASt6iAEregABK3lwASd4+AErdKgBK3RUASt4JAEreBQBN3gMATOMBAAAAAAAAAAAATuEBAErgBQBJ 3gkASt8SAEreKQBK3UYASt5pAErekABK3rwASt7rAEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre/ABK 3poAS98UAAAAAABK3wMASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEneAwBJ4AEAAAAAAEreOABK3r4ASt7/AEre/gBK3v0ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt77AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+gBK3vIASt7jAEre0wBK3skASt7EAErexABK3soASt7PAEre1QBK3uUASt70AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vkASt77AEre+wBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AErevgAAAAAAAAAAAErdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABI3gEAAAAAAEbtAQBL 3xIAS942AErfSwBJ3VIASt1KAEreKgBG3gUAAAAAAEjfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEAAAAAAAAAAABK 3sEASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3vsASt77AEre+QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3voASt70AEre5ABK3tUASt7QAEreyQBK3sQASt7EAEreyQBK 3tQASt7kAEre8gBK3voASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/QBK3v4ASt7/AErevQBL 3jcAAAAAAEzfAQBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd4CAEreAgAAAAAAVewCAEreVQBK3tAASt7/AEre/gBK3v0ASt78AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK 3voASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+gBK3vkASt7/AEre9gBK3ssASt7jAEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3moAAAAAAEneBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd8CAEreBgBL 3QIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBQBK3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAA AAAASt5tAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3uIASt7KAEre9gBK3v8ASt75AEre+gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt76AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt79AEre/gBK3v8ASt7PAEreVQBT 8wIAAAAAAEreAgBL3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8DAErfAgAAAAAARN4FAEreVgBK3ssASt7/AEre/gBK 3v8ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7+AEre/gBK3v4ASt79AEre/QBK3v0ASt79AEre/QBK3v0ASt79AEre/QBK 3v0ASt77AEre/QBK3v4ASt7/AErewgBK3oEASt7TAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3ugAS90WAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEngAQAA AAAAAAAAAEreBABK3gYASd4GAEneBgBK3gcASt4FAAAAAAAAAAAATN8BAEvdAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEAAAAAAErfGABK3uoASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre0gBK3oIASt7CAEre/wBK3v4ASt79AEre+wBK3v0ASt79AEre/QBK3v0ASt79AEre/QBK 3v0ASt79AEre/QBK3v0ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3v8ASt7+AEre/wBK3ssASt5WAEzZBQAA AAAASt4CAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94DAEvcAQAAAAAARdsEAEreTgBK 3rEASt74AEre/wBK3v8ASt7+AEre+wBK3vwASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7+AEre/ABK 3vwASt7/AEre/gBK3v8ASt7NAEreTABK3lkASt7mAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6LAAAAAABJ3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK 3ygASd09AE3cAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK4AEASd48AErfKQAAAAAASt8CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt6PAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7nAEreYABK3k8ASt7LAEre/wBK3v4ASt7/AEre/ABK3vwASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7+AEre/ABK3vwASt7/AEre/wBK3v8ASt73AEresABJ3U0ASNoEAAAAAABJ 2wEASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gEASd4DAEjcAQBJ 4QEAAAAAAEreJQBK3oAASt7SAEre/QBK3v8ASt7/AEre/wBK3v4ASt77AEre/ABK3v0ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt79AEre/ABK3vsASt7+AEre/wBK 3v8ASt7/AEre8wBK3q4ASt4/ADvHAQBK3nwASt79AEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7vAErfIgAAAAAASt8CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEndAQAA AAAASt67AEre/wBK3tEASt6VAEreZABJ3UwASt5MAErfZABK3pQASt7RAEre/wBK3r4AAAAAAEvfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABL3gIAAAAAAEveJgBK3vMASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3v8ASt6QAEfZDgBJ3jsASt6uAEre9ABK3v8ASt7/AEre/wBK 3v4ASt77AEre/ABK3v0ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v4ASt79AEre/ABK3vsASt7+AEre/wBK3v8ASt7/AEre/QBK3tEASt5/AEveJAAAAAAAS+IBAEneAQBK 3gMAS9wBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAEneAgAAAAAAAAAAAEfeAwBL3zQASt5/AErexgBK3vUASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/QBK3vwASt77AEre+wBK3vsASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vEASt60AErebQBJ4B4AAAAAAEvfIgBK3scASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreiQAAAAAASd4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveBAAA AAAASt5dAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEreYAAA AAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEzfAwAAAAAASt6QAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3twASt46AAAAAABI3BsASt5uAEretgBK 3vEASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3vsASt77AEre+wBK3vwASt79AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vQASt7FAErefwBK3TMATOADAAAAAAAAAAAASt8CAEndAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4CAEneAwAAAAAAAAAAAAAAAABD3gEASd4aAEreUABK3ogASt61AEre2wBK 3vYASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre9wBK3t0ASt60AEreiABK 3lAAS98YAE7gAQAAAAAAUN4BAErebgBK3vUASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre4QBK3xcAAAAAAErfAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAQAA AAAASd0aAEre3wBK3v8ASt79AEre/QBK3voASt78AEre/gBK3v4ASt78AEre+gBK3v0ASt79AEre/wBK 3uEAS98cAAAAAABL3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wEAAAAAAEnfGwBK3uQASt7/AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AEre/wBK3pcATN4PAAAAAABS 5AEATd8XAEreUQBK3ogASt60AEre3gBK3vcASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre9QBK3tsASt61AErehwBK3lAASt4aAE3XAQAAAAAAAAAAAAAAAABK3gMAS94CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEveAwBL3wQASuMBAAAAAAAAAAAAAAAAAAAAAABK 3wYAS94aAErdOgBK3U4ASt5dAEreagBK3nYASt54AErecQBK3mUASd5UAEndPABK3h0ASd4GAAAAAAAA AAAAAAAAAErcAQAAAAAASd04AErexgBK3v8ASt79AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3mIAAAAAAEreAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3wMAAAAAAEreowBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AErepwAAAAAAS94CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAwAAAAAASt5lAEre/wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre4QBK 3lgAAAAAAAAAAAAAAAAAAAAAAAAAAABJ4AYASd4dAEvePABK3lQASt5lAErecQBK3ngASt52AEreagBK 3l0ASt1OAErdOgBK3RkAR98FAAAAAAAAAAAAAAAAAAAAAABK4wEASt4EAErdAwBK3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3wIASt4EAErdBABK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3gEASt8EAEjbAgBM3yIASt6TAEre+QBK3v8ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rcAAAAAAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMAAAAAAEreYABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt5jAAAAAABK3wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd8BAAAAAABK3rkASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK 3v4ASt7/AEretwBK3hMAAAAAAErfBQBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABI3wEASd0EAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAQBK3gEASt0DAErdAwBK3gQASt4EAEreBQBK3gUASt4EAEreBABJ3gQASd0DAEreAQBK 3gEASt8BAEreAgAAAAAASt6bAEre/wBK3voASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vIAS98tAAAAAABK3wIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMAAAAAAEndKwBK3u0ASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7/AEre7gBJ3i4AAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgAAAAAASt8wAEre8wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt75AEre/wBK3rAARdQCAAAAAABJ3AEASt8BAErfAQBK3gEAS90DAEreBABK3gQASt4EAEreBQBK 3gQASt4EAEreBABK3QMASt0DAEreAQBJ3gEAS94BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEAAAAAAEndDQBK3rkASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5wAAAAAABJ3gMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEAAAAAAEvdDQBK3ssASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7NAEveDgAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8DAAAAAABK 3m8ASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/wBK3rQAS9sJAAAAAABK3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEveAQAAAAAATN8LAErergBK3v8ASt78AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6sAAAAAABJ3AIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3wEASd0DAAAAAABK3qIASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3qQAAAAAAEjeAgBM3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3QIAAAAAAEreqwBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt78AEre/wBK3qsASN0KAAAAAABJ3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEffAQBP3gQASt6GAEre/gBK3v8ASt77AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7bAEzgGgAAAAAAS98CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3oAASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErehAAAAAAAS94DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAS98CAAAAAABM4BoASt7bAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt7/AEre/QBK3ocAStwDAEneAQBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3wEAS94DAAAAAABK3kUASt7aAEre/wBK 3v0ASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt71AEveOwAAAAAASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3m4ASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5zAAAAAABL 3wQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gMAAAAAAEreOQBK3vUASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK 3v0ASt7/AEre2QBK3kMAAAAAAErdAwBJ3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMAAAAAAErcDgBK 3oMASt7zAEre/wBK3v4ASt77AEre/QBK3v8ASt7/AEre/gBK3vwASt7/AEreXQAAAAAASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3wEAS94EAAAAAABK3mQASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7+AEre/wBK 3mcAAAAAAEndBABM3wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt5hAEre/wBK3vwASt7+AEre/wBK3v4ASt78AEre/gBK 3v8ASt70AEreggBK3QwAAAAAAEvdAwBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvfAwBK 3gEAAAAAAEneJABK3pgASt71AEre/wBK3v8ASt79AEre/ABK3vsASt7/AErefwAAAAAASd0EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASd4DAAAAAABK3mwASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v0ASt7/AErebgAAAAAASd0DAEveAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS90DAAAAAABK3oUASt7/AEre+gBK3vwASt7/AEre/wBK 3vcASt6bAErfIwAAAAAASt8BAEvfAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEndAwBI3QEAAAAAAErfJQBK3osASt7nAEre/wBK3vwASt7/AErelAAAAAAASt0CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIASN4CAAAAAABK3oAASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/ABK3v8ASt6CAAAAAABG3QIASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK2wIAAAAAAErelwBK3v8ASt7/AEre7ABK 3pEASt0mAAAAAABK3wEASd4DAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd4CAEreAwAAAAAAAAAAAEreEgBK3mIASt7MAErepQAAAAAATtsBAErfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErcAQBK 3gQAAAAAAErdCwBK3qEASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3qIAS90KAAAAAABK3wQASd4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94BAAAAAABO3AUASt6MAEredABK 4BMAAAAAAAAAAABL3wMASt8CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8CAEndAwAAAAAAAAAAAE7dBABM2wUAReQBAEvfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8BAErdAwBK 3wIAAAAAAEreMABK3s4ASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AErezwBK3jAAAAAAAErfAgBL3wMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL4AEASt8BAAAAAAAA AAAAAAAAAEveAwBK3QIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABL3gEAS90BAErfAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8BAEvdAQAA AAAAS9oHAEredwBK3vMASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7zAEredgBI3ggAAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gIAS94DAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94BAErdAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ 3wYASt1ZAEre0gBK3v8ASt77AEre+QBK3v0ASt7+AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK3v4ASt7+AEre/QBK3vwASt75AEre+wBK3v8ASt7SAEreVwBJ 3AkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR9sBAAAAAABK 3kAASt7FAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt79AEre/ABK 3voASt76AEre+wBK3vsASt77AEre+wBK3vwASt78AEre/ABK3vwASt78AEre+wBK3vsASt77AEre+wBK 3vsASt76AEre+wBK3v0ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vsASt6mAEveJAAAAAAAS94BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4RAErdJQBL3jkASt9dAErefgBK3poASt60AEreywBK3uIASt70AEre+wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre9QBK3uUASt7NAEretgBK3qAASt6FAEreZgBK 3kEASt0bAEreDwBL3goAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3wIASd0JAEndFQBJ3ywASt5DAEreUwBK 3l8ASt5tAErefABK3okASt6XAErengBK3qAASt6lAErepwBK3q0ASt6tAErerQBK3qkASt6kAErenwBK 3poASt6WAErejQBK3nwASt5uAEreXgBK3lAAS95BAEneLwBJ3hgAS90KAEncAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt0CAEveAgBK3wQASt4FAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAwBK 3gQASt4EAEreAwBK3gEASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEveAQBK3gEASd0BAEreAgBK 3gMASt4DAEreBABK3gQASt4EAEreBABL3wMASd8CAEnfAgBI3gIASd8CAEjcAQBH2wEAR9sBAEjeAgBJ 3gIASd8CAEnfAgBJ3wMASt4EAEneBABK3gQASt4DAEreAwBL3gMASd4CAEreAQBK3gEASt4BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// ////////////////////+AAAAAAf//////////////////////////////////4AAAAAAAB///////// ////////////////////////wAAAAAAAAAP///////////////////////////////wAAAAAAAAAAB// ////////////////////////////wAAAAAAAAAAAAf////////////////////////////4AAAAAAAAA AAAAP///////////////////////////4AAAAAAAAAAAAAAD//////////////////////////8AAAAA AAAAAAAAAAD//////////////////////////AAAAAAAAAAAAAAAAB/////////////////////////g AAAAAAAAAAAAAAAAA////////////////////////wAAAAAAAAAAAAAAAAAA//////////////////// ///8AAAAAAAAAAAAAAAAAAA///////////////////////AAAAAAAAAAAAAAAAAAAAf///////////// ////////wAAAAAAAAAAAAAAAAAAAAf////////////////////8AAAAAAAAAAAAAAAAAAAAAf/////// /////////////AAAAAAAAAAAAAAAAAAAAAAf///////////////////wAAAAAAAAAAAAAAAAAAAAAAf/ /////////////////8AAAAAAAAAAAAAAAAAAAAAAA///////////////////gAAAAAAAAAAAAAAAAAAA AAAA//////////////////4AAAAAAAAAAAAAAAAAAAAAAAA/////////////////+AAAAAAAAAAAAAAA AAAAAAAAAB/////////////////wAAAAAAAAAAAAAAAAAAAAAAAAB////////////////8AAAAAAAAAA AAAAAAAAAAAAAAAD////////////////gAAAAAAAAAAAAAAAAAAAAAAAAAD///////////////8AAAAA AAAAAAAAAAAAAAAAAAAAAH///////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////4 AAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAf///////// ////4AAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////+AAAAAAAAAAAAAAAAAAAAAAAAAAAAB//// /////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////////+AAAAAAAAAAAAAAAAAAAAAAAAAAAA AD////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH///////////+AAAAAAAAAAAAAAAAAAAAAAA AAAAAAAP///////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf//////////+AAAAAAAAAAAAAAAAAA AAAAAAAAAAAAA///////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB//////////+AAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAD//////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/////////+AAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAf/////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////AAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////// //AAAAAAAAAAAAAAB///4AAAAAAAAAAAAAAH////////4AAAAAAAAAAAAAAD///AAAAAAAAAAAAAAAP/ ///////AAAAAAAAAAAAAAAH//4AAAAAAAAAAAAAAA////////8AAAAAAAAAAAAAAAP//AAAAAAAAAAAA AAAB////////gAAAAAAAAAAAAAAAP/wAAAAAAAAAAAAAAAD///////8AAAAAAAAAAAAAAAAf+AAAAAAA AAAAAAAAAH///////gAAAAAAAAAAAAAAAA/wAAAAAAAAAAAAAAAAf//////+AAAAAAAAAAAAAAAAB+AA AAAAAAAAAAAAAAA///////wAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAB///////AAAAAAAAAAAAAAA AAGAAAAAAAAAAAAAAAAAH//////4AAAAAAAAAAAAAAB/////AAAAAAAAAAAAAAAP//////AAAAAAAAAA AAAA////////gAAAAAAAAAAAAA//////8AAAAAAAAAAAAH/////////+AAAAAAAAAAAAB//////gAAAA AAAAAAAP///////////4AAAAAAAAAAAD/////+AAAAAAAAAAAf////////////+AAAAAAAAAAAP///// wAAAAAAAAAAf//////////////wAAAAAAAAAAf/////AAAAAAAAAAf///////////////4AAAAAAAAAB /////4AAAAAAAAAP////////////////+AAAAAAAAAD/////gAAAAAAAAH//////////////////AAAA AAAAAP////8AAAAAAAAD///////////////////gAAAAAAAAf////wAAAAAAAB////////////////// //wAAAAAAAB////+AAAAAAAA/////////////////////4AAAAAAAD////4AAAAAAAP///////////// ////////4AAAAAAAP////AAAAAAAH//////////////////////8AAAAAAA////8AAAAAAB///////// //////////////8AAAAAAB////gAAAAAA////////////////////////8AAAAAAH///+AAAAAAP//// ////////////////////8AAAAAAP///4AAAAAD/////////////////////////+AAAAAA////AAAAAA //////////////////////////+AAAAAD///8AAAAAP//////////////////////////+AAAAAH///w AAAAD///////////////////////////8AAAAAf//+AAAAA////////////////////////////8AAAA B///4AAAAH////////////////////////////8AAAAD///gAAAB//////////////////////////// /8AAAAP//8AAAAf/////////////////////////////8AAAA///wAAAH/////////////////////// ///////4AAAB///AAAA///////////////////////////////4AAAH//8AAAP////////////////// /////////////wAAAf//gAAB////////////////////////////////wAAB//+AAAf///////////// wAHAA//////////////wAAD//4AAD////////////wAAAcAAAP////////////gAAP//gAA///////// //+AAAABwAAAAf///////////AAA//8AAH//////////8AAAAAHAAAAAD///////////AAD//wAB//// //////4AAAAAAcAAAAAAf/////////+AAH//AAP/////////4AAAAAABwAAAAAAH/////////+AAf/8A B/////////4AAAAAAAHAAAAAAAB/////////8AB//wAP////////8AAAAAAAAcAAAAAAAA/////////4 AH/+AD////////+AAAAAAAAAAAAAAAAAAf////////wAf/4Af////////AAAAAAAAAAAAAAAAAAAH/// /////wB//gD////////4AAAAAAAAAAAAAAAAAAAH////////gD/+Af///////zgAAAAAAAAAAAAAAAAA AAD////////AP/4H///////4OAAAAAAAAAAAAAAAAAAAAB///////+A//g///////+A4AAAAAAAAAAAA AAAAAAAAB///////8D/+H///////gDgAAAAAAAAAAAAAAAAAAAAB///////4P/4///////wAOAAAAAAA AAAAAAAAAAAAAAA///////4//n//////8AA4AAAAAAAAAAAAAAAAAAAAAA///////z/8///////AADgA AAAAAAAAAAAAAAAAAAAAA///////v////////wAAOAAAAAAAAAAAAAAAAAAAAAAA///////////////8 AAAgAAAAAAAAAAAAAAAAAAAAAAA///////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAA////////// ////wAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA//// /////////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAA AB///////////+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB///////////wAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAD//////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//////////AAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAD/////////4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/////////AAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAH////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////+AAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAf///////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf//////8AAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB////// 4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB//////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD /////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAP////3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+cAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAf///xwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///+HAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAB///wcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//+BwAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAH//wHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/+AcAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAf/wBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+AAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAD+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAD4AAAAAAAAAAACAAAAAAAAAAAAAAAABAAAAAAAAAAAAfgAAAAAAAAAAAMAAAAAAAAAAAAAAAA MAAAAAAAAAAAB+AAAAAAAAAAAA4AAAAAAAAAAAAAAABwAAAAAAAAAAAH4AAAAAAAAAAADwAAAAAAAAAA AAAAAPAAAAAAAAAAAAfgAAAAAAAAAAAPgAAAAAAAAAAAAAAB8AAAAAAAAAAAB+AAAAAAAAAAAA/AAAAA AAAAAAAAAAPwAAAAAAAAAAAH8AAAAAAAAAAAD+AAAAAAAAAAAAAAB/AAAAAAAAAAAA/wAAAAAAAAAAAP +AAAAAAAAAAAAAAf8AAAAAAAAAAAD/AAAAAAAAAAAA/8AAAAAAAAAAAAAD/wAAAAAAAAAAAP8AAAAAAA AAAAD/4AAAAAAAAAAAAAf/AAAAAAAAAAAA/4AAAAAAAAAAAP/wAAAAAAAAAAAAD/8AAAAAAAAAAAH/gA AAAAAAAAAA//gAAAAAAAAAAAAf/wAAAAAAAAAAAf/AAAAAAAAAAAD//AAAAAAAAAAAAD//AAAAAAAAAA AD/8AAAAAAAAAAAP/+AAAAAAAAAAAAf/8AAAAAAAAAAAP/4AAAAAAAAAAAf/8AAAAAAAAAAAD//gAAAA AAAAAAB//gAAAAAAAAAAB//8AAAAAAAAAAA//+AAAAAAAAAAAH//AAAAAAAAAAAH//4AAAAAAAAAAH// 4AAAAAAAAAAA//+AAAAAAAAAAAf//wAAAAAAAAAA///gAAAAAAAAAAH//+AAAAAAAAAAB///gAAAAAAA AAH//+AAAAAAAAAAB///4AAAAAAAAAAD///gAAAAAAAAB///wAAAAAAAAAAH///gAAAAAAAAAAP///AA AAAAAAAP///AAAAAAAAAAAf//+AAAAAAAAAAA////AAAAAAAAD///8AAAAAAAAAAB///4AAAAAAAAAAD ///+AAAAAAAAf///wAAAAAAAAAAH///gAAAAAAAAAAH///+AAAAAAAH///+AAAAAAAAAAAf//+AAAAAA AAAAAf///8AAAAAAA////4AAAAAAAAAAB///4AAAAAAAAAAA////8AAAAAAP////AAAAAAAAAAAH///g AAAAAAAAAAD////8AAAAAD////8AAAAAAAAAAAf///AAAAAAAAAAAH////8AAAAA/////gAAAAAAAAAA D///8AAAAAAAAAAAf////8AAAAP////+AAAAAAAAAAAP///wAAAAAAAAAAA/////+AAAH/////wAAAAA AAAAAA////gAAAAAAAAAAD//////gAH//////AAAAAAAAAAAH///+AAAAAAAAAAAH//////////////4 AAAAAAAAAAAf///8AAAAAAAAAAAP//////////////AAAAAAAAAAAD////wAAAAAAAAAAAf///////// ////4AAAAAAAAAAAP////gAAAAAAAAAAA//////////////AAAAAAAAAAAB/////AAAAAAAAAAAB//// /////////4AAAAAAAAAAAP////8AAAAAAAAAAAD/////////////AAAAAAAAAAAA/////4AAAAAAAAAA AD////////////wAAAAAAAAAAAH/////wAAAAAAAAAAAH///////////+AAAAAAAAAAAA//////AAAAA AAAAAAAH///////////gAAAAAAAAAAAD/////+AAAAAAAAAAAA///////////+AAAAAAAAAAAAf///// 8AAAAAAAAAAAH///////////+AAAAAAAAAAAD//////4AAAAAAAAAAB////////////+AAAAAAAAAAAf //////wAAAAAAAAAAf////////////+AAAAAAAAAAD///////gAAQAAAAAAP//////////////AAAAAA AgAAf///////AAB//wAAA////////////////8AAAP/+AAD///////8AAD/////////////gB/////// //////wAAP///////4AAH////////////8AD////////////+AAB////////wAAP////////////wAP/ ///////////wAAP////////wAAP////////////AA////////////8AAD/////////gAAf////////// /8AD////////////gAAf/////////AAA////////////wAP///////////8AAD/////////+AAA///// ///////AA////////////AAAf/////////8AAB///////////8AD///////////4AAD//////////4AA B///////4///wAP//8f//////+AAAf//////////4AAB//////8D///AA///wP//////gAAH//////// ///wAAB/////8AP//8AD///AD/////wAAA////////////wAAAf///8AB///wAP//+AA////4AAAP/// /////////gAAAH//wAAH///wD///4AAD//4AAAB/////////////gAAAAAAAAAf////////gAAAAAAAA Af/////////////gAAAAAAAAD/////////AAAAAAAAAH//////////////gAAAAAAAAP////////8AAA AAAAAB///////////////gAAAAAwAA/////////wAAwAAAAAf///////////////gAAAAOAAH///w8P/ //gAAwAAAAP////////////////4AAAHgAAf///AA///+AAB4AAAH/////////////////8AAD8AAD// /4AB///8AAB8AAD//////////////////////AAAf///AAD///4AAD/////////////////////////w AAB///8AAP///gAAD////////////////////////+AAAP///gAAf///AAAP//////////////////// ////8AAB///8AAA///+AAB/////////////////////////4AAH///gAAB///4AAP/////////////// //////////wAA///8AAAD///wAB//////////////////////////wAH///wAAAP///gAf////////// ////////////////gA///+AAAAf///AD///////////////////////////gH///wAAAA///8A////// //////////////////////gf//8AAAAA///4P////////////////////////////z///gAAAAB///3/ ///////////////////////////////8AAAAAD////////////////////////////////////gAAAAA H///////////////////////////////////4AAAAAAH//////////////////////////////////+A AAAAAAH///////////////////////////////////gAAAAAH/////////////////////////////// //////8AAf////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////ygA AACAAAAAAAEAAAEAIAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gEASt4CAEreBABK 3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gQASt4EAEreAgBK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBK3gQASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAASt0GAEreGwBK3jsASt5YAEreWQBK 3lkASt5ZAEreWQBK3lkASt5ZAEreWQBK3lkASt5ZAEreWQBK3lkASt5ZAEreWQBK3lkASt5ZAEreWQBK 3loASt5HAEneJABK3gwAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gIASt4EAEreAwBK3gEAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAEreBABK3QEAAAAAAAAAAAAAAAAASd0DAEreIwBK 3lgASt6HAEretwBK3uAASt73AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre6gBK3sYASt6WAEreagBK 3jUASt8LAAAAAAAAAAAAAAAAAAAAAABK3gMASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4EAEneAQAA AAAAAAAAAEniAgBK3iYASt5gAErepQBK3tcASt76AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK3vwASt78AEre/ABK 3vwASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3uUASt65AEreeABK3jkAS98KAAAAAAAA AAAAAAAAAEreAwBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQBK3gQASt4CAAAAAAAAAAAASt8FAEreOgBK3oQASt7NAEre+wBK3v8ASt7/AEre/wBK 3v8ASt78AEre+wBK3vwASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt78AEre+wBK 3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3uEASt6eAEreUwBK3hIAAAAAAEreAQBL3gEASt4EAEreAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gQAS94BAAAAAAAAAAAASt4sAErehABK 3tYASt7/AEre/wBK3v8ASt7/AEre+wBK3vsASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3vsASt7+AEre/wBK 3v4ASt7/AEre6wBK3qEASt5JAEndBgAAAAAAAAAAAEreAwBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK 3gQASt4BAAAAAABK3gsASt5dAErevgBK3vsASt7/AEre/wBK3v0ASt77AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3vwASt7/AEre/gBK3v8ASt7ZAEregABK 3h8AAAAAAEreAQBK3gIASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMASt4BAAAAAABK3hcASt5+AEre4QBK3v8ASt7+AEre/gBK 3vsASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt77AEre/QBK3v8ASt7/AEre9QBK3qMASt41AAAAAAAAAAAASt4DAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABJ 3hsASt6KAEre7gBK3v8ASt7+AEre/ABK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3vsASt7+AEre/wBK3v0ASt60AEreOgAAAAAAS98BAEreAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASt4DAAAAAABJ3g4ASt5+AEre8ABK3v8ASt7+AEre+wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/QBK3v8ASt7/AErerwBK 3iwAAAAAAEreAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAEvfAQAAAAAASt5aAEre5ABK 3v8ASt79AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v0ASt7/AEre+wBK3pIASt8RAAAAAABK3gQASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAEreAwAAAAAASt4pAErewABK3v8ASt7+AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt79AEre/wBK3ucASt5YAAAAAABJ3gIASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3QEAAAAAAEredQBK3vYASt7/AEre+wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/gBK3v8ASt6tAEreGAAA AAAASt4EAErdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gQAAAAAAErfGwBK3rkASt7/AEre/ABK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v8ASt7nAEreSgAAAAAASt4DAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QEASt4EAAAAAABK3kQASt7qAEre/wBK3vsASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v4ASt7/AErehAAAAAAASd8CAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwAA AAAASt5zAEre/gBK3v4ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt7/AEresgBK3w8AAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3wIAAAAAAErelABK3v8ASt78AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vsASt7/AEre0ABK3iAAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASdwBAEvfBQBK 3q0ASt7/AEre+gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEre5QBK 3i8AAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4CAAAAAABL3gkASt62AEre/wBK3voASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre7ABK3jgAAAAAAEreBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErfAQBJ3gEAS+AFAEretQBK 3v8ASt76AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEre7QBK3jIAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEASd4CAAAAAABK3qwASt7/AEre+gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEre5wBK3icAAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6TAEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEre2ABK3hcAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gQAAAAAAEredABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7kAEre4wBK3usASt7oAEre6ABK3ugASt7oAEre6ABK3ugASt7rAEre4wBK 3uQASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErewABJ 3gUAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3kkASt7+AEre/QBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3r4ASt4UAEreBQBK 3hEASt4NAEreDQBK3g0ASt4NAEreEQBK3gUASt8TAErevQBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErelQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgAAAAAASt4dAEre5gBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3ssASt4bAAAAAABK3gEAAAAAAAAAAABK3gEAAAAAAEreGgBK 3soASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEreXwAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3rMASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3uUASt42AAAAAABK3gQASt4EAAAAAABK3jMASt7jAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7wAEreKQAAAAAASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAASt5sAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7+AEre/ABK 3vwASt77AEre+wBK3vwASt78AEre/gBK3v8ASt7+AEre/wBK3vcASt5XAAAAAAAAAAAASt5WAEre9wBK 3v8ASt7+AEre/wBK3v8ASt79AEre/ABK3vwASt77AEre+wBK3vwASt79AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt68AAAAAABL3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEreJgBK3vAASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt79AEre+wBK3vsASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3vUASt7uAEre7wBK3vMASt5PAEreTABK3vAASt7rAEre6wBK3vMASt75AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt77AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt5sAAAAAABK 3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEveAgAAAAAASt6tAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3vsASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre5gBK 3ssASt6uAErekABK3nQASt5bAEreRgBK3jYASt4pAEreHABK3hQASt4MAErfDQBK3xUASt8VAErgDABJ 3goASt4RAEreFwBK3iIASt4uAErePABK3k8ASt5nAEregwBK3qEASt7AAEre2gBK3vUASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt77AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3uwASt4eAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreTQBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/ABK3v8ASt7/AEre/wBK 3v8ASt71AEre1ABK3qMASt51AEreSgBK3icAS94LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASd0EAEreGwBK3jwASt5lAErekgBK3sIASt7sAEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK 3p0AAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3wIASt7JAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3vsASt7+AEre/wBK3v8ASt7/AEre8wBK3sMASt6GAEreTABK3hoASd0DAAAAAAAAAAAAAAAAAAAAAAAA AAAASt8BAEreAwBK3gQASt4EAEreBABK3gMASt4DAEreAgBK3gIASt4BAEreAQBK3gEASt8BAErfAQBK 3wEASt4BAEreAQBK3gEASt4CAEreAgBK3gMASt4DAEreBABK3gQASt4DAEreAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3g8ASt44AErecABK3qoASt7kAEre/gBK3v8ASt7/AEre/wBK3vsASt78AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3jYAAAAAAEreAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreXQBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v4ASt7/AEre/wBK3v8ASt7aAErelwBK3lIASd8XAAAAAAAA AAAAAAAAAAAAAABJ3AEASt4DAEreBABK3gMASt4CAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gIASt4DAEreBABK3gQAS94BAAAAAAAAAAAAAAAAAAAAAABK 3gkASt44AErefQBK3sIASt75AEre/wBK3v8ASt7+AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AErerwAAAAAASd0CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAAAAAABL3wMASt7OAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/ABK3v8ASt7/AEre/gBK 3tYASt6GAEreNwBK3wYAAAAAAAAAAAAAAAAASt8BAEreBABK3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEreAwBK3gQASt4DAAAAAAAAAAAAAAAAAAAAAABK3iIASt5pAErevABK 3vYASt7/AEre/wBK3v0ASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEreOQAAAAAASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreVABK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/gBK3v8ASt7/AEre5wBK3pUASt47AErcBAAAAAAAAAAAAAAAAABK3gQASt4EAErfAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAgBK3gQASt8CAAAAAABL3QEAAAAAAEreIABK3nMASt7MAEre/wBK3v8ASt7/AEre+wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt6nAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQAAAAAASt68AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/gBK3v8ASt79AErewQBK3lkAS98OAAAAAAAA AAAASd0BAEreBABK3gMASt8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreBABK 3gIAAAAAAAAAAABL3gIASt46AErenwBK3vEASt7/AEre/wBK3vwASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vcASt4mAAAAAABK 3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEreNQBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/gBK 3v8ASt7zAErenwBK3jIAAAAAAAAAAAAAAAAASt4EAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4EAEreAQAAAAAAAAAAAEreFgBK 3nYASt7eAEre/wBK3v4ASt78AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3oMAAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAASt6PAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v4ASt77AEre/gBK3v8ASt7uAEreiwBK3hwAAAAAAEreAQBK3gIASt4EAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gMASt4BAAAAAABK3ggASt5gAEre0wBK3v8ASt7+AEre/ABK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre2gBJ 3QgAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEreCwBK3t4ASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/QBK3v8ASt7wAEreiABK 3hYAAAAAAErdAQBK3gMASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIASt4EAErdAQAAAAAAStwDAEreWABK3tMASt7/AEre/gBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEreSQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt5KAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/ABK3v8ASt73AErelABK3hkAAAAAAEreAQBK3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gIAAAAAAErfBABK 3mMASt7hAEre/wBK3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6dAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3pcASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3v8ASt7/AEresABK3igAAAAAAEreAQBK 3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABJ3gwASt5/AEre8gBK3v8ASt78AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3t4AS94JAAAAAABK3gEAAAAAAAAAAAAA AAAAAAAAAEreAQAAAAAASt8EAEre2ABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3vwASt7/AEre1gBK3kYAAAAAAErdAQBK3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gEASt4CAEreAwBK3gMASt4EAEreBABK 3gQASt4EAEreBABK3gIAAAAAAEreBABK3gQASt4EAEreBABK3gQASt4DAEreAwBK3gIASt4BAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAEreAgAAAAAASt4eAEreqQBK3v8ASt7+AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBK3j8AAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3i4ASt7/AEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEre+ABK3oAASuAHAAAAAABK3gMASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAwBK3gQASt4EAEreAwBK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvdAQBK3gMASt4EAEreBABK3gMASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4BAEreAwBL3gEAAAAAAEreTABK 3t8ASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErefwAAAAAASt4EAAAAAAAA AAAAAAAAAAAAAABK3gQAAAAAAEreagBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v0ASt78AEre/wBK 3sgASt4sAAAAAABK3gMASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwBK 3gQASt4DAEvfAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gkASt4ZAEreLABK3j0ASt5PAEreYABK 3m8ASt55AErefwBK3pEASt44AErfCgBK3oMASt5+AEredQBK3moASt5eAEreTgBK3j4ASt4sAEreGABK 3ggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASN4BAEreAwBK3gQASt4DAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gMAAAAAAEreDABK3pQASt7/AEre/gBK3vwASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt6+AAAAAABL3QIAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6jAEre/wBK 3vsASt7/AEre/wBK3v8ASt78AEre/wBK3v0ASt6AAEncAwAAAAAASt4EAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEneAQBK3gMASt4EAEreAgAAAAAAAAAAAAAAAAAAAAAASeEBAEreGQBK3j8ASt5lAEreigBK 3q8ASt7MAEre4wBK3vQASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3msASt8VAEre/wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v0ASt7zAEre4QBK3ssASt6vAEreigBK3mMASt48AEreGQBL 3gEAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gQASt4DAEneAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMASt4CAAAAAABK3kUASt7iAEre/wBK3vsASt7+AEre/wBK3v8ASt7+AEre/wBK3uoAS94QAAAAAABK 3gEAAAAAAAAAAABK3gEAAAAAAEreAgBK3tMASt7/AEre/QBK3v8ASt7+AEre+wBK3v8ASt7bAEreOQAA AAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwBK3gMAAAAAAAAAAAAAAAAAAAAAAEreEQBK 3j0ASt5xAEreqABK3s8ASt7zAEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK 3vwASt77AEre+wBK3vcASt7/AEreaABK3xcASt77AEre/ABK3voASt77AEre/ABK3vwASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7zAEre0ABK3qkASt5wAErePABJ3g8AAAAAAAAAAAAA AAAAAAAAAEreAwBK3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4EAAAAAABK3REASt6qAEre/wBK 3vwASt79AEre/wBK3v8ASt7+AEre/wBK3jkAAAAAAEreAwAAAAAAAAAAAEreAgAAAAAASt4bAEre9ABK 3v8ASt7+AEre/gBK3vwASt7/AEreqgBJ3Q4AAAAAAEreBABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJ3gEAAAAAAEreAQAA AAAAAAAAAAAAAABJ3ggASt44AEreegBK3rwASt7rAEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK 3vsASt78AEre/ABK3v4ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt5nAErfEgBK 3v4ASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK3v0ASt78AEre/ABK3vsASt77AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre6gBK3rwASt56AEreOgBK3woAAAAAAAAAAAAAAAAASt4DAEreBABJ 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAEveAgAAAAAASt5tAEre+gBK3v8ASt78AEre/wBK3vwASt7/AEreZgAA AAAASt4EAAAAAAAAAAAASt4DAAAAAABK3j4ASt7/AEre/gBK3vwASt7+AEre/gBK3ncAAAAAAErfAgBK 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASt4EAAAAAAAAAAAAAAAAAEreDwBK3k8ASt6iAEre4QBK3v8ASt7/AEre/wBK 3v8ASt7+AEre+wBK3vsASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3sIASt6gAEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v0ASt77AEre+wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre4gBK3qMASt5TAErfEQAAAAAAAAAAAAAAAABK3gQASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreBAAA AAAASt47AEre4gBK3v8ASt77AEre+wBK3v8ASt6QAAAAAABK3gQAAAAAAAAAAABK3gQAAAAAAEreYwBK 3v8ASt74AEre/wBK3u8ASt5KAAAAAABK3gQASd4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAQBK3gMASt4BAAAAAAAAAAAASt4MAAAAAABK 3ngASt70AEre/gBK3v8ASt7/AEre/gBK3vsASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre+wBK3v4ASt7/AEre/wBK3v8ASt7uAEreqgBK 3k8ASt4MAAAAAAAAAAAASt4BAEreBABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt4YAErexQBK3v8ASt73AEre/wBK 3rkAAAAAAEreAgAAAAAAAAAAAEreBAAAAAAASt6DAEre/wBK3v8ASt7dAEreKwAAAAAASt4FAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK 3gQASd4BAAAAAAAAAAAASt4uAEremABK3r8AAAAAAEreqwBK3v8ASt75AEre+wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt77AEre/ABK3v8ASt7+AEre/wBK3uQASt6SAEreMgAAAAAAAAAAAEvfAQBK 3gQASt0CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt4GAErepQBK3v8ASt7/AEre0gBK9QEAAAAAAErfAQAAAAAASt4DAAAAAABK 3p4ASt7/AErexQBJ3hcAAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gQAS94BAAAAAABJ3ggASt5WAErexABK3vsASt7/AEre2QAA AAAASt6oAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vsASt78AEre/wBK3v8ASt79AErexgBK3loASt4LAAAAAABK3QEASt4DAEreAgAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gMAAAAAAErehgBK 3v8ASt7nAErdDgAAAAAASt4BAAAAAABK3gIAAAAAAErexQBK3sYASt4JAAAAAABK3gMAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMASt4BAAAAAABK 3hQASt55AEre3wBK3v8ASt7/AEre/ABK3v8ASt7ZAAAAAABK3qkASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v4ASt7+AEre/wBK 3uIASt57AEreFwAAAAAASt4BAEreAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gQAAAAAAEredQBK3voASt4fAAAAAABK3gIAAAAAAAAAAABK 4AUASt57AErdEQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEneAQBK3gQAS94BAAAAAABK3hkASt6DAEre6wBK3v8ASt7+AEre/ABK3vwASt78AEre/wBK 3tcAAAAAAErergBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt78AEre/gBK3v8ASt7uAErehQBK3hkAAAAAAEreAQBK 3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gQAAAAAAEreagBK3jIAAAAAAEreAgAAAAAAAAAAAEreAQBK3gIASt4BAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABK3xIASt6DAEre8QBK 3v8ASt7+AEre+wBK3v0ASt7/AEre/wBK3v4ASt7/AEre5wBK3rEASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre+wBK3v4ASt7/AEre8ABK3oUASt8UAAAAAABK3gIASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASeABAEngAgAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIASt4DAAAAAABJ3ggASt5vAEre5wBK3v8ASt79AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt79AEre/wBK 3ukASt5xAEneCQAAAAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4DAEvdAQAAAAAASt5HAEre1ABK3v8ASt79AEre/ABK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/QBK3v8ASt7YAEreTAAAAAAASeABAEreAwBK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAwAA AAAASt4fAErerwBK3v8ASt7+AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/ABK3v4ASt7/AEresQBL3yEAAAAAAEreAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASNwBAEreaQBK3vAASt7/AEre/ABK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3vwASt7/AEre8wBK 3m0AT+MBAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAQBK3gQAAAAAAEreIgBK 3sEASt7/AEre/QBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK3sEASt4jAAAAAABK3gQASt4BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASd0CAAAAAABK3l8ASt7yAEre/wBK3vsASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/wBK3vMASt5iAAAAAABL3QIASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASd4BAAAAAABJ3QwASt6lAEre/wBK 3v0ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/QBK3v8ASt6pAEveDgAA AAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASd4BAEreAwAAAAAASt4sAEre1ABK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt7XAEreLgAAAAAASt4EAErfAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMAAAAAAEneDABK3uIASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt70AEreWQAAAAAASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIAAAAAAEneCwBK3iMASd4PAEre7wBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v0ASt7/AEreggAAAAAASt4CAEreAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAQAAAAAASt6vAErejQAAAAAASt7zAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3vsASt7/AEreowBK3QQASt4BAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAAS94NAEresgBK3v8ASt6CAETgAwBK3vQASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3voASt7/AEreugBK 3g4AAAAAAEreAwAAAAAAAAAAAAAAAABK3gEAAAAAAEreFQBK3sgASt7/AEre/wBK3oYAAAAAAEre8wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreyABK3hYAAAAAAEreAQAAAAAASt4CAAAAAABK 3hkASt7SAEre/wBK3vcASt7/AErefgBK3lQASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vsASt7/AEre0QBL3hkAAAAAAEreAQBK3gMAAAAAAErerQBK3v8ASt76AEre/gBK3v8ASt7hAEre9QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3voASt7/AErerAAAAAAASt4DAAAAAABK 3gIASt7VAEre/wBK3v0ASt7/AEre/wBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7VAFHeAgAAAAAAAAAAAEreFwBK3vIASt7/AEre/gBK3v8ASt7/AEre/gBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vEASt4WAAAAAAAA AAAASt40AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3jMAAAAAAAAAAABK3k8ASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreTgAA AAAAAAAAAErebwBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt5uAAAAAAAAAAAASt6IAEre/wBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK 3ogAAAAAAAAAAABK3qIASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreoAAAAAAAAAAAAEretwBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v8ASt62AAAAAAAAAAAASt7GAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3sQAAAAAAEreAgBK3tIASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEre0QBK5gIASt4IAEre2gBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7aAEreBwBK3gsASt7gAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/wBK3t8ASN4LAEreDQBK3uMASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre4gBK3gwASt4MAEre4QBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7hAEreDABK3gkASt7dAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3twASt4JAEreAwBK 3tMASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt7/AEre0gBK3gIAAAAAAErexABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre8ABK 3usASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3uoASt7wAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7EAAAAAAAA AAAASt6uAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7QAEreOwBK3uwASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt7rAEreOwBK 3tEASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3q0AAAAAAAAAAABK3owASt7/AEre+wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3tgAAAAAAEreNABK3uwASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEre6wBK3jIAAAAAAEre2QBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreiwAA AAAAAAAAAEreYQBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre1wBK3gcAAAAAAEreLwBK3uYASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3uYASt4uAAAAAABK 3ggASt7YAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5gAAAAAAAAAAAASt4uAEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt7eAEreBwBK3gIAAAAAAEreJwBK3t0ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+wBK3v8ASt7cAEreJgAAAAAASt4BAEreCABK3uAASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3i4AAAAAAAAAAABK2QMASt7WAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3ugASt4NAAAAAABK3gQAAAAAAEreGwBK 3s4ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErezgBK3hoAAAAAAEreBAAA AAAASt4OAEre6QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7WAEneAwAAAAAASt4EAAAAAABK3oQASt7/AEre+wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre9ABK3hsAAAAAAEreAQBK3gMAAAAAAEreDwBK3rwASt7/AEre+gBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre/wBK3roASt0OAAAAAABK3gMASt4BAAAAAABK3hwASt71AEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK 3oMAAAAAAEreBABK3QIAAAAAAErdHwBK3vAASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEreMQAAAAAASt4CAAAAAABK 3gIAAAAAAEzgBQBK3qEASt7/AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt6gAEveBABJ3wEASt4CAAAAAABK 3gIAAAAAAEreMwBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt7vAEreHgAAAAAASt4CAAAAAABK3gMAAAAAAErecwBK 3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3v8ASt5RAAAAAABK3gMAAAAAAAAAAABK3gIASd4DAAAAAABK3nwASt7/AEre/gBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v4ASt7/AEreewAAAAAASd0DAEreAgAAAAAAAAAAAEreAwAAAAAASt5TAEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3nIAAAAAAEreAwAAAAAAAAAAAAAAAABJ3QIAAAAAAErelABK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3n4AAAAAAEreBAAA AAAAAAAAAAAAAABK3gEASt4EAAAAAABK3lAASt7wAEre/wBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEre8ABK3k8AAAAAAEreBABK3gEAAAAAAAAAAAAA AAAASt4EAAAAAABK3oAASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt6UAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3QQAAAAAAEregABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEretQAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK 3iYASt7LAEre/wBK3vwASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt78AEre/wBK 3skASt4lAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEreuABK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEregAAA AAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt6ZAEre/wBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7pAEreEwAA AAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABL3gUASt6KAEre/wBK3v8ASt77AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt77AEre/wBK3v8ASt6JAEvgBQAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAASt8BAAAAAABK3xUASt7rAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt6YAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4DAAAAAABK3rYASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt5TAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4CAEreAwAAAAAASt49AEre0wBK3v8ASt79AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/QBK3v8ASt7TAErePQAA AAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreVQBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3rUAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gQAAAAAAErejQBK3v8ASt77AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK 3rEAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwAAAAAAS94HAEredgBK 3u0ASt7/AEre/gBK3vwASt78AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt78AEre/gBK3v8ASt7sAEredABL3wcAAAAAAEreAwBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgAAAAAASt6zAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErejQAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt5JAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre/gBK3jYAAAAAAEreAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gIAAAAAAEreFgBK3oUASt7pAEre/wBK3v4ASt7/AEre/QBK 3vsASt77AEre+wBK3vsASt77AEre+wBK3v0ASt7/AEre/gBK3v8ASt7pAErehABJ3RUAAAAAAEreAgBK 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreNwBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt5JAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3gcASt7YAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AEreswAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gMASt8BAAAAAABK3g8ASt5gAEreuABK3vIASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vIASt63AEreXwBK3g8AAAAAAEreAQBK3gMASt8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErfAwAAAAAASt61AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre1wBK2wcAAAAAAErdAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAAAAAABK3nEASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreZwAAAAAASt4FAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4EAAAAAAAAAAAAAAAAAEreFgBK 3kYASt5xAErejwBK3p4ASt6eAErejgBK3nEASt5FAEreFQAAAAAAAAAAAAAAAABK3gQASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gUAAAAAAEreagBK3v8ASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt5wAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEreCwBK 3tYASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt74AEreQQAAAAAASt4FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBK3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4FAAAAAABK3kMASt75AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEre1gBL3QsAAAAAAEveAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreVABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7xAEreQwAA AAAASt4EAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASt4DAEreBABK3gQASt4DAEreAwBK3gQASt4EAEreAwBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreBAAAAAAASt5FAEre8QBK3v8ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v8ASt5TAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL 3gMAAAAAAEreowBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v4ASt76AErebwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAErecABK3vsASt7+AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreogAAAAAASd4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAAAAAASt4TAEre2wBK3v8ASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3voASt7/AErezgBK3iwAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAErfLQBK3s4ASt7/AEre+gBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK 3toASt4TAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwAAAAAASt47AEre+QBK3v4ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre/ABK3vsASt77AEre+wBK3vsASt78AEre/ABK3v0ASt79AEre/QBK3v4ASt7+AEre/gBK 3v4ASt7+AEre/QBK3v0ASt78AEre+wBK3vwASt7/AEre/gBK3v8ASt6/AEreJQAAAAAASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gEASt4BAEreAQBK 3gEASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgAA AAAASt4lAErewABK3v8ASt7+AEre/wBK3vwASt77AEre/ABK3v0ASt79AEre/gBK3v4ASt7+AEre/gBK 3v4ASt79AEre/QBK3v0ASt78AEre/ABK3vsASt77AEre+wBK3vsASt78AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt74AEveOgAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt5fAEre/wBK 3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vUASt6vAEreQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreQQBK3rAASt71AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre+QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre/wBK 3l4AAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt54AEre/wBK3vsASt7+AEre/wBK3v8ASt7/AEre/QBK 3v8ASt6ZAEreMgBK3l4ASt5tAEregABK3pIASt6jAEretABK3sMASt7QAEre2QBK3uEASt7nAEre7ABK 3u4ASt7tAEre5wBK3twASt7NAEreswBK3okASt5UAEreGgAAAAAAAAAAAEreAgBK3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3QYASt4KAEreCQBK 3gkASt4JAEreBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBK3gIAAAAAAAAAAABK3hoASt5UAEreigBK3rMASt7NAEre3ABK3ucASt7tAEre7gBK 3uwASt7nAEre4QBK3tkASt7QAErewwBK3rQASt6jAErekgBK3oAASt5tAEreXgBK3jIASt6bAEre/wBK 3v0ASt7/AEre/wBK3v8ASt7+AEre+wBK3v8ASt53AAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAA AAAASt6EAEre/wBK3vsASt7+AEre/wBK3v8ASt7+AEre/wBK3vsASt5UAAAAAABK3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAStwEAErfCQBK3wwASt4QAEreEQBK3hAASt4MAEreBgAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEAAAAAAEresABK3usASt7fAEre3wBK3uoASt64AAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4GAEreDABK3hEASt4RAEreEABK3gwAS98JAEreBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAEreVQBK3vwASt7/AEre/gBK3v8ASt7/AEre/gBK3vsASt7/AEregwAA AAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6AAEre/wBK3vwASt79AEre/wBK 3v8ASt7/AEre/gBK3v8ASt58AAAAAABK3gMASt4IAEreAwBK3gMASt0CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEvfAQBK3gMASt4EAEreBABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3goASt7jAEre/wBK 3v0ASt7+AEre/wBK3ukASt4OAAAAAABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gQASt4DAEvcAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABL3gIASt4DAEreAwBK3ggASt4DAAAAAABK3n4ASt7/AEre/gBK 3v8ASt7/AEre/wBK3v0ASt78AEre/wBK3oAAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreBAAAAAAASt5uAEre/wBK3v4ASt78AEre/wBK3v8ASt7+AEre+wBK3v8ASt6nAEreDwAA AAAASt4DAEreBABK3gEAAAAAAEreAQBK3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEAS94BAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAEreHABK3vMASt7/AEre/ABK3vwASt7/AEre9gBK3iAAAAAAAEreAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gEASt4BAEreAQBK3gEASt4BAErfAQBK3gEAAAAAAEndAQBK 3gQASt4DAAAAAABK3RAASt6nAEre/wBK3vsASt7+AEre/wBK3v8ASt78AEre/gBK3v8ASt5tAAAAAABK 3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt8BAEreBAAAAAAASt5NAEre8ABK 3v8ASt77AEre/gBK3v8ASt7+AEre+wBK3v8ASt7hAEreUAAAAAAAAAAAAErdAQBK3gQASt4DAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAgBK3gQASt4EAAAAAAAA AAAAAAAAAAAAAABK3xwASt4GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgAAAAAASt4pAEre+wBK 3v8ASt7+AEre/gBK3v8ASt79AEreKwAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEneBgBK 3hsAAAAAAAAAAAAAAAAAAAAAAEreBABK3gQASt4CAErdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4BAEreAwBK3gQASt4BAAAAAAAAAAAASt5SAEre4gBK3v8ASt77AEre/gBK 3v8ASt7+AEre+wBK3v8ASt7wAEreTQAAAAAASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt4lAEreyQBK3v8ASt78AEre/ABK3v8ASt7/AEre/ABK 3v4ASt7/AErevgBK3kcATNwDAAAAAAAAAAAAAAAAAEreAgBK3gQASt4EAEreBABK3gQASt4EAEreBABK 3gQASt4DAEreAQAAAAAAAAAAAAAAAAAAAAAASd0DAEreKwBK3m0ASt7EAEre0wBK3gcAAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3SUASt76AEre/QBK3voASt76AEre/ABK3voASt4mAAAAAABK 3gIAAAAAAAAAAAAAAAAAAAAAAEneAQAAAAAASN4IAEre1ABK3sMASt5tAEreKwBK3gMAAAAAAAAAAAAA AAAAAAAAAErdAQBK3gMASt4EAEreBABK3gQASt4EAEreBABK3gQASt4EAEreAgAAAAAAAAAAAAAAAABJ 3wMASt5HAErewABK3v8ASt7+AEre/ABK3v8ASt7/AEre/ABK3vwASt7/AEreyABK3iUAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASd4FAEreggBK3voASt7/AEre/ABK3vwASt7/AEre/QBK3v0ASt7/AEre/wBK3tIASt58AEreNABL 3wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAErdCgBK3i4ASt5dAEremgBK 3tUASt78AEre/ABK3v8ASt64AAAAAABK3wIAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEndBQBK 3tEASt7/AEre/QBK3v0ASt7/AEre2ABL3gcAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEneAgAA AAAASt66AEre/wBK3vwASt78AEre1QBK3poASt5cAEreLgBK3QkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEneCQBK3jQASt59AEre0wBK3v8ASt7/AEre/QBK3v0ASt7/AEre/ABK 3vwASt7/AEre+QBK3oIAS98FAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gMAAAAAAEreLgBK3rwASt7/AEre/wBK 3v0ASt77AEre/gBK3vwASt79AEre/wBK3v8ASt7+AEre4wBK3roASt6WAErefABK3mwASt5nAEreawBK 3nQASt6HAErenwBK3swASt7pAEre+QBK3v8ASt7/AEre/wBK3v4ASt73AEre/wBK3nUAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEreHABK3nYASt6fAErepgBK3ogASt4nAAAAAABK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3ncASt7/AEre9wBK3v4ASt7/AEre/wBK 3v8ASt75AEre6ABK3ssASt6eAErehwBK3nQASt5rAEreZwBK3mwASt59AErelgBK3rsASt7jAEre/gBK 3v8ASt7/AEre/QBK3vwASt7+AEre+wBK3v0ASt7/AEre/wBK3rsASt4uAAAAAABK3gMASt4CAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQBK3gMAAAAAAAAAAABK3ksASt7HAEre/wBK3v4ASt7/AEre/ABK3vsASt76AEre+gBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre6wBK3tMASt76AEre/QBK 3vsASt79AEre/gBK3v8ASt73AEreJQAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gIAAAAAAEreJwBK3vgASt7/AEre/gBK3v0ASt77AEre/QBK3voASt7TAEre6wBK3v8ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+gBK3voASt77AEre/ABK3v8ASt7+AEre/wBK 3sYASt5KAAAAAAAAAAAASt4DAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABH 3wIASt5BAErepgBK3u8ASt7/AEre/gBK3v8ASt7/AEre/wBK3v0ASt76AEre+gBK3vwASt7/AEre/wBK 3v4ASt7/AEre1wBK3ngASt6QAEre8wBK3v8ASt7+AEre/wBK3v8ASt78AEre/wBK3qQAAAAAAEneAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3oMASt5pAErdMQBK3jAASt5pAErehABK 3QMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAErepgBK3v8ASt78AEre/wBK 3v8ASt7+AEre/wBK3vMASt6YAErefQBK3tUASt7/AEre/gBK3v8ASt7/AEre/ABK3voASt76AEre/QBK 3v8ASt7/AEre/wBK3v4ASt7/AEre7wBK3qUASt5BAEXaAgAAAAAASt4CAEreAwAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAEreAgAAAAAAAAAAAEveEwBK3lQASt6WAEreywBK 3uwASt78AEre/wBK3v8ASt7/AEre/QBK3uwASt7MAErekQBK3jcASt4kAErepwBK3v8ASt7+AEre/gBK 3v8ASt7/AEre/gBK3v8ASt74AEreLgAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAA AAAASt5ZAEre/wBK3v0ASt7+AEre/gBK3v0ASt7/AEreWwAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAgAAAAAASt4wAEre+QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/gBK3v8ASt61AEreMwBK 3jcASt6UAErezABK3u0ASt79AEre/wBK3v8ASt7/AEre/ABK3uwASt7LAErelgBK3lQASt0TAAAAAAAA AAAASt4CAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwBK3gMAAAAAAAAAAAAAAAAAAAAAAEreEABK3icASt42AErePgBK3jkASt4qAEreEQAA AAAATOEEAEreZABK3uoASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3ocAAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIAAAAAAEreGwBK3uUASt7/AEre+gBK3v8ASt7/AEre+gBK 3v8ASt7mAEreHQAAAAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt6JAEre/wBK 3vsASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt71AEreeQAAAAAASuQBAEreEQBK3ioASt45AErePgBK 3jYASt4nAEreEAAAAAAAAAAAAAAAAAAAAAAASt4DAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4EAEreBABK 3QEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3i8ASt71AEre/wBK3vgASt7+AEre/wBK 3v8ASt7/AEre/ABK3v8ASt7SAEvfCwAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAgAA AAAASt60AEre/wBK3vwASt7/AEre/gBK3v4ASt7/AEre/ABK3v8ASt61AAAAAABK3gIASt4BAAAAAAAA AAAAAAAAAAAAAAAAAAAASt8BAAAAAABK3wsASt7SAEre/wBK3vwASt7/AEre/wBK3v8ASt79AEre+QBK 3v8ASt6nAAAAAABK3wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEndAQBK3gQASt4EAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4CAEreAwBK3gMASt4DAEreAgBK 3gEASt4CAAAAAABK3jAASt7eAEre/wBK3vwASt78AEre/gBK3v4ASt7+AEre+QBK3jcAAAAAAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAErfAQBK3gUAAAAAAEreiABK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+wBK3v8ASt6KAAAAAABK3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK 3jYASt75AEre/gBK3v4ASt79AEre+wBK3v4ASt7/AErejAAAAAAAAAAAAEreAQBK3gEASt4CAEreAwBK 3gMASt4DAEreAgBK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3hEASt6bAEre/QBK 3v8ASt7+AEre+wBK3v8ASt5lAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4FAAAAAABK 3nQASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt52AAAAAABK 3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3mUASt7/AEre/ABK3v4ASt7/AEre3ABK 3koAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4CAEreAgAAAAAASt4xAEreqQBK3vUASt7/AErehAAAAAAASt4EAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4EAEreAgAAAAAASt56AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt58AAAAAABJ3gIASt4EAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3oYASt7/AEre2gBK3m0ASt8KAAAAAABK3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAwAA AAAAAAAAAEreJwBK3l0ASd8FAEvcAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAAAAAASt4JAErenABK 3v8ASt77AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK 3v8ASt6cAEreCQAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEvdCABK3kAASt8LAAAAAABK 3gEASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gMAAAAAAAAAAABK3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4MAEreYABK3uIASt7/AEre/gBK3v8ASt7/AEre/QBK3vwASt78AEre/ABK 3vwASt78AEre/ABK3vwASt78AEre/gBK3v8ASt7/AEre/gBK3v8ASt7jAEreXwBK3QsAAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAASt4CAAAAAABL3wEASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAS94BAAAAAABK3kMASt6xAErezQBK 3tYASt7tAEre+gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vUASt7lAErezQBK3sMASt6gAEreMQAAAAAASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBABK3hAASt4iAEreMABK3jsASt5JAEreUgBK 3lUASt5ZAEreWABK3lMASt5NAEreQwBK3jUASt4pAEreGgBK3goASecBAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwBJ 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4DAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// ///////////////////////////////////////////AAAAD///////////////8AAAAAD////////// ////wAAAAAAD/////////////gAAAAAAAH////////////gAAAAAAAAP///////////gAAAAAAAAA/// ////////AAAAAAAAAAD//////////gAAAAAAAAAAP/////////gAAAAAAAAAAA/////////gAAAAAAAA AAAH////////wAAAAAAAAAAAAf///////wAAAAAAAAAAAAD///////4AAAAAAAAAAAAAP//////8AAAA AAAAAAAAAB//////8AAAAAAAAAAAAAAP/////+AAAAAAAAAAAAAAB//////AAAAAAAAAAAAAAAP///// gAAAAAAAAAAAAAAB/////wAAAAAAAAAAAAAAAP////4AAAAAAAAAAAAAAAB////+AAAAAAAAAAAAAAAA P////AAAAAAAH/gAAAAAAB////gAAAAAAA/wAAAAAAAf///wAAAAAAAH4AAAAAAAD///8AAAAAAAA8AA AAAAAAf//+AAAAAAAAGAAAAAAAAH///AAAAAAAP//8AAAAAAA///wAAAAAH/////gAAAAAH//4AAAAAf //////wAAAAB//+AAAAB////////wAAAAP//AAAAD/////////gAAAD//wAAAH//////////AAAAf/4A AAP//////////8AAAH/+AAAP///////////4AAA//AAAP////////////gAAP/wAAP////////////+A AD/8AAP/////////////4AAf+AAP//////////////gAH/gAP//////////////8AB/4AH////////// /////wAf+AH///////2///////+AD/AD/////8ABgAP/////4A/wD/////gAAYAAH/////AP8B////+A AAGAAAH////8D/B////4AAAAAAAAH////gfw////4AAAAAAAAAP///8H4f///kAAAAAAAAAAf///h+P/ //hAAAAAAAAAAB///8fn///gQAAAAAAAAAAH///3////AEAAAAAAAAAAAP///////AAAAAAAAAAAAAA/ //////gAAAAAAAAAAAAAH//////gAAAAAAAAAAAAAAf/////gAAAAAAAAAAAAAAB/////wAAAAAAAAAA AAAAAP////wAAAAAAAAAAAAAAAA////4AAAAAAAAAAAAAAAAH///4AAAAAAAAAAAAAAAAAf//8AAAAAA AAAAAAAAAAAD//+AAAAAAAAAAAAAAAAAAf//gAAAAAAAAAAAAAAAAAB//IAAAAAAAAAAAAAAAAAAP/iA AAAAAAAAAAAAAAAAAB/wgAAAAAAAAAAAAAAAAAAP4YAAAAAAAAAAAAAAAAAAB8AAAAAAAAAAAAAAAAAA AAPAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAA AAAAAAADwAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAABgAAAAAAA AAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAYAA AAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAA AAGAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAYAAAAACAAAAAAAAQAAAAAGAAAAAAwAAAAAA AMAAAAABwAAAAAOAAAAAAAHAAAAAA8AAAAADwAAAAAADwAAAAAPAAAAAA+AAAAAAB8AAAAADwAAAAAPw AAAAAA/AAAAAA+AAAAAD+AAAAAAfwAAAAAfwAAAAA/4AAAAAf8AAAAAP8AAAAAP/AAAAAP+AAAAAD/gA AAAB/4AAAAH/gAAAAB/4AAAAAf/AAAAD/4AAAAAf+AAAAAH/8AAAD/+AAAAAH/gAAAAA//wAAD//AAAA AB/8AAAAAP/+AAB//wAAAAA//AAAAAB//8AD//4AAAAAP/4AAAAAf//8P//+AAAAAH/+AAAAAD////// /AAAAAB//wAAAAAf//////gAAAAA//8AAAAAD//////wAAAAAP//gAAAAAP/////wAAAAAH//8AAAAAD /////8AAAAAD///gAAAAD//////wAAAAB///8AcAAH///////gAA4A////AH//////gf/////+AP///4 A//////4H//////AH////gD/////+B//////AH////8Af/////gf/////gD/////gB///5/4H/n///gB /////8AH//gf+B/4H//gA//////wAD4AP/4//AB8AA///////AAAAD////wAAAA///////8AAIA/+9/8 AQAA////////4AMAf/gf/gDAB//////////+AH/wD/4Af////////////AD/4Af/AD////////////4B /8AD/4B/////////////A//AA//B/////////////8P/gAH/x////////////////gAAf/////////// //////wAAD/////////////////4AAAf//////////////////////////////////////////////// //8oAAAAQAAAAIAAAAABACAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAASt4RAEreLgBK3jYASt41AEreNQBK3jUASt41AEreNQBK 3jUASt42AEreMgBK3hYASt4BAAAAAAAAAAAAAAAAAEreAQBK3gQASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreBABK3gIAAAAAAAAAAABK3wIASt4mAEreYABK3pkASt7IAEre6QBK3vsASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7tAErezgBK3qIASt5qAEreMABK3gUAAAAAAAAAAABK 3gEASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4EAEreAQAAAAAAAAAAAEreLwBK3oYASt7SAEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7cAErelABK3j0ASt4DAAAAAABK3gEASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABK3ggASt5aAErexQBK3v0ASt7/AEre/wBK 3v8ASt77AEre+wBK3v0ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt79AEre+wBK3vsASt7+AEre/wBK3v8ASt7/AEre1ABK3m0ASt4QAAAAAABK3gIASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMAAAAAAErfAwBK3mEASt7cAEre/wBK 3v4ASt7+AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/QBK3v4ASt7/AEre6QBK 3nkASt4NAAAAAABK3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gMAAAAAAEreOwBK 3s4ASt7/AEre/gBK3vwASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre+wBK3v4ASt7/AEre4QBK3lMAAAAAAEreAgBK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASt4FAErejABK3v8ASt7/AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v4ASt7/AEreqgBK3hIAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBAAAAAAASt4cAErexwBK3v8ASt77AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+wBK 3v8ASt7gAEreNAAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt4xAEre5QBK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3vYASt5PAAAAAABK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt42AEre7wBK3v8ASt77AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre+wBK3vsASt77AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7+AEre/gBK3lgAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAgAAAAAASt4qAEre6wBK 3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v0ASt79AEreSgAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQAA AAAASt4SAEre1wBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3q0ASt5oAErefwBK3n8ASt5oAErerQBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3vAASt4sAAAAAABK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIAAAAAAEreqgBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre+wBK3vsASt78AEre/QBK3v8ASt7sAEreQwAA AAAAAAAAAEreQgBK3uwASt7/AEre/QBK3vwASt77AEre+wBK3vwASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErezQBK3gkAAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreYgBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt77AEre+wBK3vwASt5XAEreVABK3vsASt75AEre+QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt77AEre+wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6KAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEreFwBK3uYASt7/AEre/gBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/ABK3vwASt7/AEre/wBK3v8ASt7/AEre6wBK 3sMASt6YAErecQBK3lEASt43AEreJgBK3hcASt4SAEreGABK3hcASt4RAEreFQBK3iIASt4yAEreSwBK 3moASt6RAEreuwBK3uQASt7+AEre/wBK3v8ASt7/AEre/ABK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre+wBK3jUAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAASt4DAAAAAABK 3osASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/wBK3v8ASt7/AEre8QBK 3rgASt50AEreOABK3g4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4JAEreLgBK3mcASt6qAEre6QBK3v8ASt7/AEre/wBK 3vsASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6yAAAAAABK3gIAAAAAAAAAAAAA AAAASt4BAAAAAABK3h0ASt7vAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt7/AEre/wBK 3vYASt6yAEreWQBK3hQAAAAAAEreAQAAAAAAAAAAAEreAQBK3gQASt4EAEreBABK3gMASt4CAEreAQBK 3gEASt4BAErfAQBK3gEASt4BAEreAgBK3gIASt4DAEreBABK3gQASt4CAAAAAAAAAAAASt4BAAAAAABK 3g0ASt5LAEreoQBK3u4ASt7/AEre/wBK3vwASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3j0AAAAAAEreAwAAAAAAAAAAAEreBAAAAAAASt57AEre/wBK3vsASt7/AEre/wBK3v8ASt79AEre/ABK 3v4ASt7/AEre4QBK3nwASt4dAAAAAABJ3gEAAAAAAEreAgBK3gQASt4DAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASt4CAEreBABK3gMAAAAAAEreAQAAAAAASt4TAEreaQBK3tIASt7/AEre/wBK3vwASt79AEre/wBK 3v8ASt7/AEre/ABK3v8ASt6kAAAAAABK3gMAAAAAAEreAQAAAAAASt4EAEre1ABK3v8ASt79AEre/wBK 3v4ASt78AEre/gBK3v8ASt7bAEreYwBK3gkAAAAAAAAAAABK3gMASt4EAEreAQAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gMASt4DAAAAAAAAAAAASt4DAEreTQBK 3skASt7/AEre/gBK3vwASt7+AEre/wBK3v4ASt7/AEre8ABK3hwAAAAAAEreAgBK3gMAAAAAAErePABK 3v8ASt7+AEre/wBK3v0ASt78AEre/wBK3ukASt5sAEreBwAAAAAASt4BAEreBABK3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gIASt4DAEreBABK3gQASt4EAEreAwBK3gIASt0BAEreAQBK 3gIASt4DAEreBABK3gQASt4EAEreAwBK3gIASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gEASt4EAEreAgAAAAAASeABAEreVABK3toASt7/AEre/ABK3vwASt7/AEre/ABK3v8ASt5kAAAAAABK 3gQASt4EAAAAAABK3oMASt7/AEre+wBK3vwASt7+AEre/wBK3pgASt4SAAAAAABK3gIASt4EAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gQASt4EAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4EAEreAwBK 3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAEreAgAAAAAASt4HAErefABK3vcASt7/AEre+wBK 3vsASt7/AErerQAAAAAASt4DAEreAgAAAAAASt7AAEre/wBK3vgASt7/AEre3QBK3kAAAAAAAEreAgBK 3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAASt4NAEreLgBK 3lAASt5wAErejABK3qEASt6vAEreygBK3nwASt5hAEreygBK3q0ASt6hAEreiwBK3nAASt5QAEreLQBK 3g0AAAAAAAAAAAAAAAAAAAAAAEreAgBK3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4DAEreAwAA AAAASt4pAErexwBK3v8ASt76AEre/wBK3uMASt4KAAAAAAAAAAAASt4PAEre6ABK3v8ASt7/AErepABK 3g0AAAAAAEreBABK3gIAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gMAAAAAAAAAAAAAAAAASt4WAEreUABK 3o4ASt7DAEre6QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6lAEregQBK3v8ASt77AEre/wBK 3v8ASt7/AEre/wBK3v4ASt7pAErewgBK3o0ASt5QAEreFwAAAAAAAAAAAAAAAABK3gMASt4DAAAAAAAA AAAAAAAAAAAAAABK3gEASt4EAAAAAABK3QIASt6GAEre/wBK3v0ASt7+AEreLQAAAAAAAAAAAEreLABK 3v8ASt7+AErebwAAAAAASt4CAEreAwAAAAAAAAAAAAAAAABK3gEASt4EAEreAQAAAAAASt4CAErcAgBK 3lkASt69AEre8gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3vsASt77AEre+wBK3vsASt7/AEre6QBK 3uIASt7/AEre+wBK3vsASt77AEre+wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3vMASt67AEreawBK 3hwAAAAAAAAAAABK3gEASt4EAEreAQAAAAAAAAAAAAAAAABK3gIASt4EAAAAAABK3lAASt7vAEre/wBK 3lAAAAAAAAAAAABK3k0ASt7/AEreSAAAAAAASt4FAEreAgAAAAAAAAAAAAAAAABK3gMASt4CAAAAAABK 3gMASt5EAErewQBK3mUASt7AAEre/wBK3v0ASt78AEre+wBK3vwASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt78AEre+wBK 3vwASt7/AEre/gBK3v8ASt71AEresABK3kkASd4EAAAAAABK3gEASt4EAAAAAAAAAAAAAAAAAEreAQBK 3gUAAAAAAEreKwBK3vQASt55AAAAAAAAAAAASt5QAEreSQAAAAAASt4FAAAAAAAAAAAAAAAAAEreAwBK 3gIAAAAAAEreCABK3mAASt7UAEre/QBK3v8ASt5uAErevQBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt77AEre/wBK3v4ASt7/AEre1QBK3mEASt4IAAAAAABK 3gIASt4DAAAAAAAAAAAAAAAAAEreBAAAAAAASt4vAEreZAAAAAAAAAAAAEreAgBK3gEASt4DAAAAAAAA AAAASt4BAEreAwAAAAAASd4BAEreWQBK3tsASt7/AEre/gBK3vwASt7+AEre5QBK3vgASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/QBK 3v4ASt7/AEre2wBK3lsASt0CAAAAAABK3gMASt4BAAAAAAAAAAAASt4CAEreAQBK3wIAAAAAAAAAAABK 3gEASt4CAAAAAAAAAAAASt4DAEreAwAAAAAASt40AErexgBK3v8ASt7+AEre/ABK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3v4ASt7/AEreyABK3jYAAAAAAEreAwBK3gMAAAAAAAAAAABK 3gIASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAAAAAABK3ggASt6LAEre/ABK3v8ASt78AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/ABK3v8ASt79AErejABK 3ggAAAAAAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4EAAAAAABK3i4ASt7SAEre/wBK 3vwASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre/ABK3v8ASt7TAEreLwAAAAAASt4EAEreAQAAAAAAAAAAAAAAAABK3gEASt4FAAAAAABK 3kgASt75AEre/wBK3vsASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/wBK3vcASt5gAAAAAABK3gQASt4BAAAAAABK 3gEAAAAAAEreDABK3j8ASt6EAEre/wBK3vgASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt78AEre/wBK 3okAAAAAAEreAgBK3gEAAAAAAAAAAABK3rMASt62AErecwBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3voASt7/AEreowBK3gIAAAAAAAAAAABK3p0ASt7/AEre0ABK3s0ASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+gBK3v8ASt6fAAAAAABK3g8ASt7kAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre5ABK 3g8ASt4qAEre9wBK3v8ASt79AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBK3vcASt4pAEreRQBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEreRQBK3l8ASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3l4ASt5yAEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK 3v8ASt5yAEregABK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AErefwBK3oMASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3oMASt57AEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt57AEreZgBK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre5gBK3sUASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt7FAEre5wBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEreZQBK3kQASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3uAASt4TAEreuQBK3v8ASt76AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+gBK 3v8ASt64AEreEwBK3uEASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3kMASt4WAEre6ABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7qAEreDgBK3gMASt6vAEre/wBK 3voASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre+gBK3v8ASt6vAErfAwBK3g4ASt7rAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3ugASt4VAAAAAABK3p8ASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre9QBK 3h0AAAAAAEvfAgBK3pgASt7/AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre+wBK3v8ASt6XAErcAgAAAAAASt4eAEre9gBK3v8ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt6fAAAAAAAA AAAASt4fAEre4ABK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/gBK3v8ASt45AAAAAABK3gYAAAAAAErecgBK3v4ASt7/AEre+wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt77AEre/wBK3v4ASt5yAAAAAABK3gYAAAAAAEreOgBK 3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v8ASt7gAEreHwAAAAAASt4EAAAAAABK3lAASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErebgAAAAAASt4FAEreBAAAAAAASt5AAEre4QBK 3v8ASt79AEre+wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt79AEre/wBK3uAASt4/AAAAAABK 3gQASt4FAAAAAABK3m8ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v0ASt7/AEreUAAAAAAASt4EAEreAwAAAAAASt5TAEre/wBK3vwASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3rwAAAAAAEreAwAA AAAASt4EAAAAAABK3g8ASt6UAEre+wBK3v8ASt7/AEre/gBK3vwASt78AEre/gBK3v8ASt7/AEre+gBK 3pMASt4PAAAAAABK3gQAAAAAAEreAgAAAAAASt69AEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/wBK3lIAAAAAAEreAwBK3gIAAAAAAEreGwBK 3vAASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEreQAAAAAAASt4FAAAAAABK3gMASt4CAAAAAABK3ikASt6WAEre5QBK3v8ASt7/AEre/wBK 3v8ASt7lAErelgBK3ikAAAAAAEreAgBK3gMAAAAAAEreBQAAAAAASt5BAEre/wBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK3vAASt4bAAAAAABK 3gIAAAAAAEreAwAAAAAASt6TAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3tMASt4PAAAAAABK3gEAAAAAAEreAQBK3gMAAAAAAAAAAABK 3goASt4zAEreTgBK3k4ASt4yAEreCgAAAAAAAAAAAEreAwBK3gEAAAAAAEreAQAAAAAASt4QAEre1ABK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK 3v8ASt6TAAAAAABK3gMAAAAAAAAAAABK3gEAAAAAAEreGABK3uUASt7/AEre/QBK3v8ASt7/AEre/wBK 3vwASt77AEre/ABK3v0ASt79AEre/gBK3v4ASt7+AEre/gBK3voASt7/AErexQBK3iAAAAAAAEreAQAA AAAAAAAAAEreAgBK3gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAEreAgAAAAAAAAAAAEreAQAA AAAASt4gAErexgBK3v8ASt76AEre/gBK3v4ASt7+AEre/gBK3v0ASt79AEre/ABK3vsASt78AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7lAEreGAAAAAAASt4BAAAAAAAAAAAAAAAAAEreAwAAAAAASt5OAEre/wBK 3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt7RAEreEAAAAAAASt4BAAAAAAAAAAAAAAAAAEreAQBK3gIAAAAAAAAAAABK3gIASt4BAAAAAAAA AAAAAAAAAEreAQAAAAAASt4QAEre0QBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt7/AEreTgAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3nUASt7/AEre+wBK3v0ASt7/AEreswBK3qMASt7HAEre0ABK3t0ASt7mAEre7ABK 3u4ASt7oAEre2QBK3rcASt5tAEreFQAAAAAASt4BAEreAQAAAAAAAAAAAAAAAAAAAAAASt4FAEreDgBK 3g4ASt4FAAAAAAAAAAAAAAAAAAAAAABK3gEASt4BAAAAAABK3hUASt5tAEretwBK3toASt7oAEre7gBK 3uwASt7mAEre3QBK3tAASt7HAEreowBK3rMASt7/AEre/QBK3vsASt7/AEredQAAAAAASt4EAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEregQBK3v8ASt75AEre/wBK3sYASt4VAAAAAABK 3gIASt4IAEreDQBK3hAASt4RAEreDQBL3gMAAAAAAAAAAABK3gEASt4EAEreAQAAAAAAAAAAAAAAAABK 3gQAAAAAAEreZQBK3vQASt71AEreagAAAAAASt4EAAAAAAAAAAAAAAAAAEreAQBK3gQASt4BAAAAAAAA AAAASt4DAEreDQBK3hEASt4QAEreDQBK3ggASd0CAAAAAABK3hYASt7HAEre/wBK3vkASt7/AEregAAA AAAASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreBAAAAAAASt5uAEre/wBK 3v4ASt7/AEre6wBK3lQAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAASt4BAEreAgAAAAAAAAAAAAAAAABK 3wMASt4MAAAAAAAAAAAASt4EAAAAAABK3owASt7/AEre/wBK3o4AAAAAAEreBAAAAAAAAAAAAEreDABK 3gMAAAAAAAAAAAAAAAAASt4CAEreAQAAAAAAAAAAAAAAAAAAAAAASt4BAAAAAABK3lQASt7rAEre/wBK 3v4ASt7+AErebgAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4EAAAAAABK3j8ASt7eAEre/wBK3v0ASt7/AErevABK3lQASt4VAAAAAAAAAAAAAAAAAAAAAABK 3gQASt4XAErePwBK3nsASt7ZAEreZgAAAAAASt4EAEreBAAAAAAASt59AEre/wBK3v8ASt5/AAAAAABK 3gQASt4EAAAAAABK3mcASt7ZAEreewBK3j8ASt4XAEreBAAAAAAAAAAAAAAAAAAAAAAASt4VAEreVABK 3r0ASt7/AEre/QBK3v8ASt7dAErePwAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEreDABK3oEASt7vAEre/wBK3v4ASt7/AEre8wBK 3s8ASt66AErevABK3s0ASt7DAEre4wBK3v8ASt7/AEre/gBK3i4AAAAAAEreAgAAAAAAAAAAAEreBwBK 3jcASt49AEreCgAAAAAAAAAAAEreAgAAAAAASt4vAEre/wBK3v8ASt7/AEre4wBK3sMASt7LAErevABK 3roASt7PAEre8wBK3v8ASt7+AEre/wBK3u4ASt6BAEreDAAAAAAASt4DAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gIAAAAAAEreFQBK 3moASt62AEre4wBK3vsASt7/AEre/wBK3uEASt6cAErewABK3v8ASt75AEre/wBK3q0AAAAAAEreAgAA AAAASt4EAAAAAABK3nUASt6bAEremgBK3nUAAAAAAEreBAAAAAAASt4CAAAAAABK3q4ASt7/AEre+gBK 3v8ASt7EAErepgBK3uIASt7/AEre/wBK3vsASt7jAEretgBK3moASt4VAAAAAABK3gIASt4DAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAwAAAAAAAAAAAAAAAABK3goASt4fAEreJABK3hIASt4HAErevgBK3v8ASt75AEre/gBK 3vQASt4qAAAAAABK3gIASt4FAAAAAABK3jsASt77AEre/wBK3v8ASt77AEreOwAAAAAASt4FAEreAgAA AAAASt4rAEre9ABK3v4ASt74AEre/wBK3qkAAAAAAEreFABK3iMASt4fAEreCgAAAAAAAAAAAAAAAABK 3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gIAAAAAAAAAAAAAAAAASt4BAAAAAABK 3lYASt7kAEre/wBK3v8ASt5mAAAAAABK3gMASt4CAAAAAABK3h4ASt7gAEre/wBK3vkASt75AEre/wBK 3uAASt4fAAAAAABK3gIASt4DAAAAAABK3mYASt7/AEre/wBK3sYASt4tAAAAAABK3gEAAAAAAAAAAAAA AAAASt4CAEreBABK3gEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK 3gIASt4CAEreAQBK3gEAAAAAAEreDABK3n0ASt57AAAAAABK3gIASt4BAAAAAABK3jQASt7gAEre/wBK 3v0ASt7/AEre/wBK3v0ASt7/AEre4QBK3jUAAAAAAEreAQBK3gIAAAAAAEredQBK3mAAAAAAAAAAAABK 3gEASt4BAEreAgBK3gIASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3gEAAAAAAAAAAABK3gIASt4BAAAAAABK 3kcASt7ZAEre9QBK3vMASt79AEre/wBK3v4ASt78AEre8QBK3vIASt7VAErePwAAAAAASt4CAEreAgAA AAAAAAAAAEreAgBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK 3gMAAAAAAAAAAAAAAAAASt4JAEreCQBK3hQASt4mAEreMABK3jUASt40AEreLgBK3iIASt4QAEreBQBK 3gcAAAAAAAAAAAAAAAAASt4DAEreBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////////AAD/ //////AAAA//////wAAAA/////8AAAAA/////AAAAAA////wAAAAAA///+AAAAAAB///wAAAAAAD//+A AAAAAAH//wAAAAAAAP/+AAADwAAAf/wAAAPAAAA//AAAAYAAAB/4AAB//gAAH/AAD///8AAP8AB////+ AA/wA//////AB+AP//////AH4D///////AfAf///////A8H//+GH//+Dw//4AAAf/8PP/8AAAAP/89/+ gAAAAH/7//iAAAAAH///4AAAAAAH//+AAAAAAAH//gAAAAAAAH/8AAAAAAAAP/gAAAAAAAAf8AAAAAAA AAfIAAAAAAAAA4AAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAQAA AAAAAAABAAAAAAAAAACAAAAAAAAAAYAAAAAAAAABgAAQAAAIAAGAABgAABgAAYAAHAAAOAABwAAfAAD4 AAPgAB+AAfgAB+AAD8AD8AAH4AAP8A/wAAfgAAf//+AAB/AAA///wAAP+AAB//+AAB/8AAf//+AAP/wf //5///g//w///D//8P//g/9+fv/B///AAH/+AAP///gAfn4AH////+D8Pwf/////8fgfj///////8A// ///////gB///////////////KAAAADAAAABgAAAAAQAgAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4EAEreAQAA AAAAAAAAAAAAAABK3g8ASt43AEreXgBK3moASt5pAEreaQBK3mkASt5pAEreagBK3mIASt48AEreFAAA AAAAAAAAAAAAAABK3gEASt4EAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK 3gEAAAAAAEreAgBK3jEASt57AEreuwBK3ucASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre7ABK3sIASt6EAEreOgBK3gUAAAAAAAAAAABK3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK 3gMASt4CAAAAAABK3hAASt5tAEre0ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vwASt78AEre/ABK 3vwASt78AEre/ABK3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3toASt57AEreGAAAAAAASt4CAEreAwAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAwAAAAAASt4JAEredwBK3uoASt7/AEre/gBK3v4ASt77AEre/ABK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt77AEre/QBK3v4ASt7/AEre8gBK 3ooASt4SAAAAAABK3gMASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gEASt4EAAAAAABK3kIASt7bAEre/wBK3v4ASt77AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt77AEre/QBK3v8ASt7oAEreVgAAAAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAQBK3gIAAAAAAEreggBK3v8ASt7/AEre+wBK3v0ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt79AEre/wBK3psASt4FAEreAQBK3gIAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreAQBK3gQASt6nAEre/wBK3vsASt79AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre+wBK3vsASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre+gBK3v8ASt6/AEreDwAA AAAASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4CAEndAQBK3qwASt7/AEre+gBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3voASt7/AErexQBK3gwAAAAAAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAErelABK 3v8ASt76AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v0ASt78AEre/ABK 3vcASt6bAErekgBK3pIASt6bAEre9wBK3vwASt78AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt76AEre/wBK3rAAAAAAAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASt5eAEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt78AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7CAEreEABK3hAASt7BAEre/wBK3v0ASt7/AEre/wBK3v8ASt78AEre+wBK 3vwASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+gBK3v8ASt57AAAAAABK3gMAAAAAAAAAAAAA AAAASt4BAAAAAABK3hsASt7pAEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/QBK3vsASt7+AEre/wBK 3v8ASt7/AEre+wBK3uIASt7EAEreqQBK3pEASt6ZAEreVABK3lIASt6XAErejQBK3qQASt6/AEre3QBK 3vkASt7/AEre/wBK3v8ASt7/AEre+wBK3vwASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt75AEreMQAA AAAASt4CAAAAAAAAAAAASt4DAAAAAABK3pYASt7/AEre+wBK3v8ASt7/AEre/wBK3vwASt79AEre/wBK 3v8ASt78AErezwBK3o4ASt5RAEreJABK3gcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreBQBK3h8ASt5KAErehQBK3sYASt74AEre/wBK3v8ASt79AEre+wBK3v8ASt7/AEre/wBK 3vwASt7/AEreswAAAAAASt4CAAAAAABK3gIAAAAAAEreJQBK3vUASt7/AEre/gBK3v8ASt78AEre/QBK 3v8ASt7/AEre1gBK3noASt4pAEvgAQAAAAAAAAAAAAAAAAAAAAAASt4BAEreAwBK3gQASt4EAEreAgBK 3gIASt4EAEreBABK3gQASt4CAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4hAErebgBK3ssASt7/AEre/wBK 3v0ASt78AEre/wBK3v8ASt7+AEre/wBK3j4AAAAAAEreAwBK3gQAAAAAAEregwBK3v8ASt77AEre/QBK 3vwASt7/AEre/wBK3rsASt5GAEreAwAAAAAAAAAAAEreAQBK3gQASt4EAEreAgBK3gEAAAAAAEreAQBK 3gEASt4BAEreAQBK3gEASt4BAEreAQBK3gEAAAAAAEreAQBK3gIASt4DAEreBABK3gEAAAAAAAAAAABJ 3wEASt45AErerABK3vsASt7/AEre/ABK3v0ASt78AEre/wBK3qIAAAAAAEreAwAAAAAASt4DAEre1QBK 3v8ASt76AEre/QBK3v8ASt7EAErePQAAAAAAAAAAAEreAQBK3gQASt4CAEreAQBK3gEASt4DAEreBABK 3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gQASt4DAEreAQAA AAAASt4CAEreBABK3gIASt4BAAAAAABK3i4ASt60AEre/wBK3v4ASt77AEre/wBK3usASt4TAAAAAAAA AAAASt4xAEre/wBK3vsASt7/AEre6wBK3l4AAAAAAAAAAABK3gMASt4DAEreAQBK3gEASt4EAEreAgAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK3g8ASt4bAEreFgBK3hMASt4aAEreDwBK3gMAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gIASt4EAEreAgAAAAAASt4DAEreAwBK3gEAAAAAAEreSwBK3t8ASt7/AEre+QBK 3v8ASt5MAAAAAAAAAAAASt5lAEre/wBK3v8ASt6zAEreFwAAAAAASt4DAEreAwBK3gEASt4DAEreAwAA AAAAAAAAAAAAAABK3hMASt5CAEredABK3qIASt7EAEre3ABK3ugASt7/AEresQBK3pwASt7/AEre6ABK 3twASt7EAEreoQBK3nQASt5CAEreEgAAAAAAAAAAAAAAAABK3gIASt4EAAAAAABK3gMASt4DAAAAAABK 3gwASt6eAEre/wBK3v8ASt6EAAAAAAAAAAAASt6UAEre/wBK3nYAAAAAAEreAQBK3gQASt4BAEreAwBK 3gEAAAAAAAAAAABK3g4ASt5rAErevABK3vAASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt7/AEre4gBK 3toASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7/AEre8ABK3rsASt5wAEreIQAAAAAAAAAAAEreAQBK 3gQAAAAAAEreAwBK3gMAAAAAAEreXgBK3v8ASt6zAAAAAAAAAAAASt6xAEreYwAAAAAASt4EAEreAgBK 3gMASt4CAAAAAABK3gQASt5LAEreuwBK3ncASt7vAEre/wBK3v8ASt79AEre+wBK3vsASt78AEre/QBK 3v4ASt7+AEre/gBK3v4ASt7+AEre/gBK3v0ASt78AEre+wBK3vsASt79AEre/wBK3v8ASt7/AEre+ABK 3rcASt5NAEreBAAAAAAASt4CAEreAwBK3gEASt4FAAAAAABK3kcASt7AAEreBABK3gUASt4jAAAAAABK 3gMASt4CAEreAwAAAAAASt4CAEreWABK3tMASt7/AEre/wBK3rEASt7zAEre/gBK3v4ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3vwASt77AEre/gBK3v4ASt7/AEre1ABK3lkASt4DAAAAAABK3gMASt4BAEreAwAAAAAASt4gAEreCwAA AAAASt4BAEreAgBK3gIASt4DAAAAAABK3joASt7KAEre/wBK3v4ASt78AEre+wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vwASt78AEre/gBK3v8ASt7MAEreOwAAAAAASt4DAEreAgBK 3gIASt4BAAAAAAAAAAAASt4CAEreAwAAAAAASt4JAErekgBK3v8ASt7/AEre/ABK3vwASt7/AEre/wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3vwASt7/AEre/wBK 3pMASt4KAAAAAABK3gMASt4BAAAAAAAAAAAASt4EAAAAAABK3isASt7VAEre/wBK3vsASt78AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt78AEre+wBK3v8ASt7VAEreLQAAAAAASt4EAAAAAABK3gEASt4DAEreIABK3qQASt7/AEre+ABK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7/AEre9QBK3lIAAAAAAEreAgAAAAAASt50AErewQBK 3qEASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt78AEre/QBK3v8ASt5mAAAAAABK 3jAASt78AEre9QBK3vQASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v4ASt76AEreMABK3loASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEreWQBK3noASt7/AEre/ABK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreeQBK3pMASt7/AEre/ABK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AErekwBK3qMASt7/AEre/ABK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreogBK 3qYASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3vwASt7/AErepgBK3pkASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt79AEre8gBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3vIASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3vwASt7/AEremQBK3noASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEreVwBK3s0ASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AErezQBK3lcASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreeQBK3j8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEreOgBK3gwASt7RAEre/wBK3voASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre+gBK3v8ASt7QAEreCwBK3jsASt7/AEre/QBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AErePwAAAAAASt65AEre/wBK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt7/AEreWwAAAAAASt4RAEretABK 3v8ASt77AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt77AEre/wBK3rQASt4QAAAAAABK 3lwASt7/AEre/ABK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3v8ASt65AAAAAAAA AAAASt4hAEre8gBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vsASt7/AEreigAA AAAASt4FAAAAAABK3oIASt7+AEre/wBK3v0ASt77AEre/ABK3vwASt77AEre/QBK3v8ASt7+AEreggAA AAAASt4FAAAAAABK3osASt7/AEre+wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7+AEre/wBK 3vIASt4gAAAAAAAAAAAASt4MAEre5QBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AEre1ABK3gQASt4DAEreBAAAAAAASt44AErexgBK3v8ASt7+AEre/wBK3v8ASt7+AEre/wBK 3sYASt43AAAAAABK3gQASt4DAEreBABK3tUASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/wBK3uQASt4MAAAAAABK3gMAAAAAAErenQBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3mkAAAAAAEreBABK3gMAAAAAAErfAQBK3j4ASt6PAEretQBK 3rUASt6OAErePgBK3wEAAAAAAEreAwBK3gQAAAAAAEreagBK3v8ASt78AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3p0AAAAAAEreAwBK3gIAAAAAAEreJABK3vAASt7/AEre/gBK 3v8ASt7/AEre/QBK3vwASt77AEre+wBK3vsASt76AEre/ABK3vgASt5eAAAAAAAAAAAASt4DAEreAgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gIASt4DAAAAAAAAAAAASt5fAEre+ABK3vwASt76AEre+wBK 3vsASt77AEre/ABK3v0ASt7/AEre/wBK3v4ASt7/AEre8ABK3iQAAAAAAEreAgAAAAAASt4DAAAAAABK 3mAASt7/AEre+wBK3v8ASt77AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/gBK3v8ASt7kAEreJQAA AAAASt4CAAAAAABK3gMASt4EAAAAAAAAAAAASt4EAEreAwAAAAAASt4CAAAAAABK3iYASt7kAEre/wBK 3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt77AEre/wBK3vsASt7/AEreYAAAAAAASt4DAAAAAAAA AAAAAAAAAEreAwAAAAAASt5+AEre/wBK3v8ASt7iAEreTQBK3kgASt5sAEreeQBK3oAASt5/AErebwBK 3kYASt4LAAAAAABK3gEAAAAAAEreAQAAAAAASt4MAEredABK3nYASt4OAAAAAABK3gEAAAAAAEreAQAA AAAASt4LAEreRgBK3m8ASt5/AEregABK3nkASt5sAEreSABK3k0ASt7iAEre/wBK3v8ASt5+AAAAAABK 3gMAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gMAAAAAAEredQBK3v8ASt7/AErewQBK3h8AAAAAAEreAQAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gcASt4GAEreAQAAAAAASt4tAEre/wBK3v8ASt4uAAAAAABK 3gEASt4GAEreBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEAAAAAAEreHwBK3sIASt7/AEre/wBK 3nUAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3kUASt7fAEre/wBK 3vwASt6rAEreTgBK3iQASt4ZAEreJwBK3jYASt5XAEremQBK3tAASt4YAAAAAAAAAAAASt4aAErezQBK 3tEASt4bAAAAAAAAAAAASt4ZAEre0ABK3pkASt5WAEreNgBK3iYASt4ZAEreJABK3k4ASt6sAEre/ABK 3v8ASt7eAEreRQAAAAAASt4EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAA AAAASt4MAErebgBK3tcASt7/AEre/gBK3v8ASt78AErezQBK3tIASt7+AEre/wBK3rIAAAAAAEreAwAA AAAASt4NAEreSABK3koASt4OAAAAAABK3gMAAAAAAEreswBK3v8ASt7+AEre1ABK3tIASt78AEre/wBK 3v4ASt7/AEre1gBK3m4ASt4MAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gMASt4BAAAAAABK3wMASt4mAEreSwBK3lkASt41AErekQBK3v8ASt78AEre+ABK 3jEAAAAAAEreCAAAAAAASt6MAEre/wBK3v8ASt6MAAAAAABK3gcAAAAAAEreMgBK3vgASt79AEre/wBK 3oIASt4xAEreWQBK3ksASt4mAEreAwAAAAAASt4BAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4BAEreBABK3gEAAAAAAAAAAABK3gIAAAAAAEreNABK 3sYASt7/AErecQAAAAAASt4FAAAAAABK3mIASt7/AEre+gBK3voASt7/AEreYwAAAAAASt4FAAAAAABK 3nEASt7/AEreqwBK3hwAAAAAAEreAQAAAAAAAAAAAEreAQBK3gQASt4BAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASt4CAEreAwBK 3gQASt4DAAAAAABK3gQASt4vAEreBwAAAAAASt4GAErehwBK3v8ASt7+AEre/wBK3v8ASt7/AEre/wBK 3oUASt4EAAAAAABK3gcASt4kAAAAAAAAAAAASt4DAEreBABK3gMASt4CAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAgBK3gIAAAAAAEreAwAAAAAASt4MAEreRQBK3k0ASt5eAEreaABK 3mcASt5cAEreSQBK3kAASt4KAAAAAABK3gMAAAAAAEreAwBK3gIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////wAA//+AAP//AAD//AAAP/8AAP/w AAAH/wAA/8AAAAP/AAD/AAAAAP8AAP4AAAAAfwAA/AAAAAA/AAD4AAAAAB8AAPgAAYAAHwAA8AABgAAP AADgAP//AAcAAOAP///wBwAAwD////wDAADA/////wMAAMP/////wwAAx//AA//hAACf/AAAP/kAAL/o AAAH/QAA/4AAAAH/AAD+AAAAAH8AAPgAAAAAHwAA8AAAAAAPAADgAAAAAAcAAMAAAAAAAwAAgAAAAAAB AACAAAAAAAEAAIAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAgAAQAEAAIAD AADAAQAAgAOAAcABAADAAcADgAMAAMAB8A+AAwAAwAH8P4ADAADgAP//AAcAAPAAf/4ADwAA+Pf//+8f AAD8f/5//j8AAP4fnnn4fwAA/4Af+AH/AAD//Dw8P/8AAP/+fD5//wAA///wD///AAD///////8AACgA AAAgAAAAQAAAAAEAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAASt4BAEreAwAAAAAAAAAAAEreAgBK3ioASt5jAErekwBK3qIASt6hAEreoQBK3qIASt6WAEreZwBK 3i8ASt4EAAAAAAAAAAAASt4DAEreAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAwBK3gIAAAAAAEreHABK3noASt7OAEre+gBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre+wBK3tMASt6DAEreIgAAAAAASt4CAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gMAAAAAAEreDwBK3o0ASt72AEre/wBK3v4ASt7/AEre/QBK3vwASt78AEre/ABK 3vwASt78AEre/ABK3v0ASt7/AEre/wBK3v8ASt76AEremgBK3hYAAAAAAEreBAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAASt4EAAAAAABK3jwASt7hAEre/wBK3v0ASt77AEre/QBK3v8ASt7/AEre/wBK 3v4ASt78AEre/ABK3v4ASt7/AEre/wBK3v8ASt79AEre+wBK3v0ASt7/AEre6gBK3ksAAAAAAEreBAAA AAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt5XAEre/ABK3v8ASt77AEre/gBK3v8ASt7/AEre/wBK 3v8ASt7+AEre/gBK3v8ASt7/AEre/gBK3v4ASt7/AEre/wBK3v8ASt7/AEre/gBK3vsASt7+AEre/wBK 3mkAAAAAAEreAwAAAAAAAAAAAAAAAABK3gMAAAAAAEreSQBK3v4ASt79AEre/ABK3v8ASt7/AEre/QBK 3vsASt77AEre/ABK3v8ASt7tAEresgBK3rIASt7tAEre/wBK3vwASt77AEre+wBK3v0ASt7/AEre/wBK 3v0ASt78AEre/wBK3lsAAAAAAEreAwAAAAAASt4CAAAAAABK3hwASt7oAEre/wBK3v0ASt7+AEre+wBK 3v0ASt7/AEre/wBK3v8ASt7/AEre/gBK3vIASt5KAEreSQBK3vAASt79AEre/wBK3v8ASt7/AEre/wBK 3v0ASt77AEre/gBK3v0ASt7/AEre8wBK3ioAAAAAAEreAgBK3gMAAAAAAEreoABK3v8ASt76AEre/ABK 3v4ASt7/AEre/wBK3uQASt6oAErebwBK3kQASt4nAEreHABK3hwASt4cAEreGgBK3iUASt5BAEreawBK 3qIASt7fAEre/wBK3v8ASt7+AEre+wBK3voASt7/AEretAAAAAAASt4CAAAAAABK3isASt78AEre/ABK 3vwASt7/AEre9QBK3qQASt5EAEreCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAABK3gYASt48AEremwBK3vEASt7/AEre/QBK3voASt7/AErePAAAAAAAAAAAAEreggBK 3v8ASt78AEre+QBK3pUASt4dAAAAAABK3gEASt4CAEreBgBK3gIAAAAAAAAAAAAAAAAASt4BAEreAQAA AAAAAAAAAAAAAABK3gIASt4GAEreAwAAAAAAAAAAAEreFgBK3okASt71AEre/QBK3v8ASt6XAAAAAAAA AAAASt7FAEre/wBK3sIASt4rAAAAAABK3gIASt4FAEreAQAAAAAAAAAAAEreCABK3iYASt5BAEreWwBK 3k0ASt5IAEreWwBK3kEASt4mAEreCAAAAAAAAAAAAAAAAABK3gUASt4DAAAAAABK3iIASt63AEre/wBK 3tYASt4FAEreGgBK3vIASt6JAAAAAABK3gEASt4EAAAAAAAAAAAASt4aAErecgBK3rUASt7kAEre/ABK 3v4ASt7/AEre4QBK3tsASt7/AEre/gBK3vwASt7kAEretQBK3nIASt4lAAAAAAAAAAAASt4EAEreAgAA AAAASt52AEre+QBK3isASt40AEreYgAAAAAASt4FAAAAAABK3gIASt5QAEreswBK3qcASt7/AEre/QBK 3v8ASt7/AEre/QBK3vsASt78AEre/ABK3vsASt79AEre/wBK3v8ASt7/AEre/wBK3vsASt69AEreTwBK 3gIAAAAAAEreBgAAAAAASt5YAEreQgBK3gIASt4BAEreAwAAAAAASt5AAErezABK3v8ASt79AEre9QBK 3vwASt77AEre/QBK3v8ASt7/AEre/wBK3v4ASt7+AEre/wBK3v8ASt7/AEre/QBK3vwASt77AEre/gBK 3v4ASt7/AErezQBK3kEAAAAAAEreBABK3gIASt4CAEreAwBK3gEASt4LAEremQBK3v8ASt7/AEre/ABK 3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/ABK3vwASt7/AEre/wBK3poASt4KAAAAAABK3gMASt4BAEreCgBK3q8ASt7/AEre+gBK 3vwASt7/AEre/wBK3v4ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3vwASt77AEre/wBK3tQASt4jAAAAAABK3jcASt7CAEre2ABK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt77AEre/wBK3uUASt4uAErekABK 3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt76AEre/wBK 3o8ASt6vAEre/wBK3vwASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt7/AErergBK3sQASt7/AEre/QBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v0ASt7+AEre/wBK 3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v4ASt79AEre/wBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/QBK3v8ASt7DAErexgBK3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK 3v0ASt79AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/wBK3v8ASt79AEre/QBK3v8ASt7/AEre/wBK 3v8ASt7/AEre/wBK3v8ASt79AEre/wBK3sYASt6xAEre/wBK3v0ASt7/AEre/wBK3v8ASt7/AEre/QBK 3v8ASt6uAEre3gBK3v8ASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre+wBK3v8ASt7eAErergBK 3v8ASt79AEre/wBK3v8ASt7/AEre/wBK3v0ASt7/AEresABK3nEASt7/AEre/QBK3v8ASt7/AEre/wBK 3v8ASt77AEre/wBK3nkASt4gAEre6gBK3v8ASt76AEre/QBK3v8ASt7/AEre/QBK3voASt7/AEre6gBK 3iAASt56AEre/wBK3vsASt7/AEre/wBK3v8ASt7/AEre/QBK3v8ASt5wAEreBQBK3sYASt7/AEre/QBK 3v8ASt7/AEre/wBK3vsASt7/AEreqgAAAAAASt4gAErexABK3v8ASt79AEre/wBK3v8ASt79AEre/wBK 3sQASt4gAAAAAABK3qoASt7/AEre+wBK3v8ASt7/AEre/wBK3v0ASt7/AErexgBK3gUAAAAAAErekQBK 3v8ASt77AEre/wBK3v0ASt79AEre/ABK3v8ASt7oAEreFQAAAAAASt4FAErebABK3twASt7+AEre/gBK 3twASt5sAEreBQAAAAAASt4VAEre6ABK3v8ASt78AEre/QBK3v0ASt7/AEre+wBK3v8ASt6RAAAAAAAA AAAASt4wAEre+wBK3v4ASt7+AEre/wBK3v8ASt7/AEre/QBK3v8ASt60AEreEABK3gEAAAAAAEreBgBK 3iUASt4lAEreBgAAAAAASt4BAEreEQBK3rUASt7/AEre/QBK3v8ASt7/AEre/wBK3v4ASt7+AEre+wBK 3jAAAAAAAEreAwAAAAAASt5xAEre/wBK3vwASt7LAEre1ABK3u0ASt7xAEre6wBK3tgASt4/AAAAAABK 3gYASt4BAErdAQBK3gEASt4BAEreBgAAAAAASt4/AEre2ABK3uoASt7xAEre7QBK3tQASt7LAEre/ABK 3v8ASt5xAAAAAABK3gMAAAAAAEreAwAAAAAASt55AEre/wBK3rcASt4UAAAAAABK3gEAAAAAAAAAAAAA AAAASt4KAEreAwAAAAAASt7LAErezQAAAAAASt4DAEreCgAAAAAAAAAAAAAAAABK3gEAAAAAAEreFABK 3rgASt7/AEreeQAAAAAASt4DAAAAAAAAAAAAAAAAAEreAwAAAAAASt5KAEre5gBK3vgASt6kAErecQBK 3l0ASt5lAErewQBK3pIAAAAAAAAAAABK3nsASt59AAAAAAAAAAAASt6TAErewQBK3mUASt5fAErecQBK 3qQASt74AEre5gBK3koAAAAAAEreAwAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwAAAAAASt4FAEreUABK 3poASt6VAErepgBK3v8ASt7/AEreQQAAAAAASt4UAErergBK3q8ASt4UAAAAAABK3kEASt7/AEre/wBK 3p8ASt6VAEremgBK3lAASt4FAAAAAABK3gMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEreAwBK 3gEAAAAAAEreAQAAAAAASt4QAEreoQBK3nYAAAAAAEreGABK3sEASt7/AEre/wBK3sEASt4YAAAAAABK 3nUASt6QAEreBwAAAAAASt4BAAAAAABK3gEASt4DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAEreAQBK3gQASt4EAEreBABK3gIAAAAAAEreAgAAAAAASt5NAEreoQBK3psASt6aAErenwBK 3koAAAAAAEreAgAAAAAASt4CAEreBABK3gQASt4DAEreAQAAAAAAAAAAAAAAAAAAAAAAAAAA//gf///A Af/+AAB//AAAP/gAAB/wAAAP4AGAB8Af+APA//8Dg///wY////GfwAP9/gAAf/gAAB/gAAAHwAAAA4AA AAEAAAAAAAAAAAAAAAAAAAAAAAAAAIBgBgGAMAwBgDw8AcAf+APgH/gH8/5/z/jn5x/+DnB//9w7///8 P/8oAAAAEAAAACAAAAABACAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABK3gEASt4CAAAAAABK 3i0ASt6IAErexgBK3tUASt7VAEreyABK3owASt4wAAAAAABK3gIASt4CAAAAAABK3gEAAAAAAEreDgBK 3psASt77AEre/wBK3v8ASt7/AEre/wBK3v8ASt7/AEre/ABK3qIASt4SAAAAAABK3gIAAAAAAEreEQBK 3s0ASt7/AEre/QBK3v4ASt7/AEre6wBK3usASt7/AEre/gBK3v0ASt7/AEre1QBK3hYAAAAAAAAAAABK 3qAASt7/AEre/QBK3vUASt7FAEreowBK3lUASt5UAEreoQBK3sMASt70AEre/QBK3v8ASt6pAAAAAABK 3jQASt7/AEre4wBK3m8ASt4RAAAAAABK3gEAAAAAAAAAAABK3gEAAAAAAEreDgBK3mkASt7eAEre/wBK 3j4ASt6JAEreowBK3gIAAAAAAEreIQBK3m0ASt6fAEreowBK3qEASt6fAErebABK3iUAAAAAAAAAAABK 3pwASt6TAEreJwAAAAAASt5DAErevwBK3usASt7/AEre/gBK3v8ASt7/AEre/wBK3v8ASt7+AErexwBK 3kIAAAAAAEreJgAAAAAASt6TAEre/wBK3v4ASt7+AEre+wBK3vsASt78AEre/ABK3vsASt77AEre/gBK 3v4ASt7/AErenABK3gUASt6lAEre/wBK3v0ASt77AEre/QBK3v4ASt7/AEre/wBK3v8ASt7/AEre/gBK 3v4ASt78AEre+wBK3v8ASt6vAEre4QBK3v8ASt7+AEre/wBK3v8ASt79AEre/gBK3v8ASt7/AEre/gBK 3v0ASt7/AEre/wBK3v4ASt7/AEre4ABK3uAASt7/AEre/QBK3v8ASt7qAEre8gBK3v8ASt76AEre+gBK 3v8ASt7yAEre6gBK3v8ASt79AEre/wBK3uAASt6aAEre/wBK3vkASt7/AEretwBK3kAASt70AEre/wBK 3v8ASt70AEreQABK3rcASt7/AEre+QBK3v8ASt6aAEreOABK3vsASt7+AEre/gBK3v8ASt46AEreFgBK 3oAASt6AAEreFgBK3joASt7/AEre/gBK3v4ASt77AEreOAAAAAAASt59AEre9QBK3ooASt6AAEreRAAA AAAASt4sAEreLAAAAAAASt5FAEregABK3ooASt71AErefQAAAAAASt4CAAAAAABK3kwASt58AEreWwBK 3r4ASt4lAErebABK3m0ASt4lAErevQBK3lkASt58AEreTAAAAAAASt4CAAAAAABK3gIAAAAAAAAAAABK 3hoASt5TAEreFgBK3sEASt7AAEreFgBK3k4ASt4XAEreAQAAAAAASt4CAAAAAPgfAADgBwAAwAMAAIGB AACf+QAAPDwAAOAHAACAAQAAAAAAAAAAAAAAAAAABCAAAIZhAADH4wAA+98AAP5/AAA= ================================================ FILE: Tomighty.Windows/Events.cs ================================================ namespace Tomighty.Windows.Events { public class FirstRun { } public class AppUpdated { } } ================================================ FILE: Tomighty.Windows/Flags.cs ================================================ using System; using System.IO; namespace Tomighty.Windows { public class Flags { private readonly string dir; public Flags(string name) { dir = Path.Combine(Directories.AppData, name); } public bool IsOn(string name, bool defaultValue) { return ReadFile(name, defaultValue); } public void TurnOn(string name) { WriteFile(name, true); } public void TurnOff(string name) { WriteFile(name, false); } private string GetFile(string name) => Path.Combine(dir, name); private void EnsureDirectoryExists() { if (!Directory.Exists(dir)) Directory.CreateDirectory(dir); } private void WriteFile(string name, bool value) { EnsureDirectoryExists(); File.WriteAllText(GetFile(name), value ? "1" : "0"); } private bool ReadFile(string name, bool defaultValue) { EnsureDirectoryExists(); var file = GetFile(name); if (File.Exists(file)) return File.ReadAllText(file) == "1" ? true : false; return defaultValue; } } } ================================================ FILE: Tomighty.Windows/Host.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.IO; using System.Management; using Tomighty.Windows.Util; namespace Tomighty.Windows { internal class Host { private static string id; public static string Id { get { if (id == null) id = GetId(); return id; } } private static string GetId() { try { return ComputeId(); } catch { try { return GenerateId(); } catch { return "undefined"; } } } private static string GenerateId() { string uuid = null; var path = Path.Combine(Directories.AppData, "machine_id"); if (File.Exists(path)) uuid = File.ReadAllText(path); if (uuid == null || uuid.Length != Guid.Empty.ToString().Length) { uuid = Guid.NewGuid().ToString(); File.WriteAllText(path, uuid); } return uuid; } private static string ComputeId() { var mgmt = new ManagementClass("win32_processor"); var data = ""; foreach (ManagementObject mo in mgmt.GetInstances()) data += GetProcessorInfo(mo); return Hash.Sha1(data); } private static string GetProcessorInfo(ManagementObject mo) { return "[" + mo.Properties["processorID"].Value + "|" + mo.Properties["Architecture"].Value + "|" + mo.Properties["Family"].Value + "|" + mo.Properties["Caption"].Value + "]"; } } } ================================================ FILE: Tomighty.Windows/IntervalTypeExtensions.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using Tomighty.Windows.Properties; namespace Tomighty.Windows { internal static class IntervalTypeExtensions { public static string GetName(this IntervalType intervalType) { switch (intervalType) { case IntervalType.Pomodoro: return Resources.String_Pomodoro; case IntervalType.ShortBreak: return Resources.String_ShortBreak; case IntervalType.LongBreak: return Resources.String_LongBreak; default: throw new ArgumentException($"Unknown interval type: {intervalType}"); } } } } ================================================ FILE: Tomighty.Windows/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: Tomighty.Windows/Logger.cs ================================================ using System; using System.IO; namespace Tomighty.Windows { class Logger : IDisposable { private const long MaxFileSize = 1024 * 512; //512KB private readonly StreamWriter writer; public Logger(string name) { writer = new StreamWriter(GetFile(name + ".log")); } private FileStream GetFile(string name) { var path = Path.Combine(Directories.AppData, name); if (HasReachedSizeLimit(path)) { try { File.Delete(path); } catch { //That's ok, let's not break the program just because //we can't delete the log file } } return new FileStream(path, FileMode.Append); } private bool HasReachedSizeLimit(string filepath) { return File.Exists(filepath) && new FileInfo(filepath).Length > MaxFileSize; } private void Log(string level, string msg) { writer.WriteLine($"{DateTimeOffset.Now.ToString()} [{level}] {msg}"); writer.Flush(); } public void Info(string msg) { Log("INFO", msg); } public void Error(string msg) { Log("ERROR", msg); } public void Error(Exception e) { Error(e.ToString()); } public void Dispose() { if (writer != null) writer.Close(); } } } ================================================ FILE: Tomighty.Windows/NOTICE.txt ================================================ ========================================================================= == NOTICE file corresponding to section 4(d) of the Apache License, == == Version 2.0, in this case for the Tomighty distribution. == ========================================================================= Tomighty is a software developed by Célio Cidral Junior. You can find it at http://www.tomighty.org Pomodoro Technique® and Pomodoro™ are registered and filed trademarks owned by Francesco Cirillo. Tomighty is not affiliated by, associated with nor endorsed by Francesco Cirillo. Tomato icon designed by José Campos Clock icon designed by Thomas Le Bas ================================================ FILE: Tomighty.Windows/Notifications/NotificationsPresenter.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using Tomighty.Events; using Tomighty.Windows.Events; using Windows.UI.Notifications; namespace Tomighty.Windows.Notifications { internal class NotificationsPresenter { private readonly IPomodoroEngine pomodoroEngine; private readonly IUserPreferences userPreferences; private readonly ToastNotifier toastNotifier = ToastNotificationManager.CreateToastNotifier("Tomighty"); public NotificationsPresenter(IPomodoroEngine pomodoroEngine, IUserPreferences userPreferences, IEventHub eventHub) { this.pomodoroEngine = pomodoroEngine; this.userPreferences = userPreferences; eventHub.Subscribe(OnTimerStopped); eventHub.Subscribe(OnAppUpdated); eventHub.Subscribe(OnFirstRun); } private void OnFirstRun(FirstRun @event) { var toast = Toasts.FirstRun(); toastNotifier.Show(toast); } private void OnAppUpdated(AppUpdated @event) { toastNotifier.Show(Toasts.AppUpdated()); } private void OnTimerStopped(TimerStopped @event) { if (@event.IsIntervalCompleted && userPreferences.ShowToastNotifications) { var toast = Toasts.IntervalCompleted(@event.IntervalType, pomodoroEngine.SuggestedBreakType); toast.Activated += OnToastActivated; toastNotifier.Show(toast); } } private void OnToastActivated(ToastNotification sender, object args) { if (args is ToastActivatedEventArgs) { var activation = args as ToastActivatedEventArgs; if (Toasts.TimerAction.WithArgs.ContainsKey(activation.Arguments)) { var timerAction = Toasts.TimerAction.WithArgs[activation.Arguments]; pomodoroEngine.StartTimer(timerAction.IntervalType); } } } } } ================================================ FILE: Tomighty.Windows/Notifications/SoundNotificationPlayer.cs ================================================ using System.Media; using Tomighty.Events; namespace Tomighty.Windows.Notifications { public class SoundNotificationPlayer { private readonly IUserPreferences userPreferences; private readonly SoundPlayer intervalCompletedNotification = new SoundPlayer(Properties.Resources.audio_deskbell); public SoundNotificationPlayer(IUserPreferences userPreferences, IEventHub eventHub) { this.userPreferences = userPreferences; eventHub.Subscribe(OnTimerStopped); } private void OnTimerStopped(TimerStopped @event) { if (@event.IsIntervalCompleted && userPreferences.PlaySoundNotifications) { intervalCompletedNotification.Play(); } } } } ================================================ FILE: Tomighty.Windows/Notifications/Toasts.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Collections.Generic; using System.IO; using Windows.Data.Xml.Dom; using Windows.UI.Notifications; namespace Tomighty.Windows.Notifications { internal static class Toasts { private static readonly string RedTomatoImage = new Uri(Path.GetFullPath(@"Resources\Toasts\image_toast_tomato_red.png")).AbsoluteUri; private static readonly string GreenTomatoImage = new Uri(Path.GetFullPath(@"Resources\Toasts\image_toast_tomato_green.png")).AbsoluteUri; private static readonly string BlueTomatoImage = new Uri(Path.GetFullPath(@"Resources\Toasts\image_toast_tomato_blue.png")).AbsoluteUri; private static readonly XmlDocument PomodoroCompletedTakeShortBreakTemplate = FillIntervalCompletedTemplate("Pomodoro", RedTomatoImage, TimerAction.StartShortBreak); private static readonly XmlDocument PomodoroCompletedTakeLongBreakTemplate = FillIntervalCompletedTemplate("Pomodoro", RedTomatoImage, TimerAction.StartLongBreak); private static readonly XmlDocument ShortBreakCompletedTemplate = FillIntervalCompletedTemplate("Short break", GreenTomatoImage, TimerAction.StartPomodoro); private static readonly XmlDocument LongBreakCompletedTemplate = FillIntervalCompletedTemplate("Long break", BlueTomatoImage, TimerAction.StartPomodoro); private static readonly XmlDocument FirstRunTemplate = ToXmlDocument(Properties.Resources.toast_template_first_run.Replace("{image_src}", RedTomatoImage)); private static readonly XmlDocument AppUpdatedTemplate = ToXmlDocument(Properties.Resources.toast_template_app_updated.Replace("{image_src}", RedTomatoImage)); public static ToastNotification FirstRun() { return new ToastNotification(FirstRunTemplate); } public static ToastNotification AppUpdated() { return new ToastNotification(AppUpdatedTemplate); } public static ToastNotification IntervalCompleted(IntervalType completedIntervalType, IntervalType suggestedBreakType) { if (completedIntervalType == IntervalType.Pomodoro && suggestedBreakType == IntervalType.ShortBreak) return new ToastNotification(PomodoroCompletedTakeShortBreakTemplate); if (completedIntervalType == IntervalType.Pomodoro && suggestedBreakType == IntervalType.LongBreak) return new ToastNotification(PomodoroCompletedTakeLongBreakTemplate); if (completedIntervalType == IntervalType.ShortBreak) return new ToastNotification(ShortBreakCompletedTemplate); if (completedIntervalType == IntervalType.LongBreak) return new ToastNotification(LongBreakCompletedTemplate); throw new ArgumentException($"Invalid arguments: {nameof(completedIntervalType)}={completedIntervalType} {nameof(suggestedBreakType)}={suggestedBreakType}"); } private static XmlDocument FillIntervalCompletedTemplate(string intervalType, string imageSrc, TimerAction action) { return ToXmlDocument(Properties.Resources.toast_template_interval_completed .Replace("{interval_type}", intervalType) .Replace("{image_src}", imageSrc) .Replace("{action_content}", action.Content) .Replace("{action_args}", action.Args)); } private static XmlDocument ToXmlDocument(string xml) { var doc = new XmlDocument(); doc.LoadXml(xml); return doc; } public class TimerAction { public static readonly TimerAction StartPomodoro = new TimerAction("start_pomodoro", "Start pomodoro", IntervalType.Pomodoro); public static readonly TimerAction StartShortBreak = new TimerAction("start_short_break", "Take a short break", IntervalType.ShortBreak); public static readonly TimerAction StartLongBreak = new TimerAction("start_long_break", "Take a long break", IntervalType.LongBreak); public static readonly IDictionary WithArgs = new Dictionary { { StartPomodoro.Args, StartPomodoro }, { StartShortBreak.Args, StartShortBreak }, { StartLongBreak.Args, StartLongBreak } }; private TimerAction(string args, string content, IntervalType intervalType) { Args = args; Content = content; IntervalType = intervalType; } public string Args { get; } public string Content { get; } public IntervalType IntervalType { get; } } } } ================================================ FILE: Tomighty.Windows/Preferences/UserPreferences.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.IO; using System.Runtime.Serialization; using System.Runtime.Serialization.Json; namespace Tomighty.Windows.Preferences { public class UserPreferences : IMutableUserPreferences { private static readonly string FilePath = Path.Combine(Directories.AppData, "preferences.json"); private static readonly DataContractJsonSerializer Json = new DataContractJsonSerializer(typeof(Values)); private readonly Values values; public UserPreferences() { values = ReadFromFile() ?? DefaultValues; } private static Values ReadFromFile() { if (!File.Exists(FilePath)) return null; using (var file = File.OpenRead(FilePath)) { try { return ReplaceInvalidSettingsWithDefaultValues((Values)Json.ReadObject(file)); } catch(SerializationException) { return DefaultValues; } } } private static Values ReplaceInvalidSettingsWithDefaultValues(Values values) { if (values.PomodoroDuration <= 0) values.PomodoroDuration = DefaultValues.PomodoroDuration; if (values.ShortBreakDuration <= 0) values.ShortBreakDuration = DefaultValues.ShortBreakDuration; if (values.LongBreakDuration <= 0) values.LongBreakDuration = DefaultValues.LongBreakDuration; if (values.MaxPomodoroCount <= 0) values.MaxPomodoroCount = DefaultValues.MaxPomodoroCount; return values; } private static Values DefaultValues => new Values { PomodoroDuration = Duration.InMinutes(25).Seconds, ShortBreakDuration = Duration.InMinutes(5).Seconds, LongBreakDuration = Duration.InMinutes(15).Seconds, MaxPomodoroCount = 4, ShowToastNotifications = true, PlaySoundNotifications = true, AutoUpdate = true }; public Duration GetIntervalDuration(IntervalType intervalType) { if (intervalType == IntervalType.Pomodoro) return new Duration(values.PomodoroDuration); if (intervalType == IntervalType.ShortBreak) return new Duration(values.ShortBreakDuration); if (intervalType == IntervalType.LongBreak) return new Duration(values.LongBreakDuration); throw new ArgumentException($"Unsupported interval type: {intervalType}"); } public void SetIntervalDuration(IntervalType intervalType, Duration duration) { if (intervalType == IntervalType.Pomodoro) values.PomodoroDuration = duration.Seconds; else if (intervalType == IntervalType.ShortBreak) values.ShortBreakDuration = duration.Seconds; else if (intervalType == IntervalType.LongBreak) values.LongBreakDuration = duration.Seconds; else throw new ArgumentException($"Unsupported interval type: {intervalType}"); } public int MaxPomodoroCount { get { return values.MaxPomodoroCount; } set { values.MaxPomodoroCount = value; } } public bool ShowToastNotifications { get { return values.ShowToastNotifications; } set { values.ShowToastNotifications = value; } } public bool PlaySoundNotifications { get { return values.PlaySoundNotifications; } set { values.PlaySoundNotifications = value; } } public bool AutoUpdate { get { return values.AutoUpdate; } set { values.AutoUpdate = value; } } public void Update(Action action) { action(this); using (var file = new FileStream(FilePath, FileMode.Create)) { Json.WriteObject(file, values); } } [DataContract] private class Values { [DataMember] public int PomodoroDuration { get; set; } [DataMember] public int ShortBreakDuration { get; set; } [DataMember] public int LongBreakDuration { get; set; } [DataMember] public int MaxPomodoroCount { get; set; } [DataMember] public bool ShowToastNotifications { get; set; } [DataMember] public bool PlaySoundNotifications { get; set; } [DataMember] public bool AutoUpdate { get; set; } } } } ================================================ FILE: Tomighty.Windows/Preferences/UserPreferencesForm.Designer.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Windows.Preferences { partial class UserPreferencesForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.longBreakDurationTextBox = new System.Windows.Forms.NumericUpDown(); this.shortBreakDurationTextBox = new System.Windows.Forms.NumericUpDown(); this.pomodoroDurationTextBox = new System.Windows.Forms.NumericUpDown(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.maxPomodoroCountTextBox = new System.Windows.Forms.NumericUpDown(); this.label7 = new System.Windows.Forms.Label(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.soundNotifications = new System.Windows.Forms.CheckBox(); this.toastNotification = new System.Windows.Forms.CheckBox(); this.label8 = new System.Windows.Forms.Label(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.autoupdate = new System.Windows.Forms.CheckBox(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.longBreakDurationTextBox)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.shortBreakDurationTextBox)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pomodoroDurationTextBox)).BeginInit(); this.groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.maxPomodoroCountTextBox)).BeginInit(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.tabPage3.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBox1.Controls.Add(this.longBreakDurationTextBox); this.groupBox1.Controls.Add(this.shortBreakDurationTextBox); this.groupBox1.Controls.Add(this.pomodoroDurationTextBox); this.groupBox1.Controls.Add(this.label5); this.groupBox1.Controls.Add(this.label6); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.label4); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Location = new System.Drawing.Point(13, 13); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(229, 113); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Duration"; // // longBreakDurationTextBox // this.longBreakDurationTextBox.Location = new System.Drawing.Point(69, 80); this.longBreakDurationTextBox.Maximum = new decimal(new int[] { 999, 0, 0, 0}); this.longBreakDurationTextBox.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.longBreakDurationTextBox.Name = "longBreakDurationTextBox"; this.longBreakDurationTextBox.Size = new System.Drawing.Size(52, 20); this.longBreakDurationTextBox.TabIndex = 7; this.longBreakDurationTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.longBreakDurationTextBox.Value = new decimal(new int[] { 1, 0, 0, 0}); // // shortBreakDurationTextBox // this.shortBreakDurationTextBox.Location = new System.Drawing.Point(69, 54); this.shortBreakDurationTextBox.Maximum = new decimal(new int[] { 999, 0, 0, 0}); this.shortBreakDurationTextBox.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.shortBreakDurationTextBox.Name = "shortBreakDurationTextBox"; this.shortBreakDurationTextBox.Size = new System.Drawing.Size(52, 20); this.shortBreakDurationTextBox.TabIndex = 4; this.shortBreakDurationTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.shortBreakDurationTextBox.Value = new decimal(new int[] { 1, 0, 0, 0}); // // pomodoroDurationTextBox // this.pomodoroDurationTextBox.Location = new System.Drawing.Point(69, 28); this.pomodoroDurationTextBox.Maximum = new decimal(new int[] { 999, 0, 0, 0}); this.pomodoroDurationTextBox.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.pomodoroDurationTextBox.Name = "pomodoroDurationTextBox"; this.pomodoroDurationTextBox.Size = new System.Drawing.Size(52, 20); this.pomodoroDurationTextBox.TabIndex = 1; this.pomodoroDurationTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.pomodoroDurationTextBox.Value = new decimal(new int[] { 1, 0, 0, 0}); // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(127, 82); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(43, 13); this.label5.TabIndex = 8; this.label5.Text = "minutes"; // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(6, 82); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(61, 13); this.label6.TabIndex = 6; this.label6.Text = "&Long break"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(127, 56); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(43, 13); this.label3.TabIndex = 5; this.label3.Text = "minutes"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(6, 56); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(62, 13); this.label4.TabIndex = 3; this.label4.Text = "&Short break"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(127, 30); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(43, 13); this.label2.TabIndex = 2; this.label2.Text = "minutes"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 30); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(55, 13); this.label1.TabIndex = 0; this.label1.Text = "&Pomodoro"; // // groupBox2 // this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBox2.Controls.Add(this.maxPomodoroCountTextBox); this.groupBox2.Controls.Add(this.label7); this.groupBox2.Location = new System.Drawing.Point(10, 132); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(232, 81); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "Long Break Cycle"; // // maxPomodoroCountTextBox // this.maxPomodoroCountTextBox.Location = new System.Drawing.Point(10, 48); this.maxPomodoroCountTextBox.Maximum = new decimal(new int[] { 999, 0, 0, 0}); this.maxPomodoroCountTextBox.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.maxPomodoroCountTextBox.Name = "maxPomodoroCountTextBox"; this.maxPomodoroCountTextBox.Size = new System.Drawing.Size(52, 20); this.maxPomodoroCountTextBox.TabIndex = 1; this.maxPomodoroCountTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.maxPomodoroCountTextBox.Value = new decimal(new int[] { 1, 0, 0, 0}); // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(7, 32); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(209, 13); this.label7.TabIndex = 0; this.label7.Text = "&Number of pomodoros before a long break:"; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.Location = new System.Drawing.Point(119, 273); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 2; this.okButton.Text = "O&K"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.OnOkButtonClick); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(200, 273); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 3; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.OnCancelButtonClick); // // tabControl1 // this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Controls.Add(this.tabPage3); this.tabControl1.Location = new System.Drawing.Point(12, 12); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(263, 255); this.tabControl1.TabIndex = 4; // // tabPage1 // this.tabPage1.Controls.Add(this.groupBox1); this.tabPage1.Controls.Add(this.groupBox2); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(10); this.tabPage1.Size = new System.Drawing.Size(255, 229); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Cycles"; this.tabPage1.UseVisualStyleBackColor = true; // // tabPage2 // this.tabPage2.Controls.Add(this.soundNotifications); this.tabPage2.Controls.Add(this.toastNotification); this.tabPage2.Controls.Add(this.label8); this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(10); this.tabPage2.Size = new System.Drawing.Size(255, 229); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Notifications"; this.tabPage2.UseVisualStyleBackColor = true; // // soundNotifications // this.soundNotifications.AutoSize = true; this.soundNotifications.Location = new System.Drawing.Point(16, 59); this.soundNotifications.Name = "soundNotifications"; this.soundNotifications.Size = new System.Drawing.Size(87, 17); this.soundNotifications.TabIndex = 2; this.soundNotifications.Text = "Play a sound"; this.soundNotifications.UseVisualStyleBackColor = true; // // toastNotification // this.toastNotification.AutoSize = true; this.toastNotification.Location = new System.Drawing.Point(16, 36); this.toastNotification.Name = "toastNotification"; this.toastNotification.Size = new System.Drawing.Size(142, 17); this.toastNotification.TabIndex = 1; this.toastNotification.Text = "Show a toast notification"; this.toastNotification.UseVisualStyleBackColor = true; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(13, 10); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(120, 13); this.label8.TabIndex = 0; this.label8.Text = "When the timer finishes:"; // // tabPage3 // this.tabPage3.Controls.Add(this.autoupdate); this.tabPage3.Location = new System.Drawing.Point(4, 22); this.tabPage3.Name = "tabPage3"; this.tabPage3.Padding = new System.Windows.Forms.Padding(10); this.tabPage3.Size = new System.Drawing.Size(255, 229); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "Miscellaneous"; this.tabPage3.UseVisualStyleBackColor = true; // // autoupdate // this.autoupdate.AutoSize = true; this.autoupdate.Location = new System.Drawing.Point(14, 14); this.autoupdate.Name = "autoupdate"; this.autoupdate.Size = new System.Drawing.Size(228, 17); this.autoupdate.TabIndex = 0; this.autoupdate.Text = "Automatically download and install updates"; this.autoupdate.UseVisualStyleBackColor = true; // // UserPreferencesForm // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(287, 308); this.Controls.Add(this.tabControl1); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "UserPreferencesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Tomighty Preferences"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.longBreakDurationTextBox)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.shortBreakDurationTextBox)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pomodoroDurationTextBox)).EndInit(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.maxPomodoroCountTextBox)).EndInit(); this.tabControl1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage2.ResumeLayout(false); this.tabPage2.PerformLayout(); this.tabPage3.ResumeLayout(false); this.tabPage3.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label6; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.Label label7; private System.Windows.Forms.NumericUpDown maxPomodoroCountTextBox; private System.Windows.Forms.NumericUpDown longBreakDurationTextBox; private System.Windows.Forms.NumericUpDown shortBreakDurationTextBox; private System.Windows.Forms.NumericUpDown pomodoroDurationTextBox; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.Label label8; private System.Windows.Forms.CheckBox toastNotification; private System.Windows.Forms.CheckBox soundNotifications; private System.Windows.Forms.TabPage tabPage3; private System.Windows.Forms.CheckBox autoupdate; } } ================================================ FILE: Tomighty.Windows/Preferences/UserPreferencesForm.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Windows.Forms; namespace Tomighty.Windows.Preferences { public partial class UserPreferencesForm : Form { private IUserPreferences userPreferences; public UserPreferencesForm(IUserPreferences userPreferences) { this.userPreferences = userPreferences; InitializeComponent(); pomodoroDurationTextBox.Value = userPreferences.GetIntervalDuration(IntervalType.Pomodoro).Minutes; shortBreakDurationTextBox.Value = userPreferences.GetIntervalDuration(IntervalType.ShortBreak).Minutes; longBreakDurationTextBox.Value = userPreferences.GetIntervalDuration(IntervalType.LongBreak).Minutes; maxPomodoroCountTextBox.Value = userPreferences.MaxPomodoroCount; toastNotification.Checked = userPreferences.ShowToastNotifications; soundNotifications.Checked = userPreferences.PlaySoundNotifications; autoupdate.Checked = userPreferences.AutoUpdate; } private void OnCancelButtonClick(object sender, System.EventArgs e) { Close(); } private void OnOkButtonClick(object sender, System.EventArgs e) { userPreferences.Update(newPreferences => { newPreferences.SetIntervalDuration(IntervalType.Pomodoro, Duration.InMinutes((int)pomodoroDurationTextBox.Value)); newPreferences.SetIntervalDuration(IntervalType.ShortBreak, Duration.InMinutes((int)shortBreakDurationTextBox.Value)); newPreferences.SetIntervalDuration(IntervalType.LongBreak, Duration.InMinutes((int)longBreakDurationTextBox.Value)); newPreferences.MaxPomodoroCount = (int)maxPomodoroCountTextBox.Value; newPreferences.ShowToastNotifications = toastNotification.Checked; newPreferences.PlaySoundNotifications = soundNotifications.Checked; newPreferences.AutoUpdate = autoupdate.Checked; }); Close(); } } } ================================================ FILE: Tomighty.Windows/Preferences/UserPreferencesForm.resx ================================================  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 ================================================ FILE: Tomighty.Windows/Preferences/UserPreferencesPresenter.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Windows.Forms; namespace Tomighty.Windows.Preferences { internal class UserPreferencesPresenter { private readonly IUserPreferences userPreferences; private UserPreferencesForm window; public UserPreferencesPresenter(IUserPreferences userPreferences) { this.userPreferences = userPreferences; } public void Show() { if (window == null) { window = new UserPreferencesForm(userPreferences); window.FormClosed += OnWindowClosed; } if (window.Visible) { window.Focus(); } else { window.ShowDialog(); } } private void OnWindowClosed(object sender, FormClosedEventArgs e) { window.Dispose(); window = null; } } } ================================================ FILE: Tomighty.Windows/Program.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Windows.Forms; namespace Tomighty.Windows { static class Program { [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); AppDomain.CurrentDomain.UnhandledException += (sender, args) => HandleUnhandledException(args.ExceptionObject as Exception); Application.ThreadException += (sender, args) => HandleUnhandledException(args.Exception); try { Application.Run(new TomightyApplication()); } catch(Exception e) { Application.Run(new ErrorReportWindow(e)); } } private static void HandleUnhandledException(Exception exception) { new ErrorReportWindow(exception).Show(); } } } ================================================ FILE: Tomighty.Windows/Properties/AssemblyInfo.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Tomighty")] [assembly: AssemblyDescription("Tomighty for Windows")] [assembly: ComVisible(false)] [assembly: Guid("f45108d8-e103-4db9-a43f-82f864fd9217")] ================================================ FILE: Tomighty.Windows/Properties/Resources.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Tomighty.Windows.Properties { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tomighty.Windows.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// internal static System.IO.UnmanagedMemoryStream audio_deskbell { get { return ResourceManager.GetStream("audio_deskbell", resourceCulture); } } /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// internal static System.Drawing.Icon icon_tomato_black { get { object obj = ResourceManager.GetObject("icon_tomato_black", resourceCulture); return ((System.Drawing.Icon)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// internal static System.Drawing.Icon icon_tomato_blue { get { object obj = ResourceManager.GetObject("icon_tomato_blue", resourceCulture); return ((System.Drawing.Icon)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// internal static System.Drawing.Icon icon_tomato_green { get { object obj = ResourceManager.GetObject("icon_tomato_green", resourceCulture); return ((System.Drawing.Icon)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// internal static System.Drawing.Icon icon_tomato_red { get { object obj = ResourceManager.GetObject("icon_tomato_red", resourceCulture); return ((System.Drawing.Icon)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// internal static System.Drawing.Icon icon_tomato_white { get { object obj = ResourceManager.GetObject("icon_tomato_white", resourceCulture); return ((System.Drawing.Icon)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_clock { get { object obj = ResourceManager.GetObject("image_clock", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_pinned { get { object obj = ResourceManager.GetObject("image_pinned", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_stop { get { object obj = ResourceManager.GetObject("image_stop", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_tomato_black { get { object obj = ResourceManager.GetObject("image_tomato_black", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_tomato_blue { get { object obj = ResourceManager.GetObject("image_tomato_blue", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_tomato_green { get { object obj = ResourceManager.GetObject("image_tomato_green", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_tomato_red { get { object obj = ResourceManager.GetObject("image_tomato_red", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_unpinned { get { object obj = ResourceManager.GetObject("image_unpinned", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_warning { get { object obj = ResourceManager.GetObject("image_warning", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap image_x { get { object obj = ResourceManager.GetObject("image_x", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } /// /// Looks up a localized string similar to Long break. /// internal static string String_LongBreak { get { return ResourceManager.GetString("String_LongBreak", resourceCulture); } } /// /// Looks up a localized string similar to Pomodoro. /// internal static string String_Pomodoro { get { return ResourceManager.GetString("String_Pomodoro", resourceCulture); } } /// /// Looks up a localized string similar to Short break. /// internal static string String_ShortBreak { get { return ResourceManager.GetString("String_ShortBreak", resourceCulture); } } /// /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?> ///<toast launch="tomighty"> /// <visual> /// <binding template="ToastGeneric"> /// <text>First time using Tomighty?</text> /// <text>There should be a tomato-shaped icon somewhere in your task bar.</text> /// <text>Start by clicking on it. The left button shows the menu.</text> /// <image src='{image_src}' placement='appLogoOverride'/> /// </binding> /// </visual> /// <actions> /// <action content="Got It" arguments="dismiss" /> /// </actions> /// <audio src="ms-winsound [rest of string was truncated]";. /// internal static string toast_template_app_updated { get { return ResourceManager.GetString("toast_template_app_updated", resourceCulture); } } /// /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?> ///<toast launch="tomighty"> /// <visual> /// <binding template="ToastGeneric"> /// <text>First time using Tomighty?</text> /// <text>There should be a tomato-shaped icon somewhere in your task bar.</text> /// <text>Start by clicking on it. The left button shows the menu.</text> /// <image src='{image_src}' placement='appLogoOverride'/> /// </binding> /// </visual> /// <actions> /// <action content="Got It" arguments="dismiss" /> /// </actions> /// <audio src="ms-winsound [rest of string was truncated]";. /// internal static string toast_template_first_run { get { return ResourceManager.GetString("toast_template_first_run", resourceCulture); } } /// /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?> ///<toast launch="tomighty"> /// <visual> /// <binding template="ToastGeneric"> /// <text>{interval_type} completed</text> /// <image src='{image_src}' placement='appLogoOverride'/> /// </binding> /// </visual> /// <actions> /// <action content="{action_content}" arguments="{action_args}" /> /// <action content="Dismiss" arguments="dismiss" /> /// </actions> /// <audio src="ms-winsoundevent:Notification.Reminder"/> ///</toast> ///. /// internal static string toast_template_interval_completed { get { return ResourceManager.GetString("toast_template_interval_completed", resourceCulture); } } } } ================================================ FILE: Tomighty.Windows/Properties/Resources.resx ================================================  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 ..\resources\icon_tomato_black.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\icon_tomato_blue.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\icon_tomato_green.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\icon_tomato_red.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\icon_tomato_white.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_clock.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_pinned.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_stop.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_tomato_black.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_tomato_blue.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_tomato_green.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_tomato_red.tiff;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_unpinned.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\resources\image_x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Long break Pomodoro Short break ..\Resources\Toasts\interval-completed.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Audio\deskbell.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\image_warning.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Toasts\first-run.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Resources\Toasts\app-updated.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ================================================ FILE: Tomighty.Windows/Properties/Settings.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Tomighty.Windows.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } } ================================================ FILE: Tomighty.Windows/Properties/Settings.settings ================================================  ================================================ FILE: Tomighty.Windows/Resources/Toasts/app-updated.xml ================================================  Tomighty Updated A new version of Tomighty has been automatically installed ================================================ FILE: Tomighty.Windows/Resources/Toasts/first-run.xml ================================================  First time using Tomighty? There should be a tomato-shaped icon somewhere in your task bar. Start by clicking on it. The left button shows the menu. ================================================ FILE: Tomighty.Windows/Resources/Toasts/interval-completed.xml ================================================  {interval_type} completed ================================================ FILE: Tomighty.Windows/StartupEventFlags.cs ================================================ namespace Tomighty.Windows { public class StartupEventFlags { public static readonly Flags Flags = new Flags("startup"); public static readonly string FirstRunFlag = "firstrun"; public static readonly string AppUpdatedFlag = "app_updated"; } } ================================================ FILE: Tomighty.Windows/StartupEvents.cs ================================================ using System; using System.Threading.Tasks; using Tomighty.Windows.Events; namespace Tomighty.Windows { public class StartupEvents : StartupEventFlags { public StartupEvents(IEventHub eventHub) { Task.Run(() => { if (Flags.IsOn(FirstRunFlag, true)) { Flags.TurnOff(FirstRunFlag); eventHub.Publish(new FirstRun()); } if (Flags.IsOn(AppUpdatedFlag, false)) { Flags.TurnOff(AppUpdatedFlag); eventHub.Publish(new AppUpdated()); } }); } } } ================================================ FILE: Tomighty.Windows/Timer/Taskbar.cs ================================================ using System; using System.Drawing; using System.Runtime.InteropServices; // Shamelessly copied from https://winsharp93.wordpress.com/2009/06/29/find-out-size-and-position-of-the-taskbar/ namespace Tomighty.Windows.Timer { public enum TaskbarPosition { Unknown = -1, Left, Top, Right, Bottom, } public sealed class Taskbar { private const string ClassName = "Shell_TrayWnd"; public Taskbar() { IntPtr taskbarHandle = User32.FindWindow(Taskbar.ClassName, null); APPBARDATA data = new APPBARDATA(); data.cbSize = (uint)Marshal.SizeOf(typeof(APPBARDATA)); data.hWnd = taskbarHandle; IntPtr result = Shell32.SHAppBarMessage(ABM.GetTaskbarPos, ref data); if (result == IntPtr.Zero) throw new InvalidOperationException(); this.Position = (TaskbarPosition)data.uEdge; this.Bounds = Rectangle.FromLTRB(data.rc.left, data.rc.top, data.rc.right, data.rc.bottom); data.cbSize = (uint)Marshal.SizeOf(typeof(APPBARDATA)); result = Shell32.SHAppBarMessage(ABM.GetState, ref data); int state = result.ToInt32(); this.AlwaysOnTop = (state & ABS.AlwaysOnTop) == ABS.AlwaysOnTop; this.AutoHide = (state & ABS.Autohide) == ABS.Autohide; } public Rectangle Bounds { get; private set; } public TaskbarPosition Position { get; private set; } public Point Location { get { return this.Bounds.Location; } } public Size Size { get { return this.Bounds.Size; } } //Always returns false under Windows 7 public bool AlwaysOnTop { get; private set; } public bool AutoHide { get; private set; } } public enum ABM : uint { New = 0x00000000, Remove = 0x00000001, QueryPos = 0x00000002, SetPos = 0x00000003, GetState = 0x00000004, GetTaskbarPos = 0x00000005, Activate = 0x00000006, GetAutoHideBar = 0x00000007, SetAutoHideBar = 0x00000008, WindowPosChanged = 0x00000009, SetState = 0x0000000A, } public enum ABE : uint { Left = 0, Top = 1, Right = 2, Bottom = 3 } public static class ABS { public const int Autohide = 0x0000001; public const int AlwaysOnTop = 0x0000002; } public static class Shell32 { [DllImport("shell32.dll", SetLastError = true)] public static extern IntPtr SHAppBarMessage(ABM dwMessage, [In] ref APPBARDATA pData); } public static class User32 { [DllImport("user32.dll", SetLastError = true)] public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); } [StructLayout(LayoutKind.Sequential)] public struct APPBARDATA { public uint cbSize; public IntPtr hWnd; public uint uCallbackMessage; public ABE uEdge; public RECT rc; public int lParam; } [StructLayout(LayoutKind.Sequential)] public struct RECT { public int left; public int top; public int right; public int bottom; } } ================================================ FILE: Tomighty.Windows/Timer/TimerWindow.Designer.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Windows.Timer { partial class TimerWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.timeLabel = new Tomighty.Windows.Timer.TimerWindow.TransparentLabel(); this.pinButton = new System.Windows.Forms.Button(); this.closeButton = new System.Windows.Forms.Button(); this.titleLabel = new Tomighty.Windows.Timer.TimerWindow.TransparentLabel(); this.timerButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // timeLabel // this.timeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.timeLabel.BackColor = System.Drawing.Color.Transparent; this.timeLabel.ForeColor = System.Drawing.Color.White; this.timeLabel.Location = new System.Drawing.Point(12, 28); this.timeLabel.Name = "timeLabel"; this.timeLabel.Size = new System.Drawing.Size(153, 67); this.timeLabel.TabIndex = 0; this.timeLabel.Text = "--:--"; this.timeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // pinButton // this.pinButton.CausesValidation = false; this.pinButton.FlatAppearance.BorderSize = 0; this.pinButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.pinButton.Image = global::Tomighty.Windows.Properties.Resources.image_unpinned; this.pinButton.Location = new System.Drawing.Point(2, 2); this.pinButton.Name = "pinButton"; this.pinButton.Size = new System.Drawing.Size(22, 23); this.pinButton.TabIndex = 1; this.pinButton.TabStop = false; this.pinButton.UseVisualStyleBackColor = true; // // closeButton // this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.closeButton.CausesValidation = false; this.closeButton.FlatAppearance.BorderSize = 0; this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.closeButton.Image = global::Tomighty.Windows.Properties.Resources.image_x; this.closeButton.Location = new System.Drawing.Point(152, 2); this.closeButton.Name = "closeButton"; this.closeButton.Size = new System.Drawing.Size(22, 23); this.closeButton.TabIndex = 2; this.closeButton.TabStop = false; this.closeButton.UseVisualStyleBackColor = true; // // titleLabel // this.titleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.titleLabel.BackColor = System.Drawing.Color.Transparent; this.titleLabel.ForeColor = System.Drawing.Color.White; this.titleLabel.Location = new System.Drawing.Point(31, 8); this.titleLabel.Name = "titleLabel"; this.titleLabel.Size = new System.Drawing.Size(115, 30); this.titleLabel.TabIndex = 3; this.titleLabel.Text = "Title"; this.titleLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // timerButton // this.timerButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.timerButton.BackColor = System.Drawing.Color.Silver; this.timerButton.FlatAppearance.BorderColor = System.Drawing.Color.DarkGray; this.timerButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Silver; this.timerButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Silver; this.timerButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.timerButton.Location = new System.Drawing.Point(12, 98); this.timerButton.Name = "timerButton"; this.timerButton.Size = new System.Drawing.Size(153, 28); this.timerButton.TabIndex = 4; this.timerButton.Text = "Timer Action"; this.timerButton.UseVisualStyleBackColor = false; this.timerButton.Click += new System.EventHandler(this.OnTimerButtonClick); // // TimerWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.ClientSize = new System.Drawing.Size(177, 138); this.ControlBox = false; this.Controls.Add(this.timerButton); this.Controls.Add(this.titleLabel); this.Controls.Add(this.closeButton); this.Controls.Add(this.pinButton); this.Controls.Add(this.timeLabel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "TimerWindow"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "Tomighty"; this.TopMost = true; this.ResumeLayout(false); } #endregion private TransparentLabel timeLabel; private System.Windows.Forms.Button pinButton; private System.Windows.Forms.Button closeButton; private TransparentLabel titleLabel; private System.Windows.Forms.Button timerButton; } } ================================================ FILE: Tomighty.Windows/Timer/TimerWindow.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace Tomighty.Windows.Timer { public partial class TimerWindow : Form { public static readonly Color DarkGray = Color.FromArgb(41, 41, 41); public static readonly Color Red = Color.FromArgb(168, 32, 41); public static readonly Color Green = Color.FromArgb(26, 102, 41); public static readonly Color Blue = Color.FromArgb(22, 57, 101); private ColorScheme currentColorScheme; private Action currentTimerAction; private readonly Action UpdateTimeDisplayDelegate; private readonly Action UpdateTitleDelegate; private readonly Action UpdateTimerButtonTextDelegate; public TimerWindow() { InitializeComponent(); currentColorScheme = CreateColorScheme(DarkGray); SetTransparentBackground(pinButton); SetTransparentBackground(closeButton); Icon = Properties.Resources.icon_tomato_red; timeLabel.Font = new Font(SystemFonts.DefaultFont.FontFamily, 32f); UpdateTimeDisplayDelegate = (text) => timeLabel.Text = text; UpdateTitleDelegate = (text) => titleLabel.Text = text; UpdateTimerButtonTextDelegate = (text, action) => timerButton.Text = text; } public Button PinButton => pinButton; public Button CloseButton => closeButton; public void UpdateTitle(string text) { if (IsHandleCreated) timeLabel.BeginInvoke(UpdateTitleDelegate, text); else UpdateTitleDelegate(text); } public void SetTimerAction(string text, Action action) { currentTimerAction = action; if (IsHandleCreated) timerButton.BeginInvoke(UpdateTimerButtonTextDelegate, text, action); else UpdateTimerButtonTextDelegate(text, action); } public void UpdateTimeDisplay(string text) { if (IsHandleCreated) timeLabel.BeginInvoke(UpdateTimeDisplayDelegate, text); else UpdateTimeDisplayDelegate(text); } public void UpdateColorScheme(Color color) { currentColorScheme = CreateColorScheme(color); Invalidate(); } public void UpdatePinButtonState(bool pinned) { pinButton.Image = pinned ? Properties.Resources.image_pinned : Properties.Resources.image_unpinned; } public void Show(Point location) { Location = location; Show(); } private static void SetTransparentBackground(Button button) { button.BackColor = Color.Transparent; button.FlatAppearance.CheckedBackColor = Color.Transparent; button.FlatAppearance.MouseDownBackColor = Color.Transparent; button.FlatAppearance.MouseOverBackColor = Color.Transparent; } protected override void OnPaintBackground(PaintEventArgs e) { var background = new Rectangle(0, 0, Width, Height); var border = new Rectangle(0, 0, Width - 1, Height - 1); e.Graphics.FillRectangle(currentColorScheme.Fill, background); e.Graphics.DrawRectangle(currentColorScheme.Border, border); } private class TransparentLabel : Label { private const int WM_NCHITTEST = 0x0084; private const int HTTRANSPARENT = (-1); public TransparentLabel() { BackColor = Color.Transparent; } protected override void WndProc(ref Message m) { // Bubble up mouse events to the parent component so as to // allow the timer window to be dragged around even when // the user clicks on and moves the mouse over this label if (m.Msg == WM_NCHITTEST) { m.Result = (IntPtr)HTTRANSPARENT; } else { base.WndProc(ref m); } } } private void OnTimerButtonClick(object sender, EventArgs e) { currentTimerAction?.Invoke(); } public ColorScheme CreateColorScheme(Color color) { return new ColorScheme ( fill: CreateGradientBrush(color), border: new Pen(Darker(color), 1f) ); } private Brush CreateGradientBrush(Color color) { return new LinearGradientBrush( new Point(), new Point(0, Height), Brighter(color), Darker(color) ); } private Color Darker(Color color) { return AdjustBrightness(color, -40); } private Color Brighter(Color color) { return AdjustBrightness(color, 20); } private static Color AdjustBrightness(Color color, int offset) { var r = Math.Max(0, color.R + offset); var g = Math.Max(0, color.G + offset); var b = Math.Max(0, color.B + offset); return Color.FromArgb(r, g, b); } } public class ColorScheme { public ColorScheme(Brush fill, Pen border) { Fill = fill; Border = border; } public Brush Fill { get; } public Pen Border { get; } } } ================================================ FILE: Tomighty.Windows/Timer/TimerWindow.resx ================================================  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 ================================================ FILE: Tomighty.Windows/Timer/TimerWindowPresenter.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Drawing; using System.Windows.Forms; using Tomighty.Events; namespace Tomighty.Windows.Timer { internal class TimerWindowPresenter { private readonly ICountdownClock countdownClock; private readonly IWindowState idleState; private readonly IWindowState pomodoroState; private readonly IWindowState shortBreakState; private readonly IWindowState longBreakState; private readonly IWindowState pomodoroCompletedState; private readonly IWindowState breakFinishedState; private readonly IWindowState pomodoroInterruptedState; private readonly IWindowState breakInterruptedState; private IWindowState currentState; private TimerWindow window; private Taskbar _taskbar; private bool _isPinned; public TimerWindowPresenter(IPomodoroEngine pomodoroEngine, ICountdownClock countdownClock, IEventHub eventHub) { this.countdownClock = countdownClock; idleState = new IdleState(pomodoroEngine); pomodoroState = new PomodoroState(pomodoroEngine); shortBreakState = new ShortBreakState(pomodoroEngine); longBreakState = new LongBreakState(pomodoroEngine); pomodoroCompletedState = new PomodoroCompletedState(pomodoroEngine); breakFinishedState = new BreakFinishedState(pomodoroEngine); pomodoroInterruptedState = new TimerInterruptedState("Pomodoro Interrupted", pomodoroEngine); breakInterruptedState = new TimerInterruptedState("Break Interrupted", pomodoroEngine); currentState = idleState; eventHub.Subscribe(OnTimerStarted); eventHub.Subscribe(OnTimeElapsed); eventHub.Subscribe(OnTimerStopped); } private TimerWindow CreateTimerWindow() { var window = new TimerWindow(); foreach (var control in window.Controls) ((Control)control).LostFocus += OnLostFocus; window.LostFocus += OnLostFocus; window.VisibleChanged += OnWindowVisibleChanged; window.PinButton.Click += OnPinButtonClick; window.CloseButton.Click += OnCloseButtonClick; new DragAroundController(window, () => IsPinned); return window; } public void Toggle(Point approximateLocation) { var shouldCreateWindow = window == null; if (shouldCreateWindow) { window = CreateTimerWindow(); } if (window.Visible) { if (!IsPinned) window.Hide(); } else { Point location = GetLocationNearTrayIcon(approximateLocation); window.Show(location); if (shouldCreateWindow) { currentState.Apply(window, countdownClock.RemainingTime); } } } private void OnTimerStarted(TimerStarted @event) { EnterState(GetRunningTimerStateFor(@event.IntervalType), @event.RemainingTime); } private void OnTimerStopped(TimerStopped @event) { if (@event.IsIntervalCompleted) { EnterState(GetCompletedIntervalStateFor(@event.IntervalType), @event.RemainingTime); } else { EnterState(GetTimerInterruptedStateFor(@event.IntervalType), @event.RemainingTime); } } private void OnTimeElapsed(TimeElapsed @event) { if (window != null) { window.UpdateTimeDisplay(@event.RemainingTime.ToTimeString()); } } private void EnterState(IWindowState newState, Duration remainingTime) { if (newState != currentState) { currentState = newState; currentState.Apply(window, remainingTime); } } private IWindowState GetRunningTimerStateFor(IntervalType intervalType) { if (intervalType == IntervalType.Pomodoro) return pomodoroState; if (intervalType == IntervalType.ShortBreak) return shortBreakState; if (intervalType == IntervalType.LongBreak) return longBreakState; throw new ArgumentException($"Unknown interval type: {intervalType}"); } private IWindowState GetCompletedIntervalStateFor(IntervalType intervalType) { if (intervalType == IntervalType.Pomodoro) return pomodoroCompletedState; if (intervalType == IntervalType.ShortBreak || intervalType == IntervalType.LongBreak) return breakFinishedState; throw new ArgumentException($"Unknown interval type: {intervalType}"); } private IWindowState GetTimerInterruptedStateFor(IntervalType intervalType) { if (intervalType == IntervalType.Pomodoro) return pomodoroInterruptedState; if (intervalType == IntervalType.ShortBreak || intervalType == IntervalType.LongBreak) return breakInterruptedState; throw new ArgumentException($"Unknown interval type: {intervalType}"); } private Point GetLocationNearTrayIcon(Point approximateLocation) { var screen = Screen.FromPoint(approximateLocation); var x = approximateLocation.X - window.Width / 2; var y = screen.Bounds.Height - window.Height - Taskbar.Size.Height - 2; return new Point(x, y); } private void OnPinButtonClick(object sender, System.EventArgs e) { IsPinned = !IsPinned; } private void OnCloseButtonClick(object sender, System.EventArgs e) { window.Hide(); IsPinned = false; } private void OnWindowVisibleChanged(object sender, System.EventArgs e) { if (window.Visible) window.Focus(); } private void OnLostFocus(object sender, System.EventArgs e) { if (!IsPinned && !window.ContainsFocus) window.Hide(); } private Taskbar Taskbar => _taskbar == null ? _taskbar = new Taskbar() : _taskbar; private bool IsPinned { get { return _isPinned; } set { if (value != _isPinned) { _isPinned = value; if (window != null) { window.UpdatePinButtonState(_isPinned); } } } } private interface IWindowState { void Apply(TimerWindow window, Duration remainingTime); } private class IdleState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public IdleState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Idle"); window.UpdateColorScheme(TimerWindow.DarkGray); window.UpdateTimeDisplay(Duration.Zero.ToTimeString()); window.SetTimerAction("Start Pomodoro", StartTimer); } private void StartTimer() { pomodoroEngine.StartTimer(IntervalType.Pomodoro); } } private class PomodoroState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public PomodoroState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Pomodoro"); window.UpdateColorScheme(TimerWindow.Red); window.UpdateTimeDisplay(remainingTime.ToTimeString()); window.SetTimerAction("Interrupt", pomodoroEngine.StopTimer); } } private class ShortBreakState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public ShortBreakState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Short Break"); window.UpdateColorScheme(TimerWindow.Green); window.UpdateTimeDisplay(remainingTime.ToTimeString()); window.SetTimerAction("Interrupt", pomodoroEngine.StopTimer); } } private class LongBreakState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public LongBreakState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Long Break"); window.UpdateColorScheme(TimerWindow.Blue); window.UpdateTimeDisplay(remainingTime.ToTimeString()); window.SetTimerAction("Interrupt", pomodoroEngine.StopTimer); } } private class PomodoroCompletedState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public PomodoroCompletedState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Pomodoro Completed"); window.UpdateColorScheme(TimerWindow.DarkGray); window.UpdateTimeDisplay(Duration.Zero.ToTimeString()); window.SetTimerAction($"Start {pomodoroEngine.SuggestedBreakType.GetName()}", StartTimer); } private void StartTimer() { pomodoroEngine.StartTimer(pomodoroEngine.SuggestedBreakType); } } private class BreakFinishedState : IWindowState { private readonly IPomodoroEngine pomodoroEngine; public BreakFinishedState(IPomodoroEngine pomodoroEngine) { this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle("Break Finished"); window.UpdateColorScheme(TimerWindow.DarkGray); window.UpdateTimeDisplay(Duration.Zero.ToTimeString()); window.SetTimerAction("Start Pomodoro", StartTimer); } private void StartTimer() { pomodoroEngine.StartTimer(IntervalType.Pomodoro); } } private class TimerInterruptedState : IWindowState { private readonly string title; private readonly IPomodoroEngine pomodoroEngine; public TimerInterruptedState(string title, IPomodoroEngine pomodoroEngine) { this.title = title; this.pomodoroEngine = pomodoroEngine; } public void Apply(TimerWindow window, Duration remainingTime) { if (window == null) return; window.UpdateTitle(title); window.UpdateColorScheme(TimerWindow.DarkGray); window.UpdateTimeDisplay(remainingTime.ToTimeString()); window.SetTimerAction("Start Pomodoro", StartTimer); } private void StartTimer() { pomodoroEngine.StartTimer(IntervalType.Pomodoro); } } private class DragAroundController { private readonly Form form; private readonly Func canStartDraggingAround; private bool dragAround; private int offsetX, offsetY; public DragAroundController(Form form, Func canStartDraggingAround) { this.form = form; this.canStartDraggingAround = canStartDraggingAround; form.MouseDown += OnMouseDown; form.MouseUp += OnMouseUp; form.MouseMove += OnMouseMove; } private void OnMouseDown(object sender, MouseEventArgs e) { if (canStartDraggingAround()) { dragAround = true; offsetX = e.Location.X; offsetY = e.Location.Y; } } private void OnMouseUp(object sender, MouseEventArgs e) { dragAround = false; } private void OnMouseMove(object sender, MouseEventArgs e) { if (dragAround) { var relativeX = e.Location.X; var relativeY = e.Location.Y; var deltaX = relativeX - offsetX; var deltaY = relativeY - offsetY; form.Location = new Point( form.Location.X + deltaX, form.Location.Y + deltaY ); } } } } } ================================================ FILE: Tomighty.Windows/Tomighty.Windows.csproj ================================================  Debug AnyCPU {F45108D8-E103-4DB9-A43F-82F864FD9217} WinExe Properties Tomighty.Windows Tomighty.Windows v4.5.2 512 true publish\ true Disk false Foreground 7 Days false false true 0 1.0.0.%2a false false true 8.0 AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 Tomighty.Windows.Program Resources\icon_tomato_red.ico ..\packages\Microsoft.Toolkit.Uwp.Notifications.1.0.0\lib\dotnet\Microsoft.Toolkit.Uwp.Notifications.dll True GlobalAssemblyInfo.cs Form AboutWindow.cs Form ErrorReportWindow.cs True True Resources.resx Form TimerWindow.cs Form UserPreferencesForm.cs AboutWindow.cs ErrorReportWindow.cs TimerWindow.cs ResXFileCodeGenerator Designer Resources.Designer.cs UserPreferencesForm.cs SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings True Always Always Designer Designer Designer Always Always Always {c7ff3b3e-0cc1-4ec7-a7c1-39b6361b5895} Tomighty.Core False Microsoft .NET Framework 4.5.2 %28x86 and x64%29 true False .NET Framework 3.5 SP1 false This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. ================================================ FILE: Tomighty.Windows/TomightyApplication.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System.ComponentModel; using System.Windows.Forms; using Tomighty.Windows.About; using Tomighty.Windows.Notifications; using Tomighty.Windows.Preferences; using Tomighty.Windows.Timer; using Tomighty.Windows.Tray; namespace Tomighty.Windows { internal class TomightyApplication : ApplicationContext { public TomightyApplication() { var eventHub = new SynchronousEventHub(); var timer = new Tomighty.Timer(eventHub); var userPreferences = new UserPreferences(); var pomodoroEngine = new PomodoroEngine(timer, userPreferences, eventHub); var trayMenu = new TrayMenu() as ITrayMenu; var trayIcon = CreateTrayIcon(trayMenu); var timerWindowPresenter = new TimerWindowPresenter(pomodoroEngine, timer, eventHub); new TrayIconController(trayIcon, timerWindowPresenter, eventHub); new TrayMenuController(trayMenu, this, pomodoroEngine, eventHub); new NotificationsPresenter(pomodoroEngine, userPreferences, eventHub); new SoundNotificationPlayer(userPreferences, eventHub); new AutoUpdate(userPreferences).Start(); var aboutWindowPresenter = new AboutWindowPresenter(); var userPreferencesPresenter = new UserPreferencesPresenter(userPreferences); trayMenu.OnAboutClick((sender, e) => aboutWindowPresenter.Show()); trayMenu.OnPreferencesClick((sender, e) => userPreferencesPresenter.Show()); ThreadExit += (sender, e) => trayIcon.Dispose(); new StartupEvents(eventHub); } private static NotifyIcon CreateTrayIcon(ITrayMenu trayMenu) { var trayIcon = new NotifyIcon(new Container()); trayIcon.Text = "Tomighty"; trayIcon.Icon = Properties.Resources.icon_tomato_white; trayIcon.ContextMenuStrip = trayMenu.Component; trayIcon.Visible = true; return trayIcon; } } } ================================================ FILE: Tomighty.Windows/Tray/ITrayMenu.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Windows.Forms; namespace Tomighty.Windows.Tray { internal interface ITrayMenu { ContextMenuStrip Component { get; } void OnAboutClick(EventHandler handler); void OnPreferencesClick(EventHandler handler); void OnStartPomodoroClick(EventHandler handler); void OnStartLongBreakClick(EventHandler handler); void OnStartShortBreakClick(EventHandler handler); void OnStopTimerClick(EventHandler handler); void OnResetPomodoroCountClick(EventHandler handler); void OnExitClick(EventHandler handler); void Update(Action action); } } ================================================ FILE: Tomighty.Windows/Tray/ITrayMenuMutator.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // namespace Tomighty.Windows.Tray { internal interface ITrayMenuMutator { void UpdateRemainingTime(string text); void EnableStartPomodoroItem(bool enable); void EnableStartShortBreakItem(bool enable); void EnableStartLongBreakItem(bool enable); void EnableStopTimerItem(bool enable); void EnableResetPomodoroCountItem(bool enable); void UpdatePomodoroCount(int count); } } ================================================ FILE: Tomighty.Windows/Tray/TrayIconController.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Drawing; using System.Windows.Forms; using Tomighty.Events; using Tomighty.Windows.Timer; namespace Tomighty.Windows.Tray { internal class TrayIconController : IDisposable { private readonly NotifyIcon notifyIcon; private readonly TimerWindowPresenter timerWindowPresenter; public TrayIconController(NotifyIcon notifyIcon, TimerWindowPresenter timerWindowPresenter, IEventHub eventHub) { this.notifyIcon = notifyIcon; this.timerWindowPresenter = timerWindowPresenter; notifyIcon.Click += OnNotifyIconClick; eventHub.Subscribe(OnTimerStarted); eventHub.Subscribe(OnTimerStopped); } public void Dispose() { notifyIcon.Container.Dispose(); } private void OnNotifyIconClick(object sender, EventArgs @event) { if (((MouseEventArgs)@event).Button == MouseButtons.Left) { timerWindowPresenter.Toggle(Cursor.Position); } } private void OnTimerStarted(TimerStarted @event) { notifyIcon.Icon = GetIcon(@event.IntervalType); } private void OnTimerStopped(TimerStopped @event) { notifyIcon.Icon = Properties.Resources.icon_tomato_white; } private Icon GetIcon(IntervalType intervalType) { if (intervalType == IntervalType.Pomodoro) return Properties.Resources.icon_tomato_red; if (intervalType == IntervalType.ShortBreak) return Properties.Resources.icon_tomato_green; if (intervalType == IntervalType.LongBreak) return Properties.Resources.icon_tomato_blue; throw new ArgumentException($"Invalid interval type: {intervalType}"); } } } ================================================ FILE: Tomighty.Windows/Tray/TrayMenu.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Drawing; using System.Windows.Forms; namespace Tomighty.Windows.Tray { internal class TrayMenu : ITrayMenu, ITrayMenuMutator { private readonly ContextMenuStrip contextMenu; private readonly ToolStripMenuItem remainingTimeItem; private readonly ToolStripMenuItem stopTimerItem; private readonly ToolStripMenuItem pomodoroCountItem; private readonly ToolStripMenuItem resetPomodoroCountItem; private readonly ToolStripMenuItem startPomodoroItem; private readonly ToolStripMenuItem startShortBreakItem; private readonly ToolStripMenuItem startLongBreakItem; private readonly ToolStripMenuItem aboutItem; private readonly ToolStripMenuItem exitItem; private readonly ToolStripMenuItem preferencesItem; public TrayMenu() { remainingTimeItem = new ToolStripMenuItem("00:00", Properties.Resources.image_clock); remainingTimeItem.Enabled = false; remainingTimeItem.Font = new Font(remainingTimeItem.Font, FontStyle.Bold); stopTimerItem = new ToolStripMenuItem("Stop", Properties.Resources.image_stop); pomodoroCountItem = new ToolStripMenuItem(); pomodoroCountItem.Enabled = false; resetPomodoroCountItem = new ToolStripMenuItem("Reset count"); resetPomodoroCountItem.Enabled = false; startPomodoroItem = new ToolStripMenuItem("Pomodoro", Properties.Resources.image_tomato_red); startShortBreakItem = new ToolStripMenuItem("Short break", Properties.Resources.image_tomato_green); startLongBreakItem = new ToolStripMenuItem("Long break", Properties.Resources.image_tomato_blue); aboutItem = new ToolStripMenuItem("About Tomighty"); preferencesItem = new ToolStripMenuItem("Preferences..."); exitItem = new ToolStripMenuItem("Exit"); contextMenu = new ContextMenuStrip(); contextMenu.Items.Add(remainingTimeItem); contextMenu.Items.Add(stopTimerItem); contextMenu.Items.Add(new ToolStripSeparator()); contextMenu.Items.Add(pomodoroCountItem); contextMenu.Items.Add(resetPomodoroCountItem); contextMenu.Items.Add(new ToolStripSeparator()); contextMenu.Items.Add(startPomodoroItem); contextMenu.Items.Add(startShortBreakItem); contextMenu.Items.Add(startLongBreakItem); contextMenu.Items.Add(new ToolStripSeparator()); contextMenu.Items.Add(aboutItem); contextMenu.Items.Add(preferencesItem); contextMenu.Items.Add(new ToolStripSeparator()); contextMenu.Items.Add(exitItem); } public ContextMenuStrip Component => contextMenu; public void OnStartPomodoroClick(EventHandler handler) => startPomodoroItem.Click += handler; public void OnStartLongBreakClick(EventHandler handler) => startLongBreakItem.Click += handler; public void OnStartShortBreakClick(EventHandler handler) => startShortBreakItem.Click += handler; public void OnStopTimerClick(EventHandler handler) => stopTimerItem.Click += handler; public void OnResetPomodoroCountClick(EventHandler handler) => resetPomodoroCountItem.Click += handler; public void OnAboutClick(EventHandler handler) => aboutItem.Click += handler; public void OnPreferencesClick(EventHandler handler) => preferencesItem.Click += handler; public void OnExitClick(EventHandler handler) => exitItem.Click += handler; public void UpdateRemainingTime(string text) => remainingTimeItem.Text = text; public void UpdatePomodoroCount(int count) => pomodoroCountItem.Text = $"Completed pomodoros: {count}"; public void EnableStartPomodoroItem(bool enable) => startPomodoroItem.Enabled = enable; public void EnableStartShortBreakItem(bool enable) => startShortBreakItem.Enabled = enable; public void EnableStartLongBreakItem(bool enable) => startLongBreakItem.Enabled = enable; public void EnableStopTimerItem(bool enable) => stopTimerItem.Enabled = enable; public void EnableResetPomodoroCountItem(bool enable) => resetPomodoroCountItem.Enabled = enable; public void Update(Action action) { if (contextMenu.IsHandleCreated) { contextMenu.BeginInvoke(action, this); } else { action(this); } } } } ================================================ FILE: Tomighty.Windows/Tray/TrayMenuController.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.Threading.Tasks; using System.Windows.Forms; using Tomighty.Events; namespace Tomighty.Windows.Tray { internal class TrayMenuController { private readonly ITrayMenu menu; private readonly ApplicationContext app; private readonly IPomodoroEngine pomodoroEngine; public TrayMenuController(ITrayMenu menu, ApplicationContext app, IPomodoroEngine pomodoroEngine, IEventHub eventHub) { this.menu = menu; this.app = app; this.pomodoroEngine = pomodoroEngine; menu.OnStartPomodoroClick(OnStartPomodoroClick); menu.OnStartLongBreakClick(OnStartLongBreakClick); menu.OnStartShortBreakClick(OnStartShortBreakClick); menu.OnStopTimerClick(OnStopTimerClick); menu.OnResetPomodoroCountClick(OnResetPomodoroCountClick); menu.OnExitClick(OnExitClick); eventHub.Subscribe(OnTimerStarted); eventHub.Subscribe(OnTimerStopped); eventHub.Subscribe(OnTimeElasped); eventHub.Subscribe(OnPomodoroCountChanged); menu.Update(mutator => { mutator.UpdateRemainingTime(Duration.Zero.ToTimeString()); mutator.UpdatePomodoroCount(0); mutator.EnableStopTimerItem(false); }); } private void OnStartPomodoroClick(object sender, EventArgs e) => StartTimer(IntervalType.Pomodoro); private void OnStartLongBreakClick(object sender, EventArgs e) => StartTimer(IntervalType.LongBreak); private void OnStartShortBreakClick(object sender, EventArgs e) => StartTimer(IntervalType.ShortBreak); private void OnStopTimerClick(object sender, EventArgs e) => Task.Run(() => pomodoroEngine.StopTimer()); private void OnResetPomodoroCountClick(object sender, EventArgs e) => Task.Run(() => pomodoroEngine.ResetPomodoroCount()); private void OnExitClick(object sender, EventArgs e) { app.ExitThread(); } private void OnTimerStarted(TimerStarted @event) { menu.Update(mutator => { mutator.UpdateRemainingTime(@event.RemainingTime.ToTimeString()); mutator.EnableStartPomodoroItem(@event.IntervalType != IntervalType.Pomodoro); mutator.EnableStartShortBreakItem(@event.IntervalType != IntervalType.ShortBreak); mutator.EnableStartLongBreakItem(@event.IntervalType != IntervalType.LongBreak); mutator.EnableStopTimerItem(true); }); } private void OnTimerStopped(TimerStopped timerStopped) { menu.Update(mutator => { mutator.UpdateRemainingTime(Duration.Zero.ToTimeString()); mutator.EnableStartPomodoroItem(true); mutator.EnableStartShortBreakItem(true); mutator.EnableStartLongBreakItem(true); mutator.EnableStopTimerItem(false); }); } private void OnTimeElasped(TimeElapsed @event) { menu.Update(mutator => { mutator.UpdateRemainingTime(@event.RemainingTime.ToTimeString()); }); } private void OnPomodoroCountChanged(PomodoroCountChanged @event) { menu.Update(mutator => { var count = @event.PomodoroCount; mutator.UpdatePomodoroCount(count); mutator.EnableResetPomodoroCountItem(count > 0); }); } private void StartTimer(IntervalType intervalType) { Task.Run(() => pomodoroEngine.StartTimer(intervalType)); } } } ================================================ FILE: Tomighty.Windows/URLs.cs ================================================ namespace Tomighty.Windows { internal class URLs { public static readonly string UpdateFeed = "https://raw.githubusercontent.com/tomighty/tomighty-update-feed/master/windows"; public static readonly string ErrorReport = "https://tomighty-errors.herokuapp.com"; } } ================================================ FILE: Tomighty.Windows/Util/Hash.cs ================================================ // // Tomighty - http://www.tomighty.org // // This software is licensed under the Apache License Version 2.0: // http://www.apache.org/licenses/LICENSE-2.0.txt // using System; using System.IO; using System.Security.Cryptography; using System.Text; namespace Tomighty.Windows.Util { public class Hash { public static string Sha1(string s) { var sha = new SHA1CryptoServiceProvider(); var data = Encoding.UTF8.GetBytes(s); var hash = sha.ComputeHash(data); return BitConverter.ToString(hash).Replace("-", string.Empty).ToLower(); } public static string Sha256(Stream stream) { var sha = new SHA256CryptoServiceProvider(); var hash = sha.ComputeHash(stream); return BitConverter.ToString(hash).Replace("-", string.Empty).ToLower(); } } } ================================================ FILE: Tomighty.Windows/Version.cs ================================================ using System.Diagnostics; using System.Reflection; namespace Tomighty.Windows { internal class Version { private static string product; public static string Product { get { if (product == null) product = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).ProductVersion; return product; } } } } ================================================ FILE: Tomighty.Windows/packages.config ================================================  ================================================ FILE: Tomighty.sln ================================================  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tomighty.Core", "Tomighty.Core\Tomighty.Core.csproj", "{C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tomighty.Core.Test", "Tomighty.Core.Test\Tomighty.Core.Test.csproj", "{CAC6A930-C0E3-422B-A49E-7DE000DC9A40}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tomighty.Windows", "Tomighty.Windows\Tomighty.Windows.csproj", "{F45108D8-E103-4DB9-A43F-82F864FD9217}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{619DA42E-31A3-4B97-8451-0F8F1E16CA6A}" ProjectSection(SolutionItems) = preProject .gitignore = .gitignore dist.bat = dist.bat GlobalAssemblyInfo.cs = GlobalAssemblyInfo.cs LICENSE.txt = LICENSE.txt NOTICE.txt = NOTICE.txt pack.ps1 = pack.ps1 README.md = README.md EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tomighty.Update.Swap", "Tomighty.Update.Swap\Tomighty.Update.Swap.csproj", "{3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895}.Debug|Any CPU.Build.0 = Debug|Any CPU {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895}.Release|Any CPU.ActiveCfg = Release|Any CPU {C7FF3B3E-0CC1-4EC7-A7C1-39B6361B5895}.Release|Any CPU.Build.0 = Release|Any CPU {CAC6A930-C0E3-422B-A49E-7DE000DC9A40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CAC6A930-C0E3-422B-A49E-7DE000DC9A40}.Debug|Any CPU.Build.0 = Debug|Any CPU {CAC6A930-C0E3-422B-A49E-7DE000DC9A40}.Release|Any CPU.ActiveCfg = Release|Any CPU {CAC6A930-C0E3-422B-A49E-7DE000DC9A40}.Release|Any CPU.Build.0 = Release|Any CPU {F45108D8-E103-4DB9-A43F-82F864FD9217}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F45108D8-E103-4DB9-A43F-82F864FD9217}.Debug|Any CPU.Build.0 = Debug|Any CPU {F45108D8-E103-4DB9-A43F-82F864FD9217}.Release|Any CPU.ActiveCfg = Release|Any CPU {F45108D8-E103-4DB9-A43F-82F864FD9217}.Release|Any CPU.Build.0 = Release|Any CPU {3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF}.Debug|Any CPU.Build.0 = Debug|Any CPU {3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF}.Release|Any CPU.ActiveCfg = Release|Any CPU {3FC0DC20-6120-4CD7-8F54-A1CA6F8886BF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ================================================ FILE: dist.bat ================================================ @echo off echo ========================================================================== echo Building Tomighty echo ========================================================================== echo. msbuild Tomighty.sln /t:rebuild /p:Configuration=Release for /f %%i in ('powershell -noprofile -executionpolicy bypass "(Get-Item Tomighty.Windows\bin\Release\Tomighty.Windows.exe).VersionInfo.FileVersion"') do set version=%%i set tag=%1 if "%tag%"=="commit" (for /f %%i in ('git rev-parse --short HEAD') do set tag=%%i) set artifact=tomighty-windows-%version% if not "%tag%"=="" (set artifact=%artifact%-%tag%) set zipfile=dist\%artifact%.zip set src=Tomighty.Windows\bin\Release set dest=build\%artifact% IF NOT EXIST build ( mkdir build ) IF NOT EXIST dist ( mkdir dist ) IF EXIST %dest% ( rmdir %dest% /S /Q ) if exist %zipfile% ( del %zipfile% ) mkdir %dest%\Resources xcopy /f LICENSE.txt %dest% xcopy /f NOTICE.txt %dest% xcopy /f %src%\Tomighty.Windows.exe %dest% xcopy /f %src%\Tomighty.Core.dll %dest% xcopy /f %src%\Microsoft.Toolkit.Uwp.Notifications.dll %dest% xcopy /f /s %src%\Resources %dest%\Resources xcopy /f Tomighty.Update.Swap\bin\Release\Tomighty.Update.Swap.exe %dest% powershell -executionpolicy bypass -file pack.ps1 "%dest%" "%zipfile%" makensis -DPRODUCT_NAME=Tomighty -DPRODUCT_VERSION=%version% -DPRODUCT_FILE_VERSION=%version% -DARTIFACT_NAME=%artifact% -DBUILD_DIR=%dest% setup.nsi echo. echo -------------------------------------------------------------------------- echo Package: %zipfile% echo Build finished echo -------------------------------------------------------------------------- ================================================ FILE: pack.ps1 ================================================ param ( [string]$directory, [string]$name ) Add-Type -Assembly System.IO.Compression.FileSystem [System.IO.Compression.ZipFile]::CreateFromDirectory($directory, $name, [System.IO.Compression.CompressionLevel]::Optimal, $false) ================================================ FILE: setup.nsi ================================================ ;====================================================== ; Includes !include MUI.nsh !include Sections.nsh !include FileFunc.nsh ;====================================================== ; Installer Information Name "Tomighty" OutFile "dist\${ARTIFACT_NAME}-install.exe" SetCompressor /SOLID lzma XPStyle on CRCCheck on InstallDir "C:\Program Files\${PRODUCT_NAME}\" AutoCloseWindow false ShowInstDetails show Icon "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico" ;====================================================== ; Version Tab information for Setup.exe properties VIProductVersion 2008.3.22.0 VIAddVersionKey ProductName "${PRODUCT_NAME}" VIAddVersionKey ProductVersion "${PRODUCT_VERSION}" VIAddVersionKey FileVersion "${PRODUCT_FILE_VERSION}" ;====================================================== ; Variables ;====================================================== ; Modern Interface Configuration !define MUI_HEADERIMAGE !define MUI_ABORTWARNING !define MUI_COMPONENTSPAGE_SMALLDESC !define MUI_HEADERIMAGE_BITMAP_NOSTRETCH !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico" !define MUI_FINISHPAGE_RUN !define MUI_FINISHPAGE_RUN_TEXT "Run Tomighty" !define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink" !define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tomighty" ;====================================================== ; Modern Interface Pages !define MUI_DIRECTORYPAGE_VERIFYONLEAVE !insertmacro MUI_PAGE_LICENSE .\LICENSE.txt !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH ;====================================================== ; Languages !insertmacro MUI_LANGUAGE "English" ;====================================================== ; Installer Sections Section "Tomighty" SectionIn RO SetOutPath $INSTDIR SetOverwrite on File "${BUILD_DIR}\Tomighty.Windows.exe" File "${BUILD_DIR}\Tomighty.Update.Swap.exe" File "${BUILD_DIR}\Tomighty.Core.dll" File "${BUILD_DIR}\Microsoft.Toolkit.Uwp.Notifications.dll" File "${BUILD_DIR}\NOTICE.txt" File "${BUILD_DIR}\LICENSE.txt" File /r "${BUILD_DIR}\Resources" WriteUninstaller $INSTDIR\uninstall.exe SectionEnd Section "Start menu shortcuts" SetShellVarContext all CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Tomighty.lnk" "$INSTDIR\Tomighty.Windows.exe" "" "$INSTDIR\Tomighty.Windows.exe" 0 CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 SectionEnd Section "Desktop shortcut" SetShellVarContext all CreateShortCut "$DESKTOP\Tomighty.lnk" "$INSTDIR\Tomighty.Windows.exe" "" "$INSTDIR\Tomighty.Windows.exe" 0 SectionEnd ; Installer functions Function .onInstSuccess WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayName" "Tomighty - Desktop Pomodoro Timer" WriteRegStr HKLM "${REG_UNINSTALL}" "UninstallString" "$\"$INSTDIR\uninstall.exe$\"" WriteRegStr HKLM "${REG_UNINSTALL}" "Publisher" "Open Source" WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayIcon" "$\"$INSTDIR\Tomighty.Windows.exe$\"" ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2 IntFmt $0 "0x%08X" $0 WriteRegDWORD HKLM "${REG_UNINSTALL}" "EstimatedSize" "$0" FunctionEnd Function LaunchLink ExecShell "" "$SMPROGRAMS\${PRODUCT_NAME}\Tomighty.lnk" FunctionEnd Section "uninstall" SetShellVarContext all delete "$DESKTOP\Tomighty.lnk" RMDir /r "$SMPROGRAMS\${PRODUCT_NAME}" RMDir /r "$INSTDIR" DeleteRegKey HKLM ${REG_UNINSTALL} SectionEnd Function .onInit InitPluginsDir FunctionEnd