From aca12abc4d1b968e5db983a3d3d8b96a5ebd2d06 Mon Sep 17 00:00:00 2001 From: Kerwin Date: Sun, 17 Apr 2022 18:49:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E8=87=AA=E5=8A=A8=E4=B8=8B?= =?UTF-8?q?=E5=8D=95(=E8=B4=AD=E7=89=A9=E8=BD=A6=E5=B7=B2=E9=80=89)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DingDong.Core/DingDong/DingDongCore.cs | 4 +- DingDong.Core/Models/DingDongUtils.cs | 23 +- DingDong.Monitor/DingDong.Monitor.csproj | 6 + DingDong.Monitor/MainFrm.Designer.cs | 52 +- DingDong.Monitor/MainFrm.cs | 306 +++++- DingDong.Monitor/MainFrm.resx | 1158 +++++++++++++++++++++- DingDong.Monitor/Models/Config.cs | 35 +- DingDong.Monitor/Music/order.wav | Bin 0 -> 51918 bytes 8 files changed, 1505 insertions(+), 79 deletions(-) create mode 100644 DingDong.Monitor/Music/order.wav diff --git a/DingDong.Core/DingDong/DingDongCore.cs b/DingDong.Core/DingDong/DingDongCore.cs index 00ff03d..9dc541e 100644 --- a/DingDong.Core/DingDong/DingDongCore.cs +++ b/DingDong.Core/DingDong/DingDongCore.cs @@ -90,7 +90,7 @@ public void CheckOrder(New_Order_Product_List2 cart) bodys.Add("showData", "true"); var result = RequestPost(url, GetCommonParams(bodys)); var obj = JObject.Parse(result); - if (obj["success"].ToString() != "true") + if (obj["success"].ToString().ToLower() != "true") { _log?.Invoke($"检查订单失败. {obj["msg"]}"); throw new DingDongException(obj["msg"].ToString()); @@ -142,7 +142,7 @@ public void CreateNewOrder(CartData data, (long startTime, long endTime) reserve var result = RequestPost(url, GetCommonParams(bodys)); // {"success":true,"code":0,"msg":"success","data":{"pay_url":"{\"timeStamp\":\"1650182341\",\"package\":\"prepay_id=wx17155901110395404e2ec64b5eccda0000\",\"appId\":\"wx1e113254eda17715\",\"sign\":\"082F7C89FE3FBFB545D9E82EB3712FBF\",\"signType\":\"MD5\",\"nonceStr\":\"70MAHai08O9KqLbll7RVMTAovjgGsj03\"}","pay_online":true,"order_number":"2204171874886872238","cart_count":28,"station_id":"5c8879d1716de1f6468b456d","event_tracking":{"post_product_algo":"{}"}},"tradeTag":"success","server_time":1650182341,"is_trade":1} var obj = JObject.Parse(result); - if (obj["success"].ToString() != "true") + if (obj["success"].ToString().ToLower() != "true") { _log?.Invoke($"创建订单失败. {obj["msg"]}"); throw new DingDongException(""); diff --git a/DingDong.Core/Models/DingDongUtils.cs b/DingDong.Core/Models/DingDongUtils.cs index 5ec2452..d189d54 100644 --- a/DingDong.Core/Models/DingDongUtils.cs +++ b/DingDong.Core/Models/DingDongUtils.cs @@ -1,4 +1,5 @@ -using System.Text; +using RestSharp; +using System.Text; using System.Web; namespace DingDong.Monitor.Models @@ -70,6 +71,24 @@ public static string ToBody(this Dictionary body) public static long NowTimeStamp => new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds(); - + /// + /// + /// + /// + /// + public static void Push(string url, string message) + { + if (string.IsNullOrWhiteSpace(url)) + { + return; + } + var groupName = HttpUtility.UrlEncode("叮咚助手"); + var msg = HttpUtility.UrlEncode(message); + var client = new RestClient($"{url.TrimEnd('/')}/{groupName}/{msg}?group={groupName}"); + client.Timeout = -1; + var request = new RestRequest(Method.GET); + IRestResponse response = client.Execute(request); + Console.WriteLine(response.Content); + } } } diff --git a/DingDong.Monitor/DingDong.Monitor.csproj b/DingDong.Monitor/DingDong.Monitor.csproj index 86e0349..f733e80 100644 --- a/DingDong.Monitor/DingDong.Monitor.csproj +++ b/DingDong.Monitor/DingDong.Monitor.csproj @@ -16,4 +16,10 @@ + + + PreserveNewest + + + \ No newline at end of file diff --git a/DingDong.Monitor/MainFrm.Designer.cs b/DingDong.Monitor/MainFrm.Designer.cs index 6be1cb2..6b3f71d 100644 --- a/DingDong.Monitor/MainFrm.Designer.cs +++ b/DingDong.Monitor/MainFrm.Designer.cs @@ -28,6 +28,8 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFrm)); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.nudContinue = new System.Windows.Forms.NumericUpDown(); this.cbContinue = new System.Windows.Forms.CheckBox(); @@ -57,6 +59,7 @@ private void InitializeComponent() this.dvg_TotalPrice = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dgv_Status = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.btnClearLog = new System.Windows.Forms.Button(); this.cbTrackLog = new System.Windows.Forms.CheckBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.btnSaveAllConfig = new System.Windows.Forms.Button(); @@ -64,6 +67,7 @@ private void InitializeComponent() this.txtPushUrl = new System.Windows.Forms.TextBox(); this.btnTestPush = new System.Windows.Forms.Button(); this.cbPlayMusic = new System.Windows.Forms.CheckBox(); + this.niDingDong = new System.Windows.Forms.NotifyIcon(this.components); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudContinue)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudInterval)).BeginInit(); @@ -96,6 +100,7 @@ private void InitializeComponent() // // nudContinue // + this.nudContinue.Enabled = false; this.nudContinue.Location = new System.Drawing.Point(121, 387); this.nudContinue.Name = "nudContinue"; this.nudContinue.Size = new System.Drawing.Size(89, 23); @@ -110,6 +115,7 @@ private void InitializeComponent() this.cbContinue.TabIndex = 10; this.cbContinue.Text = "监控持续(分钟)"; this.cbContinue.UseVisualStyleBackColor = true; + this.cbContinue.CheckedChanged += new System.EventHandler(this.cbContinue_CheckedChanged); // // cbCartMonitor // @@ -130,6 +136,7 @@ private void InitializeComponent() this.cbCategoryMonitor.TabIndex = 8; this.cbCategoryMonitor.Text = "分类菜系监控"; this.cbCategoryMonitor.UseVisualStyleBackColor = true; + this.cbCategoryMonitor.CheckedChanged += new System.EventHandler(this.cbCategoryMonitor_CheckedChanged); // // btnStartMonitor // @@ -139,9 +146,11 @@ private void InitializeComponent() this.btnStartMonitor.TabIndex = 7; this.btnStartMonitor.Text = "开始监控"; this.btnStartMonitor.UseVisualStyleBackColor = true; + this.btnStartMonitor.Click += new System.EventHandler(this.btnStartMonitor_Click); // // dtpBeginTime // + this.dtpBeginTime.Enabled = false; this.dtpBeginTime.Format = System.Windows.Forms.DateTimePickerFormat.Time; this.dtpBeginTime.Location = new System.Drawing.Point(121, 343); this.dtpBeginTime.Name = "dtpBeginTime"; @@ -157,9 +166,11 @@ private void InitializeComponent() this.cbTimeStart.TabIndex = 5; this.cbTimeStart.Text = "定时开始:"; this.cbTimeStart.UseVisualStyleBackColor = true; + this.cbTimeStart.CheckedChanged += new System.EventHandler(this.cbTimeStart_CheckedChanged); // // txtExclude // + this.txtExclude.Enabled = false; this.txtExclude.Location = new System.Drawing.Point(121, 238); this.txtExclude.Multiline = true; this.txtExclude.Name = "txtExclude"; @@ -215,6 +226,7 @@ private void InitializeComponent() this.dgv_Category_Check, this.dgv_Category_Name, this.dgv_Category_Status}); + this.dgvCategory.Enabled = false; this.dgvCategory.Location = new System.Drawing.Point(8, 32); this.dgvCategory.Name = "dgvCategory"; this.dgvCategory.RowTemplate.Height = 25; @@ -227,7 +239,7 @@ private void InitializeComponent() this.dgv_Category_Check.HeaderText = "#"; this.dgv_Category_Check.Name = "dgv_Category_Check"; this.dgv_Category_Check.ReadOnly = true; - this.dgv_Category_Check.Width = 50; + this.dgv_Category_Check.Width = 120; // // dgv_Category_Name // @@ -368,6 +380,7 @@ private void InitializeComponent() // // groupBox3 // + this.groupBox3.Controls.Add(this.btnClearLog); this.groupBox3.Controls.Add(this.cbTrackLog); this.groupBox3.Controls.Add(this.richTextBox1); this.groupBox3.Location = new System.Drawing.Point(12, 464); @@ -377,12 +390,22 @@ private void InitializeComponent() this.groupBox3.TabStop = false; this.groupBox3.Text = "日志"; // + // btnClearLog + // + this.btnClearLog.Location = new System.Drawing.Point(830, 231); + this.btnClearLog.Name = "btnClearLog"; + this.btnClearLog.Size = new System.Drawing.Size(75, 23); + this.btnClearLog.TabIndex = 7; + this.btnClearLog.Text = "清空日志"; + this.btnClearLog.UseVisualStyleBackColor = false; + this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click); + // // cbTrackLog // this.cbTrackLog.AutoSize = true; this.cbTrackLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(73)))), ((int)(((byte)(74))))); this.cbTrackLog.ForeColor = System.Drawing.Color.White; - this.cbTrackLog.Location = new System.Drawing.Point(931, 277); + this.cbTrackLog.Location = new System.Drawing.Point(920, 231); this.cbTrackLog.Name = "cbTrackLog"; this.cbTrackLog.Size = new System.Drawing.Size(85, 21); this.cbTrackLog.TabIndex = 6; @@ -397,6 +420,7 @@ private void InitializeComponent() this.richTextBox1.ForeColor = System.Drawing.Color.White; this.richTextBox1.Location = new System.Drawing.Point(3, 19); this.richTextBox1.Name = "richTextBox1"; + this.richTextBox1.ReadOnly = true; this.richTextBox1.Size = new System.Drawing.Size(1019, 245); this.richTextBox1.TabIndex = 0; this.richTextBox1.Text = ""; @@ -415,7 +439,7 @@ private void InitializeComponent() // label3 // this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(476, 386); + this.label3.Location = new System.Drawing.Point(476, 376); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(75, 17); this.label3.TabIndex = 4; @@ -423,9 +447,10 @@ private void InitializeComponent() // // txtPushUrl // - this.txtPushUrl.Location = new System.Drawing.Point(568, 380); + this.txtPushUrl.Location = new System.Drawing.Point(557, 373); + this.txtPushUrl.Multiline = true; this.txtPushUrl.Name = "txtPushUrl"; - this.txtPushUrl.Size = new System.Drawing.Size(290, 23); + this.txtPushUrl.Size = new System.Drawing.Size(308, 49); this.txtPushUrl.TabIndex = 5; // // btnTestPush @@ -434,8 +459,9 @@ private void InitializeComponent() this.btnTestPush.Name = "btnTestPush"; this.btnTestPush.Size = new System.Drawing.Size(127, 37); this.btnTestPush.TabIndex = 6; - this.btnTestPush.Text = "测试推送"; + this.btnTestPush.Text = "测试提醒"; this.btnTestPush.UseVisualStyleBackColor = true; + this.btnTestPush.Click += new System.EventHandler(this.btnTestPush_Click); // // cbPlayMusic // @@ -447,6 +473,12 @@ private void InitializeComponent() this.cbPlayMusic.Text = "播放音乐"; this.cbPlayMusic.UseVisualStyleBackColor = true; // + // niDingDong + // + this.niDingDong.Icon = ((System.Drawing.Icon)(resources.GetObject("niDingDong.Icon"))); + this.niDingDong.Text = "DingDong"; + this.niDingDong.Visible = true; + // // MainFrm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); @@ -485,9 +517,6 @@ private void InitializeComponent() private DataGridView dgvCategory; private GroupBox groupBox2; private DataGridView dgvCart; - private DataGridViewTextBoxColumn dgv_Category_Check; - private DataGridViewTextBoxColumn dgv_Category_Name; - private DataGridViewCheckBoxColumn dgv_Category_Status; private GroupBox groupBox3; private Button btnRefreshCart; private Label label1; @@ -517,5 +546,10 @@ private void InitializeComponent() private CheckBox cbTimeStart; private NumericUpDown nudContinue; private CheckBox cbContinue; + private Button btnClearLog; + private DataGridViewTextBoxColumn dgv_Category_Check; + private DataGridViewTextBoxColumn dgv_Category_Name; + private DataGridViewCheckBoxColumn dgv_Category_Status; + private NotifyIcon niDingDong; } } \ No newline at end of file diff --git a/DingDong.Monitor/MainFrm.cs b/DingDong.Monitor/MainFrm.cs index 4598862..98fe77d 100644 --- a/DingDong.Monitor/MainFrm.cs +++ b/DingDong.Monitor/MainFrm.cs @@ -2,6 +2,7 @@ using DingDong.Monitor.DingDong; using DingDong.Monitor.Models; using Newtonsoft.Json; +using System.Web; namespace DingDong.Monitor { @@ -14,10 +15,13 @@ public MainFrm() private static Config DdConfig = null; private static DingDongCore DdCore = null; - private static List Categories = null; + private static bool IsMonitoring = false; + private static CancellationTokenSource MonitorTokenSource = null; + private static DateTime? MonitorBeginTime = null; private void MainFrm_Shown(object sender, EventArgs e) { + WriteLog("所有配置的更改,只有保存配置之后才会生效。。。"); if (File.Exists("config.json")) { DdConfig = JsonConvert.DeserializeObject(File.ReadAllText("config.json")); @@ -26,13 +30,34 @@ private void MainFrm_Shown(object sender, EventArgs e) { new LoginFrm(SaveConfig).ShowDialog(); } + if (DdConfig != null && DdConfig.SoftConfig != null) + { + RefreshUiConfig(); + } + if (DdConfig != null && DdConfig.DdConfig != null) { DdCore = new DingDongCore(DdConfig.DdConfig, WriteLog); + DdCore._track = DdConfig.SoftConfig.TrackLog; RefreshCategories(); } } + private void RefreshUiConfig() + { + txtExclude.Text = String.Join(",", DdConfig.SoftConfig.ExcludeKeywords?? new List()); + dtpBeginTime.Text= DdConfig.SoftConfig.TimeBegin; + cbTimeStart.Checked= DdConfig.SoftConfig.IsTimeBegin; + cbContinue.Checked = DdConfig.SoftConfig.MonitorContinue; + nudContinue.Value= DdConfig.SoftConfig.MonitorContinueMins; + nudInterval.Value= DdConfig.SoftConfig.MonitorInterval; + txtPushUrl.Text = String.Join("\r\n", DdConfig.SoftConfig.PushUrls ?? new List()); + cbPlayMusic.Checked= DdConfig.SoftConfig.PlayMusic; + cbCartMonitor.Checked= DdConfig.SoftConfig.MonitorCart; + cbCategoryMonitor.Checked= DdConfig.SoftConfig.MonitorCategory; + cbTrackLog.Checked = DdConfig.SoftConfig.TrackLog; + } + private void SaveConfig(DingDongConfig config) { if (DdConfig == null) @@ -40,61 +65,73 @@ private void SaveConfig(DingDongConfig config) DdConfig = new Config(); } DdConfig.DdConfig = config; + WriteConfig(); + } + + private static void WriteConfig() + { File.WriteAllText("config.json", JsonConvert.SerializeObject(DdConfig)); } private void RefreshCategories() { - if (DdCore == null) + if (DdConfig.Categories == null) { - return; + if (DdCore == null) + { + return; + } + DdConfig.Categories = DdCore.GetAllCategories() + .OrderByDescending(d => d.Monitor) + .ToList(); } dgvCart.Rows.Clear(); - Categories = DdCore.GetAllCategories() - .OrderByDescending(d => d.Monitor) - .ToList(); - dgvCategory.DataSource = Categories; + dgvCategory.DataSource = DdConfig.Categories; WriteLog("刷新分类成功.."); } - private void RefreshCart() + private CartData? RefreshCart() { if (DdCore == null) { - return; + return null; } var cart = DdCore.GetCartInfo(); RefreshCartUi(cart); + return cart; } private void RefreshCartUi(CartData? cart) { - if (cart != null + Invoke(() => + { + if (cart != null && cart.new_order_product_list != null && cart.new_order_product_list.Count > 0 && cart.new_order_product_list.FirstOrDefault()?.products != null && cart.new_order_product_list.FirstOrDefault()?.products.Count > 0) - { - dgvCart.Rows.Clear(); - foreach (var item in cart.new_order_product_list?.FirstOrDefault()?.products ?? new List()) { - var row = new DataGridViewRow(); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.product_name }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.count }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.origin_price }); - row.Cells.Add(new DataGridViewTextBoxCell { Value = item.total_origin_price }); - row.Cells.Add(new DataGridViewCheckBoxCell { Value = true }); - row.Tag = item; - dgvCart.Rows.Add(row); + dgvCart.Rows.Clear(); + foreach (var item in cart.new_order_product_list?.FirstOrDefault()?.products ?? new List()) + { + var row = new DataGridViewRow(); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.product_name }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.count }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.origin_price }); + row.Cells.Add(new DataGridViewTextBoxCell { Value = item.total_origin_price }); + row.Cells.Add(new DataGridViewCheckBoxCell { Value = true }); + row.Tag = item; + dgvCart.Rows.Add(row); + } + dgvCart.Tag = cart; + label1.Text = $"总金额:{cart.new_order_product_list.FirstOrDefault().total_origin_money}"; + WriteLog($"刷新购物车成功.已勾选:{cart.new_order_product_list.FirstOrDefault().products.Count} 件商品 {label1.Text}."); } - dgvCart.Tag = cart; - label1.Text = $"总金额:{cart.new_order_product_list.FirstOrDefault().total_origin_money}"; - WriteLog($"刷新购物车成功.已勾选:{cart.new_order_product_list.FirstOrDefault().products.Count} 件商品 {label1.Text}."); - } - else - { - WriteLog("刷新购物车失败.."); - } + else + { + WriteLog("刷新购物车失败.."); + } + }); } private void btnRefreshCart_Click(object sender, EventArgs e) @@ -104,19 +141,19 @@ private void btnRefreshCart_Click(object sender, EventArgs e) private void btnExportCart_Click(object sender, EventArgs e) { - + MessageBox.Show("未实现..."); } private void btnImportCart_Click(object sender, EventArgs e) { - + MessageBox.Show("未实现..."); } private void WriteLog(string message) { Invoke(new Action(() => { - richTextBox1.AppendText($"{DateTime.Now.ToString("MM-dd HH:mm:ss")} {message}\r\n"); + richTextBox1.AppendText($"{DateTime.Now.ToString("MM-dd HH:mm:ss")} \t {message}\r\n"); //让文本框获取焦点 this.richTextBox1.Focus(); //设置光标的位置到文本尾 @@ -167,21 +204,27 @@ private void dgvCart_CurrentCellDirtyStateChanged(object sender, EventArgs e) private void btnCreateOrder_Click(object sender, EventArgs e) { - var cart = dgvCart.Tag as CartData; - if (cart == null) + var cart = dgvCart.Tag as CartData; + MakeOrder(cart); + } + + private bool MakeOrder(CartData? cart) + { + if (cart == null || cart.new_order_product_list.FirstOrDefault() == null) { - return; + WriteLog("洗车单为空,无法下单."); + return false; } var reserveTimes = DdCore.GetMultiReserveTime(cart.new_order_product_list.FirstOrDefault().products); if (reserveTimes.Count <= 0) { WriteLog("暂无运力..."); - return; + return false; } if (reserveTimes.FirstOrDefault(d => d.closed).closed) { WriteLog("今天关门了..."); - return; + return false; } WriteLog($"有运力:{reserveTimes.FirstOrDefault().arrival_time_msg} ..."); @@ -199,16 +242,203 @@ private void btnCreateOrder_Click(object sender, EventArgs e) DdCore.CreateNewOrder(cart, (reserveTimes.FirstOrDefault().start_timestamp.Value, reserveTimes.FirstOrDefault().end_timestamp.Value)); WriteLog("下单成功,快去付款。。"); + this.NotifyIcon_ShowBalloonTip(30_000, "叮咚助手", "下单成功,快去付款", ToolTipIcon.Info); + if (DdConfig.SoftConfig.PlayMusic) + { + PlayMusic(); + } + for (int i = 0; i < 3; i++) + { + foreach (var pushUrl in DdConfig.SoftConfig.PushUrls ?? new List()) + { + DingDongUtils.Push(pushUrl, "下单成功,快去付款"); + } + Thread.Sleep(1000); + } + return true; + } + + private static void PlayMusic() + { + using (System.Media.SoundPlayer player = new System.Media.SoundPlayer()) + { + player.SoundLocation = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Music", "order.wav"); + player.Play(); + } } private void cbTrackLog_CheckedChanged(object sender, EventArgs e) { - DdCore._track = cbTrackLog.Checked; + if (DdCore != null) + { + DdCore._track = cbTrackLog.Checked; + } } private void btnSaveAllConfig_Click(object sender, EventArgs e) { + if (DdConfig.SoftConfig == null) + { + DdConfig.SoftConfig = new SoftConfig(); + } + DdConfig.SoftConfig.ExcludeKeywords = (txtExclude.Text ?? string.Empty).Split(',').ToList(); + DdConfig.SoftConfig.TimeBegin = dtpBeginTime.Text; + DdConfig.SoftConfig.IsTimeBegin = cbTimeStart.Checked; + DdConfig.SoftConfig.MonitorContinue = cbContinue.Checked; + DdConfig.SoftConfig.MonitorContinueMins = (int)nudContinue.Value; + DdConfig.SoftConfig.MonitorInterval = (int)nudInterval.Value; + DdConfig.SoftConfig.PushUrls = (txtPushUrl.Text ?? String.Empty).Split(new[] { "\r\n" }, StringSplitOptions.None).ToList(); + DdConfig.SoftConfig.PlayMusic = cbPlayMusic.Checked; + DdConfig.SoftConfig.MonitorCart = cbCartMonitor.Checked; + DdConfig.SoftConfig.MonitorCategory = cbCategoryMonitor.Checked; + DdConfig.SoftConfig.TrackLog = cbTrackLog.Checked; + WriteConfig(); + RefreshUiConfig(); + WriteLog("配置保存成功..."); + } + + private void btnTestPush_Click(object sender, EventArgs e) + { + PlayMusic(); + this.NotifyIcon_ShowBalloonTip(3000, "叮咚助手", "测试提醒", ToolTipIcon.Info); + var url = txtPushUrl.Text; + if (string.IsNullOrWhiteSpace(url)) + { + MessageBox.Show("推送地址必填,请先去 IOS 商店下载 Bark APP"); + return; + } + DingDongUtils.Push(url, "测试推送"); + } + + private void cbCategoryMonitor_CheckedChanged(object sender, EventArgs e) + { + //MessageBox.Show("未实现..."); + //return; + txtExclude.Enabled = dgvCategory.Enabled = cbCategoryMonitor.Checked; + } + + private void cbTimeStart_CheckedChanged(object sender, EventArgs e) + { + dtpBeginTime.Enabled = cbTimeStart.Checked; + } + + private void cbContinue_CheckedChanged(object sender, EventArgs e) + { + nudContinue.Enabled = cbContinue.Checked; + } + + private void btnClearLog_Click(object sender, EventArgs e) + { + richTextBox1.Clear(); + } + + private void btnStartMonitor_Click(object sender, EventArgs e) + { + if (IsMonitoring) + { + IsMonitoring = false; + btnStartMonitor.Text = "开始监控"; + WriteLog("停止监控"); + MonitorTokenSource.Cancel(); + MonitorTokenSource.Dispose(); + } + else + { + IsMonitoring = true; + btnStartMonitor.Text = "停止监控"; + WriteLog("开始监控"); + MonitorTokenSource = new CancellationTokenSource(); + CancellationToken ct = MonitorTokenSource.Token; + Task.Run(() => + { + ct.ThrowIfCancellationRequested(); + while (true) + { + if (ct.IsCancellationRequested) + { + // Clean up here, then... + ct.ThrowIfCancellationRequested(); + } + if (!DdConfig.SoftConfig.IsTimeBegin) + { + break; + } + if (DateTime.TryParse($"{DateTime.Now.ToString("yyyy-MM-dd")} {DdConfig.SoftConfig.TimeBegin}" + , out var beginTime)) + { + if (beginTime > DateTime.Now // 设置的时间比现在晚 + || DdConfig.SoftConfig.MonitorContinue + && DdConfig.SoftConfig.MonitorContinueMins > 0 + && DateTime.Now > beginTime.AddMinutes(DdConfig.SoftConfig.MonitorContinueMins)) // 设置的时间比现在早,但是超过了持续时间 + { + // + } + else + { + break; + } + // 要执行 + } + else + { + break; + } + Thread.Sleep(1000); + } + MonitorBeginTime = DateTime.Now; + while (IsMonitoring) + { + if (ct.IsCancellationRequested) + { + // Clean up here, then... + ct.ThrowIfCancellationRequested(); + } + if (DdConfig.SoftConfig.MonitorContinue + && DdConfig.SoftConfig.MonitorContinueMins > 0 + && MonitorBeginTime.Value.AddMinutes(DdConfig.SoftConfig.MonitorContinueMins) < DateTime.Now) + { + WriteLog($"持续监控 {DdConfig.SoftConfig.MonitorContinueMins} 分钟后自动终止..."); + IsMonitoring = false; + Invoke(new Action(() => + { + btnStartMonitor.Text = "开始监控"; + })); + MonitorTokenSource.Cancel(); + } + else + { + if (DdConfig.SoftConfig.MonitorCart) + { + var cart = RefreshCart(); + if (MakeOrder(cart)) + { + WriteLog($"已经提交订单,自动终止..."); + IsMonitoring = false; + Invoke(new Action(() => + { + btnStartMonitor.Text = "开始监控"; + })); + MonitorTokenSource.Cancel(); + } + } + if (DdConfig.SoftConfig.MonitorCategory) + { + } + } + Thread.Sleep(DdConfig.SoftConfig.MonitorInterval); + } + }, MonitorTokenSource.Token); + } + } + + + public void NotifyIcon_ShowBalloonTip(int tipDisplayTime, String tipTitle, String tipText, ToolTipIcon tipIcon) + { + Invoke(new Action(() => + { + this.niDingDong.ShowBalloonTip(tipDisplayTime, tipTitle, tipText, tipIcon); + })); } } } diff --git a/DingDong.Monitor/MainFrm.resx b/DingDong.Monitor/MainFrm.resx index bc9c091..2baa094 100644 --- a/DingDong.Monitor/MainFrm.resx +++ b/DingDong.Monitor/MainFrm.resx @@ -66,15 +66,6 @@ True - - True - - - True - - - True - True @@ -90,19 +81,1140 @@ True - - True - - - True - - - True - - - True - - - True + + 17, 26 + + + + AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABAMMOAADDDgAAAAAAAAAA + AAAtJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/y4nHv8vKB//Lygf/y8o + H/8vKB//Lygf/y8oH/8uJx7/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Licd/y4nHf8uJx3/Licd/y4nHf8uJx3/Licd/y4nHf8uJx3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYe/y0mHv8tJh3/LSYd/y0n + Hf8uKSD/Lygf/y4oH/8qIxr/KSIY/ycfFf8kHRP/JR0U/yQdFP8lHRT/Jx8W/yoiGP8rJBv/LSge/y8p + IP8tKB//LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8sJR//LScc/ywmHf8tJCD/LCQe/y4mHv8uJx3/LSce/ywlHf8qJB7/KSMd/ykiHf8qIR7/KSEf/ygg + H/8pIR7/KSMe/yskHv8sJR7/LSce/y4oHP8uJx3/LCYe/y0mH/8tJh7/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + HP8tJh3/LSYd/y0mHf8rJR7/LCUe/y0nHv8xKiH/LCUb/yMcE/8gGRD/JyAZ/zQtJv9DPTX/VU9H/11X + T/9fWVH/X1lR/1xVTf9QSkL/Pjgv/zErIv8kHRT/HhcP/yYgF/8uJx7/MCkg/y4nHf8tJh3/LCYd/y0m + Hv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4lHf8uJR7/LCUd/y0nGv8uKB3/KyYe/yki + HP8oHx7/KyQa/zAqHP82Mhz/Pzsa/0I+GP9CQBb/Q0AW/0I+Gf8+Nhr/NzAa/y8oG/8pHyD/Jx4e/yol + Hf8tKB//LSgb/y0nG/8vJSD/LiUg/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nH/8vKSD/KiMa/xwV + DP8tJR3/Vk5H/4F7dv+1sa7/0s/O/9zb2v/r6+r/8vHx//Ly8f/z8vL/8fHw/+jn5v/X19b/zcvJ/6ik + oP91cGv/SkQ8/yggFv8hGA7/LSUb/y8oH/8tJh7/LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LiUd/y8kH/8uKBv/KyUc/yYcIP8vKRr/QDwa/1NVE/9mcQv/c4IF/3mIBf9+jQX/gJAE/4KQ + Bf+CkQX/gY8F/32JBf95hAX/bXsJ/11kD/9KSxX/NzAc/yofH/8oHx7/LCYd/y4pHP8tJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0nHv8vKB//KSMa/yAbE/83Miz/hYF8/83MyP/29vL///////////////////////// + ///+/////f////7////+///////////////////////////////v7+z/vr64/3FtZ/8tJyH/Ix0W/ywl + Hf8vKB7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHf8sJiD/KCQc/ywhHf81Lxn/VlsS/3J9 + CP+ClAT/iZsA/4mYAP+JlQL/iJQC/4mUAP+IkwD/h5IC/4aTAv+HlQD/h5UB/4iUAv+KlQH/iZoA/4Sa + AP98jQX/ZnUL/0dHFf8uJB7/KCIe/yonHP8uJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//LSYd/yMcFP8/OzT/jouG/+Lg + 3v/////////////+///8+/z/+vv7//v8/P/7/Pz/+vr6//r7+v/7+/v/+/z7//v7/P/6+vr/+/z8//z9 + /P/7/Pz//Pz9/////////////////87NzP93dG//NC0l/yQdFP8vKB//Lice/y0lHf8sJh3/LCYd/y4n + HP8uJx3/LCUe/ycgHv84NRj/XF8R/36MA/+LmwD/iZgA/4aUAP+DkAL/hJED/4aRA/+GkgL/hJIC/4SR + Av+FkQL/hpIC/4aSAf+HkgL/hpIC/4SSAf+DjwX/hZID/4iWAf+LmgH/iJoB/217Cf9KSRb/MScd/ysj + Hf8tJx7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJRz/LSce/ywl + HP8tJh7/MCgf/ykhF/8qIxv/dnFr/9bV0/////////////v6+//8+/v//f38//z7+//+/f3///////// + //////////////////////////////////////////////z8/f/8+/z//fz8//z8+//6+vz///////// + ///CwL7/W1VR/yYeF/8tJhz/Ligf/yklHv8rJxz/Licd/ygiIP8vKBv/TlES/3WGBf+JmAL/iZYC/4WS + Af+GkgL/hpEE/4WRAv+FlAD/iJcA/4mZAP+ImgH/h5sA/4mcAP+KmwH/ipoC/4qZAP+JmAD/h5UA/4ST + AP+EkQH/hZMB/4aSAv+FkQP/hpkB/4SWAP9qcwn/QDwX/ygdIf8rJx7/LSYb/y0mHv8sJhz/LCQe/y0l + Hv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJR3/LCUc/zApH/8mHhb/OzQs/7Swq//9+/r///////v7 + /P/8/Pz/+vz7//r8/f/////////////////o5+P/0c/L/7OxrP+dm5f/lJKN/5WTj/+koZ7/vry5/9jW + 0v/w7uz/////////////////+fr8//79/v/7/f3//P79///////z8PD/lJGM/yskHf8oIRj/MSki/zEm + Hf8nIR7/MTAc/250DP+MlwP/iJQF/4ORAP+EkgX/hJIC/4iSAv+JlwH/jZwA/4mUBv98ign/cH0G/2Zu + Cv9fYw3/W10P/1xfEP9faAr/aXYI/3aECP+GkQT/i5wA/4mZAf+FkwT/hZEB/4iSBf+HlQH/hpIE/4eW + Bf99jwP/U1oP/yokGv8pJB//LScc/y0oGf8tKBv/LCQe/y0lH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + Hf8xKiH/JB4V/0pFPv/V0s7///////3+/v/9/P3//Pz8//7+/v///////////93c3P+YlpL/XFhT/zs2 + Lv8sKB//Ix4V/yAbEv8hHBP/IRsU/yIcFf8jHRf/Lyki/0Q/OP9rZ2H/raun/+zs6/////////////z8 + /f/7/Pz//Pz7//79/v//////uLay/zQuJ/8nIhn/LCce/0RBE/96iQX/hpkC/4aRAv+FkwL/g5UB/4eR + A/+LlwH/hZQD/3WEBv9WXg3/Pz4Y/zQtHv8rIhv/KR8e/yofIf8pHx7/KiAd/yshHv8uIh7/MCce/zc0 + Gf9LTRT/aHAL/3+RBf+HmwH/hpMD/4aQAv+GkwD/h5QC/4iVAf+FmwD/XmkO/y4nG/8tJCD/LyYi/ywm + Gv8tJxv/LCUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/MCkg/yQdFP9XUUr/4N/e///////3+Pr//v////v8 + /P///////vz5/8rGwv97d3D/NS8n/x0XDv8iGxL/JyAX/ywkG/8uJx7/Lygf/y8oH/8wKSD/Lice/y4n + Hv8rJBv/JR0U/yIbEv8gGhL/R0I7/5OPiv/d29r///////3////7+/z//f38//v8/P//////w7++/zw3 + L/8hHRf/Tk8Z/4eUBf+FlAD/gZID/4WSAf+ImAD/g5MC/213C/9KTRP/MScd/yceIf8kIR3/KCQa/yom + HP8tJx7/LSgb/ysoGv8sKRz/LCYe/ywlHP8qJRz/JiMe/ycfIf8rIB3/PTgZ/1hfEv94iwT/iZgC/4eT + Af+FkwP/h5IE/4aQAv+Hlwf/aHEL/zAtFf8qIiD/Lycf/y0nGv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/zAp + IP8jHBT/WVNN/+nn4///////+fr8//v9/v/7/Pz//////9/e2v95dW7/Mywk/yIaEf8rIxn/MSog/zAo + H/8vKB//Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8vKB//MSkf/zEpIP8nIBf/IRoS/z45 + M/+XlZD/9PTy///////7+/v//f37//z7+///////zMnE/0E6MP8iGxn/VVYX/4WUAf+IkQP/iJgC/3OA + CP9KTRL/LCYa/ycgHv8rJhv/Lika/y8oHP8uJhz/LiYc/y8lHf8vJR7/LiYe/y0mHv8tJh7/LSYd/y4m + Hf8vJxv/Lika/y0oHf8oIhz/KSAe/zoyHP9gaQr/gpMC/4eWAv+FkgL/hpQC/4WTAP+JmAT/aXUM/zQt + FP8sIyD/Licc/y0lHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKSD/IxwT/1BKRP/n5eT///////v8+v/7+/z/+/v7//// + //+6trT/REA5/yMdFP8rJBv/MCkg/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8wKR//KiIX/yYgGP9gXFj/3dza///////8+/v//v39//v8 + +v//////x8LC/zUwIv8pHRv/Y2oQ/4meAP9kbgn/NjAb/ykhHv8tJh7/Licd/y4nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHf8tKBv/KSEe/y0k + Hf9MSxL/fI0D/4aZAf+EkAT/hpMC/4WSAf+KmQT/aXER/zEmHP8rJBz/LScc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yoi + Gf87Ni7/1NLO///////6+/v//f38//38/P//////oqCa/y0mHf8oIBf/Lygf/ywlHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8wJx7/MCcf/yIcFv9AOjb/zszL///////4+fv//v/9//n7+v//////saul/yoiHP8zLBf/T1MV/zAm + HP8qISD/Kyca/ywoGv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0kIP8tJx//Kygb/yggHf87Nxn/dYYL/4iYAP+HkAP/g5MC/4WT + Af+FlwP/XWMO/ywhHv8tJh//LSYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8uJx3/KyQd/6ejoP//////+/v7//z8/P/7+/v//////5eT + jv8gGhH/LCUb/zAoIP8tJR3/Lice/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHP8uJx7/Lygg/yQeFf83MCn/xMG+//// + ///6+/z//P77//r9/P///fr/enpy/yIbE/8tICT/LCYd/y0nHv8sJxv/LSYe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUg/ywo + Gf8sJh3/LCkc/ykfIP85MRr/c4QF/4eXBP+EkgT/hpMD/4iVAP+DlAP/SEkU/ykiHP8uJx3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/ywmHf8tJh3/MCkf/yIb + Ev9saWX//Pv6//z8/f/8/Pv//f39//////+cmJX/JiAY/y0mHP8tKB//LCUf/y0lH/8tJhz/Licd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/ywlHP8tJx3/MSsg/ykfE/8+Ny7/x8fG///////8/Pv//vz9///////m6Ob/SkU7/ykh + Ff8wKB//LSUd/y4nHv8tJR//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJxz/LCQg/y0mG/8vJxz/Lygc/ykfHf86NBr/coQG/4iY + AP+DkQH/h5IB/4mVA/9yhAn/NjQV/ysjHv8tJx3/LSYd/y0lHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8sJh7/KyYe/y8nHf8rIxr/ODEr/9bX1v///////Pv7//r8/P//////ubSz/zIq + Iv8tJRz/LCcf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJh3/LCUc/y0mHf8tJhz/Mysf/yIb + Ev9LSUT/5OPg///////8/Pz//Pz8//////+vrqv/IhwU/y8oH/8uJx7/Lice/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh7/LSYd/y0mHv8uJRz/MCkb/yghHv9EQhP/f44F/4eUAv+HlAH/hZED/4iYBf9fYw7/KR8d/yso + HP8sJR3/LCYf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHf8tJx7/MCkg/x4X + D/+VkYz///////v7/P/9/f3//////+Lj3/9FQjn/Jh8U/y8nHv8sJh//LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LCUc/y0nHv8tJh7/Lice/yIbEv+hnpn/aWZf/xUOA/96dnD//f7+//z9/f/9/f3//v39///+ + /f9nYlz/IhsS/y8oH/8uJx7/LSYe/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8lHv8uJhv/LCYg/yse + IP9VVxL/h5gD/4aSAv+HkAL/hpQC/4GUBP8/Ohb/KCEd/y4oG/8sJxv/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8nIBj/PDgx/+Xl4f///////Pz9//z8/P//////gX53/x8Z + D/8yKyH/LCUc/ywlHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/LCUd/y8oHv8nIBf/TEdC//X2 + 9v/a2db/QDkv/x8YEv+5trX///////z8/P/8/Pz//////8G/vP8nIhv/LSUc/y0mHf8tJh7/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LiYf/y0lHf8rJxv/LCYd/zAnHP9ufAn/iJsB/4iRAP+FkgH/iZsC/2Nu + Cv8qICD/Ligc/ywlHv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJRz/MCgf/yIb + E/+FgXz///////z8+//6+/z//////8nHw/8sJh7/LSUe/y0mH/8sJRz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8rJR7/MCge/yQdFP+UkYz///////////+loZ7/IhkT/1BGQP/v7uz////+//z8 + /P/+/v//8fDv/1xXUf8lHRP/MCkg/ysmHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYd/y0n + HP8uKB3/KB8d/0VCFv+AlQP/h5QD/4WSAv+IlQH/fY0H/zo7Fv8qIR7/LScf/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJBv/Mywk/8bFwf///////f38//r8/f//////aGNd/yEZ + EP8xKSH/LSUd/y4mHf8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nH/8sJBn/PDUs/9LQ + zv///////v7+/+vr6f9XUUv/HBML/6Cem///////+/v8//38/P//////mZaT/ycfFf8xKR3/Kycg/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHP8uJx7/LSQg/y4mHf8tJxz/Kx4f/2VyCv+LmQL/h5IB/4SQ + A/+HmAH/VFoO/ygfH/8tJxz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Ligf/yUe + Ff9XUUn/7e/q///////7+/r//////9XU0/8yLCT/LCQa/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/yUdE/9lYFn/9vb1///+/v/8/Pv//////6OemP8fFw//W1dT//r5 + 9////////Pz8///////OzMv/ODAn/y0lGf8sJh//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4oHf8pHx3/SUkQ/4eXAf+HkgH/hZIC/4mZAP9pcgv/Licd/ywlHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//JB0V/356dP/9//3///3+//z7/P//////kY6L/yMd + FP8xKR//LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//JR8W/4+L + hf///////fz9//38/f////7/h4N8/yYeFP80Lyn/z83K///////7+/v//////+3s7P9UT0f/KCAV/ywn + H/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LScc/y0lH/81LBv/d4QI/4iV + Af+FlAD/iJQD/3qJBf85Nhb/LCMg/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8oIRr/oJ6a///////8+/z///////r59/9hXVj/IhsT/zAoH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lice/y0mHf8pJB3/sa6q///////8+/z//////+/v7f9TTkj/KSAX/yki + Gv+ZlpL///////z8/P/+/v3/+/z8/3FuaP8jHBL/Ligg/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJhz/LCYe/ysjH/9jag7/i5kD/4STAP+IkgL/hJID/0VEE/8pIR7/Licd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LCQb/zIrI//FxML///////v7+///////4+Dd/0hC + O/8nIRj/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//KiMa/zUw + Kv/U0tD///////v7+v//////1NTR/z03L/8sJRz/Jh4V/3JuaP/8+/r//v7+//z8+///////kY+K/yQd + E/8vJyD/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8sJhv/KCQc/1BT + Ev+HlgP/hZIB/4eSAv+JlQT/UVIS/ycfHP8tJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8rIxn/QToy/9zb2///////+/v7///////Mycb/Ni8n/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oHv8oIRf/R0M+/+rp6P///////Pz7//////+9urb/MCke/y0n + IP8nHxf/WlRL/+/u7v//////+/v6//////+hn5r/Jh4V/zAoIP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYe/y4nG/8pJBv/REUW/4OSAv+IlAH/hZEC/4mYAf9aXg3/JyAd/y0n + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/ykiGP9JQjr/6ejo///////7+/v//////766 + t/8tJR7/LiYe/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lyce/ygg + Fv9WUUz/9PPy//7+/v/8/Pv//////6uopf8oIRf/Ligg/ykgGP9KQzv/5ubl///////8/Pr//////7a0 + r/8rIxr/Lycf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/LiYe/ygh + G/8+PRX/f40D/4mUAv+EkgH/iZkA/2BnDP8qIxz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx//KCAW/1FLQ//v7u7///////z8/P//////sq6s/yskHf8sJRz/Lice/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB7/Jh4U/1xYU//5+Pb//f39//z8+///////oJ2a/yYe + FP8xKiP/KSEY/0Q9Nf/c3Nz///////z8+v//////x8bA/zAnH/8uJh7/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh7/KiQd/zw4GP99iQX/ipQD/4aSAf+KmAD/ZnAK/y0l + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4oH/8nHxX/V1BI//Pz8v/+/////Pz8//// + //+ppaL/KSIb/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/zAo + H/8lHRP/YV1Y//78+//9/f3//f38//////+Wk5D/JR0U/y8pIv8rIhr/Pzgv/9XV1P///////Pz6//// + ///NzMb/Mioh/y0lHv8tJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYc/y4m + Hv8qJRz/OTQY/3yHBf+JkwP/h5IB/4uYAf9ncgj/LSUe/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Ligf/yYeFf9WT0f/8/Ly//7////8/Pz//////6imov8pJBz/LiYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lykg/yUdFP9kXVb/+/v6//v9/f/9/fz//////5qX + k/8oIBb/Lycg/ysiGf9BOjL/2NjX///////8/Pr//////83LyP8xKiH/LyUd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJh7/Licd/yYjHP87Nxj/fIgF/4iVAf+FkQP/i5gA/2xz + Cf8sJxv/LCYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/KSEX/09JQP/t7Oz///////z8 + /P//////s7Gt/ykkHP8tJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx//KCAX/15XT//39/f//f////z8+///////paKf/yohF/8xKSH/KSEX/0hBOP/g4N////////z8 + +v//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJxr/JyMf/z45G/9+iwX/h5UA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4nHv8qIhj/RkA3/+bl5f///////Pz8///////Avrv/LSgg/y0mHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8nHxb/VE1G//Ly8f/+////+/z5//// + //+vran/KiEY/zAoIf8oIBb/TkY+/+no6P///////Pz6///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUd/y4nGv8nIh7/Qj0Y/4GOA/+HlQD/hZEE/4qY + AP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yskGv88Ni7/1tfW//// + ///8/Pz//////9TRzv85Myz/KyQb/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Lygf/ygfFv9HQDj/5eXl///////8/Pn//////8XCvv81LSP/Licf/yggFf9jXFP/9PPz//// + ///9/Pv//////83LyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJR7/Lice/ykkGv9LShX/hJMC/4aTAf+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh7/LSYc/y4nH/+8urn///////v8/P//////6+jm/05JQf8oIRf/Licd/y0m + Hf8tJh3/LSYd/y4nHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSUe/zIsJf/Kysf///////z7 + +///////3dvY/0Q9Nf8sJBv/JR0T/314cv///v7//v7+//38+///////zcvI/zEpIf8vJR3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHv8uJiD/KiYZ/1hZE/+ImAP/hZIB/4aR + BP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB//Jx4X/5mU + kf///////Pz8//38/v//////b2tl/yIcE/8vKB7/LSYd/y0mHf8tJh3/LSYe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx//JyIa/6mnov///////Pv8//7+/v/29vT/YFxW/yYcFP8rIxv/p6Wi//// + ///9/Pz//fz7///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tKBv/aXML/4qaAf+FkwD/hpIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8oH/8mHhb/dW5q//n7+f/+/v7//Pv7//////+mpKH/JiAY/y8n + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/zApIP8kHhb/g396//// + ///9/f3//Pz8//////+YlI7/JBsS/0A4M//d3Nn///////z8/P/9/fz//////83LyP8xKSH/LyUd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uKBz/KyQd/zsyHP99kAP/hpYB/4WT + AP+GkgT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/ygf + F/9NRT//5eXi///////7+/r//////+jn5v8+ODL/KSEY/y8oH/8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/yYeFf9ZUkz/7Ozr///////8/Pv//////42Jgv8dFQ3/cGpm//// + ///9/v7//v3+//39/P//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4oHf8oIB3/VVMR/4eYAP+GkgP/h5QB/4aSBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJh3/LyYd/y0jG/+5uLT///////v8+//4+vv//////4WB + ev8dFQz/MSoh/y0lHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJhv/LSUb/zQs + Jv/GxsP////////////b29n/QDw1/yEYEP++urf///////v7/P///v///f37///////Ny8j/MSkh/y8l + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx3/LCUd/ywlH/91gAj/ipcC/4SR + Af+HlAH/hZIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ysl + Hf8vKR//IxsQ/29qZP///v7//f39//z8/f//////5+Xi/z86NP8qIhf/MCge/y8nHf8rJR3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/yslHf8xKR7/IRoQ/4B9ef/+/v///v79/4SAff8YEQn/cWli//z9 + /f/+/v3//v7+//7+/v/9/Pv//////83LyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + HP8uJB//LCYe/y0nHf8pHx3/U1MT/4aaA/+HkQT/hpQA/4WTAv+GkgT/ipgA/2xzCv8sJxr/LCYc/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSce/y0mHP8tJBr/Miwl/9bU0v//////+/v7//v7 + +///////paGd/yMdFf8wKR//Licd/ywlHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCUd/zEo + Hv8pIRf/OzYw/+ro6P+8t7P/KyIX/zYvJ//X1dL///////z8/P///////v7+//39/P//////zcvI/zEp + If8vJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LScd/ywmHf8sKB3/LCMf/zkxGf96iQX/h5YB/4iP + B/+GkwD/hZUA/4aRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LiYd/zEqIf8eGBD/eXVv///////7+/r//f7+/////v/39fP/aWZi/yIcFf8wKSD/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8sJRz/LiYd/zApH/8jHRX/dnFs/01EPf8hGAz/oZ2X//// + ///8/Pz//v7+//7+/v/+/v7//f38///////Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh7/LCYe/ywmHf8xJRv/ZG0K/4iXAP+IkAT/iZUB/4WTAP+FkwH/hpIE/4qYAP9scwr/LCca/ywm + HP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0lHP8uJR3/LCUc/y4nHv8lHxX/vLq2//// + ///6+/z//f79///////f3t3/R0I7/yUeFv8wKSH/LCUc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + Hf8uJx7/LSYd/y4mHf8rIhX/IBgP/3Fva//6+vn//v7////////9/f3//v7+///////9/fv//////83L + yP8xKiH/LyUd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y8mHv8vJx3/KSAd/1NWD/+HlwD/hY8G/4aV + Av+FkwH/hpMC/4aUAf+GkgT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0lHP8uJx7/MCkg/yUeFP9TT0n/7evp//7////9/f3//Pz8///////FxML/NzEq/ygg + Ff8vKB//LSYd/y0mHf8sJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYe/y0mHf8tJhz/MSkf/yUcEf9bVlD/5+jo//// + ///+/f3//v39//7+/v///////v////39/P//////zcvI/zEqIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJxv/LiUe/y8l + HP8tJhz/LCce/ycgHP9HRRb/gJIF/4WSAv+EkwD/g5QB/4WSBf+FlAH/hpQA/4aSBP+KmAD/bHMK/ywn + Gv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/yUf + Fv+Bf3r//f38//v7+//+/f3/+vr7///////BwLz/Pzox/ycgF/8vKB//LSYe/y4nHf8tJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8sJR3/LSYe/y4n + Hv8tJRz/Lygf/y4oIP8jHRP/YltV/+Ti3///////+/z7//78/f/+/v7/+vv5//f39f/+/v///Pz8//// + ///Ny8j/MSog/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8rJBz/LScg/ywnGv8qIB7/SEwU/3+RBP+HlwD/g5IC/4aS + Af+FlAH/g5ID/4SRAv+GkwH/hpIE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYc/y0nH/+vrKn///////r7+//8/vz/+Pr7//// + ///S0c//UEtF/yEaEv8uJh3/MSke/y4mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8sJRz/LSYd/y4nHv8sJR3/Lice/zEpHv8qIhn/IhsU/3dxav/y8ev///////n6 + +v/8+/v///39//39/f+enZr/1dLP///////8/Pv//////83LyP8xKiH/LyUd/y0nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LiQd/y0p + G/8mJB3/KyEf/1dXFf9/kAP/iJUC/4eQBP+GlAH/h5QE/4CVAP9eYAz/eoMH/4mWAf+FkQT/ipgA/2xz + Cv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8vKB//KiIa/y4pIv/HxcL///////f6+P/6/Pv/+fn7///////t7Or/cGxo/yEbFP8mHRP/MCge/y8o + H/8uJx7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8uJx7/Lice/y4n + Hv8uJx7/IhsS/y4oIv+cmZX//Pv5/////v/8/Pz//Pv9//r7+///////lpOP/zQvKf/Z1ND///////v7 + +///////zcvI/zEqIf8vJRz/LSce/y4nHf8uJx3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Licd/y4nHf8tJhv/KSAd/zQqGv9kbQ//hZgE/4WVAf+GkgP/hpAG/4SR + Av+InQL/U1UV/zcqIP96hwT/ipgA/4WRBP+LmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywmHv8uKCD/JyAX/zYyKv/Dwr7///////38 + +//9/Pv//vz8///////9/fz/rqql/1JNRf8qIxv/Ix0U/ykjGv8uJx7/MCkg/y8oH/8vKB//Lice/y4m + Hv8tJx7/LSce/y8oIP8vKCD/MCkh/y0mHf8oIBj/IxwU/zApIv9mYVv/zsvI///////7/P7/+/z8//38 + /f/+/v///f7+/5eYlP8gGxP/PjYw/9vW0v//////+vv7///////Ny8j/MSog/y8mHf8tJhz/KiEd/ysl + Hv8tJx3/Ligc/y4oHf8tJx3/LSYc/y4mHv8tJR7/LSYd/y0mHf8uJx3/Licc/y0nG/8rJB3/KiEd/y8q + G/9JTBT/dIIH/4maAf+EkwD/hJAG/4aSBP+FlAD/hJUD/1hZEP8oHB//NjYX/3mIBf+KkwP/hZEE/4uY + AP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/ywlHP8wKSD/Jh4V/zozLP+7uLT///////z8/P/8/Pz//P3+//7+/v//////7+7s/6ak + oP9jX1r/ODMs/yMdFf8jGxL/JRwT/ycfFv8rIhn/KyMa/ysjGv8qIhn/Jh4W/yMbE/8iGxL/JyEY/0M+ + N/90b2v/wr+8//z8/P//////+/z7//79/f/8/Pr///////n4+P+Pi4j/JyEZ/yghGP8/ODP/2NTR//// + ///6+vv//////87MyP8wJyL/ODQa/1piD/9DQBj/LiwZ/yohHP8rIR//KiEe/yoiH/8rJB7/KyUe/ysk + Hv8rIx7/KiEe/ykgH/8nIBz/LSUZ/zoyG/9QUhP/bnkJ/4WXBP+GmgD/g5EC/4SUAP+FkAP/jpUC/4SR + Bf9RUhP/KyEd/ykkHP84NBj/eYYG/4mVAf+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywlHP8wKSD/KSIZ/zQu + Jv+gnZn////////////5+vz/+/z9//r7+/////////////b18//S0M3/qqej/3hzbf9aU0r/SEE4/zsz + K/82Lyb/NjAn/z85L/9NRj7/YFhR/4mEfv+1s7D/3d3Z//z9+////////P39//n5+f/8/f3/+Pr7//// + ///w7+7/d3Rx/yUgGf8vJx7/KiMb/z02Mf/Y1NH///////r6+///////zs3I/y8mIv89OBf/gpAG/4CP + BP9wgAb/ZGgQ/01LF/8/PRT/OTUY/zQuGf8vKRn/MSsZ/zcxF/8+ORj/REEX/1NYEP9odAv/eYYI/4aX + A/+LmgD/h5EC/4eQBf+FkgP/hZEC/4uaAP97iwb/SkgU/ysjG/8tJB7/KiUc/zgzGv95hgb/iZYA/4WR + BP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywlHP8vJx7/LCQb/yQeFv90cGr/6ujm//////////7//Pz8//z8 + /P/9/f3////////////////////+//n5+f/x8fH/4+Pj/9zc2//c3dv/5ebk//b19f/5+fn///////// + /////////P7+//n6/P/8/Pz//Pz8////////////zczK/1BMRv8jHRb/Licd/zApH/8pIhn/Pjcx/9jU + 0f//////+vr7///////Ozcj/LyYi/z03F/+DjQX/jZYE/4eVAf+KmAH/iJgC/4OUA/99jgX/eIkF/3aF + Bv93hgf/e4sF/4GRBf+HlgX/jZgD/4mXAP+FlQD/hJME/4OSBP+DlQD/hZQB/4mVAf+KlwL/bnYL/zoz + F/8oISH/KSYc/y4mHv8qJR3/ODMa/3mGBv+JlQD/hZEE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx7/LSYd/ywm + Hv8sJh7/MSke/x8XDv9GQTr/sa6q//Ty7v////////////z8+//8+/v/+vr6//z8/P/9/f3//f////// + /////////////////////////v////z+/v/7/P3/+/v7//z7+//7+vr//Pz9////////////5uTh/5OO + if8tJyD/IxwT/zIpH/8vJx3/LScf/ykiGf8+NzH/2NTR///////6+vv//////87NyP8wJiL/PDcY/3yN + BP+HlAH/hJEC/4WSAf+FkQP/hpIF/4iUBP+IlgL/iJcB/4iXAf+HlQH/hpQB/4WSAf+FkQL/hpEE/4aR + A/+EkgH/hpAD/4iXAf+EmgH/d4YJ/1RXEf8uIxz/LCId/y0lH/8vJx//LiYe/yslHf84Mxr/eYYG/4mV + AP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCYe/y0mHv8tJhz/MSog/ycgFv8nIBj/Y15X/7az + r//r6uj//////////////////f39//v7+//8+/v//fz8//z8+//8+/v//Pz7//z8+v/9/Pz//Pv7//z8 + +//9/f3/////////////////39/e/5yamP9JRT//IxwT/yskG/8xKSD/LSYc/y0mHf8uJx7/KSIZ/z43 + Mf/Y1NH///////v7+///////zszG/y8mIv8/Ohf/gJIH/4iaAv+ElAH/hJIC/4WRAv+EkQD/g5EA/4OR + AP+DkQH/hZAC/4WRAv+FkQL/hJEC/4GRAv+CkQL/h5cA/4yaAP+KlwD/eIMG/1hfEf83Mxf/KR8e/ysn + Gv8vKBv/LiYc/y0mHf8uJR7/KiQd/zgzGv95hgX/iZYA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/Lygf/y4nHv8kHRT/LCcg/1FMRv+IhYD/w8G+//Du7P////////////// + //////////////////////////////////////////////79/P/l5OH/sK6r/3Vxbf9DPjj/JB8Y/ycg + GP8vKB//Lice/y0mHf8tJh3/LSYd/y8nHv8pIhn/Pjcx/9jU0f//////+/v7///////NzMf/MSkh/zQr + G/9SWQ//bnoH/4KPBf+LmQD/i5wA/4ucAP+KmQH/iZcC/4uXA/+MmAL/i5oA/4ucAP+MnAH/jZkA/4aX + Af95iQb/YWkO/0tKE/83MBz/KCId/ykkHP8tJiD/LiYd/y0mHf8tJh3/LSYd/y4mHf8rJB3/ODMb/3mG + Bf+JlgD/hZEE/4qYAP9scwr/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYe/y8o + H/8uJx3/KCAV/yMbEf8tJhz/RkA4/2xpY/+PjIj/q6mm/8bDwf/PzMn/0s/N/9LPzP/Oy8n/vry5/6Ge + nP+Gg3//XVpV/zw3MP8nIBf/JR0T/ywkGf8wKB7/Lice/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/yki + Gf8+NzH/2NTR///////7+/v//////83Lx/8yKiH/LiMe/ykhHP8vJhv/PDQa/0tJFv9YXQ3/ZGwO/255 + Df9zggf/c4EG/3R+C/9wfA7/Z3MN/15oDf9TVRH/QzwY/zUrHP8rIh7/KiEj/ykmGv8rJxr/LiUg/y0k + Hf8tJh3/LSYd/y0mHf8tJh3/LiUd/yskHf84Mxv/eYYF/4mWAP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJx//MCkf/y4mHP8lHhX/HhcP/x0W + Dv8iGhP/KB8Y/ysjHP8tJR7/LSQe/yoiHP8nHxj/IBgR/x0WD/8gGhL/JyAY/y8nHv8wKB//LSce/y0m + Hv8tJh3/LCUc/y0mHf8tJh3/LSYd/y0mHf8uJx7/KSIZ/z43Mf/Y1NH///////v7+///////zcvH/zIq + Iv8wJR3/LiYg/ykoGf8nJBv/JR4f/ygeHf8qIB7/LCId/y0lHP8vJhr/MCca/y0kG/8rIB7/KB0e/yUe + Hf8oICH/KiQb/y4oGv8uJx//LSYe/y0lHv8uJhz/Licb/y0mHf8tJh3/LSYd/y0mHf8uJh3/KyQd/zgz + G/95hgX/iZYA/4WRBP+KmAD/bHMK/ywnGv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/ywl + HP8tJh3/LSYe/ywlHv8sJR3/Lice/y8oH/8wKSD/MCkg/y8pH/8uJx3/LScc/ywmHP8sJRv/LSYc/y4o + Hv8wKR//MCkg/zApIP8vKB//LCUd/ywmHf8rJR7/LScf/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4n + Hv8pIhn/Pjcx/9jU0f//////+/v6///////Ny8f/Mioi/y8lG/8uJh//LCYd/y8mHv8xJh7/Lygc/y4n + Hf8tJh3/LCce/ywmHv8sJR3/LCYb/y4nHP8vKBz/MCgb/zAnHv8uJxz/LSYc/y0mHf8tJh3/LCYd/ysm + HP8rJR3/LSYd/y0mHf8tJh3/LSYd/y4mHf8rJB3/ODMb/3mGBf+JlgD/hZEE/4qYAP9scwr/LCca/ywm + HP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lice/ykiGf8+NzH/2NTR///////7+/r//////83L + yP8xKSH/LyUd/y0nHv8tJh7/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LiYd/ysk + Hf84Mxv/eYYF/4mWAP+FkQT/ipgA/2xzCv8sJxr/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8uJx7/KSIZ/z43Mf/Y1NH///////v7+v//////zcvI/zEpIf8vJR3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8uJh3/KyQd/zgzG/95hgX/iZYA/4WRBP+KmAD/bHMK/ywn + Gv8sJhz/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8pIhn/Pjcx/9jU0f//////+/v6//// + ///Ny8j/MSkh/y8lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4m + Hf8rJB3/ODMb/3mGBf+JlgD/hZEE/4qYAP9scwn/LCca/ywmHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/Lice/ykiGv8+NzH/2NTR///////6+/r//////83MyP8xKSH/LyUd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSUc/yskHf84Mxr/eYYG/4mVAf+FkQX/ipgA/21z + Cv8tJhz/LCYc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8vKB7/KSIZ/zw3Mf/W1NH///////r7 + +///////zczH/zAqIv8uJR3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + HP8wJx7/KiQe/zYzF/94hQj/iZYE/4OSA/+MmgD/b3IK/y0mGf8sJhz/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y8nHv8qIhn/PTgy/9bV0///////+Pn8///////NzMf/MCkh/y4nHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y4nHv8qIh7/OjEd/3uHBv+KmQD/hZED/4mW + A/9rdAr/Kycc/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lyce/yoiGf89ODH/19XR//// + ///49/j//////8zLxv8wKiH/LSUc/y0mHv8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJR3/Lice/ywlHP87Mxr/eoYJ/4iWAf+FkAb/hpkC/2t3Bv8uJhr/LCUe/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8uJx7/LCUc/zEqIv9oYVn/dnBo/3NsZf90cGn/Y15X/ywlHv8uJh7/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHP8vJRz/LCYc/y8sGP9GRxb/TU0T/0pL + Fv9KTxD/REEX/ywlHP8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LCUc/yUd + E/8kGxL/JBwS/yIbEf8lHhb/LCUd/y0lHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y4mHP8tJR7/KyYd/ykgHf8pIR3/JyEf/ycgH/8qISD/KyYc/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Lygf/y8oIP8vKB//Lygg/y8oH/8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/Licd/y4n + Hf8uJxz/Licd/y4nHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0mHf8tJh3/LSYd/y0m + Hf8tJh3/LSYd/y0mHf8tJh3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + + \ No newline at end of file diff --git a/DingDong.Monitor/Models/Config.cs b/DingDong.Monitor/Models/Config.cs index 803b934..7284d20 100644 --- a/DingDong.Monitor/Models/Config.cs +++ b/DingDong.Monitor/Models/Config.cs @@ -1,13 +1,38 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using DingDong.Core.Models; namespace DingDong.Monitor.Models { public class Config { public DingDongConfig DdConfig { get; set; } + + public List Categories { get; set; } + + public SoftConfig SoftConfig { get; set; } + } + + public class SoftConfig + { + public List PushUrls { get; set; } + + public bool PlayMusic { get; set; } + + public bool MonitorCategory { get; set; } + + public bool MonitorCart { get; set; } + + public bool IsTimeBegin { get; set; } + + public string TimeBegin { get; set; } + + public bool MonitorContinue { get; set; } + + public int MonitorContinueMins { get; set; } + + public int MonitorInterval { get; set; } + + public List ExcludeKeywords { get; set; } + + public bool TrackLog { get; set; } } } diff --git a/DingDong.Monitor/Music/order.wav b/DingDong.Monitor/Music/order.wav new file mode 100644 index 0000000000000000000000000000000000000000..c746fa87b77b7bddec640dd7d119635638928a66 GIT binary patch literal 51918 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 I|4xB_0hdohBme*a literal 0 HcmV?d00001