commit f8e6f40a803401947a55ce13f98f10cbe98ea50e Author: gdxs Date: Tue Jun 4 21:49:28 2024 +0800 init manageTools 项目 diff --git a/.vs/ManageTools/v16/.suo b/.vs/ManageTools/v16/.suo new file mode 100644 index 0000000..b54358a Binary files /dev/null and b/.vs/ManageTools/v16/.suo differ diff --git a/.vs/ManageTools/v16/Browse.VC.db b/.vs/ManageTools/v16/Browse.VC.db new file mode 100644 index 0000000..d46fe41 Binary files /dev/null and b/.vs/ManageTools/v16/Browse.VC.db differ diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..e257ff9 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": "无配置" +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..16491dd Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/COMDLG32.OCX b/COMDLG32.OCX new file mode 100644 index 0000000..bb79309 Binary files /dev/null and b/COMDLG32.OCX differ diff --git a/MSWINSCK.OCX b/MSWINSCK.OCX new file mode 100644 index 0000000..8bb10d0 Binary files /dev/null and b/MSWINSCK.OCX differ diff --git a/ManageTools.exe b/ManageTools.exe new file mode 100644 index 0000000..35c0d4d Binary files /dev/null and b/ManageTools.exe differ diff --git a/ManageTools.pdb b/ManageTools.pdb new file mode 100644 index 0000000..e9b1543 Binary files /dev/null and b/ManageTools.pdb differ diff --git a/ManageTools.sln b/ManageTools.sln new file mode 100644 index 0000000..846ffbb --- /dev/null +++ b/ManageTools.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManageTools", "ManageTools\ManageTools.csproj", "{DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C}.Debug|x86.ActiveCfg = Debug|x86 + {DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C}.Debug|x86.Build.0 = Debug|x86 + {DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C}.Release|x86.ActiveCfg = Release|x86 + {DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ManageTools.suo b/ManageTools.suo new file mode 100644 index 0000000..c2e0c6e Binary files /dev/null and b/ManageTools.suo differ diff --git a/ManageTools.v11.suo b/ManageTools.v11.suo new file mode 100644 index 0000000..a85e8b5 Binary files /dev/null and b/ManageTools.v11.suo differ diff --git a/ManageTools/2.ico b/ManageTools/2.ico new file mode 100644 index 0000000..b8586d9 Binary files /dev/null and b/ManageTools/2.ico differ diff --git a/ManageTools/ClassDiagram1.cd b/ManageTools/ClassDiagram1.cd new file mode 100644 index 0000000..92dae20 --- /dev/null +++ b/ManageTools/ClassDiagram1.cd @@ -0,0 +1,44 @@ + + + + + + AgAAAAAAAAAAAAABAAAAQAACACCAwAQAAAAAAQHAAAA= + INIFile.cs + + + + + + CCWEQgWCIiIAZDUAABjCjBICMPMAoCECBHAIIHEAmAA= + Main.cs + + + + + + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAA= + Program.cs + + + + + + AAAAAAAAAAAAAAgAAAgAAAAIAAAAIAAAAAIAIAAAABA= + SysEnvironment.cs + + + + + + AAAAAAAAAAAAAAAAAAABEAAAAQAAAAAAAAAAAAAAAIA= + + + + + + AAAAAAAAAAAAAAAAAAAAIAAAAAABAAAAAAAAAAAAAAA= + + + + \ No newline at end of file diff --git a/ManageTools/INIFile.cs b/ManageTools/INIFile.cs new file mode 100644 index 0000000..a4535da --- /dev/null +++ b/ManageTools/INIFile.cs @@ -0,0 +1,163 @@ +using System; +using System.Text; +using System.Runtime.InteropServices; +using System.IO; +/* + * INI文件操作类 + */ +namespace ManageTools +{ + public class INIFile + { + public delegate void EventHandler(object sender, EventArgs e); + public event EventHandler IniFileChanged; + public event EventHandler Initialization; + protected string IniFileName; + public INIFile(string FileName) + { + IniFileName = FileName; + } + public string FileName + { + get + { + return IniFileName; + } + set + { + if (value != IniFileName) + { + IniFileName = value; + OnIniFileChanged(new EventArgs()); + } + } + } + + protected void OnIniFileChanged(EventArgs e) + { + if (IniFileChanged != null) + IniFileChanged(null, e); + } + protected void OnInitialization(EventArgs e) + { + if (Initialization != null) + Initialization(null, e); + } + + public void WriteValue(string Section, string Key, string Value) + { + WritePrivateProfileString(Section, Key, Value, this.IniFileName); + } + + public string ReadValue(string Section, string Key, string Default) + { + StringBuilder temp = new StringBuilder(500); + int i = GetPrivateProfileString(Section, Key, Default, temp, 500, this.IniFileName); + return temp.ToString(); + } + + private void NewDirectory(String path) + { + if (!Directory.Exists(path)) + { + Directory.CreateDirectory(path); + } + } + + // 文件尾增加 + public void AddNotes(string Notes) + { + string filename = IniFileName; + string path; + path = Directory.GetParent(filename).ToString(); + NewDirectory(path); + FileStream fs = new FileStream(filename, FileMode.OpenOrCreate, FileAccess.Write); + StreamWriter sw = new StreamWriter(fs); + sw.BaseStream.Seek(0, SeekOrigin.End); + sw.WriteLine(@";" + Notes); + sw.Flush(); + sw.Close(); + fs.Close(); + sw.Dispose(); + fs.Dispose(); + } + // 文件尾增加 + public void AddText(string Text) + { + string filename = IniFileName; + string path; + path = Directory.GetParent(filename).ToString(); + NewDirectory(path); + FileStream fs = new FileStream(filename, FileMode.OpenOrCreate, FileAccess.Write); + StreamWriter sw = new StreamWriter(fs); + sw.BaseStream.Seek(0, SeekOrigin.End); + sw.WriteLine(Text); + sw.Flush(); + sw.Close(); + fs.Close(); + sw.Dispose(); + fs.Dispose(); + } + + #region 重载 + public void WriteValue(string Section, string Key, int Value) + { + WriteValue(Section, Key, Value.ToString()); + } + public void WriteValue(string Section, string Key, Boolean Value) + { + WriteValue(Section, Key, Value.ToString()); + } + public void WriteValue(string Section, string Key, DateTime Value) + { + WriteValue(Section, Key, Value.ToString()); + } + public void WriteValue(string Section, string Key, object Value) + { + WriteValue(Section, Key, Value.ToString()); + } + public int ReadValue(string Section, string Key, int Default) + { + return Convert.ToInt32(ReadValue(Section, Key, Default.ToString())); + } + + public bool ReadValue(string Section, string Key, bool Default) + { + return Convert.ToBoolean(ReadValue(Section, Key, Default.ToString())); + } + + + public DateTime ReadValue(string Section, string Key, DateTime Default) + { + return Convert.ToDateTime(ReadValue(Section, Key, Default.ToString())); + } + + + public string ReadValue(string Section, string Key) + { + return ReadValue(Section, Key, ""); + } + #endregion + /* + section: 要写入的段落名 + key: 要写入的键,如果该key存在则覆盖写入 + val: key所对应的值 + filePath: INI文件的完整路径和文件名 + */ + [DllImport("kernel32")] + private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); + + /* + section:要读取的段落名 + key: 要读取的键 + defVal: 读取异常的情况下的缺省值 + retVal: key所对应的值,如果该key不存在则返回空值 + size: 值允许的大小 + filePath: INI文件的完整路径和文件名 + + */ + [DllImport("kernel32")] + private static extern int GetPrivateProfileString(string section, string key, string defVal, System.Text.StringBuilder retVal, int size, string filePath); + + } +} diff --git a/ManageTools/Main.Designer.cs b/ManageTools/Main.Designer.cs new file mode 100644 index 0000000..4c5ee10 --- /dev/null +++ b/ManageTools/Main.Designer.cs @@ -0,0 +1,420 @@ +namespace ManageTools +{ + partial class Main + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows 窗体设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main)); + this.groupBox2 = new System.Windows.Forms.GroupBox(); + this.cb1 = new System.Windows.Forms.CheckBox(); + this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.bt_stop = new System.Windows.Forms.Button(); + this.bt_start = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.tb_Host = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.tb_db = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.tb_user = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.mtb_pwd = new System.Windows.Forms.MaskedTextBox(); + this.bt_test = new System.Windows.Forms.Button(); + this.btapply = new System.Windows.Forms.Button(); + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.timer1 = new System.Windows.Forms.Timer(this.components); + this.label4 = new System.Windows.Forms.Label(); + this.tb_path = new System.Windows.Forms.TextBox(); + this.bt_choose = new System.Windows.Forms.Button(); + this.label6 = new System.Windows.Forms.Label(); + this.dTP_time = new System.Windows.Forms.DateTimePicker(); + this.label7 = new System.Windows.Forms.Label(); + this.bt_backup = new System.Windows.Forms.Button(); + this.bt_createtask = new System.Windows.Forms.Button(); + this.groupBox6 = new System.Windows.Forms.GroupBox(); + this.baseurl_label = new System.Windows.Forms.Label(); + this.baseUrl = new System.Windows.Forms.TextBox(); + this.cameraUrl_label = new System.Windows.Forms.Label(); + this.cameraUrl = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.groupBox4 = new System.Windows.Forms.GroupBox(); + this.label10 = new System.Windows.Forms.Label(); + this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.label8 = new System.Windows.Forms.Label(); + this.button4 = new System.Windows.Forms.Button(); + this.gprs_ip = new System.Windows.Forms.TextBox(); + this.java_env_setting = new System.Windows.Forms.Button(); + this.mysql_install = new System.Windows.Forms.Button(); + this.groupBox2.SuspendLayout(); + this.groupBox1.SuspendLayout(); + this.groupBox6.SuspendLayout(); + this.groupBox4.SuspendLayout(); + this.groupBox3.SuspendLayout(); + this.SuspendLayout(); + // + // groupBox2 + // + this.groupBox2.Controls.Add(this.cb1); + this.groupBox2.Controls.Add(this.checkBox1); + this.groupBox2.Controls.Add(this.bt_stop); + this.groupBox2.Controls.Add(this.bt_start); + resources.ApplyResources(this.groupBox2, "groupBox2"); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.TabStop = false; + // + // cb1 + // + resources.ApplyResources(this.cb1, "cb1"); + this.cb1.Name = "cb1"; + this.cb1.UseVisualStyleBackColor = true; + this.cb1.CheckedChanged += new System.EventHandler(this.cb1_CheckedChanged); + // + // checkBox1 + // + resources.ApplyResources(this.checkBox1, "checkBox1"); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.UseVisualStyleBackColor = false; + this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); + this.checkBox1.Click += new System.EventHandler(this.checkBox1_Click); + // + // bt_stop + // + resources.ApplyResources(this.bt_stop, "bt_stop"); + this.bt_stop.Name = "bt_stop"; + this.bt_stop.UseVisualStyleBackColor = true; + this.bt_stop.Click += new System.EventHandler(this.bt_stop_Click); + // + // bt_start + // + resources.ApplyResources(this.bt_start, "bt_start"); + this.bt_start.Name = "bt_start"; + this.bt_start.UseVisualStyleBackColor = true; + this.bt_start.Click += new System.EventHandler(this.bt_start_Click); + // + // label1 + // + resources.ApplyResources(this.label1, "label1"); + this.label1.Name = "label1"; + // + // tb_Host + // + resources.ApplyResources(this.tb_Host, "tb_Host"); + this.tb_Host.Name = "tb_Host"; + // + // label2 + // + resources.ApplyResources(this.label2, "label2"); + this.label2.Name = "label2"; + // + // tb_db + // + resources.ApplyResources(this.tb_db, "tb_db"); + this.tb_db.Name = "tb_db"; + this.tb_db.TextChanged += new System.EventHandler(this.tb_db_TextChanged); + // + // label3 + // + resources.ApplyResources(this.label3, "label3"); + this.label3.Name = "label3"; + // + // tb_user + // + resources.ApplyResources(this.tb_user, "tb_user"); + this.tb_user.Name = "tb_user"; + // + // label5 + // + resources.ApplyResources(this.label5, "label5"); + this.label5.Name = "label5"; + // + // mtb_pwd + // + resources.ApplyResources(this.mtb_pwd, "mtb_pwd"); + this.mtb_pwd.Name = "mtb_pwd"; + this.mtb_pwd.PasswordChar = '*'; + this.mtb_pwd.MaskInputRejected += new System.Windows.Forms.MaskInputRejectedEventHandler(this.mtb_pwd_MaskInputRejected); + // + // bt_test + // + resources.ApplyResources(this.bt_test, "bt_test"); + this.bt_test.Name = "bt_test"; + this.bt_test.UseVisualStyleBackColor = true; + this.bt_test.Click += new System.EventHandler(this.bt_test_Click_1); + // + // btapply + // + resources.ApplyResources(this.btapply, "btapply"); + this.btapply.Name = "btapply"; + this.btapply.UseVisualStyleBackColor = true; + this.btapply.Click += new System.EventHandler(this.btapply_Click); + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.btapply); + this.groupBox1.Controls.Add(this.bt_test); + this.groupBox1.Controls.Add(this.mtb_pwd); + this.groupBox1.Controls.Add(this.label5); + this.groupBox1.Controls.Add(this.tb_user); + this.groupBox1.Controls.Add(this.label3); + this.groupBox1.Controls.Add(this.tb_db); + this.groupBox1.Controls.Add(this.label2); + this.groupBox1.Controls.Add(this.tb_Host); + this.groupBox1.Controls.Add(this.label1); + resources.ApplyResources(this.groupBox1, "groupBox1"); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.TabStop = false; + // + // timer1 + // + this.timer1.Interval = 60000; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // + // label4 + // + resources.ApplyResources(this.label4, "label4"); + this.label4.Name = "label4"; + // + // tb_path + // + resources.ApplyResources(this.tb_path, "tb_path"); + this.tb_path.Name = "tb_path"; + // + // bt_choose + // + resources.ApplyResources(this.bt_choose, "bt_choose"); + this.bt_choose.Name = "bt_choose"; + this.bt_choose.UseVisualStyleBackColor = true; + this.bt_choose.Click += new System.EventHandler(this.bt_choose_Click_1); + // + // label6 + // + resources.ApplyResources(this.label6, "label6"); + this.label6.Name = "label6"; + // + // dTP_time + // + resources.ApplyResources(this.dTP_time, "dTP_time"); + this.dTP_time.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.dTP_time.Name = "dTP_time"; + // + // label7 + // + resources.ApplyResources(this.label7, "label7"); + this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.label7.Name = "label7"; + // + // bt_backup + // + resources.ApplyResources(this.bt_backup, "bt_backup"); + this.bt_backup.Name = "bt_backup"; + this.bt_backup.UseVisualStyleBackColor = true; + this.bt_backup.Click += new System.EventHandler(this.bt_backup_Click); + // + // bt_createtask + // + resources.ApplyResources(this.bt_createtask, "bt_createtask"); + this.bt_createtask.Name = "bt_createtask"; + this.bt_createtask.UseVisualStyleBackColor = true; + this.bt_createtask.Click += new System.EventHandler(this.bt_createtask_Click); + // + // groupBox6 + // + this.groupBox6.Controls.Add(this.bt_createtask); + this.groupBox6.Controls.Add(this.bt_backup); + this.groupBox6.Controls.Add(this.label7); + this.groupBox6.Controls.Add(this.dTP_time); + this.groupBox6.Controls.Add(this.label6); + this.groupBox6.Controls.Add(this.bt_choose); + this.groupBox6.Controls.Add(this.tb_path); + this.groupBox6.Controls.Add(this.label4); + resources.ApplyResources(this.groupBox6, "groupBox6"); + this.groupBox6.Name = "groupBox6"; + this.groupBox6.TabStop = false; + // + // baseurl_label + // + resources.ApplyResources(this.baseurl_label, "baseurl_label"); + this.baseurl_label.Name = "baseurl_label"; + this.baseurl_label.Click += new System.EventHandler(this.label11_Click); + // + // baseUrl + // + resources.ApplyResources(this.baseUrl, "baseUrl"); + this.baseUrl.Name = "baseUrl"; + // + // cameraUrl_label + // + resources.ApplyResources(this.cameraUrl_label, "cameraUrl_label"); + this.cameraUrl_label.Name = "cameraUrl_label"; + // + // cameraUrl + // + resources.ApplyResources(this.cameraUrl, "cameraUrl"); + this.cameraUrl.Name = "cameraUrl"; + // + // button1 + // + resources.ApplyResources(this.button1, "button1"); + this.button1.Name = "button1"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click_1); + // + // groupBox4 + // + this.groupBox4.Controls.Add(this.label10); + this.groupBox4.Controls.Add(this.button1); + this.groupBox4.Controls.Add(this.cameraUrl); + this.groupBox4.Controls.Add(this.cameraUrl_label); + this.groupBox4.Controls.Add(this.baseUrl); + this.groupBox4.Controls.Add(this.baseurl_label); + resources.ApplyResources(this.groupBox4, "groupBox4"); + this.groupBox4.Name = "groupBox4"; + this.groupBox4.TabStop = false; + // + // label10 + // + resources.ApplyResources(this.label10, "label10"); + this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.label10.Name = "label10"; + // + // groupBox3 + // + this.groupBox3.Controls.Add(this.label8); + this.groupBox3.Controls.Add(this.button4); + this.groupBox3.Controls.Add(this.gprs_ip); + this.groupBox3.Controls.Add(this.java_env_setting); + this.groupBox3.Controls.Add(this.mysql_install); + resources.ApplyResources(this.groupBox3, "groupBox3"); + this.groupBox3.Name = "groupBox3"; + this.groupBox3.TabStop = false; + // + // label8 + // + resources.ApplyResources(this.label8, "label8"); + this.label8.Name = "label8"; + this.label8.Click += new System.EventHandler(this.label8_Click); + // + // button4 + // + resources.ApplyResources(this.button4, "button4"); + this.button4.Name = "button4"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.button4_Click); + // + // gprs_ip + // + resources.ApplyResources(this.gprs_ip, "gprs_ip"); + this.gprs_ip.Name = "gprs_ip"; + this.gprs_ip.TextChanged += new System.EventHandler(this.textBox1_TextChanged); + // + // java_env_setting + // + resources.ApplyResources(this.java_env_setting, "java_env_setting"); + this.java_env_setting.Name = "java_env_setting"; + this.java_env_setting.UseVisualStyleBackColor = true; + this.java_env_setting.Click += new System.EventHandler(this.button2_Click); + // + // mysql_install + // + resources.ApplyResources(this.mysql_install, "mysql_install"); + this.mysql_install.Name = "mysql_install"; + this.mysql_install.UseVisualStyleBackColor = true; + this.mysql_install.Click += new System.EventHandler(this.button3_Click_1); + // + // Main + // + resources.ApplyResources(this, "$this"); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.groupBox3); + this.Controls.Add(this.groupBox4); + this.Controls.Add(this.groupBox6); + this.Controls.Add(this.groupBox1); + this.Controls.Add(this.groupBox2); + this.MaximizeBox = false; + this.Name = "Main"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing); + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Main_FormClosed); + this.Load += new System.EventHandler(this.Main_Load); + this.Shown += new System.EventHandler(this.Main_Shown); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.groupBox6.ResumeLayout(false); + this.groupBox6.PerformLayout(); + this.groupBox4.ResumeLayout(false); + this.groupBox4.PerformLayout(); + this.groupBox3.ResumeLayout(false); + this.groupBox3.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.GroupBox groupBox2; + private System.Windows.Forms.Button bt_stop; + private System.Windows.Forms.Button bt_start; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox tb_Host; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox tb_db; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.TextBox tb_user; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.MaskedTextBox mtb_pwd; + private System.Windows.Forms.Button bt_test; + private System.Windows.Forms.Button btapply; + private System.Windows.Forms.GroupBox groupBox1; + private System.Windows.Forms.CheckBox checkBox1; + private System.Windows.Forms.CheckBox cb1; + private System.Windows.Forms.Timer timer1; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.TextBox tb_path; + private System.Windows.Forms.Button bt_choose; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.DateTimePicker dTP_time; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Button bt_backup; + private System.Windows.Forms.Button bt_createtask; + private System.Windows.Forms.GroupBox groupBox6; + private System.Windows.Forms.Label baseurl_label; + private System.Windows.Forms.TextBox baseUrl; + private System.Windows.Forms.Label cameraUrl_label; + private System.Windows.Forms.TextBox cameraUrl; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.GroupBox groupBox4; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.GroupBox groupBox3; + private System.Windows.Forms.Button mysql_install; + private System.Windows.Forms.Button java_env_setting; + private System.Windows.Forms.TextBox gprs_ip; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Label label8; + } +} + diff --git a/ManageTools/Main.cs b/ManageTools/Main.cs new file mode 100644 index 0000000..b509023 --- /dev/null +++ b/ManageTools/Main.cs @@ -0,0 +1,1226 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using System.IO; +using System.Data.SqlClient; +using Microsoft.Win32; +using System.Xml; +using System.Runtime.InteropServices; +using System.Diagnostics; +using System.Reflection; +using System.Threading; +using System.Globalization; +using MySql.Data.MySqlClient; +using Newtonsoft.Json.Linq; +using System.Net; +using System.Collections; + +namespace ManageTools +{ + + + public partial class Main : Form + { + + //web工程的发布名称 + string webName = "WebContent"; + //判断系统版本 + bool bit64 = Environment.Is64BitOperatingSystem; + //应用程序当前路径 + string curPath; + //应用程序的上一级路径 + string parentPath; + + string rmsName = "";//抄表服务名 + string rmsRun64 = "";//64位下时应用程序名 + string rmsRun32 = "";//32位下时应用程序名 + + string rmsSelfName = "";//抄表服务名 + string rmsSelfRun64 = "";//64位下时应用程序名 + string rmsSelfRun32 = "";//32位下时应用程序名 + + string rmsCarName = "";//抄表服务名 + string rmsCarRun64 = "";//64位下时应用程序名 + string rmsCarRun32 = "";//32位下时应用程序名 + + string rmsOpcName = "";//抄表服务名 + string rmsOpcRun64 = "";//64位下时应用程序名 + string rmsOpcRun32 = "";//32位下时应用程序名 + + string GPRSName = "";//GPRS服务名 + string GPRSRun64 = "";//64位下时GPRS程序名 + string GPRSRun32 = "";//32位下时GPRS程序名 + + bool autoRun = false; //自动运行 + //指定Sql Server提供者的连接字符串 + string connString; + //建立连接对象 + MySqlConnection mySqlConnection; + SqlConnection Sqlconn; + //为上面的连接指定Command对象 + SqlCommand thiscommand; + //为指定的command对象执行DataReader + //SqlDataReader thisSqlDataReader; + public string language + { + set; + get; + } + System.ComponentModel.ComponentResourceManager res; + + [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)] + private static extern IntPtr FindWindow(string lpClassName, string lpWindowName); + [DllImport("user32.dll", EntryPoint = "IsWindow")] + public static extern bool IsWindow(IntPtr hWnd); + [DllImport("user32.dll", EntryPoint = "GetWindowThreadProcessId")] + public static extern uint GetWindowThreadProcessId(IntPtr hWnd, ref uint lpdwProcessId); + + public Main() + { + InitializeComponent(); + } + + private void Main_Load(object sender, EventArgs e) + { + loadConfig(); + curPath = System.Windows.Forms.Application.StartupPath; + parentPath = curPath.Substring(0, curPath.IndexOf("ManageTools")); + + } + + private void groupBox1_Enter(object sender, EventArgs e) + { + + } + + private void label3_Click(object sender, EventArgs e) + { + + } + + private void bt_test_Click(object sender, EventArgs e) + { + + + } + private void bt_stop_Click(object sender, EventArgs e) + { + timer1.Enabled = false; + stopService(rmsSelfName); + stopService(rmsCarName); + stopService(rmsOpcName); + stopService(GPRSName); + stopService("Tomcat"); + + killProcess("3761"); + killProcess("nginx"); + killProcess("LiveNVR"); + + } + + private void killProcess(string processName) + { + System.Diagnostics.Process myproc = new System.Diagnostics.Process(); + //得到所有打开的进程 + try + { + foreach (Process thisproc in Process.GetProcessesByName(processName)) + { + if (!thisproc.CloseMainWindow()) + { + Console.WriteLine("| ================" + processName); + thisproc.Kill(); + } + } + + } + catch (Exception Exc) + { + MessageBox.Show(Exc.Message); + } + } + + //启动web服务 + private void bt_start_Click(object sender, EventArgs e) + { + /* + if (bit64) + { + startService("抄表事务服务", parentPath + "\\Release", "runJavaApp_64.bat"); + startService("GPRS", parentPath + "\\GPRS服务", "IpServer_64.exe"); + startService("Tomcat", parentPath + "\\tomcat-8.0-64\\bin", "startup.bat"); + } + else + { + startService("抄表事务服务", parentPath + "\\Release", "runJavaApp_32.bat"); + startService("GPRS", parentPath + "\\GPRS服务", "IpServer_32.exe"); + startService("Tomcat", parentPath + "\\tomcat-8.0-32\\bin", "startup.bat"); + } + * */ + startServiceAll(); + timer1.Enabled = true; + } + private void startServiceAll() + { + if (bit64) + { + // 启动集中器 + startService(rmsSelfName, "", parentPath + "\\Release", rmsSelfRun64); + startService(rmsCarName, "", parentPath + "\\Release", rmsCarRun64); + startService(rmsOpcName, "", parentPath + "\\Release", rmsOpcRun64); + // 启动 GPRS + startService(GPRSName, "3761", parentPath + "\\GPRS-Service", GPRSRun64); + // 启动主站后端 + startService("Tomcat","", parentPath + "\\apache-tomcat\\bin", "startup.bat"); + + // 启动 nginx + startService("nginx", "", parentPath + "\\nginx-1.18.0", "nginx.exe"); + + // 启动 流媒体 + startService("LiveNVR", "", parentPath + "\\LiveNVR", "LiveNVR.exe"); + } + else + { + startService(rmsSelfName, "", parentPath + "\\Release", rmsSelfRun32); + startService(rmsCarName, "", parentPath + "\\Release", rmsCarRun32); + startService(rmsOpcName, "", parentPath + "\\Release", rmsOpcRun32); + startService(GPRSName, "3761", parentPath + "\\GPRS-Service", GPRSRun32); + startService("Tomcat", "", parentPath + "\\apache-tomcat\\bin", "startup.bat"); + // 启动 nginx + startService("nginx", "", parentPath + "\\nginx-1.18.0", "nginx.exe"); + // 启动 流媒体 + startService("LiveNVR", "", parentPath + "\\LiveNVR", "LiveNVR.exe"); + } + } + //开启服务 + private void startService(string windowName,string exeName,string appPath,string appName) + { + //IntPtr hWnd = FindWindow(null, windowName); + IntPtr hWnd = IntPtr.Zero; + Process[] MyProcesses = Process.GetProcesses(); + foreach(Process MyProcess in MyProcesses) + { + // Console.WriteLine("| MyProcess.ProcessName: " + MyProcess.ProcessName); + if (exeName != "") + { + if (MyProcess.ProcessName == exeName) + { + return; + } + } + + if (windowName != "") + { + // if (MyProcess.ProcessName == windowName) + if (MyProcess.ProcessName.IndexOf(windowName) > -1) + { + Console.WriteLine("| MyProcess.ProcessName: " + MyProcess.ProcessName); + return; + } + } + + if ((MyProcess.MainWindowTitle.IndexOf(windowName) > -1)) + { + Console.WriteLine("| MyProcess.ProcessName: " + MyProcess.ProcessName + "MyProcess.MainWindowTitle:" + MyProcess.MainWindowTitle + ",windowName:" + windowName); + return; + } + + } + + if (hWnd == IntPtr.Zero) + { + if (File.Exists(appPath + "\\" + appName)) + { + Directory.SetCurrentDirectory(appPath); + Process startProcess = new Process(); + startProcess.StartInfo.FileName = appPath + "\\" + appName; + startProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal; + startProcess.Start(); + + Console.WriteLine("| appPath: " + appPath); + Console.WriteLine(appName + "启动成功!!!\n"); + } + } + } + //调用 cmd + private string runDosCmd(string[] commandTexts) + { + Process p = new Process(); + p.StartInfo.FileName = "cmd.exe"; + p.StartInfo.UseShellExecute = true; + string strOutput = null; + try + { + p.Start(); + foreach (string item in commandTexts) + { + p.StandardInput.WriteLine(item); + } + } + catch (Exception e) + { + strOutput = e.Message; + } + return strOutput; + } + + private void stopService(string windowName) + { + IntPtr hWnd = IntPtr.Zero; + Process[] MyProcesses = Process.GetProcesses(); + foreach (Process MyProcess in MyProcesses) + { + // Console.WriteLine("| MyProcess.ProcessName: " + MyProcess.ProcessName); + if (MyProcess.MainWindowTitle.IndexOf(windowName) > -1) + { + MyProcess.CloseMainWindow(); + Console.WriteLine("| " + windowName + "已经关闭"); + break; + } + } + } + + + + + + #region 参数加载 + private void loadConfig() + { + String filePath = System.Windows.Forms.Application.StartupPath + "\\backup"; + + String fileName = System.Windows.Forms.Application.StartupPath; + fileName += "\\system.ini"; + INIFile iniFile = new INIFile(fileName); + tb_Host.Text = iniFile.ReadValue("config", "tb_Host", "127.0.0.1"); + tb_db.Text = iniFile.ReadValue("config", "tb_db", "samr"); + tb_user.Text = iniFile.ReadValue("config", "tb_user", "sa"); + mtb_pwd.Text = iniFile.ReadValue("config", "mtb_pwd", "sa"); + tb_path.Text = iniFile.ReadValue("config", "tb_path", filePath); + gprs_ip.Text = iniFile.ReadValue("config", "frontend_ip", "127.0.0.1"); + // dTP_time.Text = iniFile.ReadValue("config", "dTP_time", "22:00"); + checkBox1.Checked = iniFile.ReadValue("config", "autoRun", false); + baseUrl.Text = iniFile.ReadValue("config", "baseUrl", "8.129.11.230:8083"); + cameraUrl.Text = iniFile.ReadValue("config", "cameraUrl", "8.129.11.230:18010"); + + iniFile.WriteValue("config", "autoRun", checkBox1.Checked); + + autoRun = checkBox1.Checked; + //服务启动 + rmsName = iniFile.ReadValue("runserver", "rmsName", "Read-Service"); + rmsRun64 = iniFile.ReadValue("runserver", "rmsRun64", "runJavaApp_64.bat"); + rmsRun32 = iniFile.ReadValue("runserver", "rmsRun32", "runJavaApp_32.bat"); + + iniFile.WriteValue("runserver", "rmsName", rmsName); + iniFile.WriteValue("runserver", "rmsRun64", rmsRun64); + iniFile.WriteValue("runserver", "rmsRun32", rmsRun32); + + rmsSelfName = iniFile.ReadValue("runserver", "rmsSelfName", "Read-Service-self"); + rmsSelfRun64 = iniFile.ReadValue("runserver", "rmsSelfRun64", "runJavaApp_self_64.bat"); + rmsSelfRun32 = iniFile.ReadValue("runserver", "rmsSelfRun32", "runJavaApp_self_32.bat"); + + iniFile.WriteValue("runserver", "rmsSelfName", rmsSelfName); + iniFile.WriteValue("runserver", "rmsSelfRun64", rmsSelfRun64); + iniFile.WriteValue("runserver", "rmsSelfRun32", rmsSelfRun32); + + rmsCarName = iniFile.ReadValue("runserver", "rmsCarName", "Read-Service-car"); + rmsCarRun64 = iniFile.ReadValue("runserver", "rmsCarRun64", "runJavaApp_car_64.bat"); + rmsCarRun32 = iniFile.ReadValue("runserver", "rmsCarRun32", "runJavaApp_car_32.bat"); + + iniFile.WriteValue("runserver", "rmsCarName", rmsCarName); + iniFile.WriteValue("runserver", "rmsCarRun64", rmsCarRun64); + iniFile.WriteValue("runserver", "rmsCarRun32", rmsCarRun32); + + rmsOpcName = iniFile.ReadValue("runserver", "rmsOpcName", "Read-Service-opc"); + rmsOpcRun64 = iniFile.ReadValue("runserver", "rmsOpcRun64", "runJavaApp_opc_64.bat"); + rmsOpcRun32 = iniFile.ReadValue("runserver", "rmsOpcRun32", "runJavaApp_opc_32.bat"); + + iniFile.WriteValue("runserver", "rmsOpcName", rmsOpcName); + iniFile.WriteValue("runserver", "rmsOpcRun64", rmsOpcRun64); + iniFile.WriteValue("runserver", "rmsOpcRun32", rmsOpcRun32); + + GPRSName = iniFile.ReadValue("runserver", "GPRSName", "GPRS"); + GPRSRun64 = iniFile.ReadValue("runserver", "GPRSRun64", "3761.exe"); + GPRSRun32 = iniFile.ReadValue("runserver", "GPRSRun32", "3761.exe"); + + iniFile.WriteValue("runserver", "GPRSName", GPRSName); + iniFile.WriteValue("runserver", "GPRSRun64", GPRSRun64); + iniFile.WriteValue("runserver", "GPRSRun32", GPRSRun32); + + this.language = iniFile.ReadValue("config", "language", ""); + if (this.language != "") + cb1.Checked = true; + ApplyResource(); + + } + + private void saveConfig() + { + String fileName = System.Windows.Forms.Application.StartupPath; + fileName += "\\system.ini"; + INIFile iniFile = new INIFile(fileName); + iniFile.WriteValue("config", "tb_Host", tb_Host.Text); + iniFile.WriteValue("config", "tb_db", tb_db.Text); + iniFile.WriteValue("config", "tb_user", tb_user.Text); + iniFile.WriteValue("config", "mtb_pwd", mtb_pwd.Text); + iniFile.WriteValue("config", "tb_path", tb_path.Text); + // iniFile.WriteValue("config", "dTP_time", dTP_time.Text); + iniFile.WriteValue("config", "language", this.language); + iniFile.WriteValue("config", "autoRun", checkBox1.Checked); + iniFile.WriteValue("config", "baseUrl", baseUrl.Text); + iniFile.WriteValue("config", "cameraUrl", cameraUrl.Text); + iniFile.WriteValue("config", "frontend_ip", gprs_ip.Text); + } + + #endregion + + private void Main_FormClosed(object sender, FormClosedEventArgs e) + { + saveConfig(); + + } + + //测试数据 + private void bt_test_Click_1(object sender, EventArgs e) + { + String msg = connectDB(); + if (msg.Trim() == "") + { + MessageBox.Show(Properties.Resources.数据库连接成功 + "!", Properties.Resources.提示信息); + mySqlConnection.Close(); + } + else + { + MessageBox.Show(Properties.Resources.数据库连接失败 + "! \r\n" + + connString + "\r\n" + + msg , Properties.Resources.提示信息); + } + } + + + //数据库连接测试 + private String connectDB() + { + String msg = ""; + // SQL server 连接信息 + // connString = "Data Source=" + tb_Host.Text + + // ";Initial Catalog=" + tb_db.Text + + // ";User id=" + tb_user.Text + + // ";Password=" + mtb_pwd.Text ; + // Console.WriteLine(connString); + // Sqlconn = new SqlConnection(connString); + + // MySQL 连接信息 + String connectStr = "server=" + tb_Host.Text + + ";port=3306;user=" + tb_user.Text + + ";password=" + mtb_pwd.Text + + ";database=" + tb_db.Text + ";"; + mySqlConnection = new MySqlConnection(connectStr); + try + { + mySqlConnection.Open(); + + } + catch (Exception ex) + { + msg = ex.Message; + } + return msg; + } + + + //参数生效 + private void btapply_Click(object sender, EventArgs e) + { + //需要关闭服务 + if (MessageBox.Show(Properties.Resources.请确认服务是否已经关闭 + "?", Properties.Resources.提示信息, MessageBoxButtons.YesNo,MessageBoxIcon.Question) == DialogResult.No) + { + return; + } + + //配置java环境变量 ----------------------------------------------------------------------------------------------------------------- + /*try + { + setJavaParameter(); + log("设置JAVA环境变量完成!"); + } + catch(Exception ex) + { + log("设置JAVA环境变量时,出现异常:" + ex.Message); + }*/ + //tomcat -------------------------------------------------------------------------------------------------------------------------------- + String tempPath; + if (bit64) + tempPath = parentPath + "\\apache-tomcat\\webapps\\" + webName + "\\WEB-INF\\applicationContext.xml"; + else + tempPath = parentPath + "\\apache-tomcat\\webapps\\" + webName + "\\WEB-INF\\applicationContext.xml"; + log(tempPath); + XmlDocument dom = new XmlDocument(); + dom.Load(tempPath); + String strValue; + foreach (XmlNode tempNode in dom.ChildNodes[1].ChildNodes[1]) + { + Console.WriteLine("============" + tempNode); + if (tempNode.Attributes == null) + { + continue; + } + strValue = tempNode.Attributes.GetNamedItem("name").InnerText; + if (strValue == "url") + { + // tempNode.Attributes.GetNamedItem("value").Value = getUTF8String("jdbc:sqlserver://" + tb_Host.Text.Trim() + ":1433;databasename=" + tb_db.Text.Trim()); + tempNode.Attributes.GetNamedItem("value").Value = getUTF8String("jdbc:mysql://" + tb_Host.Text.Trim() + ":3306/" + tb_db.Text.Trim() + "?useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true"); + continue; + } + else if (strValue == "username") + { + tempNode.Attributes.GetNamedItem("value").Value = getUTF8String(tb_user.Text.Trim()); + continue; + } + else if (strValue == "password") + { + + tempNode.Attributes.GetNamedItem("value").Value = getUTF8String(mtb_pwd.Text.Trim()); + continue; + } + + } + + dom.Save(tempPath); + + // 修改 hibernate 事务配置文件 + String hibernateConfigPath = parentPath + "\\apache-tomcat\\webapps\\" + webName + "\\WEB-INF\\classes\\hibernate.cfg.xml"; + XmlReaderSettings settings = new XmlReaderSettings() { + ProhibitDtd = false, + XmlResolver = null + }; + XmlDocument hibernateDom = new XmlDocument(); + XmlReader xmlReader = XmlReader.Create(hibernateConfigPath, settings); + // hibernateDom.Load(hibernateConfigPath); + hibernateDom.Load(xmlReader); + + String configValue; + foreach (XmlNode configNode in hibernateDom.ChildNodes[2].ChildNodes[0]) + { + // Console.WriteLine("============" + configNode); + if (configNode.Attributes == null) + { + continue; + } + if (configNode.Attributes.GetNamedItem("name") == null) + { + continue; + } + + configValue = configNode.Attributes.GetNamedItem("name").InnerText; + if (configValue == "hibernate.connection.url") + { + configNode.InnerText = getUTF8String("jdbc:mysql://" + tb_Host.Text.Trim() + ":3306/" + tb_db.Text.Trim()); + continue; + } + + if (configValue == "hibernate.connection.password") + { + configNode.InnerText = getUTF8String(mtb_pwd.Text.Trim()); + continue; + } + + if (configValue == "hibernate.connection.username") + { + configNode.InnerText = getUTF8String(tb_user.Text.Trim()); + continue; + } + + if (configValue == "hibernate.default_schema") + { + configNode.InnerText = tb_db.Text.Trim(); + continue; + } + } + xmlReader.Close(); + hibernateDom.Save(hibernateConfigPath); + + //事件服务 -------------------------------------------------------------------------------------------------------------------------------- + tempPath = parentPath + "\\GPRS-Service\\system.ini"; + INIFile iniFileGPRS = new INIFile(tempPath); + + // [system] 配置 + /*IPAddress ipAddr = Dns.Resolve(Dns.GetHostName()).AddressList[0];//获得当前IP地址 + iniFileGPRS.WriteValue("system", "host", ipAddr.ToString());*/ + + // [config] 配置 + iniFileGPRS.WriteValue("config", "server", tb_Host.Text.Trim()); + iniFileGPRS.WriteValue("config", "dbname", tb_db.Text.Trim()); + iniFileGPRS.WriteValue("config", "user", tb_user.Text.Trim()); + iniFileGPRS.WriteValue("config", "pwd", mtb_pwd.Text.Trim()); + iniFileGPRS.WriteValue("config", "language", this.language); + + // [Connection] 配置 + /*iniFileGPRS.WriteValue("Connection", "DBHost", tb_Host.Text); + iniFileGPRS.WriteValue("Connection", "DBPWD", mtb_pwd.Text); + iniFileGPRS.WriteValue("Connection", "DataBase", tb_db.Text);*/ + log("抄表事件服务参数配置完成!"); + + //前置机 -------------------------------------------------------------------------------------------------------------------------------- + try + { + tempPath = parentPath + "\\Release\\conn.properties"; + FileStream aFile = new FileStream(tempPath, FileMode.Create); + StreamWriter sw = new StreamWriter(aFile); + sw.WriteLine("driver = com.mysql.jdbc.Driver"); + sw.WriteLine("url = jdbc:mysql://" + tb_Host.Text.Trim() + ":3306/" + tb_db.Text.Trim() + "?connectTimeout=60&socketTimeout=6000&useSSL=false"); + sw.WriteLine("user = " + tb_user.Text.Trim()); + sw.WriteLine("pwd = " + mtb_pwd.Text.Trim()); + + sw.WriteLine("language = " + this.language); + sw.WriteLine("opcControl = false"); + sw.WriteLine("MControlTiming15 = false"); + sw.WriteLine("MControlTiming60 = false"); + sw.WriteLine("ForWard485 = false"); + sw.WriteLine("LampTiming = false"); + sw.WriteLine("LampDay3761Timing =false"); + sw.WriteLine("TerminalDay3761Timing =false"); + sw.WriteLine("AnalysisOfTunnelElectricity=true"); + sw.Close(); + + /*String releasePath = parentPath + "\\Release\\conn.properties"; + String[] datas = Main.load(releasePath); + + if (datas != null) + { + StringBuilder sb = new StringBuilder(); + for (int c = 0; c < datas.Length; c++) + { + if (datas[c].Trim() == "") + { + continue; + } + if (datas[c].StartsWith("driver")) + { + datas[c] = "driver = com.mysql.jdbc.Driver"; + } + if (datas[c].StartsWith("url")) + { + datas[c] = "url = jdbc:mysql://" + tb_Host.Text.Trim() + ":3306/" + tb_db.Text.Trim() + + "?connectTimeout=60&socketTimeout=6000&useSSL=false"; + } + if (datas[c].StartsWith("user")) + { + datas[c] = "user = " + tb_user.Text.Trim(); + } + if (datas[c].StartsWith("pwd")) + { + datas[c] = "pwd = " + mtb_pwd.Text.Trim(); + } + if (datas[c].StartsWith("language")) + { + datas[c] = "language = " + this.language; + } + sb.Append(datas[c].Trim()).Append(System.Environment.NewLine); + } + File.WriteAllText(releasePath, sb.ToString(), System.Text.Encoding.UTF8); + }*/ + + log("GPRS前置机参数配置完成!"); + } + catch (Exception ex) + { + MessageBox.Show(Properties.Resources.配置抄表服务参数时出现异常 + ":\r\n" + ex.Message.ToString()); + return; + } + + MessageBox.Show(Properties.Resources.参数已生效 + "," + Properties.Resources.请重启服务 + "!",Properties.Resources.提示信息); + } + + public static string[] load(string file) + { + SortedList list = new SortedList(); + string content = null; + try + { + content = File.ReadAllText(file, System.Text.Encoding.UTF8); + } + catch (Exception e) + { + return null; + } + return content.Split('\n'); + + } + + private string getUTF8String(string s) + { + return s; + } + + private void log(String str) + { + Console.WriteLine(str); + } + private void listBox1_SelectedIndexChanged(object sender, EventArgs e) + { + + } + + private void Main_FormClosing(object sender, FormClosingEventArgs e) + { + if (Sqlconn != null) + { + if (Sqlconn.State == System.Data.ConnectionState.Open) + { + Sqlconn.Close(); + } + } + } + + private void bt_choose_Click_1(object sender, EventArgs e) + { + FolderBrowserDialog dlgOpenFolder = new FolderBrowserDialog(); + dlgOpenFolder.SelectedPath = Environment.CurrentDirectory; + dlgOpenFolder.ShowNewFolderButton = true; + if (dlgOpenFolder.ShowDialog(this) == DialogResult.OK) + { + tb_path.Text = dlgOpenFolder.SelectedPath; + } + } + + private void bt_createtask_Click(object sender, EventArgs e) + { + if (connectDB().Trim().Length > 0) + { + MessageBox.Show(Properties.Resources.请设置正确的数据库参数 + "!",Properties.Resources.提示信息); + return; + } + + String backupPath = tb_path.Text.Replace("\\", "/"); + String startTime = dTP_time.Text.Replace(" ", "T"); + + // 备份 mysql 数据库 + String batPath = parentPath + "\\DB\\mysql_backup.bat"; + String[] datas = Main.load(batPath); + + if (datas != null) + { + StringBuilder sb = new StringBuilder(); + for (int c = 0; c < datas.Length; c++) + { + if (datas[c].Trim() == "") + { + continue; + } + if (datas[c].Contains("mysql_backup")) + { + datas[c] = "mysqldump -u" + tb_user.Text.Trim() + " -p" + mtb_pwd.Text.Trim() + " " + tb_db.Text.Trim() + + " -R -E > " + backupPath + "/mysql_backup_%yMd%-%hms%.sql"; + } + + sb.Append(datas[c].Trim()).Append(System.Environment.NewLine); + } + File.WriteAllText(batPath, sb.ToString(), System.Text.Encoding.UTF8); + } + + // 清理 7 天前的备份脚本 + String cleanPath = parentPath + "\\DB\\mysql_backup_clean.bat"; + String[] cleanDatas = Main.load(cleanPath); + + if (cleanDatas != null) + { + StringBuilder sb = new StringBuilder(); + for (int c = 0; c < cleanDatas.Length; c++) + { + if (cleanDatas[c].Trim() == "") + { + continue; + } + if (cleanDatas[c].Contains("forfiles")) + { + cleanDatas[c] = "forfiles /p \"" + tb_path.Text + "\" /m *.sql /d -7 /c \"cmd /c del @path\""; + } + + sb.Append(cleanDatas[c].Trim()).Append(System.Environment.NewLine); + } + File.WriteAllText(cleanPath, sb.ToString(), System.Text.Encoding.UTF8); + } + + try + { + SchTaskExt.CreateTaskScheduler("admin", "backup", batPath, "PT24H", startTime); + SchTaskExt.CreateTaskScheduler("admin", "backup_clean", cleanPath, "PT24H", startTime); + } + catch (Exception ex) + { + // MessageBox.Show(ex.Message.Trim()); + return; + } + + /*String strtime = dTP_time.Text.Replace(":",""); + + //删除 sql + String sql1 = "IF OBJECT_ID ('dbo.proc_DBMaintaince') IS NOT NULL " + + "DROP PROCEDURE dbo.proc_DBMaintaince "; + + //备份数据库 sql + String sql2 = "CREATE PROCEDURE proc_DBMaintaince AS " + + "BEGIN " + + "DECLARE @sql VARCHAR(1000) " + + "SET @sql='backup database " + tb_db.Text + " to disk=''" + tb_path.Text + "\\' +rtrim(convert(CHAR(10),getdate(),112))+'.bak''' " + + "EXEC(@sql) " + + "Print 'Backup operation is completed' " + + "SET @sql='del " + tb_path.Text + "\\' +rtrim(convert(CHAR(10),getdate()-30,112)) +'.bak' " + + "EXEC master..xp_cmdshell @sql " + + "Print 'Delete operation to complete' " + + "End "; + //备份任务 sql + String sql3 = + "BEGIN TRANSACTION " + + " DECLARE @JobID BINARY(16) DECLARE @ReturnCode INT " + + " SELECT @ReturnCode = 0 " + + " SELECT @JobID = job_id FROM msdb.dbo.sysjobs WHERE (name = N'SAMR database backup') " + + " IF (@JobID IS NOT NULL) " + + " BEGIN " + + " IF (EXISTS (SELECT * FROM msdb.dbo.sysjobservers WHERE (job_id = @JobID) AND (server_id <> 0))) " + + " BEGIN " + + " RAISERROR (N'Unable to import the homework“SAMR database backup”,Task name repetition。', 16, 1) " + + " GoTo QuitWithRollback " + + " End Else " + + " EXECUTE msdb.dbo.sp_delete_job @job_name = N'SAMR database backup' " + + " SELECT @JobID = NULL " + + " End " + + " EXECUTE @ReturnCode = msdb.dbo.sp_add_job @job_id = @JobID OUTPUT , @job_name = N'SAMR database backup', @owner_login_name = N'sa', @description = N'No description available。', @category_name = N'Database Maintenance', @enabled = 1, @notify_level_email = 0, @notify_level_page = 0, @notify_level_netsend = 0, @notify_level_eventlog = 2, @delete_level= 0 " + + " IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback " + + " EXECUTE @ReturnCode = msdb.dbo.sp_add_jobstep @job_id = @JobID , @step_id = 1, @step_name = N'No.1', @command = N'EXEC proc_DBMaintaince', @database_name = N'samr', @server = N'', @database_user_name = N'', @subsystem = N'TSQL', @cmdexec_success_code = 0, @flags = 4, @retry_attempts = 0, @retry_interval = 0, @output_file_name = N'', @on_success_step_id = 0, @on_success_action = 1, @on_fail_step_id = 0, @on_fail_action = 2 " + + " IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback " + + " EXECUTE @ReturnCode = msdb.dbo.sp_update_job @job_id = @JobID, @start_step_id = 1 " + + " IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback " + + " EXECUTE @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id = @JobID, @name = N'No.1-1', @enabled = 1, @freq_type = 4, @active_start_date = 20140101, @active_start_time = " + strtime + ", @freq_interval = 1, @freq_subday_type = 1, @freq_subday_interval = 0, @freq_relative_interval = 0, @freq_recurrence_factor = 0, @active_end_date = 99991231, @active_end_time = 235959 " + + " IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback " + + " EXECUTE @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @JobID, @server_name = N'(local)' " + + " IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback " + + "COMMIT TRANSACTION " + + " GoTo EndSave " + + "QuitWithRollback: " + + " IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION " + + "EndSave: "; + + try + { + thiscommand = new SqlCommand(); + thiscommand.Connection = Sqlconn; + + log(sql1); + thiscommand.CommandText = sql1; + thiscommand.ExecuteNonQuery(); + thiscommand.Dispose(); + + log(sql2); + thiscommand.CommandText = sql2; + thiscommand.ExecuteNonQuery(); + thiscommand.Dispose(); + + log(sql3); + thiscommand.CommandText = sql3; + thiscommand.ExecuteNonQuery(); + thiscommand.Dispose(); + Sqlconn.Close(); + } + catch (Exception ex) + { + MessageBox.Show(Properties.Resources.数据库备份失败 + "!" + ex.Message, Properties.Resources.提示信息); + return; + }*/ + MessageBox.Show(Properties.Resources.数据库备份任务创建成功 + "!"); + + } + private void bt_backup_Click(object sender, EventArgs e) + { + if (connectDB().Trim().Length > 0) + { + MessageBox.Show(Properties.Resources.请设置正确的数据库参数 + "!", Properties.Resources.提示信息); + return; + } + /*String sqlBackUp = "declare " + + "@filename nvarchar(100) set @filename='" + tb_path.Text + "\\'+convert(char(6),getdate(),112)+'.bak' " + + " backup database " + tb_db.Text + " to disk= @filename ";*/ + + try + { + /*thiscommand = new SqlCommand(); + thiscommand.Connection = Sqlconn; + thiscommand.CommandText = sqlBackUp; + thiscommand.ExecuteNonQuery(); + + thiscommand.Dispose(); + Sqlconn.Close();*/ + + Process p = new Process(); + //设置要启动的应用程序 + p.StartInfo.FileName = "cmd.exe"; + //是否使用操作系统shell启动 + p.StartInfo.UseShellExecute = false; + // 接受来自调用程序的输入信息 + p.StartInfo.RedirectStandardInput = true; + //输出信息 + p.StartInfo.RedirectStandardOutput = true; + // 输出错误 + p.StartInfo.RedirectStandardError = true; + //不显示程序窗口 + p.StartInfo.CreateNoWindow = true; + //启动程序 + p.Start(); + + String backupPath = tb_path.Text.Replace("\\", "/"); + + String sqlPath = backupPath + "/mysql_backup.sql"; + //向cmd窗口发送输入信息 + p.StandardInput.WriteLine("mysqldump --no-data -u" + tb_user.Text.Trim() + " -p" + mtb_pwd.Text.Trim() + " --databases samr > " + sqlPath); + + p.StandardInput.AutoFlush = true; + + //获取输出信息 + // string strOuput = p.StandardOutput.ReadToEnd(); + //等待程序执行完退出进程 + // p.WaitForExit(); + p.Close(); + + } + catch (Exception ex) + { + MessageBox.Show(Properties.Resources.数据库备份失败 + "!" + + ex.Message + // + "\r\n " + sqlBackUp + ,Properties.Resources.提示信息); + return; + } + MessageBox.Show(Properties.Resources.数据库备份成功 + "!"); + } + + + private void setJavaParameter() + { + string jdkPath = string.Empty; + if (bit64) + { + jdkPath = parentPath + "\\Java\\jdk1.7_64"; + } + else + { + jdkPath = parentPath + "\\Java\\jdk1.7_32"; + } + + SysEnvironment sysEnvironment = new SysEnvironment(); + log(jdkPath); + //JAVA_HOME + sysEnvironment.SetSysEnvironment("JAVA_HOME", jdkPath); + //CLASSPATH + sysEnvironment.SetSysEnvironment("CLASSPATH", "%JAVA_HOME%\\lib;%JAVA_HOME%\\lib\\dt.jar;%JAVA_HOME%\\lib\\tools.jar;"); + //Path + sysEnvironment.SetPathAfter("%JAVA_HOME%\\bin"); + + log("JAVA_HOME"); + log(sysEnvironment.GetSysEnvironmentByName("JAVA_HOME")); + log("CLASSPATH"); + log(sysEnvironment.GetSysEnvironmentByName("CLASSPATH")); + log("PATH"); + log(sysEnvironment.GetSysEnvironmentByName("PATH")); + + } + + private void button1_Click(object sender, EventArgs e) + { + setJavaParameter(); + } + + private void checkBox1_CheckedChanged(object sender, EventArgs e) + { + + + } + /// + /// 取消开机启动,删除注册表中的值 + /// + public void CancleAutoRun() + { + try + { + string filepath = Assembly.GetExecutingAssembly().Location; + string runName = Path.GetFileNameWithoutExtension(filepath); + RegistryKey hkml = Registry.LocalMachine; + RegistryKey runKeys = hkml.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true); + runKeys.DeleteValue(runName); + } + catch + { } + } + /// + /// 写进注册表,以便开机启动 + /// + private void SetAutoStar() + { + try + { + string filepath = Assembly.GetExecutingAssembly().Location; + string runName = Path.GetFileNameWithoutExtension(filepath); + + RegistryKey hkml = Registry.LocalMachine; + RegistryKey runKey = hkml.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true); + runKey.SetValue(runName, filepath); + runKey.Close(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message); + } + + } + + private void Main_Shown(object sender, EventArgs e) + { + if (autoRun) //自动运行 + { + timer1.Enabled = true; + + // startServiceAll(); + // MessageBox.Show("autoRun!!", "提示", MessageBoxButtons.OK); + + } + + } + + private void checkBox1_Click(object sender, EventArgs e) + { + try + { + if (checkBox1.Checked) + //添加到注册表中 + { + SetAutoStar(); + //保存参数 + } + else + //删除注册表信息 + { + CancleAutoRun(); + } + String fileName = Directory.GetCurrentDirectory(); + fileName += "\\system.ini"; + INIFile iniFile = new INIFile(fileName); + iniFile.WriteValue("config", "autoRun", checkBox1.Checked); + } + catch + { + } + } + + private void cb1_CheckedChanged(object sender, EventArgs e) + { + if (cb1.Checked) + { + this.language = "en"; + } + else + { + this.language = ""; + } + ApplyResource(); + saveConfig(); + } + + private void ApplyResource() + { + + Thread.CurrentThread.CurrentUICulture = new CultureInfo(this.language); + res = new ComponentResourceManager(typeof(Main)); + foreach (Control ctl in Controls) + { + res.ApplyResources(ctl, ctl.Name); + } + res.ApplyResources(this, "$this"); + + res.ApplyResources(bt_start, bt_start.Name); + res.ApplyResources(bt_stop, bt_stop.Name); + res.ApplyResources(label1, label1.Name); + res.ApplyResources(label2, label2.Name); + res.ApplyResources(label3, label3.Name); + res.ApplyResources(label5, label5.Name); + res.ApplyResources(bt_test, bt_test.Name); + res.ApplyResources(btapply, btapply.Name); + res.ApplyResources(label4, label4.Name); + res.ApplyResources(label6, label6.Name); + res.ApplyResources(label7, label7.Name); + res.ApplyResources(bt_backup, bt_backup.Name); + res.ApplyResources(bt_createtask, bt_createtask.Name); + res.ApplyResources(cb1, cb1.Name); + res.ApplyResources(checkBox1, checkBox1.Name); + res.ApplyResources(baseurl_label, baseurl_label.Name); + res.ApplyResources(groupBox6, groupBox6.Name); + res.ApplyResources(cameraUrl_label, cameraUrl_label.Name); + res.ApplyResources(groupBox4, groupBox4.Name); + res.ApplyResources(button1, button1.Name); + res.ApplyResources(button4, button4.Name); + res.ApplyResources(label10, label10.Name); + res.ApplyResources(label8, label8.Name); + res.ApplyResources(mysql_install, mysql_install.Name); + res.ApplyResources(java_env_setting, java_env_setting.Name); + } + + private void timer1_Tick(object sender, EventArgs e) + { + startServiceAll(); + } + + private void label11_Click(object sender, EventArgs e) + { + + } + + private void button1_Click_1(object sender, EventArgs e) + { + if (baseUrl.Text.Trim() == "") + { + MessageBox.Show(Properties.Resources.请设置服务器地址 + "!"); + return; + } + + if (cameraUrl.Text.Trim() == "") + { + MessageBox.Show(Properties.Resources.请设置流媒体地址 + "!"); + return; + } + String frontPath = parentPath + "\\nginx-1.18.0\\html\\mysql\\serverconfig.json"; + String json = File.ReadAllText(frontPath, Encoding.Default); + /*JObject jOject = JObject.Parse(json); + jOject["baseUrl"] = baseUrl.Text.Trim();//替换需要的文件 + jOject["cameraUrl"] = cameraUrl.Text.Trim(); + string convertString = Convert.ToString(jOject);//将json装换为string*/ + + StringBuilder sb = new StringBuilder(); + sb.Append("{\"baseUrl\":\"http://" + baseUrl.Text.Trim() + "/WebContent\"," + + "\"cameraUrl\":\"http://" + cameraUrl.Text.Trim() + "/nvc/LiveNVR001/api/v1\",\"qrcode\":true}").Append(System.Environment.NewLine); + File.WriteAllText(frontPath, sb.ToString(), System.Text.Encoding.UTF8); + + // 修改 nginx.conf 配置 + String nginxPath = parentPath + "\\nginx-1.18.0\\conf\\nginx.conf"; + String nginxTempPath = parentPath + "\\nginx-1.18.0\\conf\\nginx-temp.conf"; + File.Copy(nginxPath, nginxTempPath, true); + + FileStream fsReader = new FileStream(nginxTempPath, FileMode.OpenOrCreate, FileAccess.Read); + StreamReader sr = new StreamReader(fsReader, Encoding.Default); + + FileStream fsWriter = new FileStream(nginxPath, FileMode.Create, FileAccess.Write); + StreamWriter ngSw = new StreamWriter(fsWriter, Encoding.Default); + + // String[] ips = baseUrl.Text.Trim().Split(':'); + String tempStr = ""; + string str = string.Empty; + while ((str = sr.ReadLine()) != null) + { + if (tempStr.Contains("WebContent")) + { + // str = "\t\t\tproxy_pass\t http://" + ips[0] + ":8081;"; + str = "\t\t\tproxy_pass\t http://" + baseUrl.Text.Trim() + ";"; + } + ngSw.WriteLine(str); + tempStr = str; + } + ngSw.Flush(); + ngSw.Close(); + sr.Close(); + + MessageBox.Show(Properties.Resources.保存前端连接参数成功 + "!"); + } + + private void button3_Click(object sender, EventArgs e) + { + MessageBox.Show("保存连接数据库信息成功!"); + } + + private void tb_db_TextChanged(object sender, EventArgs e) + { + + } + + private void mtb_pwd_MaskInputRejected(object sender, MaskInputRejectedEventArgs e) + { + + } + + private void button2_Click(object sender, EventArgs e) + { + Process proc = null; + try + { + String batPath = parentPath + "Java\\"; + string targetDir = string.Format(@batPath);//this is where testChange.bat lies + proc = new Process(); + proc.StartInfo.WorkingDirectory = targetDir; + proc.StartInfo.FileName = "installJDK.bat"; + //proc.StartInfo.Arguments = string.Format("10");//this is argument + //proc.StartInfo.CreateNoWindow = true; + //proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;//这里设置DOS窗口不显示,经实践可行 + proc.Start(); + proc.WaitForExit(); + } + catch (Exception ex) + { + Console.WriteLine("Exception Occurred :{0},{1}", ex.Message, ex.StackTrace.ToString()); + } + } + + private void button3_Click_1(object sender, EventArgs e) + { + Process proc = null; + try + { + String batPath = parentPath + "mysql-5.5.23\\"; + string targetDir = string.Format(@batPath);//this is where testChange.bat lies + proc = new Process(); + proc.StartInfo.WorkingDirectory = targetDir; + proc.StartInfo.FileName = "MySQL_install.bat"; + //proc.StartInfo.Arguments = string.Format("10");//this is argument + //proc.StartInfo.CreateNoWindow = true; + //proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;//这里设置DOS窗口不显示,经实践可行 + proc.Start(); + proc.WaitForExit(); + } + catch (Exception ex) + { + Console.WriteLine("Exception Occurred :{0},{1}", ex.Message, ex.StackTrace.ToString()); + } + } + + private void button4_Click(object sender, EventArgs e) + { + try + { + String tempPath = parentPath + "\\GPRS-Service\\system.ini"; + INIFile iniFileGPRS = new INIFile(tempPath); + + // [system] 配置 + iniFileGPRS.WriteValue("system", "host", gprs_ip.Text.Trim());// 设置 GPRS IP + + log("抄表事件服务参数配置完成!"); + } + catch (Exception ex) + { + MessageBox.Show(Properties.Resources.配置抄表服务参数时出现异常 + ":\r\n" + ex.Message.ToString()); + return; + } + MessageBox.Show(Properties.Resources.参数已生效 + "," + Properties.Resources.请重启服务 + "!", Properties.Resources.提示信息); + } + + private void textBox1_TextChanged(object sender, EventArgs e) + { + + } + + private void label8_Click(object sender, EventArgs e) + { + + } + } +} diff --git a/ManageTools/Main.en.resx b/ManageTools/Main.en.resx new file mode 100644 index 0000000..d5628df --- /dev/null +++ b/ManageTools/Main.en.resx @@ -0,0 +1,2177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 61, 25 + + + 英语 + + + 100, 25 + + + AutoExec + + + Stop service + + + Start service + + + Master station service + + + 61, 21 + + + Server: + + + 239, 41 + + + 85, 21 + + + Database: + + + 33, 80 + + + 48, 21 + + + User: + + + 238, 79 + + + 86, 21 + + + Password: + + + 87, 31 + + + Test + + + 87, 31 + + + Apply + + + Database connecting parameters + + + A key deployment + + + 126, 31 + + + Create tasks + + + 125, 137 + + + 126, 31 + + + Test backup + + + 254, 22 + + + Attention:Backup once a day + + + 83, 21 + + + Run time: + + + 49, 21 + + + path: + + + + AAABAAwAICACAAEAAQAwAQAAxgAAADAwEAABAAQAaAYAAPYBAAAgIBAAAQAEAOgCAABeCAAAEBAQAAEA + BAAoAQAARgsAADAwAAABAAgAqA4AAG4MAAAgIAAAAQAIAKgIAAAWGwAAEBAAAAEACABoBQAAviMAAICA + AAABACAAKAgBACYpAABISAAAAQAgAIhUAABOMQEAMDAAAAEAIACoJQAA1oUBACAgAAABACAAqBAAAH6r + AQAQEAAAAQAgAGgEAAAmvAEAKAAAACAAAABAAAAAAQABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD///8AAAAAAAAAAAAAH/gAAHAOAAHAA4ADCqDABgAIYAxSIjAJAIMwGMgWiBJihhgwYCSMJLqMJCD3 + /0Qq3+sUIP//RCoMMBQgrmVEKAbgDCKTSSQ0JcRMEIGRGBopBBgIgqFQBigUMAaCgWADKFTAAMIDAAB5 + XgAAH/gAAAAAAAAAAAD////////////gB///gAH//gAAf/wAAD/4AAAf8AAAD/AAAA/gAAAH4AAAB8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPgAAAH4AAAB/AAAA/4AAAP+AAAH/wA + AD//AAD//4AB///gB////////////ygAAAAwAAAAYAAAAAEABAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/wD/AP// + AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAP///4////8AAAAAAAAAAAAAAAAAAAAA//iIyMjIeI//AA + AAAAAAAAAAAAAAAAD/iHzs7OzszsiI/wAAAAAAAAAAAAAAAA/4zsfIyMjIyMzsj/8AAAAAAAAAAAAAD/ + h87IzsfOx87OyM7P/wAAAAAAAAAAAA/4zsjOyM7HzsjIzsjHj/AAAAAAAAAAAP+M7IyMjOyM7IzsjHzs + 5/8AAAAAAAAAD/jOyM7OzsjO3s7IzsjIzI/wAAAAAAAAD4zsjOyMjIzs7IyM7I7Ofsj/AAAAAAAA+OyM + 58jOzs58jOzsjOyMjOz/AAAAAAAP987IiOzn7IyOznfOfs//zn5/8AAAAAAPjnfs6I7HyOzsjOyM7I/4 + 7Hzo8AAAAAD/yM7Iz/h+zsjOyM5+yI/858jIjwAAAAD47OfOeIiMjOfn7Izsjv/sjO7OjwAAAAD4yM6M + 7Pj+53yMjs6M6PjI58jsj/AAAA/+7I7I5//4zn7OyOyOiMjs7OyOz/AAAA+MjsjsiO//iIiIiIiM/4iI + jo7I6PAAAA+OyOzo/4j/iP/////4/+//zsjsePAAAA+Ofsjs//j/+I/////oiI//5+yOyPAAAA+M5+yO + //iP/+////iP/v//fI7I7vAAAA/ozo7I///v/4j///j/iP//6M6OyPAAAA+OfOfs5ufo//5+zuj/5+zn + zufOjvAAAA986OyOjOfOj//OjI/47I5+js6OyPAAAA+O7I7s6Ofnj4iO7o/+fuznzo7I6IAAAA+OfuyO + jOfs6I/3eP+M545+jsjuyPAAAA+Od45+zo5+fv/+6Pjujs5+yO537/AAAA/47Ofn6M5+fo+IiP5+zo7I + 7sjs7/AAAAD47n7Ojufs6Oj/j45+jsjufo5+jwAAAAD47I6Ozo5+jO6O/+fs6O5+fs6OjwAAAAD/jufo + 5+zo7n7I+OyOjsjs6Ojs/wAAAAAPjn7O5+js6Ofvju6Ozo7o5+zv8AAAAAAP+Ojo5+fo5+eP547n6Ofn + 7o6P8AAAAAAA/+5+fn6O5+7o7ufo7n5+jOiPAAAAAAAAD4jo7o7n6Ofn6M6Ofo7n6OjwAAAAAAAAD/ju + fufo7Ojo7o7n6Ofo7o/wAAAAAAAAAP+Ojn5+jo7n6Ojn7n6OeP8AAAAAAAAAAA/46Oju6Ofo7n6Ofuju + j/AAAAAAAAAAAAD/+O547o7ufo7ujo6I/wAAAAAAAAAAAAAA/4jufujo6Ofo7oj/AAAAAAAAAAAAAAAA + D/+I6O5+7o7oiPjwAAAAAAAAAAAAAAAAAA//+IiOiOj4//AAAAAAAAAAAAAAAAAAAAAA////////AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP///n///wAA//+AAf//AAD//gAAf/8AAP/4 + AAAf/wAA//AAAAf/AAD/wAAAA/8AAP+AAAAB/wAA/wAAAAD/AAD+AAAAAH8AAP4AAAAAPwAA/AAAAAA/ + AAD4AAAAAB8AAPgAAAAAHwAA8AAAAAAPAADwAAAAAA8AAPAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAH + AADgAAAAAAcAAOAAAAAABwAA8AAAAAAPAADwAAAAAA8AAPAAAAAADwAA+AAAAAAfAAD4AAAAAB8AAPwA + AAAAPwAA/gAAAAB/AAD+AAAAAH8AAP8AAAAA/wAA/4AAAAH/AAD/wAAAA/8AAP/wAAAP/wAA//gAAB// + AAD//gAAf/8AAP//wAP//wAA////////AAD///////8AAP///////wAAKAAAACAAAABAAAAAAQAEAAAA + AAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA + /wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAD/+Pj//wAAAAAAAAAAAAD/jHzOzIiPAAAAAAAAAAD/jOznx87M6P8AAAAAAAAPjOyMfOfIyMyI8A + AAAAAA+IyM7OfOzs587P8AAAAAD/zs7Ix8jIyM7Izo8AAAAA9+yM7Ofs7OyM/sjPAAAAD4x+iHfOyMjs + 6Pjs6PAAAA/s7I/sjI7Od8j3yMiAAAD4yOzo+O7OjOzvjs7s/wAA+OyHyP/IfOjIiM6Mjn8AAPzozvj/ + j///+Pj/587PAAD+fn7/j/j//4iI/86OiAAA/Ozs/4j4//+Pj/+OyM8AAP6Hjn7o/+bs/+7OyO7oAAD2 + 7OfsjoiOiPjOjuyMjwAA+Ojsjs54+OiO6M6O7s8AAPjOfufo6PiP6M7oznjvAAD47n5+fs6IiO6Ofujs + /wAAD+js6Ozo7v6M5+fs6PAAAA+Ofozo7n+O6O5+fojwAAAA+Ojujo7o5+yOfo7vAAAAAA/s6O5+fn6O + 6Ofn/wAAAAAP+O5+jo7n6O5+7/AAAAAAAP+Ojufn6O5+jv8AAAAAAAAA+Ojuju6Ojo8AAAAAAAAAAA/4 + jujo6I/wAAAAAAAAAAAAD//4+P/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// + /////////+AH//+AAf/+AAB//AAAP/gAAB/wAAAP8AAAD+AAAAfgAAAHwAAAA8AAAAPAAAADwAAAA8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gAAA/4AAAf/AAAP/8AAP//gAH//+AH//// + ////////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA + D4iIgAAAAA+MzM7I8AAA/Ozo7IzvAACOjIzOz8gAD8eI7neOjPAI7I+IjojmgAjo+I/4j8iACM7ujn/n + 7oAI58iIjn588A/ujuiOzo7wAI7n6Ojo6AAA+OjufufvAAAPjn7o6PAAAAAPiIjwAAAAAAAAAAAAAP// + AAD4HwAA4AcAAMADAADAAwAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAwAMAAMADAADgBwAA+B8AAP// + AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAABAAAAAQAAAAAAAP9hMQD/ZTEA/2kxAP9t + MQD/bTkA/3ExAP91MQD/eTEA/30xAP9xOQD/fTkA/3FCAP91SgD/dVIA/31aAP+CMQD/hjEA/4I5AP+G + OQD3ijkA9445APeSOQD3ljkA95o5APeeOQD3ojkA96Y5APeqOQD3rjkA7745APeyOQD3tjkA97o5APe+ + OQDvwzkA78c5AP+CQgD/hkoA/45KAPeSQgD3mkIA955CAP+WSgD/glIA/4ZaAP+OWgD3llIA/5pSAP+S + WgD/mloA96JCAPeuQgD3okoA96ZKAPe2QgD3ukIA975CAPeySgD3tkoA975KAPeuUgD/oloA975SAPe2 + WgD3uloA975aAP+GYwD/jmsA95pjAP+eawD/jnMA/6ZjAPemawD/qmsA/65rAPeyYwD3tmMA97pjAPey + awD3tmsA97prAP+mcwD3rnMA97ZzAP+ycwD/tnMA975zAP+yewD3unsA9757AP+6ewD/vnsA78NCAO/H + QgDvy0IA789CAO/LSgDvz0oA98tKAO/TQgDv10IA79tCAO/fQgDv20oA98dSAPfPUgD3y1oA7+NCAO/j + SgDv41oA98djAPfTYwD302sA98NzAPfLcwD3w3sA98d7APfTcwD313MA7+NjAO/rawDv43MA7+t7AO/v + ewD343MA9+t7APeijAD3qowA966MAP+ujAD3voQA/7aMAP+6jAD3spQA/7qUAP++lAD3tpwA97alAPe6 + pQD3uq0A976tAPe+tQD3y4QA98+EAP/DjAD/x4wA98uMAPfThAD314wA98eUAP/DlAD/x5QA98+UAP/D + nAD/y5wA99OUAPfblAD305wA99ecAPfbnAD364QA9++MAPfDpQD3x6UA98ulAP/LpQD/z6UA98OtAPfX + pQD/16UA/9ulAP/XrQD/360A98O1APfHtQD3y7UA98+1AP/PtQD/07UA/9e1AP/btQD/37UA99O9APfX + vQD/270A/9+9APfnpQD366UA9+utAPfzrQD357UA/+O1APfnvQD/470A9+u9APfvvQD/670A9/O9APfb + xgD/38YA99fOAPfbzgD/384A99vWAPff1gD348YA9+fGAP/jxgD368YA9+/GAPfnzgD/684A9/PGAPf3 + xgD3984A//fOAO/j3gD/49YA/+fWAP/r1gD/694A/+/eAP/31gD/894A7+fnAO/r7wDv7+8A9+/nAP/r + 5wD37+8A//PnAP/35wD38+8A//fvAP/77wD38/cA9/f3AP/39wD/+/cA///3AP/7/wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7e0AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7e3j4+Pj4+Pj4+Pj7e0AAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAO3j4+Guf0cPDg4PRH+O2ePj7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADt + 4+OMQwEBAQEBAQEBAQEBAUOM4+PtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOPjig0BAQEDAQEDAQED + AQEDAQEBDIrj4+0AAAAAAAAAAAAAAAAAAAAAAAAAAADt48wtAQEDAwEDAQMBAwEDAQMBAwMBAwEsyePt + AAAAAAAAAAAAAAAAAAAAAAAAAO3jqAoDAwMDAwMDAwMDAwMDAwMDAwMDAwMDBYvj7QAAAAAAAAAAAAAA + AAAAAAAA7eOGAwMDBgMDBgMGAwYDBgMGAwYDAwYDAwYDAwaA4+0AAAAAAAAAAAAAAAAAAADt44kDBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGgOPtAAAAAAAAAAAAAAAAAADjrgYIBggIBggGCAYIBggGCAYI + BggGCAYIBggGCAYIBqPj7QAAAAAAAAAAAAAAAOPMEggICCYICAgICAgICAgICAgICAgICAgICDGCJQgI + CAvK7QAAAAAAAAAAAAAA7elFCBAIEEaICBAIEAgQCBAIEAgQCBAIEAgQC+X/sggIEAgx5u0AAAAAAAAA + AAAA7a8IEAgQCBLvmggQCBAIEAgQCBAIEAgQCBAIUv//hAgQCBAIo+0AAAAAAAAAAADt7S8SEBISEhDL + /4gQEBISEBISEBISEBISEBIQy//aEhASEhASJuntAAAAAAAAAADttxARERERERCIhYiFEBERERERERER + EREREREw/+8yERERERAREbHtAAAAAAAAAADtUxQUFBQUFBQr3f/vMBQUFBQUFBQUFBQUFBRY/4gUFBQU + FBQUFEnt7QAAAAAAAO3mKBQUFhQUFhQW2v//uhQWFhQWFBYUFhQWFEuzSBQWFBYWFBYWFhTk7QAAAAAA + AO3HFhYWFhYWFqenVf///0uIp6enp6enp6enPt7/p4inpxYWFhYWFha47QAAAAAAAO2jFxcXFhcXF/// + s7T//92S///////////ckv/vVf///ykWFxYXFheW7QAAAAAAAO2DFxcZFxkXF////1Xv//+I3f////// + //9bm5Kb0P///ykXGRcXGRda7QAAAAAAAO1UFxkXGRcZGf///9yb///vXP///////7qs/+pQ/////zYX + GRcZFxlQ7QAAAAAAAO1QGRkZGRkZM+/v7++S5///tMLv7+/v71r//7TC7+/v7zYZGRkZGRlM7QAAAAAA + AO1QGxkbGRsZGRkZGRkZdf///0wZGRkZGdD/7z0ZGRkZGRkZGxkbGRlM7QAAAAAAAO1XGxsbGxsbHRsb + HRsbG9T//9wbGxsbQf//pxsbGxsbGxsbGxsbGxtR7QAAAAAAAO2TGx0bHRsdGx0bHRsdG07/3JlXHRsd + wv/qNxsbHRsdGx0bHRsdHR117QAAAAAAAO2pHR0dHR0dHR0dHR0dHR11tv/qOx1B//+PGx0dHR0dHR0d + HR0dHR2f7QAAAAAAAO3THR0hHSEdIR0hHSEdIR1C7///mR3A/9QdISEdISEhHSEhIR0hHR3P7QAAAAAA + AP/tOx0hHR0dHSEdHR0dHSEdq+qfrWn//0EdHR0hHR0dIR0dHSEdITjp/wAAAAAAAADtlCEdISEhIR0h + ISEhIR0hOJTv6q3/nyEhISEhISEhISEhISEdIXPtAAAAAAAAAADtzyEhISEhISEhISEhISEhITuVb+/o + OSEhISEhISEhISEhISEhIcHtAAAAAAAAAAD/7msiHiIhIh4iHiEiHiIiHiIinf92HiIiHiEiIR4hIh4h + Ih4iae//AAAAAAAAAAAA/9EeHiQeJB4kHiQeJB4kHiRe6sUeHh4kHiQeJB4kHh4kHh4kv/8AAAAAAAAA + AAAA//92X19fXyRfJF9fHl9fJF926mNfJF9fJF9fXiRfXyRfXyRx7/8AAAAAAAAAAAAAAP/nYl9fX19f + X19fX19fX19qcF9fX19fX19fX19fX19fX2Le/wAAAAAAAAAAAAAAAAD/0WBfYGBfYF9gYGBgX2BgYGBg + YGBfYF9gX2BgX2BgX8H/AAAAAAAAAAAAAAAAAAD//71gYGBlYGVgYGVgYGVgYGVgYGBlYGBlYGBgZWBg + vP//AAAAAAAAAAAAAAAAAAAA//+9ZWVgZWBlYGVgZWBlYGVgZWVgZWBlYGVlYGW8//8AAAAAAAAAAAAA + AAAAAAAAAP//0mhlZWVlZWVlZWVlZWVlZWVlZWVlZWVlaMb//wAAAAAAAAAAAAAAAAAAAAAAAAD//+d9 + ZWdlZ2VnZWdlZ2VnZWdlZ2VnZWd66P//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//0nhnZ2dnZ2dnZ2dn + Z2dnZ2dnbsb//wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////XoW1sbGxsbGxsbGxsbX7W////AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+/fvqJ8eXl8or7Y7////wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///////wAA////////AAD///5///8AAP//gAH//wAA//4AAH//AAD/+AAAH/8AAP/w + AAAH/wAA/8AAAAP/AAD/gAAAAf8AAP8AAAAA/wAA/gAAAAB/AAD+AAAAAD8AAPwAAAAAPwAA+AAAAAAf + AAD4AAAAAB8AAPAAAAAADwAA8AAAAAAPAADwAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAH + AADgAAAAAAcAAPAAAAAADwAA8AAAAAAPAADwAAAAAA8AAPgAAAAAHwAA+AAAAAAfAAD8AAAAAD8AAP4A + AAAAfwAA/gAAAAB/AAD/AAAAAP8AAP+AAAAB/wAA/8AAAAP/AAD/8AAAD/8AAP/4AAAf/wAA//4AAH// + AAD//8AD//8AAP///////wAA////////AAD///////8AACgAAAAgAAAAQAAAAAEACAAAAAAAAAQAAAAA + AAAAAAAAAAEAAAABAAAAAAAA/10xAP9lMQD/aTEA/20xAP9lOQD/aTkA/205AP91MQD/eTEA/30xAP91 + OQD/dUIA/3lCAP99QgD/fVIA/4YxAP+KMQD/hjkA9445AP+KOQD3kjkA95Y5APeaOQD3njkA96I5APem + OQD3qjkA9645APeyOQD3tjkA97o5APe+OQDvwzkA/4pCAPeSQgD3lkIA95pCAPeeQgD/glIA/45SAP+O + WgD/klIA/5ZSAPeiQgD3pkIA97JCAPeySgD3sloA/4JjAP+GYwD/pmsA96prAPe2YwD3rnMA/6pzAP+m + ewDvy0IA789CAPfDSgDv00IA79tCAO/fQgDv00oA79dKAO/fSgDv01IA79dSAO/fUgDv40IA7+dKAO/n + UgD3w2MA98trAO/fYwD302MA98dzAPfLewD313sA9+t7AP+uhAD3qowA/7qMAP++jAD3qpQA97aUAP+2 + lAD3spwA97qcAP++nAD3x4QA98uMAPfPjAD334wA/8OUAP/HnAD/y5wA99eUAP/TnAD325wA98elAP/L + pQD/z6UA98utAP/TpQD336UA/9ulAP/TrQD/160A99+tAP/frQD/170A/9u9AP/fvQD346UA9++lAP/j + rQD3760A9+O1AP/jvQD/670A9/O1APfPxgD308YA99fOAPfbzgD329YA99/WAP/jxgD/484A9+fWAP/r + 1gD/79YA9+feAPfr3gD/794A//PWAP/z3gD/994A//veAO/j5wDv5+cA7+vnAO/r7wDv7+8A9+vnAPfv + 5wD/7+cA9+/vAPfz5wD/8+cA//fnAPf37wD/9+8A//vvAPfz9wD39/cA//f3AP/79wD/+/8AAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm5CQfnp6fpCQmwAAAAAAAAAAAAAAAAAAAAAA + AAAAm41XMgUBAQEBBTJXjZsAAAAAAAAAAAAAAAAAAAAAm5BUBwICAgICAgICAgIFUY6bAAAAAAAAAAAA + AAAAAJt+JwMDAwMDAwMDAwMCAwMDD3ybAAAAAAAAAAAAAACbewwDAwQDAwQDAwQDAwQDBAMDC3ubAAAA + AAAAAAAAm38OBAoECgQKBAoKBAoKBAoECgoEDn2bAAAAAAAAAACUKQoKKAoKCgoKCgQKCgoKCgpWOAoK + KJQAAAAAAAAAm1gKCgpQWQoKCgoKCgoKCgoKKv9vCgoKVZsAAAAAAACUIhISEiqdMwoUEhIUEhISEhJl + nioSEhIikQAAAAAAm2cREREREV+eNxERERERERERFJNSERERERFkmwAAAACcNhMTExMjUv+TIyMjIyMj + IxVlXhUjExMTEzSbAAAAAJslFRUVFf9wh/9mnv//////YP9l//8VFRUVI5sAAAAAkRcXFxcX//9g/55r + /////4Fra2z//yUXFxcXhgAAAACGFxgXGBf//4OA/3CH////Zv9rnv//LRcYFxiCAAAAAIYYGBoYGBgY + GDD//zUYGBiXmS0YGBgYGhgYGIIAAAAAlRodGh0aHR0aHWqZYhodWv9bGhodGh0aHRodlQAAAACcLx0d + Gh0dHR0aLnf/XB2HhB0dHR0dHRodHS6bAAAAAJxMHR0dHR0dHR0dYZN0Tf9IHR0dHR0dHR0dTJwAAAAA + /3YfHx8fHx8fHx8fY4OEdB0fHx8fHx8fHx9t/wAAAAAAmzsfICAgHyAfIB8gSZk7ICAfIB8gHyAgO5QA + AAAAAAD/ciEhISEhISEhISF4TiEhISEhISEhISFy/wAAAAAAAACeSzk5OTk5OTk5OV05OTk5OTk5OTk5 + S54AAAAAAAAAAACTQzo6Ojo6Ojo6Ojo6Ojo6Ojo6Oj+H/wAAAAAAAAAAAP+HQzo9Ojo9Ojo6PTo6PTo6 + PTpAhP8AAAAAAAAAAAAAAP+XSj0+PT09Pj09Pj09Pj09Sov/AAAAAAAAAAAAAAAAAAD/dUM+Pj4+Pj4+ + Pj4+QXOeAAAAAAAAAAAAAAAAAAAAAAD/nnlPRz4+RT5GT3me/wAAAAAAAAAAAAAAAAAAAAAAAAAA//// + mYuLmf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////+AH//+AAf/+AAB//AAAP/gAAB/wAAAP8AAAD+AA + AAfgAAAHwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gA + AA/4AAAf/AAAP/8AAP//gAH//+AH////////////KAAAABAAAAAgAAAAAQAIAAAAAAAAAQAAAAAAAAAA + AAAAAQAAAAEAAAAAAAD/ZTEA/2kxAP9xMQD/fTEA/4YxAP+COQD/ijkA95I5APeaOQD3njkA96Y5APey + OQD3ujkA/45aAPeqQgD3rkoA97pCAP+OYwD/nmsA9557APe2YwD/snsA78dCAPfLSgDv00IA79tCAPfH + awD322sA98dzAPfXcwD3moQA956EAPeqhAD3roQA/7KEAP+2hAD/uoQA97KcAPfDjAD3x4wA98uMAPfX + hAD324wA/8ecAP/LnAD325QA9+eUAPfrlAD375QA98ulAP/LpQD3z60A/9ulAPfbrQD/y7UA/9e1AP/f + vQD/460A9/O1AP/jxgD/58YA/+fOAO/j3gD/69YA9+PeAOfn5wDv5+cA7+/vAPfr5wD37+cA9+/vAPfz + 5wD/8+cA9/PvAPf37wD/9+8A//v3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/Jh8fJkEAAAAAAAAAAEIfAgEBAQECFEMA + AAAAAEISAwMDAwMDAwMOQwAAAAAiBBMEBAQEBAY3BCIAAABDBwUkJAUFBQUWJAUHRQAANAgIM0wlLS0l + OCwICDIAACcJCf8+QE3/PDn/CQknAAApCwsLD0kVEEALCwsLJwAANgwMDAwdPDUbDAwMDDYAAEURDQ0N + DSo6DQ0NDRFIAAAALhcXFxceGBcXFxcrAAAAAEQcGRkZGRkZGRkcRwAAAAAARDAaGhoaGhovSgAAAAAA + AAAASjsxMDtLAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAPgfAADgBwAAwAMAAMADAACAAQAAgAEAAIAB + AACAAQAAgAEAAIABAADAAwAAwAMAAOAHAAD4HwAA//8AACgAAACAAAAAAAEAAAEAIAAAAAAAAAgBAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv6+8I5+fnMe/r70Lv7+9S7+/vY+/v72vn4+dz5+Pnc+/v72vv7+9j7+/vWu/v + 70Ln5+cx7+vvGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wjv7+9C7+/ve+/v763v7+/O7+/v9/fz9//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//38/f/7+/v//fz997v6++17+/vjPfz + 91rv6+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+8I7+/vOe/v74Tv7+/G7+/v9+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/W7+/vlO/v71Lv6+8QAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r + 7wjv7+9a7+/vte/v7+/v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7/fv7+/G7+/vc+/v7yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7znv7++l7+/v9+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/3/+/z9//v8/f/7+/3/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v78bv7+9aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v71Lv7+/G7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+vv//fTzv/3vq3/96qc//+W + e///imv//4Zj//9xSv//aUL//2lC//9pQv//aUL//3FK//+CY///imv//5Jz//eqlP/3tqX/98/G/+/n + 5//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/e7+/vc+/v + 7xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAO/r72Pv7+/e7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v//ff + 1v/3tqX//5Z7//91Uv//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9xSv//knP/97Kl//fX1v/v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v9+/r74Tn5+cYAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r71Lv7+/e7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//98/G//eehP//dUr//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9tQv/3lnv/98e9/+/r7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7/fv7++E7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 7ynv7++17+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v39b/96aU//9xSv//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//2lC//eehP/3187/7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/e7+/vUgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wjv7++U7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//3w7X//4Zj//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//glr/97qt/+/r + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/vve/r7ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+9C7+/v3u/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//3vq3//3lS//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//3FK//e2pf/v6+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v9+/v73MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/ve+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//3y73//31a//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//91Sv/3vq3/7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v763v7+8QAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vGO/v773v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//329b//45r//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//glr/99PG/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7+fv7+9CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAO/v7zHv7+/n7+/v/+/v7//v7+//7+/v/+/v7//v7+//966U//9pOf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH/96KE/+/r5//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+9K7+/v7+/v7//v7+//7+/v/+/v + 7//v7+//99vW//+CWv//ZTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//ZTH//3lK//fTxv/v7+//7+/v/+/v7//v7+//7+/v/+/v7//v6++EAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7+/va+/v7//v7+//7+/v/+/v7//v7+//7+/v//e6pf//cTn//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//205//eulP/v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7++l7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v73vv7+//7+/v/+/v7//v7+//7+/v/+/r + 7//3mnv//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//+OY//v5+f/7+/v/+/v7//v7+//7+/v/+/v7//v7++97+/vCAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+9z7+/v/+/v7//v7+//7+/v/+/v7//3497//4pa//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//99 + Sv/329b/7+/v/+/v7//v7+//7+/v/+/v7//v7++17+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vc+/v7//v7+//7+/v/+/v7//v7+//99vW//99 + Sv//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//91Qv/3z8b/7+/v/+/v7//v7+//7+/v/+/v + 7//v7++97+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 72Pv7+//7+/v/+/v7//v7+//7+/v//fXzv//dUL//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9xOf/3y7X/7+/v/+/v7//v7+//7+/v/+/v7//v7++lAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+857+/v9+/v7//v7+//7+/v/+/v7//3187//3lC//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9xOf/3y73/7+/v/+/v + 7//v7+//7+/v/+/v7//38/eEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vKffz + 9+/v7+//7+/v/+/v7//v7+//99fO//95Qv//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//91Of/3y73/7+/v/+/v7//v7+//7+/v//fz9//v7+9jAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wj38/fW7+/v//fz9//38/f/9/P3//ff1v//fUL//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//91 + Of/308b/9+/v//fz9//38/f/9/P3/+/v7//v7+8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vpe/v + 7//38/f/9/P3//fv7//35+f//4ZS//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//99Qv/339b/9/P3//fz9//38/f/7+/v/+/v + 797v7+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r72Pv7+//9/P3//fz9//37+//9+/v//+SY///dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//+GUv/36+f/9/Pv//fz9//38/f/7+/v/+/v760AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+8p7+/v9+/v + 7//38/f/9/P3/+/z9//3qoT//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//eaa//37+//9/P3//fz + 9//38/f/7+/v/+/r72sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v773v7+//9/P3//fz9//38/f/98e1//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//e6nP/38/f/9/P3//fz9//v7+//7+/v7+/v7xgAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+9r7+/v//fz + 9//38/f/9/P3//fj3v//gkL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//gkL//3k5//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//99Of//roT//8Ol//+y + jP//gkL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//305//fb + zv/38/f/9/P3//fz9//38/f/7+/vtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vEPfz9+/38/f/9/P3//fz9//38/f/95pj//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+uhP//x63//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//fTn//+PW///////////////////z7///lmP//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//45S//fv7//38/f/9/P3//fz9//38/f/9/P3SgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/eM9/P3//fz + 9//38/f/9/P3//fDrf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//45S////////soT//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+yjP////////////// + ///////////////v5///fTn//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH/97KM//fz9//38/f/9/P3//fz9//38/fW7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3Kffz9//38/f/9/P3//fz9//35+f//4ZC//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//+/n////////soT//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTn//+ve//////////////////////////////////+aY///fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTn/99/W//fz9//38/f/9/P3//fz + 9//v7+9zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/et9/P3//fz + 9//38/f/9/P3//eqe///fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//z7X/////////////upT//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+mc/////////////// + ////////////////////+/f//4pC//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf/3mmP/9/P3//fz9//38/f/9/P3//fz9+/v7+8IAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vMffz9//38/f/9/P3//fz9//339b//305//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+ue/////////////// + ////x6X//4I5//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//9/O///////////////////////////////////Lrf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf/3z7X/9/P3//fz + 9//38/f/9/P3//fz93MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++t9/P3//fz + 9//38/f/9/P3//eia///gjH//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//5JK////////////////////////z7X//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4Ix//+WWv////////////// + ////////////////////8+///4pK//+CMf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//eSUv/38+//9/P3//fz9//38/f/9/P37/fz9wgAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vIffz9//38/f/9/P3//fz9//328b//4Ix//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjH//+/n//// + ////////////////////07X//4Y5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjH//8+1//////////////////////////////////+qc///gjH//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4Ix//fL + rf/38/f/9/P3//fz9//38/f/9/P3awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/eM9/P3//fz + 9//38/f/9/P3//eia///gjH//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//z7X/////////////////////////////28b//4Y5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+KQv//+/f///////// + ////////////////////173//4Ix//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn/95ZS//fz9//38/f/9/P3//fz9//38/fWAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3CPfz9+/38/f/9/P3//fz9//339b//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Yx//+y + hP///////////////////////9/O//+iY///hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//7qU//////////////////////////////f3//+SSv//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjH/98+1//fz9//38/f/9/P3//fz9//38/dKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/da9/P3//fz + 9//38/f/9/P3//euhP//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//5pS/////////////+/n//+qc///hjH//4o5//+2 + hP//y6X//4Yx//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//7+f///////// + ////////////////////snv//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf/3omv/9/P3//fz9//38/f/9/P3//fz + 960AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97338/f/9/P3//fz9//37+//945C//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//ijn///fv///DnP//ijn//4Y5//+ye///8+//////////////rnP//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//6Zr/////////////////////////////9u9//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//eKOf/3597/9/P3//fz9//38/f/9/P39/fz9xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/cY9/P39/fz + 9//38/f/9/P3//fPtf//ijH//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KMf//llL//4ox//+eWv//387///////// + ///////////////v5///jjn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KMf//273///////// + ///////////////z7///kkr//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//e+lP/38/f/9/P3//fz + 9//38/f/9/P3YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz93P38/f/9/P3//fz9//38/f/96Zr//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+SQv//z63////////////////////////////////////////HnP//ijH//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//5ZS///79////////////////////////65z//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn/95ZS//fz9//38/f/9/P3//fz9//38/e1AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3tffz + 9//38/f/9/P3//fr5//3ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//55a///7//////////////// + //////////////////////////f3//+WSv//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijH//5pS///T + tf/////////////Ttf//ijH//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijH/99/O//fz + 9//38/f/9/P3//fz9+/38/cIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9wj38/fv9/P3//fz9//38/f/98ut//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//8+t/////////////////////////////////////////////9e1//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf/3jjH//7Jz//+mY///jjn//445//+iY///173//5ZK//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf/3voz/9/P3//fz9//38/f/9/P3//fz90IAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3Offz + 9//38/f/9/P3//fz9//3rnP/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3lkL///fv//// + /////////////////////////////////////////6pr//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//+iWv//+/f////////f + xv//olr/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//ee + Uv/38/f/9/P3//fz9//38/f/9/P3jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dz9/P3//fz9//38/f/9/P3//eWQv/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf//voz///////////////////////////////////////// + ////69b/95I5//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn//9u9////////////////////////z63/95I5//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/944x//fr5//38/f/9/P3//fz9//38/fGAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 97338/f/9/P3//fz9//3387/944x//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eeUv//olL//6JS//+iUv//olL/95ZC//eS + Of//697/////////////////////////////////////////////voT/95I5//eWQv//olL//6JS//+i + Uv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+i + Uv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv/3lkL/95I5//+2e/////////////// + ///////////////79//3mkr/95ZC//+iUv//olL//6JS//+iUv//olL//6JS//+iUv/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/99O1//fz9//38/f/9/P3//fz9/fv7+8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+8I9/P37/fz9//38/f/9/P3//fHpf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn///f3////////////////////////487/95I5//+ua/////////////////////////////// + ///////////////37//3mkL/95pC///37/////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////f3//eaSv/3nkr///fv/////////////////////////////8uc//eSOf//063///////// + //////////////////////////////eaSv/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3uoT/9/P3//fz9//38/f/9/P3//fz + 90IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9yH39/f/9/P3//fz9//38/f/97Z7//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf//9/f///////////////////////// + ////snP/95I5///jxv/////////////////////////////////////////////Trf/3kjn//76M//// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////w5T/95I5///HlP////////////// + ///////////////39//3lkL/95pC///39///////////////////////////////////////955K//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//emWv/38/f/9/P3//fz9//38/f/9/P3cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Svf39//39/f/9/f3//f39//3olL/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5///39//////////////////////////////v5//3ljn/96Za///7//////////////// + //////////////////////////////emWv/3ljn//+/n//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////Pn//eWQv/3qlr//////////////////////////////////9u9//eWOf//x5T///////// + ///////////////////////////////////3nkr/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95ZC//fz9//39/f/9/f3//fz + 9//39/ecAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD38/dz9/P3//f39//39/f/9/P3//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn///fv//////////////////// + ///////////////LnP/3ljn//8+l/////////////////////////////////////////////+fO//eW + Of//tnP///////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////uoT/95Y5///HlP//9/f///////// + ///////////////79//3plr/95pC///z7/////////////////////////////////////////////ee + Sv/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/9+fe//f39//39/f/9/P3//fz98YAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395T38/f/9/f3//f39//3597/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf//9+////////////////////////////////////f3//eeSv/3nkL///fv//// + /////////////////////////////////////////7p7//eWOf//48b///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////+vW//eaOf/3mjn/95o5//eeQv//x5T///f3/////////////8+l//eWOf//x5T///////// + ////////////////////////////////////////96JK//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3273/9/f3//f3 + 9//38/f/9/f35wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3tffz9//39/f/9/f3//fbxv/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5///79/////////////// + /////////////////////////9et//eaOf//w4T///////////////////////////////////////// + ////8+f/95o5//eqWv////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////3rmP/95o5///nzv//797//7pz//ea + Of/3okr//9u9///////3rmP/95o5///z5/////////////////////////////////////////////// + ///3plL/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//fPpf/39/f/9/f3//fz9//39/f37+/vCAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/fO9/f3//f39//39/f/99Ot//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3njn///v3////////////////////////////////////////////97Jj//ea + Of//69b/////////////////////////////////////////////y5z/95o5///Tpf////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////9e1//eaOf//x5T//////////////////+/e//+6c//3mjn/96pa//eaOf//w4T///////// + //////////////////////////////////////////////eqWv/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/98eU//fz + 9//39/f/9/f3//f39//38/cYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf399738/f/9/f3//fz9//3y5z/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eeQv////////////// + ////////////////////////////////////69b/95o5//eyY/////////////////////////////// + ///////////////79//3plL/96JC///37/////////////////////////////////////////////// + ///////////////////////////////////////////////79//3pkr/96JC///37/////////////// + ///////////////jxv/3mjn/96JK///37/////////////////////////////////////////////// + ////////97Jj//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3voT/9/P3//f39//39/f/9/f3//fz9zEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f37/f39//39/f/9/f3//fH + jP/3mjn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/96JC//////////////////////////////////////////////////// + ////x4z/95o5///bvf/////////////////////////////////////////////fvf/3mjn//8eM//// + //////////////////////////////////////////////////////////////////////////////// + /////////8+l//eaOf//06X//////////////////////////////////9u1//eaOf//z6X///////// + ///////////////////////////////////////////////////3smv/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/95o5//e2 + c//39/f/9/f3//f39//39/f/7+/vQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/f39/f3//f39//39/f/98OE//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3pkr///////// + ///////////////////////////////////////////////37//3okL/96pS///79/////////////// + //////////////////////////////e2c//3njn//+/e//////////////////////////////////// + ///////////////////////////////////////////////37//3okL/96pS///79/////////////// + ///////////////////3smP/96JC///37/////////////////////////////////////////////// + //////////////eyY//3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/97Jj//f39//39/f/9/f3//f39//39/dKAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf39//39/f/9/f3//f3 + 9//3vnv/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//emSv////////////////////////////////////////////// + ///////////////Xrf/3njn//8+c/////////////////////////////////////////////+/e//ei + Of/3umv///////////////////////////////////////////////////////////////////////// + /////////8uU//eeOf//373//////////////////////////////////+fO//eeOf//x4z///////// + ////////////////////////////////////////////////////////97Jj//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3smP/9/f3//f39//39/f/9/f3//f391IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD38/cI9/f3//f39//39/f/9/f3//e+e//3njn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96ZC///3 + 7///9+////fv///37///9+////fv///37///9+////fv///37///9+////fv//e6a//3pkL///fv//// + /////////////////////////////////////////8eM//eiOf//37X///fv///37///9+////fv///3 + 7///9+////fv///37///9+////fv///37///9+////fv///v3v/3okL/97Jj//////////////////// + ///////////////////3tmP/965S///z5///9+////fv///37///9+////fv///37///9+////fv///3 + 7///9+////fv///37//3rlr/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//euWv/39/f/9/f3//f39//39/f/9/f3WgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9wj39/f/9/f3//f3 + 9//39/f/9757//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3x4T///////////////////////////////////////// + ////+/f/96pK//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf//587//////////////////////////////////9+9//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/97Ja//f39//39/f/9/f3//f39//39/daAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf39//39/f/9/f3//f39//3w3v/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of//69b/////////////////////////////////////////////27X/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/97pr//////////////////// + ///////////////////3rlL/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3smP/9/f3//f39//39/f/9/f3//f3 + 91IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f39/f3 + 9//39/f/9/f3//fHhP/3ojn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96I5//e6a/////////////////////////////// + ///////////////////3tmP/96I5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//eiOf//587//////////////////////////////////9ut//eiOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//e6a//39/f/9/f3//f39//39/f/9/P3SgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/fn9/f3//f39//39/f/98uU//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5///jvf/////////////////////////////////////////////r1v/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97pr//////////////////// + ///////////////79//3rkr/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/975z//f39//39/f/9/f3//f3 + 9//v7+85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 99739/f/9/f3//f39//305z/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97JS///79/////////////// + ///////////////////////////////LhP/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf//587//////////////////////////////////8+U//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3x4T/9/f3//f39//39/f/9/f3//fz9ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3xvf39//39/f/9/f3//fbrf/3qjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn//9el////////////////////////////////////////897/975r//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97pj//////////////////// + ///////////////z5//3qkL/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//fPlP/39/f/9/f3//f3 + 9//39/f/9/f3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/el9/f3//f39//39/f/9+PG//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3rkL///fn//// + ////////////////////9+//98eE//eqOf/3vmv/98d7//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf//687/////////////////////////////////98Nz//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/99et//f39//39/f/9/f3//f39/cAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf394z39/f/9/f3//f39//37+f/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3y4T/////////////+/f//9el//euQv/3skr//9+1//// + ////////98d7//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/97pa//////////////////// + ///////////////jxv/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/348b/9/f3//f3 + 9//39/f/9/f31gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/a/f39//39/f/9/f3//f39//3rkL/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of//69b//+fG//e2Uv/3rkL//9OU///79///////////////////897/97JC//euOf/3rjn/9645//eu + Of/3rjn/9645//eqOf//473/////////////////////////////////97pa//eqOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/96o5//fv5//39/f/9/f3//f39//39/e1AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dC9/f3//f39//39/f/9/f3//e6 + Y//3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euQv/3rjn/98t7///z5/////////////// + ///////////////////3vmP/9645//euOf/3rjn/9645//euOf/3rjn/97pa//////////////////// + ///////////////bpf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3skL/9/f3//f3 + 9//39/f/9/f3//f394wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf39xD39/f/9/f3//f39//39/f/98uE//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645///bpf/////////////////////////////////////////////79//3ulL/9645//eu + Of/3rjn/9645//euOf//47X/////////////////////////////9+//97JC//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//fDa//39/f/9/f3//f39//39/f/9/f3YwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf399739/f/9/f3//f3 + 9//3263/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/98+E//////////////////// + ///////////////////////////////jtf/3rjn/9645//euOf/3rjn/97pS//////////////////// + //////////////fLe//3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/99OU//f3 + 9//39/f/9/f3//f39//39/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3pff39//39/f/9/f3//fv3v/3rjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3rjn//+vO/////////////////////////////////////////////+vO//ey + Of/3sjn/97I5//eyOf//363/////////////////////////////58b/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3473/9/f3//f39//39/f/9/f35wAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dj9/f3//f3 + 9//39/f/9/f3//e6Sv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3tkL///Pn//// + //////////////////////////v3//fTlP/3sjn/97I5//eyOf/3sjn/97pK///79/////////////// + //////////v3//e6Uv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//fz + 7//39/f/9/f3//f39//39/e1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39yH39/f/9/f3//f39//39/f/98+E//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf//47X////////////////////////jtf/3ulL/97pK///j + vf//463/97I5//eyOf//25z////////////////////////////315T/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3w2P/9/f3//f39//39/f/9/f3//f393MAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 99739/f/9/f3//f39//3473/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e6 + Qv/////////////vzv/3w2P/97ZC//fXlP//+/f////////////3ukr/97ZC///77/////////////// + //////////Pe//e2Qv/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fX + nP/39/f/9/f3//f39//39/f/9/P3KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3pff39//39/f/9/f3//f37//3ukL/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fDWv/3y3P/97Y5//fPe///8+f///////// + //////////////e+Uv/315T////////////////////////////3x2v/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/9+/e//f39//39/f/9/f3//f3994AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/dS9/f3///7////+/////v///fPe//3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of//68b/////////////////////////////9+f/97pC///35/////////////// + /////////+O1//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fD + Y//3+/f///v////7///39/f/9/f3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39wj39/fv9/f3///7////+///9+fG//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//fbnP////////////// + //////////fv//fHY//304T////////////////////////77//3vkr/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/99+t///79///+/////v///f39//39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf395z39/f///v////7////9/f/98NS//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//fXjP//89b///Pe///fpf/3vkr/97o5///z3v////////////// + ////////99eE//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e+ + Qv/38+////v////7///39/f/9/f35wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Off39///+/////v////7 + ///315T/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3y2v////////////////////////vzv/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/9897///7////+/////v///f39//39/eMAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f31vf39///+/////v3//fz5//3vkL/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/7745///rxv////////////// + //////f/98da//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3687///v////7////+///9/f3//f39yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dj9/f3///7 + ////+/////v///fXhP/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3x1r///////////////////////ffnP/vvjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/98tr///7////+/////v///f39//39/e1AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39wj39/fv//v////7////+///9/Pe//e+Qv/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745///nrf////////////// + ////9+f/98NC//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745/+++ + Of/368b///v////7////+///9/f3//f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 94T/+/////v////7////+///99eM//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3x1L///v3//////////////////fTc//3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/989r///7////+/////v////7///39/fOAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3EP/7/+//+/////v////7////8+f/78dC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78M5//fjnP////////////// + ////57X/78M5/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/379b///v////7////+/////v///f390oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3e//7////+/////v////7///335z/78M5/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vx0L///vv//////////////vv//fHSv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/99eE///7////+/////v////7////+//GAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/7//7////+/////v////3 + 9//3y1r/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78c5//fXe/////////////// + ///313v/78c5/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Sv//9+f///v////7////+/////v///f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/da//v////7////+/////v///frxv/vxzn/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L//+e1/////////////+/G/+/HOf/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vxzn/9+et///7////+/////v////7////+/+lAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+//G//v////7 + ////+/////v///fbhP/vxzn/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv//67X////////3 + 3v/3y0r/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC//fX + a///+/f///v////7////+/////v/9/f39yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/zn/+/////v////7////+/////f3/+/TWv/vyzn/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78s5/+/PUv/334T/78tK/+/LOf/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vz0r///fn///7////+/////v////7////+/97AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /4z/+/////v////7////+///9+/W/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC//fr + vf//+/////v////7////+/////v/zv/7/wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP/7/87/+/////v////7////+///9+et/+/L + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/LQv/334z///v////7////+/////v////7//f/+/8xAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/Kf/7//f/+/////v////7////+///99+M/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/99tz///7 + 9///+/////v////7////+/////v/cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Y//7////+/////v////7 + ////+/f/99tz/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/XWv//9+////v////7////+/////v////7/60AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/nP/7////+/////v////7////9+//79dj/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/v01L///fn///7 + ////+/////v////7////+//W9/f3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/xv/7 + ////+/////v////7////9+f/79ta/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79dS//fz3v//+/////v////7////+/////v/7/f39ykAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8Q//v/1v/7////+/////v////7////9+//79ta/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/XUv//997///v////7 + ////+/////v////7//f39/dCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/cp//v/5//7////+/////v////7////9+f/79tj/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v11L///fe///7////+/////v////7////+/////v/UgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8x//v/7//7////+/////v////7 + ////++//999z/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79tj///35///+/////v////7 + ////+/////v////7/3MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8x//v/7//7////+/////v////7////+/f/9+eM/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC//fjc///+/f///v////7////+/////v////7////+/9rAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8p//v/5//7 + ////+/////v////7////+///9+ut/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/355T///v////7////+/////v////7 + ////+/////v/YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cp//v/1v/7////+/////v////7////+///9/PW/+/f + Wv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v21L/9/PG///7////+/////v////7////+/////v/9//7/1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD/+/8Q//v/xv/7////+/////v////7////+/////v3//fnjP/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/9+Nz///77///+/////v////7////+/////v////7 + /+f/+/85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/nP/7//////////////// + //////////////fzxv/v31r/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/799K//fv + tf//+//////////////////////////7////+//O//v/IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3Y//7//f/+//////////////////////////79//365z/799K/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C//frjP//++//////////////////////////////+/////v/pf/7 + /wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Kf/7 + /9b/////////////////////////////////++f/9+uM/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C//fne///997///////// + ////////////////////////////9//7/1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP/7/4T///////////////////////////// + //////////fe//frhP/v40L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/nc///99b////////////////////////////////////////7/7X/+/8hAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf390L/+//W///////////////////////////////////////75//375T/7+NS/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NK//frjP//997///////////////////////// + //////////v//////+//+/9rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/9j//v/7//7 + ////////////////////////////////////+/f/9/fG//fre//v40r/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+tz//fz + vf//+/f/////////////////////////////////////////////+/+M//v/EAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8I////hP///+////////////////////////////// + ///////////////79//3873/9+uE/+/nUv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/nSv/v63v/9/O1///77/////////////////////////////////////////////// + ////+/+l//v/IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/CP/7/4z////3///////////////////////////////////////////////////////7 + 3v/3863/9++M/+/ra//v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v50L/7+dC/+/n + Qv/v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v62P/9++E//fzrf//99b///////////////////////// + //////////////////////////////////////+t//v/KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+/9r////3v// + ////////////////////////////////////////////////////////////////////+97///fO//fz + rf/386X/9/Oc//fvhP/v73v/7+97/+/ve//v73v/9++E//fzlP/386X/9/Ot//f3zv//+97///////// + /////////////////////////////////////////////////////////////////+//+/+M//v/IQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Qv///5z////v//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////9////7X/+/9a//v/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///wj///9a////rf///+f///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////v////vf/7/3v/+/8YAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /yn/+/9r////pf///+f///////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////7//7/7X///97////Qv// + /wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+/9C//v/a/// + /4z/+/+t//v/zv///97////v////////////////////////////////////9////97////O//v/tf// + /5T/+/9z//v/Uv/7/yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP// + /wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////4AB/////////////////+AAAAf///////////////4AAAAAf//////////////w + AAAAAA//////////////wAAAAAAD/////////////wAAAAAAAH////////////wAAAAAAAAf//////// + ///wAAAAAAAAB///////////wAAAAAAAAAP//////////wAAAAAAAAAA//////////4AAAAAAAAAAH// + ///////8AAAAAAAAAAAf////////8AAAAAAAAAAAD////////+AAAAAAAAAAAAf////////AAAAAAAAA + AAAD////////gAAAAAAAAAAAAP///////wAAAAAAAAAAAAB///////4AAAAAAAAAAAAAP//////8AAAA + AAAAAAAAAB//////+AAAAAAAAAAAAAAf//////AAAAAAAAAAAAAAD//////gAAAAAAAAAAAAAAf///// + wAAAAAAAAAAAAAAD/////8AAAAAAAAAAAAAAAf////+AAAAAAAAAAAAAAAH/////AAAAAAAAAAAAAAAA + /////wAAAAAAAAAAAAAAAH////4AAAAAAAAAAAAAAAB////8AAAAAAAAAAAAAAAAP////AAAAAAAAAAA + AAAAAB////gAAAAAAAAAAAAAAAAf///4AAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAA////AAAAAA + AAAAAAAAAAAH///gAAAAAAAAAAAAAAAAB///4AAAAAAAAAAAAAAAAAf//8AAAAAAAAAAAAAAAAAD///A + AAAAAAAAAAAAAAAAA///wAAAAAAAAAAAAAAAAAH//4AAAAAAAAAAAAAAAAAB//+AAAAAAAAAAAAAAAAA + Af//gAAAAAAAAAAAAAAAAAD//wAAAAAAAAAAAAAAAAAA//8AAAAAAAAAAAAAAAAAAP//AAAAAAAAAAAA + AAAAAAD//wAAAAAAAAAAAAAAAAAAf/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAA + AAAAAAAAAAAAf/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAAAAAAAAAAAAAAP/4A + AAAAAAAAAAAAAAAAAD/+AAAAAAAAAAAAAAAAAAA//gAAAAAAAAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAA + AD/8AAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAAD/8AAAAAAAAAAAA + AAAAAAA//gAAAAAAAAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAAAD/+AAAAAAAAAAAAAAAAAAA//gAAAAAA + AAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAAAAAAAAAAAAAAf/4A + AAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//wAAAAAAAAAAAAAAAAAAf/8AAAAAAAAAAAAAAAAA + AP//AAAAAAAAAAAAAAAAAAD//wAAAAAAAAAAAAAAAAAA//+AAAAAAAAAAAAAAAAAAP//gAAAAAAAAAAA + AAAAAAH//4AAAAAAAAAAAAAAAAAB//+AAAAAAAAAAAAAAAAAAf//wAAAAAAAAAAAAAAAAAP//8AAAAAA + AAAAAAAAAAAD///gAAAAAAAAAAAAAAAAA///4AAAAAAAAAAAAAAAAAf//+AAAAAAAAAAAAAAAAAH///w + AAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAA////gAAAAAAAAAAAAAAAAf///4AAAAAAAAAAAAAAAA + H////AAAAAAAAAAAAAAAAD////4AAAAAAAAAAAAAAAA////+AAAAAAAAAAAAAAAAf////wAAAAAAAAAA + AAAAAH////8AAAAAAAAAAAAAAAD/////gAAAAAAAAAAAAAAB/////8AAAAAAAAAAAAAAA//////gAAAA + AAAAAAAAAAP/////4AAAAAAAAAAAAAAH//////AAAAAAAAAAAAAAD//////4AAAAAAAAAAAAAB////// + /AAAAAAAAAAAAAA///////4AAAAAAAAAAAAAf///////AAAAAAAAAAAAAP///////4AAAAAAAAAAAAH/ + ///////AAAAAAAAAAAAD////////4AAAAAAAAAAAB/////////gAAAAAAAAAAA/////////8AAAAAAAA + AAA//////////gAAAAAAAAAAf/////////+AAAAAAAAAAf//////////4AAAAAAAAAP///////////AA + AAAAAAAP///////////8AAAAAAAAP////////////wAAAAAAAP/////////////gAAAAAAP///////// + ////+AAAAAAf//////////////+AAAAA////////////////+AAAH//////////////////8P/////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////8oAAAASAAAAJAAAAABACAAAAAAAGBU + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r7wjv6+8Y7+vvMe/v + 70Lv6+9K5+fnSu/v70rv7+857+vvIe/r7wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v72Pv7++l7+/v1u/v7/fv7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+/e7+/vre/v72vv7+8pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vMe/v + 74zv7+/e7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v5+/v75zv7+9CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v70rv7++97+/v/+/v7//v7+//7+/v/+/v + 7//v5+f/98/G//e2pf/3ooz//5Jz//+Ga///gmP//4Jj//+GY///knP/956M//eypf/3y8b/7+fn/+/v + 7//v7+//7+/v/+/v7//v7+//7+/vzu/v72MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+9K7+/v1u/v7//v7+//7+/v/+/v7//3187/96aM//99Wv//YTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//2Ex//95Uv/3ooz/99PG/+/v + 7//v7+//7+/v/+/v7//v7+/n7+/vYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v + 77Xv7+//7+/v/+/v7//v5+f/97Kc//99Uv//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//95Uv/3rpz/7+fn/+/v + 7//v7+//7+/v/+/v787v7+8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+9j7+/v9+/v7//v7+//7+fn//eq + lP//bUL//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2k5//emjP/v5+f/7+/v/+/v + 7//v7+//7+/vhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vCO/v763v7+//7+/v/+/v7//3vq3//3VC//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//cUL/97al/+/v7//v7+//7+/v/+/v + 78bv7+8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+8Y7+/vzu/v7//v7+//7+Pe//+Oa///ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//+KY//3397/7+/v/+/v7//v7+/n7+/vKQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7ynv7+/n7+/v/+/v + 7//3z73//3VC//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//cUL/98e1/+/v7//v7+//7+/v9+/v70IAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v7+fv7+//7+/v//e6pf//bTn//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//eynP/v7+//7+/v/+/v7/fv7+9CAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+8Q7+/v3u/v7//v7+//97KU//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf/3qoz/7+/v/+/v7//v7+/37+/vKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 7wjv7+/G7+/v/+/v7//3spT//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH/96qM/+/v7//v7+//7+/v3u/v7xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v75zv7+//7+/v//fD + rf//dTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ux//e2 + nP/v8/f/7+/v/+/v770AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vWu/v7//38/f/99PG//95Of//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Of/3y7X/9/P3/+/v + 7//v7++EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+8Y7+/v7/fz9//35+f//4ZK//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//fTn//45a//99Of//eTH//3kx//95Mf//eTH//3kx//95Mf//gkL/9+Pe//fz9//v7+//7+/vMQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7++c9/P3//fz9//3onP//3kx//95Mf//eTH//3kx//95Mf//eTH//4ZC//++nP//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+COf//697////////v + 5///ilL//3kx//95Mf//eTH//3kx//95Mf//eTH/95pj//fz7//38/f/9/P3xgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9zH38/f/9/P3//fP + vf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x///n1v//toz//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+yjP//////////////////w6X//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//fHrf/38/f/9/P3/+/v71oAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97X38/f/9+/v//+OUv//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x///Hpf///////76c//99Of//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//4I5///r3v//////////////////omv//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//+KQv/36+f/9/P3//fz994AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vMffz9//38/f/98Ol//+COf//gjH//4Ix//+CMf//gjH//4Ix//+C + Mf//gjn//4I5//+mc//////////////Lrf//gjn//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+C + Mf//gjH//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4I5//+C + Mf//gjn//6Zz///////////////////Xvf//gjn//4I5//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+C + Of/3upT/9/P3//fz9//38/daAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3nPfz9//37+///5JK//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjn//4Ix//+O + Qv//////////////////soT//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+C + Mf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4I5//+CMf//gjH//9vG//// + //////////f3//+SSv//gjH//4I5//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//ikL/9+/n//fz + 9//38/fGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/cQ9/P39/fz + 9//3z7X//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//697//+PW//+e + Y///qnP//7qM//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//llL//////////////////7KE//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH/98el//fz9//38/f/9/P3MQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dj9/P3//fz9//3pmv/94ox//eK + Mf/3ijH/94ox//eKMf/3ijH/94ox//eKMf//ijH/94ox//eKOf//omP//5pa///bxv////////////+i + Y///ijH/94ox//eKMf/3ijH/94ox//eKMf/3ijH/94ox//eKMf//ijH/94ox//eKMf/3ijH/94ox//eK + Mf/3ijH/94ox//eKMf/3ijH//4ox//eKOf//x6X/////////////273//4o5//eKMf/3ijH//4ox//eK + Mf/3ijH/94ox//eKMf/3ijH/94ox//eKMf/3ijH/955a//fz9//38/f/9/P3jAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/e99/P3//fn3v/3ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//omP///v////////////////////n1v//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//vpT///f3///z7///lkr//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//fj1v/38/f/9/P33gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPfz9wj38/fv9/P3//fLpf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn//+fW////////////////////////toT/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445///L + pf//rnP//5ZK//+mY//3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//fDlP/38/f/9/P3//fz9ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9zn38/f/9/P3//euc//3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn//6pr////////////////////////8+//95ZC//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn//7Z7/////////////9/G//eS + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//em + Y//38/f/9/P3//fz92MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz93P38/f/9/P3//ea + Sv/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn//+vW///v3v//697//6pj///b + vf///////////////////////8ul//+qY///797//+/e///v3v//797//+/e///v3v//797//+/e///v + 3v//797//+/e///v3v//797//+/e///fxv/3mkr///Pv/////////////9u9//+qa///797//+/e///v + 3v//797/95ZC//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eWOf/37+//9/P3//fz + 96UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz96X38/f/9+fe//eWOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3ljn///v3/////////////+fW//eiUv//+/f///////// + //////////v///emWv//587///////////////////////////////////////////////////////// + //////////////+6e///z6X/////////////////96pj///fvf//////////////////////95pC//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3387/9/P3//fz99YAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz98738/f/99u9//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn///v3//////////////////+6hP//y5z////////////////////////j + xv/3qmP//////////////////////////////////////////////////////////////////+vW//ea + Of//voT//+/n////////38b/96pa////////////////////////////95pC//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3063/9/P3//f39+8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPfz9+f38/f/98+l//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn///v////////////////////z5//3okr///Pn////////////////////////tnP//9e1//// + ////////////////////////////////////////////////////////965j///bvf//373/965j///L + lP//smv//9u1////////////////////////////96JK//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3x5T/9/f3//f39//38/cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf3 + 9/f39/f/98eU//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3njn///////// + ////////////////////06X//76E////////////////////////797/96ZS///79/////////////// + ////////////////////////////////////27X/97Zr///////////////////HjP/3rmP///////// + ////////////////////////96ZS//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3voT/9/f3//fz9//38/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3okL///////////////////////// + ////+///965a///n1v///////////////////////8uU///LlP////////////////////////////// + ///////////////79//3qlr//+vW//////////////////e6c///373///////////////////////// + ////////96pS//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3unv/9/f3//f3 + 9//38/c5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3okL///v3///79///+/f///v3///79///+/f//+PG//e2 + a/////////////////////////v3//euUv//797///v3///79///+/f///v3///79///+/f///v3///T + pf//w4T//////////////////+vW//eyY///+/f///v3///79///+/f///v3///79///+/f/96pK//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3unP/9/f3//f39//39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf//373///////// + ///////////////fvf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//emQv//8+f///////// + ////////97pr//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3unP/9/f3//f39//39/dCAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3CPf39//39/f/98eM//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3rlL///v3//////////////////// + ///3umv/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//fHjP//////////////////58b/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3vnv/9/f3//f39//38/c5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf3 + 9/f39/f/98+U//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn//9Oc////////////////////////69b/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96pC///z5//////////////////3tlr/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3x4T/9/f3//f39//38/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39+f39/f/99et//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/965C///z5//////////////nzv/3vmv/97pj//eqOf/3qjn/96o5//eq + Of/3qjn/98uM///////////////////brf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/305z/9/f3//f3 + 9//39/cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf398b39/f/9+PG//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//fLhP//8+f/98d7//fLhP//9+////v3//e2Uv/3qjn/96o5//eqOf/3rjn///Pe//// + //////////fv//eySv/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/327X/9/f3//f39+8AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395z39/f/9+/n//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3w2v//+/W///////////////////ftf/3rjn/9645//euOf/3y3v/////////////////98+M//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/369b/9/f3//f3984AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf392v39/f/9/f3//e2Sv/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3y3v///////// + ///////////////////3w2v/9645//eyOf//797/////////////79b/97I5//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//eyQv/39/f/9/f3//f395QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 9yn39/f/9/f3//fLe//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3skL//+e9///////////////////j + tf/3ulL/97I5//fLc//////////////////3w2P/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//fD + a//39/f/9/f3//f391oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/fn9/f3//ff + tf/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/98dj////////79b/98dr///bpf//9+//97ZC///v + zv/////////////fpf/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fbpf/39/f/9/f3//f3 + 9xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/et9/f3//fz7//3tkL/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//fDWv/304T///fv////////////98tr//////////////fn//e6 + Qv/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fv3v/39/f/9/f3zgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dS9/f3//f7///3z3v/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of//36X////////79//314z//+vG////////////9897//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/98dr//f39//39/f/9/f3ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/cI9/f37/f39//3573/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/98NS//e+Sv/3x1L/////////////68b/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/9+O1//f39//39/f/9/f3IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3jPf39//39/f/98da/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++ + Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++ + Of//463////////79//3x1L/7745/+++Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++ + Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3w0r/9/f3//f3 + 9//39/e1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3If/7 + ////+///9+e1/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++ + Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++Of/vvjn/7745//fHSv//+/f///////fb + lP/vvjn/7745/+++Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++ + Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/336X///v////7///39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395z/+/////v3//fP + Y//vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5//ffnP////////PW/+/DQv/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5//fLUv//9/f///v////7/8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39yH/+//3//v///fvzv/vx0L/78c5/+/H + Of/vxzn/78c5/+/HOf/vx0L/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vx0L/78c5/+/H + Of/vxzn/78c5/+/HOf/vxzn/78dC///35///////989j/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/H + Of/vxzn/78dC/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/HOf/vxzn/78c5/+/H + Of/vxzn/78dC//frvf//+/////v///f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/97//v////7///324z/78dC/+/HOf/vxzn/78c5/+/H + Of/vx0L/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vx0L/78c5/+/HOf/vxzn/78c5/+/H + Of/vxzn/78tK////9//345T/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/H + Of/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/HOf/vxzn/78c5/+/HOf/vx0L/99d7///7 + ////+/////v/rQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8I//v/1v/7////9/f/79Na/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/P + Sv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vz1L///fv///7////+//v//v/GAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/Mf/7////+///9/Pe/+/PSv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/3787///v////7////+/9aAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /3P/+/////v///fvxv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C//frtf//+/////v////7/5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+l//v////7 + ///367X/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/9+el///7 + ////+/////v/xvf39wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8I//v/vf/7////+///9+u1/+/X + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/366X///v////7////+//e//v/GAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/EP/7/87/+/////v///fvxv/v10r/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC//fvtf//+/////v////7/97/+/8hAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+//G//v////7////997/799a/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v21L/9/PW///7////+/////v/3v/7/yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8I//v/pf/7////+/////v3//fnjP/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC//fnhP//++////v////7 + ////+//G//v/EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP/7/3P/+/////v////7///3887/7+Nj/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v41r/9/PG///7////+/////v////7/5z/+/8IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD/+/85//v/1v/7////+/////v///fztf/v41r/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/7+NS//fvrf//+/f///v////7////+//n//v/UgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3CP/7 + /4T/+//3////////////+///9/PG//fre//v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/rc//3873///v3//// + ///////////////7/5z/+/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8h////nP// + ////////////////////++//9/O1//frhP/v51L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+dS/+/re//3863///vv//////////////////////////+1//v/MQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/yH/+/+M////7/// + //////////////////////////vn//f3xv/3863/9/Oc//fvjP/374T/9++E//fvjP/385z/9/Ot//f3 + xv//++f////////////////////////////////3//v/pf/7/zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP///1L///+1////7/// + //////////////////////////////////////////////////////////////////////////////// + ///////3////vf/7/2P/+/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/zH///9r//v/nP// + /8b////n////9//////////////////////////3////5////87///+l////e//7/zn///8IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// + /xD///8Q////EP///xD///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// + ////AAAA////////////AAAA////////////AAAA/////gB/////AAAA////4AAH////AAAA////AAAA + ////AAAA///8AAAAP///AAAA///wAAAAD///AAAA///AAAAAA///AAAA//+AAAAAAf//AAAA//4AAAAA + AH//AAAA//wAAAAAAD//AAAA//gAAAAAAB//AAAA//AAAAAAAA//AAAA/+AAAAAAAAf/AAAA/8AAAAAA + AAP/AAAA/8AAAAAAAAP/AAAA/4AAAAAAAAH/AAAA/wAAAAAAAAD/AAAA/wAAAAAAAAD/AAAA/gAAAAAA + AAB/AAAA/gAAAAAAAAB/AAAA/AAAAAAAAAA/AAAA/AAAAAAAAAA/AAAA+AAAAAAAAAAfAAAA+AAAAAAA + AAAfAAAA+AAAAAAAAAAfAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAA + AAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAA + AAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA8AAAAAAAAAAHAAAA8AAAAAAA + AAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA+AAAAAAAAAAPAAAA+AAAAAAA + AAAfAAAA+AAAAAAAAAAfAAAA+AAAAAAAAAAfAAAA/AAAAAAAAAA/AAAA/AAAAAAAAAA/AAAA/gAAAAAA + AAB/AAAA/gAAAAAAAAB/AAAA/wAAAAAAAAD/AAAA/wAAAAAAAAD/AAAA/4AAAAAAAAH/AAAA/8AAAAAA + AAP/AAAA/+AAAAAAAAP/AAAA/+AAAAAAAAf/AAAA//AAAAAAAA//AAAA//gAAAAAAB//AAAA//wAAAAA + AD//AAAA//8AAAAAAH//AAAA//+AAAAAAf//AAAA///AAAAAA///AAAA///wAAAAD///AAAA///8AAAA + P///AAAA////AAAA////AAAA////8AAH////AAAA/////8H/////AAAA////////////AAAA//////// + ////AAAA////////////AAAAKAAAADAAAABgAAAAAQAgAAAAAACAJQAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADe394I7+/vQu/r72Pv7+977+vvjO/r + 74zv7+977+vvY+/v70Ln5+cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+8p7+/vhO/v787v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v1u/v74zv7+85AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vSu/v78bv7+//7+/v/+/n + 5//3w7X/96KM//+Oc///fVr//3VS//91Uv//fVr//45r//eijP/3vrX/7+Pe/+/v7//v7+//7+/vzu/r + 71oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7ynv7+/G7+/v/+/r + 7//3vq3//4Zj//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//+G + Y//3uq3/7+vv/+/v7//v7+/O7+/vOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/ve+/v + 7//v7+//97ql//91Sv//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//3FC//e2pf/v6+//7+/v/+/v74wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOfj + 5wjv7++17+/v//fb1v//hlr//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//glL/99fO/+/v7//v7+/G7+vvEAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA5+fnEO/v787v7+//98Ot//9xOf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//205//e6 + pf/v7+//7+/v3u/v7xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADn4+cI7+/vzu/v7//3spT//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf/3qoz/7+/v/+/v797v7+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++t7+/v//e2nP//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH/966M/+/v7//v7+/GAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v73Pv7+//98e1//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//fDpf/v7+//7+/vjAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v7/f339b//305//95 + Mf//eTH//3kx//+GSv//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+OWv//roz//4JC//95Mf//eTH//3kx//99 + Of/3287/9/P3/+/v7zkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3tffz + 7//3mmP//30x//99Mf//fTH//30x//+ea///upT//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//305///r5////////8+1//99 + Mf//fTH//30x//99Mf//klr/9+/v//fz984AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+859/P3//fLtf//fTH//30x//99Mf//fTH//30x//+COf//+/f//8Oc//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//6Zz//// + /////////7aM//99Mf//fTH//30x//99Mf//fTH/98el//fz9//38/dSAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD38/et9/P3//eWUv//gjn//4Ix//+COf//gjn//4I5//+CMf//387///////+6 + lP//gjH//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+C + Of//gjH//9/O////////49b//4Y5//+CMf//gjn//4I5//+CMf//gjn//45K//fv7//38/fOAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r7xj38/f/99O9//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//vpT//7qM//+6lP//uoz//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//mlL////////79///mlr//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//fP + tf/38/f/9/P3MQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz92v38/f/965z//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//eKOf//lkr//+ve////////+/f//5pS//eKOf/3ijn/94o5//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//eKOf/3ijn/94o5//eKOf//snv///v///++lP/3ijn/94o5//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//ema//38/f/9/P3hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97X37+//95JC//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn//+fW/////////////9u9//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//+qa///07X//6Zj//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/37+f/9/P3zgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9+/328b/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5///Lpf//z6X//7Jz//////////////////+u + a///w5T//8+l///Ppf//z6X//8+l///Ppf//z6X//8+l///Ppf//z6X//6Ja///v3v///////8ul///H + lP//z6X//8+l//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3173/9/P3/+/v7xAAAAAAAAAAAAAA + AAAAAAAA7+vvIffz9//3y6X/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5///7/////////9e1///X + tf/////////////r3v//w4z/////////////////////////////////////////////69b//8OM//// + ////+/f//7Zz//////////////////eaQv/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3x5T/9/P3//fz + 9zkAAAAAAAAAAAAAAAAAAAAA9/P3Qvfz9//3voT/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5///7 + //////////////+2c///+/f/////////////x5T//+ve//////////////////////////////////// + ////unv//8uc///HjP//y5z//9/G//////////////////eeQv/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3unv/9/P3//fz91oAAAAAAAAAAAAAAAAAAAAA9/P3Uvf39//3tnP/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/9545///////////////////r1v//y5z/////////////9/f//757//////////////////// + ///////////////fvf//163////////37//3tmv///////////////////////eiSv/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3smv/9/f3//fz93MAAAAAAAAAAAAAAAAAAAAA9/P3Y/f39//3tmv/9545//ee + Of/3njn/9545//eeOf/3njn/96JC///79///+/f///v3///79///x4z///Pn/////////////9u1///f + vf//+/f///v3///79///+/f///v3//e+e//////////////btf//373///v3///79///+/f///v3//em + Sv/3njn/9545//eeOf/3njn/9545//eeOf/3smP/9/f3//f393sAAAAAAAAAAAAAAAAAAAAA9/P3Y/f3 + 9//3umv/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/98N7//// + //////////////e2Y//3ojn/96I5//eiOf/3ojn/96I5///jxv////////v3//euUv/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3smP/9/f3//f393sAAAAAAAAAAAAA + AAAAAAAA9/P3Uvf39//3vnP/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5///rzv/////////////r1v/3pjn/96Y5//emOf/3pjn/97Za/////////////9el//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3umv/9/f3//fz + 93MAAAAAAAAAAAAAAAAAAAAA9/f3Off39//3y4z/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//e6Y////////+vW//fPlP/3w3P/96o5//eqOf/3qjn//+O9//// + ////9+//965C//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3x3v/9/f3//f391oAAAAAAAAAAAAAAAAAAAAA7+/vGPf39//316X/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3x3v//9+1////////9+//97JK//eu + Of/3ulr////////////3y4T/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/305z/9/f3//f39zEAAAAAAAAAAAAAAAAAAAAAAAAAAPf39+f3587/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3vlr///v3//// + ////////99OU//eyOf//47X////////rzv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/348b/9/f3//fz9wgAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 96339/f/97ZK//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn//9ul///37//315z//9+t//e+Uv////////////e+Wv/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//e2Qv/38+//9/f3xgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf392P39/f/98+E//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97pC//fThP//+/f///vv///frf//////99uc//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fLc//39/f/9/f3ewAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7xD39/f39+fG//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e+Sv/314z/98dj///79///9+f/975C//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//fn + vf/39/f/9/f3IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/ec//f3//fLWv/3vjn/7745//e+ + Of/3vjn/9745/+++Of/3vjn/7745//e+Of/3vjn/7745//e+Of/3vjn/7745//e+Of/3vjn/99uU//// + ///303P/7745//e+Of/3vjn/7745//e+Of/3vjn/9745/+++Of/3vjn/9745/+++Of/3vjn/9745/+++ + Of/3vjn/98dS///39//39/e9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cp//v///fr + xv/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vw0L///fv///rvf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/9+e1///7///39/dCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3nP/7///303P/78dC/+/HQv/vx0L/78dC/+/HOf/vx0L/78c5/+/HQv/vx0L/78c5/+/H + Qv/vx0L/78c5/+/HQv/313P///vv//fLSv/vx0L/78c5/+/HQv/vx0L/78c5/+/HQv/vx0L/78dC/+/H + Of/vx0L/78dC/+/HOf/vx0L/78dC/+/HOf/302v///v3///7/70AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3GP/7/+//9+f/789K/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/3z1L/99Nj/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LSv//897///v////7/ykAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/1r/+///9+/G/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C//frvf//+/////v/cwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+U//v///fr + rf/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/9+el///7 + ////+/+tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/tf/7///3663/79dC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/X + Qv/366X///v////7/8b39/cIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/7X/+///9/PG/+/bSv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79tK//fvvf//+/////v/xvf39wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+U//v////35//343P/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v43P///fn///7////+/+l//v/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Wv/7 + /+//+///9/PG/+/jY//v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/7+Na//fzvf//+/////v/9//7/2sAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf39xj/+/+l///////////3987/9+uE/+/jSv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NK//fre//398b///v/////////+/+1//v/IQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Kf/7/6X////3////////9///99b/9/Ot//fv + jP/v73v/7+tr/+/ra//v63v/9++M//fzrf//987////3////////////////rf///zkAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8Q////Y/// + /63////v///////////////////////////////////////////////v////tf///2v/+/8YAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/GP/7/zn/+/9S////Y////2P///9S//v/Qv/7/yEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////wAA////////AAD//+AH//8AAP// + AAD//wAA//wAAD//AAD/8AAAD/8AAP/gAAAH/wAA/4AAAAH/AAD/AAAAAP8AAP4AAAAAfwAA/gAAAAB/ + AAD8AAAAAD8AAPgAAAAAHwAA+AAAAAAfAADwAAAAAA8AAPAAAAAADwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAADAADAAAAAAAMAAMAAAAAAAwAAwAAAAAADAADAAAAAAAMAAMAAAAAAAwAAwAAAAAAD + AADAAAAAAAMAAMAAAAAAAwAA4AAAAAADAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADwAAAAAA8AAPAA + AAAADwAA+AAAAAAfAAD4AAAAAB8AAPwAAAAAPwAA/gAAAAB/AAD/AAAAAH8AAP+AAAAA/wAA/8AAAAH/ + AAD/4AAAB/8AAP/wAAAP/wAA//wAAD//AAD//wAA//8AAP//8A///wAA////////AAD///////8AACgA + AAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAClpqUhvb69QsbHxlrOy85avb69Sq2u + rSEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANbT1jnv7++c7+/v5+/v7//329b/98/G//fP + xv/329b/7+vv/+/v7+/v7++l3t/eQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN7b3jHv7+/G7+fn//eynP//hmP//2U5//9d + Mf//XTH//10x//9dMf//ZTn//4Jj//eynP/v4+f/7+/v1ufj50IAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++E7+vv//eqlP//bTn//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9pOf/3qoz/7+vn/+/v75QAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vtffb1v//glL//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//fVL/99fO/+/v + 7721trUIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v763308b//3VC//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//dTn/99PG/+/v770AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++E99/W//99 + Qv//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//eUL/99vO/+/v75QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1tfWKffv + 7///jlr//3kx//95Mf//jlL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//+2lP//pnv//3kx//95Mf//jlL/9+/v/+fn5zkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD38/e997qc//99Mf//fTH//30x//+uhP//vpz//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//klL////////Xvf//fTH//30x//99Mf/3tpT/9/P3zgAAAAAAAAAAAAAAAAAA + AAAAAAAAzsvOMffv7///ikL//4Y5//+GOf//hjn//5JS///39///pmv//4Yx//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5///Lpf//+/f//5ZS//+GOf//hjn//4Y5//+KQv/36+f/5+fnQgAA + AAAAAAAAAAAAAAAAAAD38/eM98ut//+KMf//ijH//4ox//+KMf//ijH//8ec///79///qnP//4ox//+K + Mf//ijH//4ox//+KMf//ijH//4ox//+KMf//ijn//+/n//+6jP//ijH//4ox//+KMf//ijH//4ox//fH + pf/38/elAAAAAAAAAAAAAAAAAAAAAPfz99b3rnP/9445//eOOf/3jjn/9445//eSQv//voz////////v + 5//3kkL/95JC//eSQv/3kkL/95JC//eSQv/3kkL/95I5///Lpf//w5T/95I5//eSQv/3jjn/9445//eO + Of/3jjn/96pr//fz9+cAAAAAAAAAAAAAAACUlpQI9/P3//eaQv/3kjn/95I5//eSOf/3kjn////////b + vf//797////////Ppf//+/f/////////////////////////////y5z////////Ppf//+/////////eW + Of/3kjn/95I5//eSOf/3lkL/9/P3/7W2tSEAAAAAAAAAAL26vSn37+f/95o5//eaOf/3mjn/95o5//ea + Of/////////////LnP////////v3///Trf///////////////////////+PO///Trf//063//9et//// + ////////955C//eaOf/3mjn/95o5//eaOf/3697/zs/OQgAAAAAAAAAAvbq9Offn3v/3njn/9545//ee + Of/3njn/9545/////////////+vW///jxv///////9+9///v3v/////////////7////06X////////X + rf//+/f////////////3okL/9545//eeOf/3njn/9545//fn1v/W19ZSAAAAAAAAAAC1trU59+ve//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/97Ja////////////97Zj//eiOf/3ojn/96Y5///z + 5///9+//96ZC//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/9+fW/9bX1lIAAAAAAAAAALWy + tSn38+f/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn//9ul///37///05z/96o5//eq + Of/3x4T///////fLjP/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/37+f/1tPWQgAA + AAAAAAAAnJqcCPf39//3skr/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3skL//+O9//// + ///3z4z/9645///z3v//79b/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/97JC//f3 + 9/+9ur0YAAAAAAAAAAAAAAAA9/f3zvfHc//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/315T///Pn///frf/3y3v///////fDY//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3x3P/9/f35wAAAAAAAAAAAAAAAAAAAAD39/eE9+O1//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/325z//+/W///v1v//463/97Y5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//ffrf/39/ecAAAAAAAAAAAAAAAAAAAAAM7Lzin39/f/98NK//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3y2v///fv//fDSv/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3w0r/9/fv/+fn5zkAAAAAAAAAAAAAAAAAAAAAAAAAAPf3963346X/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5///rvf/313v/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5//ffpf//+//GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3tveIf/7 + 9/f302P/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/99+M/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/302P///v3/+/r7zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3a//35//v01L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/79NK///z3v//+/+EAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/nP/z3v/v11L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/XSv//89b///v/rQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/nP/35//v32P/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v32P///fe///7/60AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/c//7//f3763/799S/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30r/9++l///79///+/97AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3t/eIf/7 + /63/+/f/9/O1//fre//v51L/7+NC/+/jQv/v40L/7+NC/+/nSv/363v/9/O1///79///+/+97+vvKQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAN7b3in///+M////1v//////++////ve///73v//++///////////9b///+M5+PnMQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAraqtCMbDxinOz85Czs/OQsbHximtrq0IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////4 + H///wAP//wAA//4AAH/8AAAf+AAAH/AAAA/gAAAH4AAAB8AAAAPAAAADwAAAA4AAAAGAAAABgAAAAYAA + AAGAAAABgAAAAcAAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gAAB/8AAA//gAAf/8AAP//wAP///gf//// + //8oAAAAEAAAACAAAAABACAAAAAAAEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAASklKCGNhYyljYWMpSklKCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACUkpQ579fWtfeynP/3moT/95qE//eynP/v29a9nJqcQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADWz86M956E//9pMf//ZTH//2Ux//9lMf//ZTH//2kx//eee//e19aUAAAAAAAAAAAAAAAAAAAAAAAA + AADWz86M/45j//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//45a/97X1pQAAAAAAAAAAAAA + AACMjow5966E//99Mf//nmv//30x//99Mf//fTH//30x//99Mf//gjn//8u1//99Mf/3qoT/nJ6cQgAA + AAAAAAAA79/Wrf+KOf//hjH//7aE//+yhP//hjH//4Yx//+GMf//hjH//7J7//+2hP//hjH//4o5/+/j + 3r0AAAAAAAAAAPfLpff3kjn/95I5///Lpf//9+///7qE///LnP//y5z//7qE///Xtf//x5z/95I5//eS + Of/3y6X/UlFSCFpdWhj3w4z/95o5//eeOf///////+fO///r1v//+/f////////jxv//373///////ee + Of/3mjn/98OM/2tpayFaWVoY98uM//emOf/3pjn/96Y5//eqQv//8+f/97Zj//euSv//69b/96Y5//em + Of/3pjn/96Y5//fHjP9raWshAAAAAPfbrff3sjn/97I5//eyOf/3sjn/98dz///nxv//26X/98dr//ey + Of/3sjn/97I5//eyOf/32633AAAAAAAAAADv596t97pC//e6Of/3ujn/97o5//e6Of/314T//+Ot//e6 + Of/3ujn/97o5//e6Of/3ukL/9+/etQAAAAAAAAAAjI6MMffblP/vx0L/78dC/+/HQv/vx0L/99dz//fL + Sv/vx0L/78dC/+/HQv/vx0L/99uM/6WipTkAAAAAAAAAAAAAAADe29aE99tr/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/99tr/+fj3owAAAAAAAAAAAAAAAAAAAAAAAAAAN7f1oT365T/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/9+eU/+fn3owAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlJaUMffz + 563387X39++U//fvlP/387X39/PnrZyenDkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAGNlYxhjZWMYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPw/AADwDwAA4AcAAMAD + AACAAQAAgAEAAIAAAAAAAAAAAAAAAIABAACAAQAAgAEAAMADAADgBwAA8A8AAP5/AAA= + + + + Master station management V1.5 + + + baseUrl: + + + Apply + + + cameraUrl: + + + Front connection parameters + + + Database backup job + + + (Two contents: IP + port) + + + Front-End Processor IP: + + + Apply + + + Setting Java ENV + + + MySQL Install + + \ No newline at end of file diff --git a/ManageTools/Main.resx b/ManageTools/Main.resx new file mode 100644 index 0000000..28c6b6d --- /dev/null +++ b/ManageTools/Main.resx @@ -0,0 +1,3211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + cb1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 0 + + + checkBox1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 1 + + + bt_stop + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 2 + + + bt_start + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 3 + + + + Top + + + + 微软雅黑, 12pt + + + 5, 4 + + + 591, 93 + + + + 1 + + + 主站服务 + + + groupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + + + True + + + Off + + + 460, 31 + + + 83, 25 + + + 12 + + + English + + + cb1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 0 + + + True + + + 460, 62 + + + 125, 25 + + + 11 + + + 开机自动运行 + + + checkBox1 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 1 + + + 331, 39 + + + 97, 31 + + + 10 + + + 关闭服务 + + + bt_stop + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 2 + + + 154, 39 + + + 97, 31 + + + 9 + + + 启动服务 + + + bt_start + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 3 + + + True + + + 微软雅黑, 12pt + + + 20, 42 + + + 62, 21 + + + 0 + + + 服务器: + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 9 + + + 微软雅黑, 12pt, style=Bold + + + 88, 38 + + + 144, 29 + + + 1 + + + 192.168.123.123 + + + tb_Host + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 8 + + + True + + + 微软雅黑, 12pt + + + 262, 41 + + + 62, 21 + + + 2 + + + 数据库: + + + label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 7 + + + 微软雅黑, 12pt, style=Bold + + + 330, 38 + + + 144, 29 + + + 3 + + + tb_db + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 6 + + + True + + + 微软雅黑, 12pt + + + 20, 80 + + + 62, 21 + + + 4 + + + 用户名: + + + label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 5 + + + 微软雅黑, 12pt, style=Bold + + + 88, 76 + + + 144, 29 + + + 5 + + + tb_user + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 4 + + + True + + + 微软雅黑, 12pt + + + 278, 79 + + + 46, 21 + + + 6 + + + 密码: + + + label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 3 + + + 微软雅黑, 12pt, style=Bold + + + 330, 76 + + + 144, 29 + + + 7 + + + mtb_pwd + + + System.Windows.Forms.MaskedTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 2 + + + 480, 37 + + + 97, 31 + + + 8 + + + 参数测试 + + + bt_test + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 1 + + + 480, 75 + + + 97, 31 + + + 9 + + + 参数生效 + + + btapply + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 0 + + + Top + + + 微软雅黑, 12pt + + + 5, 97 + + + 9, 9, 9, 9 + + + 5, 6, 5, 6 + + + 591, 133 + + + 3 + + + 数据库连接参数 + + + groupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + 17, 17 + + + True + + + 微软雅黑, 12pt + + + Off + + + 19, 43 + + + 78, 21 + + + 1 + + + 备份路径: + + + label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 7 + + + 103, 40 + + + 456, 29 + + + 6 + + + tb_path + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 6 + + + Off + + + 524, 41 + + + 33, 26 + + + 7 + + + ..... + + + bt_choose + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 5 + + + True + + + 微软雅黑, 12pt + + + Off + + + 19, 86 + + + 78, 21 + + + 8 + + + 备份时间: + + + label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 4 + + + yyyy-MM-dd HH:mm:ss + + + 103, 86 + + + 189, 29 + + + 9 + + + dTP_time + + + System.Windows.Forms.DateTimePicker, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 3 + + + True + + + 微软雅黑, 12pt, style=Bold + + + Off + + + 316, 90 + + + 143, 22 + + + 10 + + + 注意:每天备份一次 + + + label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 2 + + + Off + + + 154, 137 + + + 97, 31 + + + 11 + + + 备份测试 + + + bt_backup + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 1 + + + Off + + + 331, 137 + + + 97, 31 + + + 12 + + + 创建任务 + + + bt_createtask + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox6 + + + 0 + + + 5, 375 + + + 591, 195 + + + 4 + + + 数据库备份作业 + + + groupBox6 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + True + + + 微软雅黑, 12pt + + + Off + + + 20, 42 + + + 94, 21 + + + 0 + + + 服务器地址: + + + baseurl_label + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 5 + + + 微软雅黑, 12pt, style=Bold + + + 122, 38 + + + 213, 29 + + + 1 + + + 192.168.123.123 + + + baseUrl + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 4 + + + True + + + 微软雅黑, 12pt + + + Off + + + 20, 80 + + + 94, 21 + + + 4 + + + 流媒体地址: + + + cameraUrl_label + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 3 + + + 微软雅黑, 12pt, style=Bold + + + 122, 76 + + + 213, 29 + + + 5 + + + cameraUrl + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 2 + + + Off + + + 480, 76 + + + 97, 31 + + + 9 + + + 参数生效 + + + button1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 1 + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 0 + + + 微软雅黑, 12pt + + + 5, 236 + + + 9, 9, 9, 9 + + + 5, 6, 5, 6 + + + 591, 133 + + + 5 + + + 前端连接参数 + + + groupBox4 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 微软雅黑, 12pt, style=Bold + + + Off + + + 343, 41 + + + 240, 22 + + + 12 + + + (两个地址内容为:IP + 端口) + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 0 + + + True + + + 微软雅黑, 12pt + + + Off + + + 17, 99 + + + 112, 21 + + + 13 + + + GPRS IP: + + + label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 0 + + + Off + + + 356, 94 + + + 189, 31 + + + 14 + + + 参数生效 + + + button4 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 1 + + + 微软雅黑, 12pt, style=Bold + + + 164, 96 + + + 144, 29 + + + 13 + + + gprs_ip + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 2 + + + Off + + + 356, 42 + + + 189, 31 + + + 12 + + + 设置Java环境变量 + + + java_env_setting + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 3 + + + Off + + + 164, 42 + + + 144, 31 + + + 11 + + + MySQL安装 + + + mysql_install + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 4 + + + 5, 576 + + + 591, 160 + + + 13 + + + 一键部署 + + + groupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + True + + + 50 + + + 10, 21 + + + 601, 749 + + + 微软雅黑, 12pt + + + + AAABAAwAICACAAEAAQAwAQAAxgAAADAwEAABAAQAaAYAAPYBAAAgIBAAAQAEAOgCAABeCAAAEBAQAAEA + BAAoAQAARgsAADAwAAABAAgAqA4AAG4MAAAgIAAAAQAIAKgIAAAWGwAAEBAAAAEACABoBQAAviMAAICA + AAABACAAKAgBACYpAABISAAAAQAgAIhUAABOMQEAMDAAAAEAIACoJQAA1oUBACAgAAABACAAqBAAAH6r + AQAQEAAAAQAgAGgEAAAmvAEAKAAAACAAAABAAAAAAQABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD///8AAAAAAAAAAAAAH/gAAHAOAAHAA4ADCqDABgAIYAxSIjAJAIMwGMgWiBJihhgwYCSMJLqMJCD3 + /0Qq3+sUIP//RCoMMBQgrmVEKAbgDCKTSSQ0JcRMEIGRGBopBBgIgqFQBigUMAaCgWADKFTAAMIDAAB5 + XgAAH/gAAAAAAAAAAAD////////////gB///gAH//gAAf/wAAD/4AAAf8AAAD/AAAA/gAAAH4AAAB8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPgAAAH4AAAB/AAAA/4AAAP+AAAH/wA + AD//AAD//4AB///gB////////////ygAAAAwAAAAYAAAAAEABAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/wD/AP// + AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAP///4////8AAAAAAAAAAAAAAAAAAAAA//iIyMjIeI//AA + AAAAAAAAAAAAAAAAD/iHzs7OzszsiI/wAAAAAAAAAAAAAAAA/4zsfIyMjIyMzsj/8AAAAAAAAAAAAAD/ + h87IzsfOx87OyM7P/wAAAAAAAAAAAA/4zsjOyM7HzsjIzsjHj/AAAAAAAAAAAP+M7IyMjOyM7IzsjHzs + 5/8AAAAAAAAAD/jOyM7OzsjO3s7IzsjIzI/wAAAAAAAAD4zsjOyMjIzs7IyM7I7Ofsj/AAAAAAAA+OyM + 58jOzs58jOzsjOyMjOz/AAAAAAAP987IiOzn7IyOznfOfs//zn5/8AAAAAAPjnfs6I7HyOzsjOyM7I/4 + 7Hzo8AAAAAD/yM7Iz/h+zsjOyM5+yI/858jIjwAAAAD47OfOeIiMjOfn7Izsjv/sjO7OjwAAAAD4yM6M + 7Pj+53yMjs6M6PjI58jsj/AAAA/+7I7I5//4zn7OyOyOiMjs7OyOz/AAAA+MjsjsiO//iIiIiIiM/4iI + jo7I6PAAAA+OyOzo/4j/iP/////4/+//zsjsePAAAA+Ofsjs//j/+I/////oiI//5+yOyPAAAA+M5+yO + //iP/+////iP/v//fI7I7vAAAA/ozo7I///v/4j///j/iP//6M6OyPAAAA+OfOfs5ufo//5+zuj/5+zn + zufOjvAAAA986OyOjOfOj//OjI/47I5+js6OyPAAAA+O7I7s6Ofnj4iO7o/+fuznzo7I6IAAAA+OfuyO + jOfs6I/3eP+M545+jsjuyPAAAA+Od45+zo5+fv/+6Pjujs5+yO537/AAAA/47Ofn6M5+fo+IiP5+zo7I + 7sjs7/AAAAD47n7Ojufs6Oj/j45+jsjufo5+jwAAAAD47I6Ozo5+jO6O/+fs6O5+fs6OjwAAAAD/jufo + 5+zo7n7I+OyOjsjs6Ojs/wAAAAAPjn7O5+js6Ofvju6Ozo7o5+zv8AAAAAAP+Ojo5+fo5+eP547n6Ofn + 7o6P8AAAAAAA/+5+fn6O5+7o7ufo7n5+jOiPAAAAAAAAD4jo7o7n6Ofn6M6Ofo7n6OjwAAAAAAAAD/ju + fufo7Ojo7o7n6Ofo7o/wAAAAAAAAAP+Ojn5+jo7n6Ojn7n6OeP8AAAAAAAAAAA/46Oju6Ofo7n6Ofuju + j/AAAAAAAAAAAAD/+O547o7ufo7ujo6I/wAAAAAAAAAAAAAA/4jufujo6Ofo7oj/AAAAAAAAAAAAAAAA + D/+I6O5+7o7oiPjwAAAAAAAAAAAAAAAAAA//+IiOiOj4//AAAAAAAAAAAAAAAAAAAAAA////////AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP///n///wAA//+AAf//AAD//gAAf/8AAP/4 + AAAf/wAA//AAAAf/AAD/wAAAA/8AAP+AAAAB/wAA/wAAAAD/AAD+AAAAAH8AAP4AAAAAPwAA/AAAAAA/ + AAD4AAAAAB8AAPgAAAAAHwAA8AAAAAAPAADwAAAAAA8AAPAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAH + AADgAAAAAAcAAOAAAAAABwAA8AAAAAAPAADwAAAAAA8AAPAAAAAADwAA+AAAAAAfAAD4AAAAAB8AAPwA + AAAAPwAA/gAAAAB/AAD+AAAAAH8AAP8AAAAA/wAA/4AAAAH/AAD/wAAAA/8AAP/wAAAP/wAA//gAAB// + AAD//gAAf/8AAP//wAP//wAA////////AAD///////8AAP///////wAAKAAAACAAAABAAAAAAQAEAAAA + AAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA + /wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAD/+Pj//wAAAAAAAAAAAAD/jHzOzIiPAAAAAAAAAAD/jOznx87M6P8AAAAAAAAPjOyMfOfIyMyI8A + AAAAAA+IyM7OfOzs587P8AAAAAD/zs7Ix8jIyM7Izo8AAAAA9+yM7Ofs7OyM/sjPAAAAD4x+iHfOyMjs + 6Pjs6PAAAA/s7I/sjI7Od8j3yMiAAAD4yOzo+O7OjOzvjs7s/wAA+OyHyP/IfOjIiM6Mjn8AAPzozvj/ + j///+Pj/587PAAD+fn7/j/j//4iI/86OiAAA/Ozs/4j4//+Pj/+OyM8AAP6Hjn7o/+bs/+7OyO7oAAD2 + 7OfsjoiOiPjOjuyMjwAA+Ojsjs54+OiO6M6O7s8AAPjOfufo6PiP6M7oznjvAAD47n5+fs6IiO6Ofujs + /wAAD+js6Ozo7v6M5+fs6PAAAA+Ofozo7n+O6O5+fojwAAAA+Ojujo7o5+yOfo7vAAAAAA/s6O5+fn6O + 6Ofn/wAAAAAP+O5+jo7n6O5+7/AAAAAAAP+Ojufn6O5+jv8AAAAAAAAA+Ojuju6Ojo8AAAAAAAAAAA/4 + jujo6I/wAAAAAAAAAAAAD//4+P/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// + /////////+AH//+AAf/+AAB//AAAP/gAAB/wAAAP8AAAD+AAAAfgAAAHwAAAA8AAAAPAAAADwAAAA8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gAAA/4AAAf/AAAP/8AAP//gAH//+AH//// + ////////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA + D4iIgAAAAA+MzM7I8AAA/Ozo7IzvAACOjIzOz8gAD8eI7neOjPAI7I+IjojmgAjo+I/4j8iACM7ujn/n + 7oAI58iIjn588A/ujuiOzo7wAI7n6Ojo6AAA+OjufufvAAAPjn7o6PAAAAAPiIjwAAAAAAAAAAAAAP// + AAD4HwAA4AcAAMADAADAAwAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAwAMAAMADAADgBwAA+B8AAP// + AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAABAAAAAQAAAAAAAP9hMQD/ZTEA/2kxAP9t + MQD/bTkA/3ExAP91MQD/eTEA/30xAP9xOQD/fTkA/3FCAP91SgD/dVIA/31aAP+CMQD/hjEA/4I5AP+G + OQD3ijkA9445APeSOQD3ljkA95o5APeeOQD3ojkA96Y5APeqOQD3rjkA7745APeyOQD3tjkA97o5APe+ + OQDvwzkA78c5AP+CQgD/hkoA/45KAPeSQgD3mkIA955CAP+WSgD/glIA/4ZaAP+OWgD3llIA/5pSAP+S + WgD/mloA96JCAPeuQgD3okoA96ZKAPe2QgD3ukIA975CAPeySgD3tkoA975KAPeuUgD/oloA975SAPe2 + WgD3uloA975aAP+GYwD/jmsA95pjAP+eawD/jnMA/6ZjAPemawD/qmsA/65rAPeyYwD3tmMA97pjAPey + awD3tmsA97prAP+mcwD3rnMA97ZzAP+ycwD/tnMA975zAP+yewD3unsA9757AP+6ewD/vnsA78NCAO/H + QgDvy0IA789CAO/LSgDvz0oA98tKAO/TQgDv10IA79tCAO/fQgDv20oA98dSAPfPUgD3y1oA7+NCAO/j + SgDv41oA98djAPfTYwD302sA98NzAPfLcwD3w3sA98d7APfTcwD313MA7+NjAO/rawDv43MA7+t7AO/v + ewD343MA9+t7APeijAD3qowA966MAP+ujAD3voQA/7aMAP+6jAD3spQA/7qUAP++lAD3tpwA97alAPe6 + pQD3uq0A976tAPe+tQD3y4QA98+EAP/DjAD/x4wA98uMAPfThAD314wA98eUAP/DlAD/x5QA98+UAP/D + nAD/y5wA99OUAPfblAD305wA99ecAPfbnAD364QA9++MAPfDpQD3x6UA98ulAP/LpQD/z6UA98OtAPfX + pQD/16UA/9ulAP/XrQD/360A98O1APfHtQD3y7UA98+1AP/PtQD/07UA/9e1AP/btQD/37UA99O9APfX + vQD/270A/9+9APfnpQD366UA9+utAPfzrQD357UA/+O1APfnvQD/470A9+u9APfvvQD/670A9/O9APfb + xgD/38YA99fOAPfbzgD/384A99vWAPff1gD348YA9+fGAP/jxgD368YA9+/GAPfnzgD/684A9/PGAPf3 + xgD3984A//fOAO/j3gD/49YA/+fWAP/r1gD/694A/+/eAP/31gD/894A7+fnAO/r7wDv7+8A9+/nAP/r + 5wD37+8A//PnAP/35wD38+8A//fvAP/77wD38/cA9/f3AP/39wD/+/cA///3AP/7/wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7e0AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7e3j4+Pj4+Pj4+Pj7e0AAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAO3j4+Guf0cPDg4PRH+O2ePj7QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADt + 4+OMQwEBAQEBAQEBAQEBAUOM4+PtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOPjig0BAQEDAQEDAQED + AQEDAQEBDIrj4+0AAAAAAAAAAAAAAAAAAAAAAAAAAADt48wtAQEDAwEDAQMBAwEDAQMBAwMBAwEsyePt + AAAAAAAAAAAAAAAAAAAAAAAAAO3jqAoDAwMDAwMDAwMDAwMDAwMDAwMDAwMDBYvj7QAAAAAAAAAAAAAA + AAAAAAAA7eOGAwMDBgMDBgMGAwYDBgMGAwYDAwYDAwYDAwaA4+0AAAAAAAAAAAAAAAAAAADt44kDBgYG + BgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGgOPtAAAAAAAAAAAAAAAAAADjrgYIBggIBggGCAYIBggGCAYI + BggGCAYIBggGCAYIBqPj7QAAAAAAAAAAAAAAAOPMEggICCYICAgICAgICAgICAgICAgICAgICDGCJQgI + CAvK7QAAAAAAAAAAAAAA7elFCBAIEEaICBAIEAgQCBAIEAgQCBAIEAgQC+X/sggIEAgx5u0AAAAAAAAA + AAAA7a8IEAgQCBLvmggQCBAIEAgQCBAIEAgQCBAIUv//hAgQCBAIo+0AAAAAAAAAAADt7S8SEBISEhDL + /4gQEBISEBISEBISEBISEBIQy//aEhASEhASJuntAAAAAAAAAADttxARERERERCIhYiFEBERERERERER + EREREREw/+8yERERERAREbHtAAAAAAAAAADtUxQUFBQUFBQr3f/vMBQUFBQUFBQUFBQUFBRY/4gUFBQU + FBQUFEnt7QAAAAAAAO3mKBQUFhQUFhQW2v//uhQWFhQWFBYUFhQWFEuzSBQWFBYWFBYWFhTk7QAAAAAA + AO3HFhYWFhYWFqenVf///0uIp6enp6enp6enPt7/p4inpxYWFhYWFha47QAAAAAAAO2jFxcXFhcXF/// + s7T//92S///////////ckv/vVf///ykWFxYXFheW7QAAAAAAAO2DFxcZFxkXF////1Xv//+I3f////// + //9bm5Kb0P///ykXGRcXGRda7QAAAAAAAO1UFxkXGRcZGf///9yb///vXP///////7qs/+pQ/////zYX + GRcZFxlQ7QAAAAAAAO1QGRkZGRkZM+/v7++S5///tMLv7+/v71r//7TC7+/v7zYZGRkZGRlM7QAAAAAA + AO1QGxkbGRsZGRkZGRkZdf///0wZGRkZGdD/7z0ZGRkZGRkZGxkbGRlM7QAAAAAAAO1XGxsbGxsbHRsb + HRsbG9T//9wbGxsbQf//pxsbGxsbGxsbGxsbGxtR7QAAAAAAAO2TGx0bHRsdGx0bHRsdG07/3JlXHRsd + wv/qNxsbHRsdGx0bHRsdHR117QAAAAAAAO2pHR0dHR0dHR0dHR0dHR11tv/qOx1B//+PGx0dHR0dHR0d + HR0dHR2f7QAAAAAAAO3THR0hHSEdIR0hHSEdIR1C7///mR3A/9QdISEdISEhHSEhIR0hHR3P7QAAAAAA + AP/tOx0hHR0dHSEdHR0dHSEdq+qfrWn//0EdHR0hHR0dIR0dHSEdITjp/wAAAAAAAADtlCEdISEhIR0h + ISEhIR0hOJTv6q3/nyEhISEhISEhISEhISEdIXPtAAAAAAAAAADtzyEhISEhISEhISEhISEhITuVb+/o + OSEhISEhISEhISEhISEhIcHtAAAAAAAAAAD/7msiHiIhIh4iHiEiHiIiHiIinf92HiIiHiEiIR4hIh4h + Ih4iae//AAAAAAAAAAAA/9EeHiQeJB4kHiQeJB4kHiRe6sUeHh4kHiQeJB4kHh4kHh4kv/8AAAAAAAAA + AAAA//92X19fXyRfJF9fHl9fJF926mNfJF9fJF9fXiRfXyRfXyRx7/8AAAAAAAAAAAAAAP/nYl9fX19f + X19fX19fX19qcF9fX19fX19fX19fX19fX2Le/wAAAAAAAAAAAAAAAAD/0WBfYGBfYF9gYGBgX2BgYGBg + YGBfYF9gX2BgX2BgX8H/AAAAAAAAAAAAAAAAAAD//71gYGBlYGVgYGVgYGVgYGVgYGBlYGBlYGBgZWBg + vP//AAAAAAAAAAAAAAAAAAAA//+9ZWVgZWBlYGVgZWBlYGVgZWVgZWBlYGVlYGW8//8AAAAAAAAAAAAA + AAAAAAAAAP//0mhlZWVlZWVlZWVlZWVlZWVlZWVlZWVlaMb//wAAAAAAAAAAAAAAAAAAAAAAAAD//+d9 + ZWdlZ2VnZWdlZ2VnZWdlZ2VnZWd66P//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//0nhnZ2dnZ2dnZ2dn + Z2dnZ2dnbsb//wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////XoW1sbGxsbGxsbGxsbX7W////AAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///+/fvqJ8eXl8or7Y7////wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAP///////////////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///////wAA////////AAD///5///8AAP//gAH//wAA//4AAH//AAD/+AAAH/8AAP/w + AAAH/wAA/8AAAAP/AAD/gAAAAf8AAP8AAAAA/wAA/gAAAAB/AAD+AAAAAD8AAPwAAAAAPwAA+AAAAAAf + AAD4AAAAAB8AAPAAAAAADwAA8AAAAAAPAADwAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADgAAAAAAcAAOAAAAAABwAA4AAAAAAH + AADgAAAAAAcAAPAAAAAADwAA8AAAAAAPAADwAAAAAA8AAPgAAAAAHwAA+AAAAAAfAAD8AAAAAD8AAP4A + AAAAfwAA/gAAAAB/AAD/AAAAAP8AAP+AAAAB/wAA/8AAAAP/AAD/8AAAD/8AAP/4AAAf/wAA//4AAH// + AAD//8AD//8AAP///////wAA////////AAD///////8AACgAAAAgAAAAQAAAAAEACAAAAAAAAAQAAAAA + AAAAAAAAAAEAAAABAAAAAAAA/10xAP9lMQD/aTEA/20xAP9lOQD/aTkA/205AP91MQD/eTEA/30xAP91 + OQD/dUIA/3lCAP99QgD/fVIA/4YxAP+KMQD/hjkA9445AP+KOQD3kjkA95Y5APeaOQD3njkA96I5APem + OQD3qjkA9645APeyOQD3tjkA97o5APe+OQDvwzkA/4pCAPeSQgD3lkIA95pCAPeeQgD/glIA/45SAP+O + WgD/klIA/5ZSAPeiQgD3pkIA97JCAPeySgD3sloA/4JjAP+GYwD/pmsA96prAPe2YwD3rnMA/6pzAP+m + ewDvy0IA789CAPfDSgDv00IA79tCAO/fQgDv00oA79dKAO/fSgDv01IA79dSAO/fUgDv40IA7+dKAO/n + UgD3w2MA98trAO/fYwD302MA98dzAPfLewD313sA9+t7AP+uhAD3qowA/7qMAP++jAD3qpQA97aUAP+2 + lAD3spwA97qcAP++nAD3x4QA98uMAPfPjAD334wA/8OUAP/HnAD/y5wA99eUAP/TnAD325wA98elAP/L + pQD/z6UA98utAP/TpQD336UA/9ulAP/TrQD/160A99+tAP/frQD/170A/9u9AP/fvQD346UA9++lAP/j + rQD3760A9+O1AP/jvQD/670A9/O1APfPxgD308YA99fOAPfbzgD329YA99/WAP/jxgD/484A9+fWAP/r + 1gD/79YA9+feAPfr3gD/794A//PWAP/z3gD/994A//veAO/j5wDv5+cA7+vnAO/r7wDv7+8A9+vnAPfv + 5wD/7+cA9+/vAPfz5wD/8+cA//fnAPf37wD/9+8A//vvAPfz9wD39/cA//f3AP/79wD/+/8AAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm5CQfnp6fpCQmwAAAAAAAAAAAAAAAAAAAAAA + AAAAm41XMgUBAQEBBTJXjZsAAAAAAAAAAAAAAAAAAAAAm5BUBwICAgICAgICAgIFUY6bAAAAAAAAAAAA + AAAAAJt+JwMDAwMDAwMDAwMCAwMDD3ybAAAAAAAAAAAAAACbewwDAwQDAwQDAwQDAwQDBAMDC3ubAAAA + AAAAAAAAm38OBAoECgQKBAoKBAoKBAoECgoEDn2bAAAAAAAAAACUKQoKKAoKCgoKCgQKCgoKCgpWOAoK + KJQAAAAAAAAAm1gKCgpQWQoKCgoKCgoKCgoKKv9vCgoKVZsAAAAAAACUIhISEiqdMwoUEhIUEhISEhJl + nioSEhIikQAAAAAAm2cREREREV+eNxERERERERERFJNSERERERFkmwAAAACcNhMTExMjUv+TIyMjIyMj + IxVlXhUjExMTEzSbAAAAAJslFRUVFf9wh/9mnv//////YP9l//8VFRUVI5sAAAAAkRcXFxcX//9g/55r + /////4Fra2z//yUXFxcXhgAAAACGFxgXGBf//4OA/3CH////Zv9rnv//LRcYFxiCAAAAAIYYGBoYGBgY + GDD//zUYGBiXmS0YGBgYGhgYGIIAAAAAlRodGh0aHR0aHWqZYhodWv9bGhodGh0aHRodlQAAAACcLx0d + Gh0dHR0aLnf/XB2HhB0dHR0dHRodHS6bAAAAAJxMHR0dHR0dHR0dYZN0Tf9IHR0dHR0dHR0dTJwAAAAA + /3YfHx8fHx8fHx8fY4OEdB0fHx8fHx8fHx9t/wAAAAAAmzsfICAgHyAfIB8gSZk7ICAfIB8gHyAgO5QA + AAAAAAD/ciEhISEhISEhISF4TiEhISEhISEhISFy/wAAAAAAAACeSzk5OTk5OTk5OV05OTk5OTk5OTk5 + S54AAAAAAAAAAACTQzo6Ojo6Ojo6Ojo6Ojo6Ojo6Oj+H/wAAAAAAAAAAAP+HQzo9Ojo9Ojo6PTo6PTo6 + PTpAhP8AAAAAAAAAAAAAAP+XSj0+PT09Pj09Pj09Pj09Sov/AAAAAAAAAAAAAAAAAAD/dUM+Pj4+Pj4+ + Pj4+QXOeAAAAAAAAAAAAAAAAAAAAAAD/nnlPRz4+RT5GT3me/wAAAAAAAAAAAAAAAAAAAAAAAAAA//// + mYuLmf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////////+AH//+AAf/+AAB//AAAP/gAAB/wAAAP8AAAD+AA + AAfgAAAHwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gA + AA/4AAAf/AAAP/8AAP//gAH//+AH////////////KAAAABAAAAAgAAAAAQAIAAAAAAAAAQAAAAAAAAAA + AAAAAQAAAAEAAAAAAAD/ZTEA/2kxAP9xMQD/fTEA/4YxAP+COQD/ijkA95I5APeaOQD3njkA96Y5APey + OQD3ujkA/45aAPeqQgD3rkoA97pCAP+OYwD/nmsA9557APe2YwD/snsA78dCAPfLSgDv00IA79tCAPfH + awD322sA98dzAPfXcwD3moQA956EAPeqhAD3roQA/7KEAP+2hAD/uoQA97KcAPfDjAD3x4wA98uMAPfX + hAD324wA/8ecAP/LnAD325QA9+eUAPfrlAD375QA98ulAP/LpQD3z60A/9ulAPfbrQD/y7UA/9e1AP/f + vQD/460A9/O1AP/jxgD/58YA/+fOAO/j3gD/69YA9+PeAOfn5wDv5+cA7+/vAPfr5wD37+cA9+/vAPfz + 5wD/8+cA9/PvAPf37wD/9+8A//v3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/Jh8fJkEAAAAAAAAAAEIfAgEBAQECFEMA + AAAAAEISAwMDAwMDAwMOQwAAAAAiBBMEBAQEBAY3BCIAAABDBwUkJAUFBQUWJAUHRQAANAgIM0wlLS0l + OCwICDIAACcJCf8+QE3/PDn/CQknAAApCwsLD0kVEEALCwsLJwAANgwMDAwdPDUbDAwMDDYAAEURDQ0N + DSo6DQ0NDRFIAAAALhcXFxceGBcXFxcrAAAAAEQcGRkZGRkZGRkcRwAAAAAARDAaGhoaGhovSgAAAAAA + AAAASjsxMDtLAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAPgfAADgBwAAwAMAAMADAACAAQAAgAEAAIAB + AACAAQAAgAEAAIABAADAAwAAwAMAAOAHAAD4HwAA//8AACgAAACAAAAAAAEAAAEAIAAAAAAAAAgBAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv6+8I5+fnMe/r70Lv7+9S7+/vY+/v72vn4+dz5+Pnc+/v72vv7+9j7+/vWu/v + 70Ln5+cx7+vvGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wjv7+9C7+/ve+/v763v7+/O7+/v9/fz9//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//38/f/7+/v//fz997v6++17+/vjPfz + 91rv6+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+8I7+/vOe/v74Tv7+/G7+/v9+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/W7+/vlO/v71Lv6+8QAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r + 7wjv7+9a7+/vte/v7+/v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7/fv7+/G7+/vc+/v7yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7znv7++l7+/v9+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/3/+/z9//v8/f/7+/3/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v78bv7+9aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v71Lv7+/G7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+vv//fTzv/3vq3/96qc//+W + e///imv//4Zj//9xSv//aUL//2lC//9pQv//aUL//3FK//+CY///imv//5Jz//eqlP/3tqX/98/G/+/n + 5//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/e7+/vc+/v + 7xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAO/r72Pv7+/e7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v//ff + 1v/3tqX//5Z7//91Uv//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9xSv//knP/97Kl//fX1v/v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v9+/r74Tn5+cYAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r71Lv7+/e7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//98/G//eehP//dUr//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9tQv/3lnv/98e9/+/r7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7/fv7++E7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 7ynv7++17+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v39b/96aU//9xSv//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9d + Mf//XTH//2lC//eehP/3187/7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/e7+/vUgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wjv7++U7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//3w7X//4Zj//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//glr/97qt/+/r + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/vve/r7ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+9C7+/v3u/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//3vq3//3lS//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//3FK//e2pf/v6+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v9+/v73MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/ve+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//3y73//31a//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//91Sv/3vq3/7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v763v7+8QAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vGO/v773v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//329b//45r//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//glr/99PG/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7+fv7+9CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAO/v7zHv7+/n7+/v/+/v7//v7+//7+/v/+/v7//v7+//966U//9pOf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH/96KE/+/r5//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+9jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+9K7+/v7+/v7//v7+//7+/v/+/v + 7//v7+//99vW//+CWv//ZTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//ZTH//3lK//fTxv/v7+//7+/v/+/v7//v7+//7+/v/+/v7//v6++EAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA7+/va+/v7//v7+//7+/v/+/v7//v7+//7+/v//e6pf//cTn//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//205//eulP/v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7++l7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v73vv7+//7+/v/+/v7//v7+//7+/v/+/r + 7//3mnv//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//+OY//v5+f/7+/v/+/v7//v7+//7+/v/+/v7//v7++97+/vCAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+9z7+/v/+/v7//v7+//7+/v/+/v7//3497//4pa//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//99 + Sv/329b/7+/v/+/v7//v7+//7+/v/+/v7//v7++17+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vc+/v7//v7+//7+/v/+/v7//v7+//99vW//99 + Sv//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//91Qv/3z8b/7+/v/+/v7//v7+//7+/v/+/v + 7//v7++97+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 72Pv7+//7+/v/+/v7//v7+//7+/v//fXzv//dUL//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9xOf/3y7X/7+/v/+/v7//v7+//7+/v/+/v7//v7++lAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+857+/v9+/v7//v7+//7+/v/+/v7//3187//3lC//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9xOf/3y73/7+/v/+/v + 7//v7+//7+/v/+/v7//38/eEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vKffz + 9+/v7+//7+/v/+/v7//v7+//99fO//95Qv//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//91Of/3y73/7+/v/+/v7//v7+//7+/v//fz9//v7+9jAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7wj38/fW7+/v//fz9//38/f/9/P3//ff1v//fUL//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//91 + Of/308b/9+/v//fz9//38/f/9/P3/+/v7//v7+8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vpe/v + 7//38/f/9/P3//fv7//35+f//4ZS//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//99Qv/339b/9/P3//fz9//38/f/7+/v/+/v + 797v7+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r72Pv7+//9/P3//fz9//37+//9+/v//+SY///dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//+GUv/36+f/9/Pv//fz9//38/f/7+/v/+/v760AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+8p7+/v9+/v + 7//38/f/9/P3/+/z9//3qoT//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//eaa//37+//9/P3//fz + 9//38/f/7+/v/+/r72sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v773v7+//9/P3//fz9//38/f/98e1//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//e6nP/38/f/9/P3//fz9//v7+//7+/v7+/v7xgAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+9r7+/v//fz + 9//38/f/9/P3//fj3v//gkL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//gkL//3k5//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//99Of//roT//8Ol//+y + jP//gkL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//305//fb + zv/38/f/9/P3//fz9//38/f/7+/vtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vEPfz9+/38/f/9/P3//fz9//38/f/95pj//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+uhP//x63//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//fTn//+PW///////////////////z7///lmP//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//45S//fv7//38/f/9/P3//fz9//38/f/9/P3SgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/eM9/P3//fz + 9//38/f/9/P3//fDrf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//45S////////soT//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+yjP////////////// + ///////////////v5///fTn//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH/97KM//fz9//38/f/9/P3//fz9//38/fW7+/vCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3Kffz9//38/f/9/P3//fz9//35+f//4ZC//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//+/n////////soT//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTn//+ve//////////////////////////////////+aY///fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTn/99/W//fz9//38/f/9/P3//fz + 9//v7+9zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/et9/P3//fz + 9//38/f/9/P3//eqe///fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//z7X/////////////upT//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+mc/////////////// + ////////////////////+/f//4pC//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf/3mmP/9/P3//fz9//38/f/9/P3//fz9+/v7+8IAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vMffz9//38/f/9/P3//fz9//339b//305//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+ue/////////////// + ////x6X//4I5//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//9/O///////////////////////////////////Lrf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf/3z7X/9/P3//fz + 9//38/f/9/P3//fz93MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++t9/P3//fz + 9//38/f/9/P3//eia///gjH//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//5JK////////////////////////z7X//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4Ix//+WWv////////////// + ////////////////////8+///4pK//+CMf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//eSUv/38+//9/P3//fz9//38/f/9/P37/fz9wgAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vIffz9//38/f/9/P3//fz9//328b//4Ix//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjH//+/n//// + ////////////////////07X//4Y5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjH//8+1//////////////////////////////////+qc///gjH//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4Ix//fL + rf/38/f/9/P3//fz9//38/f/9/P3awAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/eM9/P3//fz + 9//38/f/9/P3//eia///gjH//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//z7X/////////////////////////////28b//4Y5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+KQv//+/f///////// + ////////////////////173//4Ix//+COf//gjn//4I5//+COf//gjn//4I5//+COf//gjn//4I5//+C + Of//gjn//4I5//+COf//gjn//4I5//+COf//gjn/95ZS//fz9//38/f/9/P3//fz9//38/fWAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3CPfz9+/38/f/9/P3//fz9//339b//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Yx//+y + hP///////////////////////9/O//+iY///hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//7qU//////////////////////////////f3//+SSv//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjH/98+1//fz9//38/f/9/P3//fz9//38/dKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/da9/P3//fz + 9//38/f/9/P3//euhP//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//5pS/////////////+/n//+qc///hjH//4o5//+2 + hP//y6X//4Yx//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//7+f///////// + ////////////////////snv//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5//+GOf//hjn//4Y5//+GOf/3omv/9/P3//fz9//38/f/9/P3//fz + 960AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97338/f/9/P3//fz9//37+//945C//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//ijn///fv///DnP//ijn//4Y5//+ye///8+//////////////rnP//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//6Zr/////////////////////////////9u9//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//eKOf/3597/9/P3//fz9//38/f/9/P39/fz9xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/cY9/P39/fz + 9//38/f/9/P3//fPtf//ijH//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KMf//llL//4ox//+eWv//387///////// + ///////////////v5///jjn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KMf//273///////// + ///////////////z7///kkr//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//e+lP/38/f/9/P3//fz + 9//38/f/9/P3YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz93P38/f/9/P3//fz9//38/f/96Zr//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+SQv//z63////////////////////////////////////////HnP//ijH//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//5ZS///79////////////////////////65z//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn/95ZS//fz9//38/f/9/P3//fz9//38/e1AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3tffz + 9//38/f/9/P3//fr5//3ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//55a///7//////////////// + //////////////////////////f3//+WSv//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijH//5pS///T + tf/////////////Ttf//ijH//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijH/99/O//fz + 9//38/f/9/P3//fz9+/38/cIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9wj38/fv9/P3//fz9//38/f/98ut//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//8+t/////////////////////////////////////////////9e1//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf/3jjH//7Jz//+mY///jjn//445//+iY///173//5ZK//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+OOf//jjn//445//+O + Of//jjn//445//+OOf//jjn//445//+OOf/3voz/9/P3//fz9//38/f/9/P3//fz90IAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3Offz + 9//38/f/9/P3//fz9//3rnP/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3lkL///fv//// + /////////////////////////////////////////6pr//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//+iWv//+/f////////f + xv//olr/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//ee + Uv/38/f/9/P3//fz9//38/f/9/P3jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dz9/P3//fz9//38/f/9/P3//eWQv/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf//voz///////////////////////////////////////// + ////69b/95I5//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn//9u9////////////////////////z63/95I5//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/944x//fr5//38/f/9/P3//fz9//38/fGAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 97338/f/9/P3//fz9//3387/944x//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eeUv//olL//6JS//+iUv//olL/95ZC//eS + Of//697/////////////////////////////////////////////voT/95I5//eWQv//olL//6JS//+i + Uv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+i + Uv//olL//6JS//+iUv//olL//6JS//+iUv//olL//6JS//+iUv/3lkL/95I5//+2e/////////////// + ///////////////79//3mkr/95ZC//+iUv//olL//6JS//+iUv//olL//6JS//+iUv/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/99O1//fz9//38/f/9/P3//fz9/fv7+8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+8I9/P37/fz9//38/f/9/P3//fHpf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn///f3////////////////////////487/95I5//+ua/////////////////////////////// + ///////////////37//3mkL/95pC///37/////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////f3//eaSv/3nkr///fv/////////////////////////////8uc//eSOf//063///////// + //////////////////////////////eaSv/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3uoT/9/P3//fz9//38/f/9/P3//fz + 90IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9yH39/f/9/P3//fz9//38/f/97Z7//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf//9/f///////////////////////// + ////snP/95I5///jxv/////////////////////////////////////////////Trf/3kjn//76M//// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////w5T/95I5///HlP////////////// + ///////////////39//3lkL/95pC///39///////////////////////////////////////955K//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eS + Of/3kjn/95I5//emWv/38/f/9/P3//fz9//38/f/9/P3cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Svf39//39/f/9/f3//f39//3olL/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5///39//////////////////////////////v5//3ljn/96Za///7//////////////// + //////////////////////////////emWv/3ljn//+/n//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////Pn//eWQv/3qlr//////////////////////////////////9u9//eWOf//x5T///////// + ///////////////////////////////////3nkr/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95ZC//fz9//39/f/9/f3//fz + 9//39/ecAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD38/dz9/P3//f39//39/f/9/P3//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn///fv//////////////////// + ///////////////LnP/3ljn//8+l/////////////////////////////////////////////+fO//eW + Of//tnP///////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////uoT/95Y5///HlP//9/f///////// + ///////////////79//3plr/95pC///z7/////////////////////////////////////////////ee + Sv/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/9+fe//f39//39/f/9/P3//fz98YAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395T38/f/9/f3//f39//3597/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf//9+////////////////////////////////////f3//eeSv/3nkL///fv//// + /////////////////////////////////////////7p7//eWOf//48b///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////+vW//eaOf/3mjn/95o5//eeQv//x5T///f3/////////////8+l//eWOf//x5T///////// + ////////////////////////////////////////96JK//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3273/9/f3//f3 + 9//38/f/9/f35wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3tffz9//39/f/9/f3//fbxv/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5///79/////////////// + /////////////////////////9et//eaOf//w4T///////////////////////////////////////// + ////8+f/95o5//eqWv////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////3rmP/95o5///nzv//797//7pz//ea + Of/3okr//9u9///////3rmP/95o5///z5/////////////////////////////////////////////// + ///3plL/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//fPpf/39/f/9/f3//fz9//39/f37+/vCAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/fO9/f3//f39//39/f/99Ot//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3njn///v3////////////////////////////////////////////97Jj//ea + Of//69b/////////////////////////////////////////////y5z/95o5///Tpf////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////9e1//eaOf//x5T//////////////////+/e//+6c//3mjn/96pa//eaOf//w4T///////// + //////////////////////////////////////////////eqWv/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/98eU//fz + 9//39/f/9/f3//f39//38/cYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf399738/f/9/f3//fz9//3y5z/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eeQv////////////// + ////////////////////////////////////69b/95o5//eyY/////////////////////////////// + ///////////////79//3plL/96JC///37/////////////////////////////////////////////// + ///////////////////////////////////////////////79//3pkr/96JC///37/////////////// + ///////////////jxv/3mjn/96JK///37/////////////////////////////////////////////// + ////////97Jj//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3voT/9/P3//f39//39/f/9/f3//fz9zEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f37/f39//39/f/9/f3//fH + jP/3mjn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/96JC//////////////////////////////////////////////////// + ////x4z/95o5///bvf/////////////////////////////////////////////fvf/3mjn//8eM//// + //////////////////////////////////////////////////////////////////////////////// + /////////8+l//eaOf//06X//////////////////////////////////9u1//eaOf//z6X///////// + ///////////////////////////////////////////////////3smv/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/95o5//e2 + c//39/f/9/f3//f39//39/f/7+/vQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/f39/f3//f39//39/f/98OE//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3pkr///////// + ///////////////////////////////////////////////37//3okL/96pS///79/////////////// + //////////////////////////////e2c//3njn//+/e//////////////////////////////////// + ///////////////////////////////////////////////37//3okL/96pS///79/////////////// + ///////////////////3smP/96JC///37/////////////////////////////////////////////// + //////////////eyY//3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/97Jj//f39//39/f/9/f3//f39//39/dKAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf39//39/f/9/f3//f3 + 9//3vnv/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//emSv////////////////////////////////////////////// + ///////////////Xrf/3njn//8+c/////////////////////////////////////////////+/e//ei + Of/3umv///////////////////////////////////////////////////////////////////////// + /////////8uU//eeOf//373//////////////////////////////////+fO//eeOf//x4z///////// + ////////////////////////////////////////////////////////97Jj//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//ee + Of/3smP/9/f3//f39//39/f/9/f3//f391IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD38/cI9/f3//f39//39/f/9/f3//e+e//3njn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96ZC///3 + 7///9+////fv///37///9+////fv///37///9+////fv///37///9+////fv//e6a//3pkL///fv//// + /////////////////////////////////////////8eM//eiOf//37X///fv///37///9+////fv///3 + 7///9+////fv///37///9+////fv///37///9+////fv///v3v/3okL/97Jj//////////////////// + ///////////////////3tmP/965S///z5///9+////fv///37///9+////fv///37///9+////fv///3 + 7///9+////fv///37//3rlr/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//euWv/39/f/9/f3//f39//39/f/9/f3WgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9wj39/f/9/f3//f3 + 9//39/f/9757//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3x4T///////////////////////////////////////// + ////+/f/96pK//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf//587//////////////////////////////////9+9//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/97Ja//f39//39/f/9/f3//f39//39/daAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf39//39/f/9/f3//f39//3w3v/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of//69b/////////////////////////////////////////////27X/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/97pr//////////////////// + ///////////////////3rlL/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3smP/9/f3//f39//39/f/9/f3//f3 + 91IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f39/f3 + 9//39/f/9/f3//fHhP/3ojn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96I5//e6a/////////////////////////////// + ///////////////////3tmP/96I5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//eiOf//587//////////////////////////////////9ut//eiOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//e6a//39/f/9/f3//f39//39/f/9/P3SgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/fn9/f3//f39//39/f/98uU//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5///jvf/////////////////////////////////////////////r1v/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97pr//////////////////// + ///////////////79//3rkr/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/975z//f39//39/f/9/f3//f3 + 9//v7+85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 99739/f/9/f3//f39//305z/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97JS///79/////////////// + ///////////////////////////////LhP/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf//587//////////////////////////////////8+U//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3x4T/9/f3//f39//39/f/9/f3//fz9ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3xvf39//39/f/9/f3//fbrf/3qjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn//9el////////////////////////////////////////897/975r//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/97pj//////////////////// + ///////////////z5//3qkL/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//fPlP/39/f/9/f3//f3 + 9//39/f/9/f3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/el9/f3//f39//39/f/9+PG//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3rkL///fn//// + ////////////////////9+//98eE//eqOf/3vmv/98d7//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf//687/////////////////////////////////98Nz//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/99et//f39//39/f/9/f3//f39/cAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf394z39/f/9/f3//f39//37+f/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3y4T/////////////+/f//9el//euQv/3skr//9+1//// + ////////98d7//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/97pa//////////////////// + ///////////////jxv/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/348b/9/f3//f3 + 9//39/f/9/f31gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/a/f39//39/f/9/f3//f39//3rkL/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of//69b//+fG//e2Uv/3rkL//9OU///79///////////////////897/97JC//euOf/3rjn/9645//eu + Of/3rjn/9645//eqOf//473/////////////////////////////////97pa//eqOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/96o5//fv5//39/f/9/f3//f39//39/e1AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dC9/f3//f39//39/f/9/f3//e6 + Y//3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euQv/3rjn/98t7///z5/////////////// + ///////////////////3vmP/9645//euOf/3rjn/9645//euOf/3rjn/97pa//////////////////// + ///////////////bpf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3skL/9/f3//f3 + 9//39/f/9/f3//f394wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf39xD39/f/9/f3//f39//39/f/98uE//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645///bpf/////////////////////////////////////////////79//3ulL/9645//eu + Of/3rjn/9645//euOf//47X/////////////////////////////9+//97JC//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//fDa//39/f/9/f3//f39//39/f/9/f3YwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf399739/f/9/f3//f3 + 9//3263/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/98+E//////////////////// + ///////////////////////////////jtf/3rjn/9645//euOf/3rjn/97pS//////////////////// + //////////////fLe//3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/99OU//f3 + 9//39/f/9/f3//f39//39/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3pff39//39/f/9/f3//fv3v/3rjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3rjn//+vO/////////////////////////////////////////////+vO//ey + Of/3sjn/97I5//eyOf//363/////////////////////////////58b/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3473/9/f3//f39//39/f/9/f35wAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dj9/f3//f3 + 9//39/f/9/f3//e6Sv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3tkL///Pn//// + //////////////////////////v3//fTlP/3sjn/97I5//eyOf/3sjn/97pK///79/////////////// + //////////v3//e6Uv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//fz + 7//39/f/9/f3//f39//39/e1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39yH39/f/9/f3//f39//39/f/98+E//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf//47X////////////////////////jtf/3ulL/97pK///j + vf//463/97I5//eyOf//25z////////////////////////////315T/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3w2P/9/f3//f39//39/f/9/f3//f393MAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 99739/f/9/f3//f39//3473/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e6 + Qv/////////////vzv/3w2P/97ZC//fXlP//+/f////////////3ukr/97ZC///77/////////////// + //////////Pe//e2Qv/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fX + nP/39/f/9/f3//f39//39/f/9/P3KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3pff39//39/f/9/f3//f37//3ukL/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fDWv/3y3P/97Y5//fPe///8+f///////// + //////////////e+Uv/315T////////////////////////////3x2v/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/9+/e//f39//39/f/9/f3//f3994AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/dS9/f3///7////+/////v///fPe//3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of//68b/////////////////////////////9+f/97pC///35/////////////// + /////////+O1//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fD + Y//3+/f///v////7///39/f/9/f3nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39wj39/fv9/f3///7////+///9+fG//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//fbnP////////////// + //////////fv//fHY//304T////////////////////////77//3vkr/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/99+t///79///+/////v///f39//39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf395z39/f///v////7////9/f/98NS//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//fXjP//89b///Pe///fpf/3vkr/97o5///z3v////////////// + ////////99eE//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e+ + Qv/38+////v////7///39/f/9/f35wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Off39///+/////v////7 + ///315T/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3y2v////////////////////////vzv/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/9897///7////+/////v///f39//39/eMAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f31vf39///+/////v3//fz5//3vkL/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/7745///rxv////////////// + //////f/98da//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3687///v////7////+///9/f3//f39yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dj9/f3///7 + ////+/////v///fXhP/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3x1r///////////////////////ffnP/vvjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/98tr///7////+/////v///f39//39/e1AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39wj39/fv//v////7////+///9/Pe//e+Qv/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745///nrf////////////// + ////9+f/98NC//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3vjn/9745/+++ + Of/368b///v////7////+///9/f3//f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 94T/+/////v////7////+///99eM//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3x1L///v3//////////////////fTc//3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/98M5//fD + Of/3wzn/98M5//fDOf/3wzn/98M5//fDOf/3wzn/989r///7////+/////v////7///39/fOAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3EP/7/+//+/////v////7////8+f/78dC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78M5//fjnP////////////// + ////57X/78M5/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/379b///v////7////+/////v///f390oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3e//7////+/////v////7///335z/78M5/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vx0L///vv//////////////vv//fHSv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/78NC/+/D + Qv/vw0L/78NC/+/DQv/vw0L/78NC/+/DQv/vw0L/99eE///7////+/////v////7////+//GAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/7//7////+/////v////3 + 9//3y1r/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78c5//fXe/////////////// + ///313v/78c5/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Sv//9+f///v////7////+/////v///f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/da//v////7////+/////v///frxv/vxzn/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L//+e1/////////////+/G/+/HOf/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vxzn/9+et///7////+/////v////7////+/+lAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+//G//v////7 + ////+/////v///fbhP/vxzn/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv//67X////////3 + 3v/3y0r/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/H + Qv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC/+/HQv/vx0L/78dC//fX + a///+/f///v////7////+/////v/9/f39yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/zn/+/////v////7////+/////f3/+/TWv/vyzn/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78s5/+/PUv/334T/78tK/+/LOf/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vz0r///fn///7////+/////v////7////+/97AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /4z/+/////v////7////+///9+/W/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC//fr + vf//+/////v////7////+/////v/zv/7/wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP/7/87/+/////v////7////+///9+et/+/L + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/LQv/334z///v////7////+/////v////7//f/+/8xAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/Kf/7//f/+/////v////7////+///99+M/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/99tz///7 + 9///+/////v////7////+/////v/cwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Y//7////+/////v////7 + ////+/f/99tz/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/XWv//9+////v////7////+/////v////7/60AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/nP/7////+/////v////7////9+//79dj/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/v01L///fn///7 + ////+/////v////7////+//W9/f3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/xv/7 + ////+/////v////7////9+f/79ta/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79dS//fz3v//+/////v////7////+/////v/7/f39ykAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8Q//v/1v/7////+/////v////7////9+//79ta/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/XUv//997///v////7 + ////+/////v////7//f39/dCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD39/cp//v/5//7////+/////v////7////9+f/79tj/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v11L///fe///7////+/////v////7////+/////v/UgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8x//v/7//7////+/////v////7 + ////++//999z/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79tj///35///+/////v////7 + ////+/////v////7/3MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8x//v/7//7////+/////v////7////+/f/9+eM/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC//fjc///+/f///v////7////+/////v////7////+/9rAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8p//v/5//7 + ////+/////v////7////+///9+ut/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/355T///v////7////+/////v////7 + ////+/////v/YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cp//v/1v/7////+/////v////7////+///9/PW/+/f + Wv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v21L/9/PG///7////+/////v////7////+/////v/9//7/1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD/+/8Q//v/xv/7////+/////v////7////+/////v3//fnjP/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/9+Nz///77///+/////v////7////+/////v////7 + /+f/+/85AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cI//v/nP/7//////////////// + //////////////fzxv/v31r/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/799K//fv + tf//+//////////////////////////7////+//O//v/IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3Y//7//f/+//////////////////////////79//365z/799K/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C//frjP//++//////////////////////////////+/////v/pf/7 + /wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3Kf/7 + /9b/////////////////////////////////++f/9+uM/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C//fne///997///////// + ////////////////////////////9//7/1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP/7/4T///////////////////////////// + //////////fe//frhP/v40L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/nc///99b////////////////////////////////////////7/7X/+/8hAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf390L/+//W///////////////////////////////////////75//375T/7+NS/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NK//frjP//997///////////////////////// + //////////v//////+//+/9rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/9j//v/7//7 + ////////////////////////////////////+/f/9/fG//fre//v40r/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+tz//fz + vf//+/f/////////////////////////////////////////////+/+M//v/EAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8I////hP///+////////////////////////////// + ///////////////79//3873/9+uE/+/nUv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/nSv/v63v/9/O1///77/////////////////////////////////////////////// + ////+/+l//v/IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/CP/7/4z////3///////////////////////////////////////////////////////7 + 3v/3863/9++M/+/ra//v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v50L/7+dC/+/n + Qv/v50L/7+dC/+/nQv/v50L/7+dC/+/nQv/v62P/9++E//fzrf//99b///////////////////////// + //////////////////////////////////////+t//v/KQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+/9r////3v// + ////////////////////////////////////////////////////////////////////+97///fO//fz + rf/386X/9/Oc//fvhP/v73v/7+97/+/ve//v73v/9++E//fzlP/386X/9/Ot//f3zv//+97///////// + /////////////////////////////////////////////////////////////////+//+/+M//v/IQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Qv///5z////v//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////9////7X/+/9a//v/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP///wj///9a////rf///+f///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////v////vf/7/3v/+/8YAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /yn/+/9r////pf///+f///////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////7//7/7X///97////Qv// + /wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+/9C//v/a/// + /4z/+/+t//v/zv///97////v////////////////////////////////////9////97////O//v/tf// + /5T/+/9z//v/Uv/7/yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////CP// + /wj///8I////CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////4AB/////////////////+AAAAf///////////////4AAAAAf//////////////w + AAAAAA//////////////wAAAAAAD/////////////wAAAAAAAH////////////wAAAAAAAAf//////// + ///wAAAAAAAAB///////////wAAAAAAAAAP//////////wAAAAAAAAAA//////////4AAAAAAAAAAH// + ///////8AAAAAAAAAAAf////////8AAAAAAAAAAAD////////+AAAAAAAAAAAAf////////AAAAAAAAA + AAAD////////gAAAAAAAAAAAAP///////wAAAAAAAAAAAAB///////4AAAAAAAAAAAAAP//////8AAAA + AAAAAAAAAB//////+AAAAAAAAAAAAAAf//////AAAAAAAAAAAAAAD//////gAAAAAAAAAAAAAAf///// + wAAAAAAAAAAAAAAD/////8AAAAAAAAAAAAAAAf////+AAAAAAAAAAAAAAAH/////AAAAAAAAAAAAAAAA + /////wAAAAAAAAAAAAAAAH////4AAAAAAAAAAAAAAAB////8AAAAAAAAAAAAAAAAP////AAAAAAAAAAA + AAAAAB////gAAAAAAAAAAAAAAAAf///4AAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAA////AAAAAA + AAAAAAAAAAAH///gAAAAAAAAAAAAAAAAB///4AAAAAAAAAAAAAAAAAf//8AAAAAAAAAAAAAAAAAD///A + AAAAAAAAAAAAAAAAA///wAAAAAAAAAAAAAAAAAH//4AAAAAAAAAAAAAAAAAB//+AAAAAAAAAAAAAAAAA + Af//gAAAAAAAAAAAAAAAAAD//wAAAAAAAAAAAAAAAAAA//8AAAAAAAAAAAAAAAAAAP//AAAAAAAAAAAA + AAAAAAD//wAAAAAAAAAAAAAAAAAAf/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAA + AAAAAAAAAAAAf/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAAAAAAAAAAAAAAP/4A + AAAAAAAAAAAAAAAAAD/+AAAAAAAAAAAAAAAAAAA//gAAAAAAAAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAA + AD/8AAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAAD/8AAAAAAAAAAAA + AAAAAAA//gAAAAAAAAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAAAD/+AAAAAAAAAAAAAAAAAAA//gAAAAAA + AAAAAAAAAAAAP/4AAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//gAAAAAAAAAAAAAAAAAAf/4A + AAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAB//wAAAAAAAAAAAAAAAAAAf/8AAAAAAAAAAAAAAAAA + AP//AAAAAAAAAAAAAAAAAAD//wAAAAAAAAAAAAAAAAAA//+AAAAAAAAAAAAAAAAAAP//gAAAAAAAAAAA + AAAAAAH//4AAAAAAAAAAAAAAAAAB//+AAAAAAAAAAAAAAAAAAf//wAAAAAAAAAAAAAAAAAP//8AAAAAA + AAAAAAAAAAAD///gAAAAAAAAAAAAAAAAA///4AAAAAAAAAAAAAAAAAf//+AAAAAAAAAAAAAAAAAH///w + AAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAA////gAAAAAAAAAAAAAAAAf///4AAAAAAAAAAAAAAAA + H////AAAAAAAAAAAAAAAAD////4AAAAAAAAAAAAAAAA////+AAAAAAAAAAAAAAAAf////wAAAAAAAAAA + AAAAAH////8AAAAAAAAAAAAAAAD/////gAAAAAAAAAAAAAAB/////8AAAAAAAAAAAAAAA//////gAAAA + AAAAAAAAAAP/////4AAAAAAAAAAAAAAH//////AAAAAAAAAAAAAAD//////4AAAAAAAAAAAAAB////// + /AAAAAAAAAAAAAA///////4AAAAAAAAAAAAAf///////AAAAAAAAAAAAAP///////4AAAAAAAAAAAAH/ + ///////AAAAAAAAAAAAD////////4AAAAAAAAAAAB/////////gAAAAAAAAAAA/////////8AAAAAAAA + AAA//////////gAAAAAAAAAAf/////////+AAAAAAAAAAf//////////4AAAAAAAAAP///////////AA + AAAAAAAP///////////8AAAAAAAAP////////////wAAAAAAAP/////////////gAAAAAAP///////// + ////+AAAAAAf//////////////+AAAAA////////////////+AAAH//////////////////8P/////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////8oAAAASAAAAJAAAAABACAAAAAAAGBU + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r7wjv6+8Y7+vvMe/v + 70Lv6+9K5+fnSu/v70rv7+857+vvIe/r7wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v72Pv7++l7+/v1u/v7/fv7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+/e7+/vre/v72vv7+8pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vMe/v + 74zv7+/e7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v5+/v75zv7+9CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v70rv7++97+/v/+/v7//v7+//7+/v/+/v + 7//v5+f/98/G//e2pf/3ooz//5Jz//+Ga///gmP//4Jj//+GY///knP/956M//eypf/3y8b/7+fn/+/v + 7//v7+//7+/v/+/v7//v7+//7+/vzu/v72MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+9K7+/v1u/v7//v7+//7+/v/+/v7//3187/96aM//99Wv//YTH//10x//9d + Mf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//10x//9dMf//XTH//2Ex//95Uv/3ooz/99PG/+/v + 7//v7+//7+/v/+/v7//v7+/n7+/vYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v + 77Xv7+//7+/v/+/v7//v5+f/97Kc//99Uv//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//95Uv/3rpz/7+fn/+/v + 7//v7+//7+/v/+/v787v7+8xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7+9j7+/v9+/v7//v7+//7+fn//eq + lP//bUL//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9h + Mf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2k5//emjP/v5+f/7+/v/+/v + 7//v7+//7+/vhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vCO/v763v7+//7+/v/+/v7//3vq3//3VC//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//cUL/97al/+/v7//v7+//7+/v/+/v + 78bv7+8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+8Y7+/vzu/v7//v7+//7+Pe//+Oa///ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//+KY//3397/7+/v/+/v7//v7+/n7+/vKQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7ynv7+/n7+/v/+/v + 7//3z73//3VC//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//cUL/98e1/+/v7//v7+//7+/v9+/v70IAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v7+fv7+//7+/v//e6pf//bTn//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//eynP/v7+//7+/v/+/v7/fv7+9CAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+8Q7+/v3u/v7//v7+//97KU//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf/3qoz/7+/v/+/v7//v7+/37+/vKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v + 7wjv7+/G7+/v/+/v7//3spT//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH/96qM/+/v7//v7+//7+/v3u/v7xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v75zv7+//7+/v//fD + rf//dTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ux//e2 + nP/v8/f/7+/v/+/v770AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vWu/v7//38/f/99PG//95Of//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Of/3y7X/9/P3/+/v + 7//v7++EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADv7+8Y7+/v7/fz9//35+f//4ZK//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//fTn//45a//99Of//eTH//3kx//95Mf//eTH//3kx//95Mf//gkL/9+Pe//fz9//v7+//7+/vMQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7++c9/P3//fz9//3onP//3kx//95Mf//eTH//3kx//95Mf//eTH//4ZC//++nP//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+COf//697////////v + 5///ilL//3kx//95Mf//eTH//3kx//95Mf//eTH/95pj//fz7//38/f/9/P3xgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz9zH38/f/9/P3//fP + vf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x///n1v//toz//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//+yjP//////////////////w6X//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//fHrf/38/f/9/P3/+/v71oAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97X38/f/9+/v//+OUv//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x///Hpf///////76c//99Of//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//4I5///r3v//////////////////omv//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//+KQv/36+f/9/P3//fz994AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA7+/vMffz9//38/f/98Ol//+COf//gjH//4Ix//+CMf//gjH//4Ix//+C + Mf//gjn//4I5//+mc//////////////Lrf//gjn//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+C + Mf//gjH//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4I5//+C + Mf//gjn//6Zz///////////////////Xvf//gjn//4I5//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+C + Of/3upT/9/P3//fz9//38/daAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3nPfz9//37+///5JK//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjn//4Ix//+O + Qv//////////////////soT//4Ix//+CMf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+C + Mf//gjn//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//gjH//4I5//+CMf//gjH//9vG//// + //////////f3//+SSv//gjH//4I5//+CMf//gjH//4Ix//+CMf//gjH//4Ix//+CMf//ikL/9+/n//fz + 9//38/fGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/cQ9/P39/fz + 9//3z7X//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//697//+PW//+e + Y///qnP//7qM//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//llL//////////////////7KE//+G + Mf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH/98el//fz9//38/f/9/P3MQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/dj9/P3//fz9//3pmv/94ox//eK + Mf/3ijH/94ox//eKMf/3ijH/94ox//eKMf//ijH/94ox//eKOf//omP//5pa///bxv////////////+i + Y///ijH/94ox//eKMf/3ijH/94ox//eKMf/3ijH/94ox//eKMf//ijH/94ox//eKMf/3ijH/94ox//eK + Mf/3ijH/94ox//eKMf/3ijH//4ox//eKOf//x6X/////////////273//4o5//eKMf/3ijH//4ox//eK + Mf/3ijH/94ox//eKMf/3ijH/94ox//eKMf/3ijH/955a//fz9//38/f/9/P3jAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD38/e99/P3//fn3v/3ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//omP///v////////////////////n1v//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//vpT///f3///z7///lkr//4o5//+KOf//ijn//4o5//+KOf//ijn//4o5//+K + Of//ijn//4o5//+KOf//ijn//4o5//fj1v/38/f/9/P33gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPfz9wj38/fv9/P3//fLpf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn//+fW////////////////////////toT/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445///L + pf//rnP//5ZK//+mY//3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//fDlP/38/f/9/P3//fz9ykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9zn38/f/9/P3//euc//3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn//6pr////////////////////////8+//95ZC//eOOf/3jjn/9445//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn//7Z7/////////////9/G//eS + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//em + Y//38/f/9/P3//fz92MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz93P38/f/9/P3//ea + Sv/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn//+vW///v3v//697//6pj///b + vf///////////////////////8ul//+qY///797//+/e///v3v//797//+/e///v3v//797//+/e///v + 3v//797//+/e///v3v//797//+/e///fxv/3mkr///Pv/////////////9u9//+qa///797//+/e///v + 3v//797/95ZC//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eWOf/37+//9/P3//fz + 96UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz96X38/f/9+fe//eWOf/3kjn/95I5//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3ljn///v3/////////////+fW//eiUv//+/f///////// + //////////v///emWv//587///////////////////////////////////////////////////////// + //////////////+6e///z6X/////////////////96pj///fvf//////////////////////95pC//eS + Of/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3387/9/P3//fz99YAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz98738/f/99u9//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn///v3//////////////////+6hP//y5z////////////////////////j + xv/3qmP//////////////////////////////////////////////////////////////////+vW//ea + Of//voT//+/n////////38b/96pa////////////////////////////95pC//eWOf/3ljn/95Y5//eW + Of/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3063/9/P3//f39+8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPfz9+f38/f/98+l//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn///v////////////////////z5//3okr///Pn////////////////////////tnP//9e1//// + ////////////////////////////////////////////////////////965j///bvf//373/965j///L + lP//smv//9u1////////////////////////////96JK//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3x5T/9/f3//f39//38/cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf3 + 9/f39/f/98eU//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3njn///////// + ////////////////////06X//76E////////////////////////797/96ZS///79/////////////// + ////////////////////////////////////27X/97Zr///////////////////HjP/3rmP///////// + ////////////////////////96ZS//eaOf/3mjn/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3voT/9/f3//fz9//38/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3okL///////////////////////// + ////+///965a///n1v///////////////////////8uU///LlP////////////////////////////// + ///////////////79//3qlr//+vW//////////////////e6c///373///////////////////////// + ////////96pS//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3unv/9/f3//f3 + 9//38/c5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//eeOf/3njn/9545//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3okL///v3///79///+/f///v3///79///+/f//+PG//e2 + a/////////////////////////v3//euUv//797///v3///79///+/f///v3///79///+/f///v3///T + pf//w4T//////////////////+vW//eyY///+/f///v3///79///+/f///v3///79///+/f/96pK//ee + Of/3njn/9545//eeOf/3njn/9545//eeOf/3njn/9545//eeOf/3unP/9/f3//f39//39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/P3EPf39//39/f/98OE//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf//373///////// + ///////////////fvf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//emQv//8+f///////// + ////////97pr//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3unP/9/f3//f39//39/dCAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/P3CPf39//39/f/98eM//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3rlL///v3//////////////////// + ///3umv/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//fHjP//////////////////58b/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3vnv/9/f3//f39//38/c5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3CPf3 + 9/f39/f/98+U//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn//9Oc////////////////////////69b/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96pC///z5//////////////////3tlr/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3x4T/9/f3//f39//38/cpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39+f39/f/99et//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/965C///z5//////////////nzv/3vmv/97pj//eqOf/3qjn/96o5//eq + Of/3qjn/98uM///////////////////brf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/305z/9/f3//f3 + 9//39/cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf398b39/f/9+PG//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//fLhP//8+f/98d7//fLhP//9+////v3//e2Uv/3qjn/96o5//eqOf/3rjn///Pe//// + //////////fv//eySv/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/327X/9/f3//f39+8AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395z39/f/9+/n//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3w2v//+/W///////////////////ftf/3rjn/9645//euOf/3y3v/////////////////98+M//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/369b/9/f3//f3984AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf392v39/f/9/f3//e2Sv/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3y3v///////// + ///////////////////3w2v/9645//eyOf//797/////////////79b/97I5//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//eyQv/39/f/9/f3//f395QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 9yn39/f/9/f3//fLe//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3skL//+e9///////////////////j + tf/3ulL/97I5//fLc//////////////////3w2P/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//fD + a//39/f/9/f3//f391oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/fn9/f3//ff + tf/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/98dj////////79b/98dr///bpf//9+//97ZC///v + zv/////////////fpf/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fbpf/39/f/9/f3//f3 + 9xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/et9/f3//fz7//3tkL/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//fDWv/304T///fv////////////98tr//////////////fn//e6 + Qv/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fv3v/39/f/9/f3zgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/dS9/f3//f7///3z3v/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of//36X////////79//314z//+vG////////////9897//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/98dr//f39//39/f/9/f3ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD39/cI9/f37/f39//3573/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/98NS//e+Sv/3x1L/////////////68b/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/9+O1//f39//39/f/9/f3IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3jPf39//39/f/98da/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++ + Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++ + Of//463////////79//3x1L/7745/+++Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++ + Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3w0r/9/f3//f3 + 9//39/e1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3If/7 + ////+///9+e1/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++ + Of/vvjn/7745/+++Of/3vjn/7745/+++Of/vvjn/7745/+++Of/vvjn/7745//fHSv//+/f///////fb + lP/vvjn/7745/+++Of/vvjn/7745/+++Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++ + Of/vvjn/9745/+++Of/vvjn/7745/+++Of/vvjn/7745/+++Of/336X///v////7///39/dCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf395z/+/////v3//fP + Y//vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5//ffnP////////PW/+/DQv/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5//fLUv//9/f///v////7/8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPf39yH/+//3//v///fvzv/vx0L/78c5/+/H + Of/vxzn/78c5/+/HOf/vx0L/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vx0L/78c5/+/H + Of/vxzn/78c5/+/HOf/vxzn/78dC///35///////989j/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/H + Of/vxzn/78dC/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/HOf/vxzn/78c5/+/H + Of/vxzn/78dC//frvf//+/////v///f390IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/97//v////7///324z/78dC/+/HOf/vxzn/78c5/+/H + Of/vx0L/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vx0L/78c5/+/HOf/vxzn/78c5/+/H + Of/vxzn/78tK////9//345T/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/H + Of/vxzn/78c5/+/HOf/vxzn/78c5/+/HOf/vxzn/78dC/+/HOf/vxzn/78c5/+/HOf/vx0L/99d7///7 + ////+/////v/rQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8I//v/1v/7////9/f/79Na/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/P + Sv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vz1L///fv///7////+//v//v/GAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/Mf/7////+///9/Pe/+/PSv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/3787///v////7////+/9aAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7 + /3P/+/////v///fvxv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C//frtf//+/////v////7/5wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+l//v////7 + ///367X/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/9+el///7 + ////+/////v/xvf39wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8I//v/vf/7////+///9+u1/+/X + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/366X///v////7////+//e//v/GAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/EP/7/87/+/////v///fvxv/v10r/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC//fvtf//+/////v////7/97/+/8hAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/xD/+//G//v////7////997/799a/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v21L/9/PW///7////+/////v/3v/7/yEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD/+/8I//v/pf/7////+/////v3//fnjP/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC//fnhP//++////v////7 + ////+//G//v/EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAP/7/3P/+/////v////7///3887/7+Nj/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v41r/9/PG///7////+/////v////7/5z/+/8IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD/+/85//v/1v/7////+/////v///fztf/v41r/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/7+NS//fvrf//+/f///v////7////+//n//v/UgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/f3CP/7 + /4T/+//3////////////+///9/PG//fre//v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/rc//3873///v3//// + ///////////////7/5z/+/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8h////nP// + ////////////////////++//9/O1//frhP/v51L/7+NC/+/jQv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+dS/+/re//3863///vv//////////////////////////+1//v/MQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/yH/+/+M////7/// + //////////////////////////vn//f3xv/3863/9/Oc//fvjP/374T/9++E//fvjP/385z/9/Ot//f3 + xv//++f////////////////////////////////3//v/pf/7/zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/CP///1L///+1////7/// + //////////////////////////////////////////////////////////////////////////////// + ///////3////vf/7/2P/+/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/zH///9r//v/nP// + /8b////n////9//////////////////////////3////5////87///+l////e//7/zn///8IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// + /xD///8Q////EP///xD///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////// + ////AAAA////////////AAAA////////////AAAA/////gB/////AAAA////4AAH////AAAA////AAAA + ////AAAA///8AAAAP///AAAA///wAAAAD///AAAA///AAAAAA///AAAA//+AAAAAAf//AAAA//4AAAAA + AH//AAAA//wAAAAAAD//AAAA//gAAAAAAB//AAAA//AAAAAAAA//AAAA/+AAAAAAAAf/AAAA/8AAAAAA + AAP/AAAA/8AAAAAAAAP/AAAA/4AAAAAAAAH/AAAA/wAAAAAAAAD/AAAA/wAAAAAAAAD/AAAA/gAAAAAA + AAB/AAAA/gAAAAAAAAB/AAAA/AAAAAAAAAA/AAAA/AAAAAAAAAA/AAAA+AAAAAAAAAAfAAAA+AAAAAAA + AAAfAAAA+AAAAAAAAAAfAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAA + AAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAA + AAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA4AAAAAAAAAAHAAAA8AAAAAAAAAAHAAAA8AAAAAAA + AAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA8AAAAAAAAAAPAAAA+AAAAAAAAAAPAAAA+AAAAAAA + AAAfAAAA+AAAAAAAAAAfAAAA+AAAAAAAAAAfAAAA/AAAAAAAAAA/AAAA/AAAAAAAAAA/AAAA/gAAAAAA + AAB/AAAA/gAAAAAAAAB/AAAA/wAAAAAAAAD/AAAA/wAAAAAAAAD/AAAA/4AAAAAAAAH/AAAA/8AAAAAA + AAP/AAAA/+AAAAAAAAP/AAAA/+AAAAAAAAf/AAAA//AAAAAAAA//AAAA//gAAAAAAB//AAAA//wAAAAA + AD//AAAA//8AAAAAAH//AAAA//+AAAAAAf//AAAA///AAAAAA///AAAA///wAAAAD///AAAA///8AAAA + P///AAAA////AAAA////AAAA////8AAH////AAAA/////8H/////AAAA////////////AAAA//////// + ////AAAA////////////AAAAKAAAADAAAABgAAAAAQAgAAAAAACAJQAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADe394I7+/vQu/r72Pv7+977+vvjO/r + 74zv7+977+vvY+/v70Ln5+cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv6+8p7+/vhO/v787v7+//7+/v/+/v + 7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v1u/v74zv7+85AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vSu/v78bv7+//7+/v/+/n + 5//3w7X/96KM//+Oc///fVr//3VS//91Uv//fVr//45r//eijP/3vrX/7+Pe/+/v7//v7+//7+/vzu/r + 71oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7ynv7+/G7+/v/+/r + 7//3vq3//4Zj//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//9hMf//YTH//2Ex//+G + Y//3uq3/7+vv/+/v7//v7+/O7+/vOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/ve+/v + 7//v7+//97ql//91Sv//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//3FC//e2pf/v6+//7+/v/+/v74wAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOfj + 5wjv7++17+/v//fb1v//hlr//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//glL/99fO/+/v7//v7+/G7+vvEAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA5+fnEO/v787v7+//98Ot//9xOf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//205//e6 + pf/v7+//7+/v3u/v7xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAADn4+cI7+/vzu/v7//3spT//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//bTH//20x//9tMf/3qoz/7+/v/+/v797v7+8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++t7+/v//e2nP//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9x + Mf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH/966M/+/v7//v7+/GAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v73Pv7+//98e1//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//fDpf/v7+//7+/vjAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vIe/v7/f339b//305//95 + Mf//eTH//3kx//+GSv//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//+OWv//roz//4JC//95Mf//eTH//3kx//99 + Of/3287/9/P3/+/v7zkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/P3tffz + 7//3mmP//30x//99Mf//fTH//30x//+ea///upT//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//305///r5////////8+1//99 + Mf//fTH//30x//99Mf//klr/9+/v//fz984AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADv7+859/P3//fLtf//fTH//30x//99Mf//fTH//30x//+COf//+/f//8Oc//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//30x//99Mf//fTH//6Zz//// + /////////7aM//99Mf//fTH//30x//99Mf//fTH/98el//fz9//38/dSAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD38/et9/P3//eWUv//gjn//4Ix//+COf//gjn//4I5//+CMf//387///////+6 + lP//gjH//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+COf//gjn//4Ix//+C + Of//gjH//9/O////////49b//4Y5//+CMf//gjn//4I5//+CMf//gjn//45K//fv7//38/fOAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/r7xj38/f/99O9//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//vpT//7qM//+6lP//uoz//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//+G + Mf//hjH//4Yx//+GMf//mlL////////79///mlr//4Yx//+GMf//hjH//4Yx//+GMf//hjH//4Yx//fP + tf/38/f/9/P3MQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz92v38/f/965z//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//eKOf//lkr//+ve////////+/f//5pS//eKOf/3ijn/94o5//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//eKOf/3ijn/94o5//eKOf//snv///v///++lP/3ijn/94o5//eKOf/3ijn/94o5//eK + Of/3ijn/94o5//ema//38/f/9/P3hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz97X37+//95JC//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn//+fW/////////////9u9//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/3jjn/9445//+qa///07X//6Zj//eOOf/3jjn/9445//eO + Of/3jjn/9445//eOOf/3jjn/9445//eOOf/37+f/9/P3zgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPfz + 9+/328b/95I5//eSOf/3kjn/95I5//eSOf/3kjn/95I5///Lpf//z6X//7Jz//////////////////+u + a///w5T//8+l///Ppf//z6X//8+l///Ppf//z6X//8+l///Ppf//z6X//6Ja///v3v///////8ul///H + lP//z6X//8+l//eSOf/3kjn/95I5//eSOf/3kjn/95I5//eSOf/3173/9/P3/+/v7xAAAAAAAAAAAAAA + AAAAAAAA7+vvIffz9//3y6X/95Y5//eWOf/3ljn/95Y5//eWOf/3ljn/95Y5///7/////////9e1///X + tf/////////////r3v//w4z/////////////////////////////////////////////69b//8OM//// + ////+/f//7Zz//////////////////eaQv/3ljn/95Y5//eWOf/3ljn/95Y5//eWOf/3x5T/9/P3//fz + 9zkAAAAAAAAAAAAAAAAAAAAA9/P3Qvfz9//3voT/95o5//eaOf/3mjn/95o5//eaOf/3mjn/95o5///7 + //////////////+2c///+/f/////////////x5T//+ve//////////////////////////////////// + ////unv//8uc///HjP//y5z//9/G//////////////////eeQv/3mjn/95o5//eaOf/3mjn/95o5//ea + Of/3unv/9/P3//fz91oAAAAAAAAAAAAAAAAAAAAA9/P3Uvf39//3tnP/95o5//eaOf/3mjn/95o5//ea + Of/3mjn/9545///////////////////r1v//y5z/////////////9/f//757//////////////////// + ///////////////fvf//163////////37//3tmv///////////////////////eiSv/3mjn/95o5//ea + Of/3mjn/95o5//eaOf/3smv/9/f3//fz93MAAAAAAAAAAAAAAAAAAAAA9/P3Y/f39//3tmv/9545//ee + Of/3njn/9545//eeOf/3njn/96JC///79///+/f///v3///79///x4z///Pn/////////////9u1///f + vf//+/f///v3///79///+/f///v3//e+e//////////////btf//373///v3///79///+/f///v3//em + Sv/3njn/9545//eeOf/3njn/9545//eeOf/3smP/9/f3//f393sAAAAAAAAAAAAAAAAAAAAA9/P3Y/f3 + 9//3umv/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/98N7//// + //////////////e2Y//3ojn/96I5//eiOf/3ojn/96I5///jxv////////v3//euUv/3ojn/96I5//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3smP/9/f3//f393sAAAAAAAAAAAAA + AAAAAAAA9/P3Uvf39//3vnP/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//em + Of/3pjn/96Y5///rzv/////////////r1v/3pjn/96Y5//emOf/3pjn/97Za/////////////9el//em + Of/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3pjn/96Y5//emOf/3umv/9/f3//fz + 93MAAAAAAAAAAAAAAAAAAAAA9/f3Off39//3y4z/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3qjn/96o5//eqOf/3qjn/96o5//e6Y////////+vW//fPlP/3w3P/96o5//eqOf/3qjn//+O9//// + ////9+//965C//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eq + Of/3x3v/9/f3//f391oAAAAAAAAAAAAAAAAAAAAA7+/vGPf39//316X/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3x3v//9+1////////9+//97JK//eu + Of/3ulr////////////3y4T/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/9645//eu + Of/3rjn/9645//euOf/305z/9/f3//f39zEAAAAAAAAAAAAAAAAAAAAAAAAAAPf39+f3587/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3vlr///v3//// + ////////99OU//eyOf//47X////////rzv/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/348b/9/f3//fz9wgAAAAAAAAAAAAAAAAAAAAAAAAAAPf3 + 96339/f/97ZK//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn//9ul///37//315z//9+t//e+Uv////////////e+Wv/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//e2Qv/38+//9/f3xgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf392P39/f/98+E//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97pC//fThP//+/f///vv///frf//////99uc//e2Of/3tjn/97Y5//e2 + Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//e2Of/3tjn/97Y5//fLc//39/f/9/f3ewAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v7xD39/f39+fG//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e+Sv/314z/98dj///79///9+f/975C//e6 + Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//fn + vf/39/f/9/f3IQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/ec//f3//fLWv/3vjn/7745//e+ + Of/3vjn/9745/+++Of/3vjn/7745//e+Of/3vjn/7745//e+Of/3vjn/7745//e+Of/3vjn/99uU//// + ///303P/7745//e+Of/3vjn/7745//e+Of/3vjn/9745/+++Of/3vjn/9745/+++Of/3vjn/9745/+++ + Of/3vjn/98dS///39//39/e9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD39/cp//v///fr + xv/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vw0L///fv///rvf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/9+e1///7///39/dCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3nP/7///303P/78dC/+/HQv/vx0L/78dC/+/HOf/vx0L/78c5/+/HQv/vx0L/78c5/+/H + Qv/vx0L/78c5/+/HQv/313P///vv//fLSv/vx0L/78c5/+/HQv/vx0L/78c5/+/HQv/vx0L/78dC/+/H + Of/vx0L/78dC/+/HOf/vx0L/78dC/+/HOf/302v///v3///7/70AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9/f3GP/7/+//9+f/789K/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/3z1L/99Nj/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LSv//897///v////7/ykAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/1r/+///9+/G/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C//frvf//+/////v/cwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+U//v///fr + rf/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/9+el///7 + ////+/+tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA//v/tf/7///3663/79dC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/X + Qv/366X///v////7/8b39/cIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/7/7X/+///9/PG/+/bSv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/XQv/v10L/79dC/+/X + Qv/v10L/79tK//fvvf//+/////v/xvf39wgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/+U//v////35//343P/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v43P///fn///7////+/+l//v/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Wv/7 + /+//+///9/PG/+/jY//v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/f + Qv/v30L/799C/+/fQv/v30L/7+Na//fzvf//+/////v/9//7/2sAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAPf39xj/+/+l///////////3987/9+uE/+/jSv/v40L/7+NC/+/jQv/v40L/7+NC/+/j + Qv/v40L/7+NC/+/jQv/v40L/7+NK//fre//398b///v/////////+/+1//v/IQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/Kf/7/6X////3////////9///99b/9/Ot//fv + jP/v73v/7+tr/+/ra//v63v/9++M//fzrf//987////3////////////////rf///zkAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/+/8Q////Y/// + /63////v///////////////////////////////////////////////v////tf///2v/+/8YAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/GP/7/zn/+/9S////Y////2P///9S//v/Qv/7/yEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////wAA////////AAD//+AH//8AAP// + AAD//wAA//wAAD//AAD/8AAAD/8AAP/gAAAH/wAA/4AAAAH/AAD/AAAAAP8AAP4AAAAAfwAA/gAAAAB/ + AAD8AAAAAD8AAPgAAAAAHwAA+AAAAAAfAADwAAAAAA8AAPAAAAAADwAA4AAAAAAHAADgAAAAAAcAAOAA + AAAABwAA4AAAAAADAADAAAAAAAMAAMAAAAAAAwAAwAAAAAADAADAAAAAAAMAAMAAAAAAAwAAwAAAAAAD + AADAAAAAAAMAAMAAAAAAAwAA4AAAAAADAADgAAAAAAcAAOAAAAAABwAA4AAAAAAHAADwAAAAAA8AAPAA + AAAADwAA+AAAAAAfAAD4AAAAAB8AAPwAAAAAPwAA/gAAAAB/AAD/AAAAAH8AAP+AAAAA/wAA/8AAAAH/ + AAD/4AAAB/8AAP/wAAAP/wAA//wAAD//AAD//wAA//8AAP//8A///wAA////////AAD///////8AACgA + AAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAClpqUhvb69QsbHxlrOy85avb69Sq2u + rSEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANbT1jnv7++c7+/v5+/v7//329b/98/G//fP + xv/329b/7+vv/+/v7+/v7++l3t/eQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN7b3jHv7+/G7+fn//eynP//hmP//2U5//9d + Mf//XTH//10x//9dMf//ZTn//4Jj//eynP/v4+f/7+/v1ufj50IAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++E7+vv//eqlP//bTn//2Ux//9l + Mf//ZTH//2Ux//9lMf//ZTH//2Ux//9lMf//ZTH//2Ux//9pOf/3qoz/7+vn/+/v75QAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+/vtffb1v//glL//2kx//9p + Mf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//aTH//2kx//9pMf//fVL/99fO/+/v + 7721trUIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAO/v763308b//3VC//9t + Mf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9tMf//bTH//20x//9t + Mf//dTn/99PG/+/v770AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADv7++E99/W//99 + Qv//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91Mf//dTH//3Ux//91 + Mf//dTH//3Ux//91Mf//eUL/99vO/+/v75QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1tfWKffv + 7///jlr//3kx//95Mf//jlL//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95Mf//eTH//3kx//95 + Mf//eTH//3kx//+2lP//pnv//3kx//95Mf//jlL/9+/v/+fn5zkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAD38/e997qc//99Mf//fTH//30x//+uhP//vpz//30x//99Mf//fTH//30x//99Mf//fTH//30x//99 + Mf//fTH//30x//99Mf//klL////////Xvf//fTH//30x//99Mf/3tpT/9/P3zgAAAAAAAAAAAAAAAAAA + AAAAAAAAzsvOMffv7///ikL//4Y5//+GOf//hjn//5JS///39///pmv//4Yx//+GOf//hjn//4Y5//+G + Of//hjn//4Y5//+GOf//hjn//4Y5///Lpf//+/f//5ZS//+GOf//hjn//4Y5//+KQv/36+f/5+fnQgAA + AAAAAAAAAAAAAAAAAAD38/eM98ut//+KMf//ijH//4ox//+KMf//ijH//8ec///79///qnP//4ox//+K + Mf//ijH//4ox//+KMf//ijH//4ox//+KMf//ijn//+/n//+6jP//ijH//4ox//+KMf//ijH//4ox//fH + pf/38/elAAAAAAAAAAAAAAAAAAAAAPfz99b3rnP/9445//eOOf/3jjn/9445//eSQv//voz////////v + 5//3kkL/95JC//eSQv/3kkL/95JC//eSQv/3kkL/95I5///Lpf//w5T/95I5//eSQv/3jjn/9445//eO + Of/3jjn/96pr//fz9+cAAAAAAAAAAAAAAACUlpQI9/P3//eaQv/3kjn/95I5//eSOf/3kjn////////b + vf//797////////Ppf//+/f/////////////////////////////y5z////////Ppf//+/////////eW + Of/3kjn/95I5//eSOf/3lkL/9/P3/7W2tSEAAAAAAAAAAL26vSn37+f/95o5//eaOf/3mjn/95o5//ea + Of/////////////LnP////////v3///Trf///////////////////////+PO///Trf//063//9et//// + ////////955C//eaOf/3mjn/95o5//eaOf/3697/zs/OQgAAAAAAAAAAvbq9Offn3v/3njn/9545//ee + Of/3njn/9545/////////////+vW///jxv///////9+9///v3v/////////////7////06X////////X + rf//+/f////////////3okL/9545//eeOf/3njn/9545//fn1v/W19ZSAAAAAAAAAAC1trU59+ve//ei + Of/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/97Ja////////////97Zj//eiOf/3ojn/96Y5///z + 5///9+//96ZC//eiOf/3ojn/96I5//eiOf/3ojn/96I5//eiOf/3ojn/9+fW/9bX1lIAAAAAAAAAALWy + tSn38+f/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn//9ul///37///05z/96o5//eq + Of/3x4T///////fLjP/3qjn/96o5//eqOf/3qjn/96o5//eqOf/3qjn/96o5//eqOf/37+f/1tPWQgAA + AAAAAAAAnJqcCPf39//3skr/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3skL//+O9//// + ///3z4z/9645///z3v//79b/9645//euOf/3rjn/9645//euOf/3rjn/9645//euOf/3rjn/97JC//f3 + 9/+9ur0YAAAAAAAAAAAAAAAA9/f3zvfHc//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/315T///Pn///frf/3y3v///////fDY//3sjn/97I5//eyOf/3sjn/97I5//eyOf/3sjn/97I5//ey + Of/3x3P/9/f35wAAAAAAAAAAAAAAAAAAAAD39/eE9+O1//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//e6Of/325z//+/W///v1v//463/97Y5//e6Of/3ujn/97o5//e6Of/3ujn/97o5//e6 + Of/3ujn/97o5//ffrf/39/ecAAAAAAAAAAAAAAAAAAAAAM7Lzin39/f/98NK//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3vjn/9745//e+Of/3y2v///fv//fDSv/3vjn/9745//e+Of/3vjn/9745//e+ + Of/3vjn/9745//e+Of/3w0r/9/fv/+fn5zkAAAAAAAAAAAAAAAAAAAAAAAAAAPf3963346X/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5/+/DOf/vwzn/78M5///rvf/313v/78M5/+/DOf/vwzn/78M5/+/D + Of/vwzn/78M5/+/DOf/vwzn/78M5//ffpf//+//GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3tveIf/7 + 9/f302P/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/vy0L/99+M/+/LQv/vy0L/78tC/+/L + Qv/vy0L/78tC/+/LQv/vy0L/78tC/+/LQv/302P///v3/+/r7zEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA9/f3a//35//v01L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/789C/+/P + Qv/vz0L/789C/+/PQv/vz0L/789C/+/PQv/vz0L/79NK///z3v//+/+EAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA//v/nP/z3v/v11L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/79NC/+/TQv/v00L/79NC/+/XSv//89b///v/rQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/nP/35//v32P/79tC/+/bQv/v20L/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v20L/79tC/+/bQv/v32P///fe///7/60AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//v/c//7//f3763/799S/+/f + Qv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30L/799C/+/fQv/v30r/9++l///79///+/97AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3t/eIf/7 + /63/+/f/9/O1//fre//v51L/7+NC/+/jQv/v40L/7+NC/+/nSv/363v/9/O1///79///+/+97+vvKQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAN7b3in///+M////1v//////++////ve///73v//++///////////9b///+M5+PnMQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAraqtCMbDxinOz85Czs/OQsbHximtrq0IAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///////4 + H///wAP//wAA//4AAH/8AAAf+AAAH/AAAA/gAAAH4AAAB8AAAAPAAAADwAAAA4AAAAGAAAABgAAAAYAA + AAGAAAABgAAAAcAAAAPAAAADwAAAA+AAAAfgAAAH8AAAD/gAAB/8AAA//gAAf/8AAP//wAP///gf//// + //8oAAAAEAAAACAAAAABACAAAAAAAEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAASklKCGNhYyljYWMpSklKCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACUkpQ579fWtfeynP/3moT/95qE//eynP/v29a9nJqcQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADWz86M956E//9pMf//ZTH//2Ux//9lMf//ZTH//2kx//eee//e19aUAAAAAAAAAAAAAAAAAAAAAAAA + AADWz86M/45j//9xMf//cTH//3Ex//9xMf//cTH//3Ex//9xMf//cTH//45a/97X1pQAAAAAAAAAAAAA + AACMjow5966E//99Mf//nmv//30x//99Mf//fTH//30x//99Mf//gjn//8u1//99Mf/3qoT/nJ6cQgAA + AAAAAAAA79/Wrf+KOf//hjH//7aE//+yhP//hjH//4Yx//+GMf//hjH//7J7//+2hP//hjH//4o5/+/j + 3r0AAAAAAAAAAPfLpff3kjn/95I5///Lpf//9+///7qE///LnP//y5z//7qE///Xtf//x5z/95I5//eS + Of/3y6X/UlFSCFpdWhj3w4z/95o5//eeOf///////+fO///r1v//+/f////////jxv//373///////ee + Of/3mjn/98OM/2tpayFaWVoY98uM//emOf/3pjn/96Y5//eqQv//8+f/97Zj//euSv//69b/96Y5//em + Of/3pjn/96Y5//fHjP9raWshAAAAAPfbrff3sjn/97I5//eyOf/3sjn/98dz///nxv//26X/98dr//ey + Of/3sjn/97I5//eyOf/32633AAAAAAAAAADv596t97pC//e6Of/3ujn/97o5//e6Of/314T//+Ot//e6 + Of/3ujn/97o5//e6Of/3ukL/9+/etQAAAAAAAAAAjI6MMffblP/vx0L/78dC/+/HQv/vx0L/99dz//fL + Sv/vx0L/78dC/+/HQv/vx0L/99uM/6WipTkAAAAAAAAAAAAAAADe29aE99tr/+/TQv/v00L/79NC/+/T + Qv/v00L/79NC/+/TQv/v00L/99tr/+fj3owAAAAAAAAAAAAAAAAAAAAAAAAAAN7f1oT365T/79tC/+/b + Qv/v20L/79tC/+/bQv/v20L/9+eU/+fn3owAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlJaUMffz + 563387X39++U//fvlP/387X39/PnrZyenDkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAGNlYxhjZWMYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPw/AADwDwAA4AcAAMAD + AACAAQAAgAEAAIAAAAAAAAAAAAAAAIABAACAAQAAgAEAAMADAADgBwAA8A8AAP5/AAA= + + + + Off + + + 5, 6, 5, 6 + + + 609, 776 + + + 609, 776 + + + 5, 4, 5, 4 + + + CenterScreen + + + 主站管理 V1.5 + + + timer1 + + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Main + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ManageTools/ManageTools.csproj b/ManageTools/ManageTools.csproj new file mode 100644 index 0000000..b8d0e66 --- /dev/null +++ b/ManageTools/ManageTools.csproj @@ -0,0 +1,176 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {DDF6DFF3-E0BA-40B4-A398-3FB56E8D0F9C} + WinExe + Properties + ManageTools + ManageTools + v4.0 + Client + 512 + false + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 1 + 1.0.0.%2a + false + true + true + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + 2.ico + + + E4E6F3BEEF99B9E0A9B863B8CBCD6BEF9E0CBCF8 + + + ManageTools_TemporaryKey.pfx + + + false + + + false + + + LocalIntranet + + + Properties\app.manifest + + + + ..\packages\MySql.Data.6.7.9\lib\net40\MySql.Data.dll + + + ..\packages\Newtonsoft.Json.3.5.8\lib\35\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + Form + + + Main.cs + + + + + + + UserControl + + + UserControl1.cs + + + Main.cs + Designer + + + Main.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + Designer + + + + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + {E34CB9F1-C7F7-424C-BE29-027DCC09363A} + 1 + 0 + 0 + tlbimp + False + False + + + + + False + .NET Framework 3.5 SP1 + false + + + + + \ No newline at end of file diff --git a/ManageTools/ManageTools.csproj.user b/ManageTools/ManageTools.csproj.user new file mode 100644 index 0000000..37f4199 --- /dev/null +++ b/ManageTools/ManageTools.csproj.user @@ -0,0 +1,16 @@ + + + + + + + + + + zh-CN + false + + + false + + \ No newline at end of file diff --git a/ManageTools/ManageTools_TemporaryKey.pfx b/ManageTools/ManageTools_TemporaryKey.pfx new file mode 100644 index 0000000..f26c0d9 Binary files /dev/null and b/ManageTools/ManageTools_TemporaryKey.pfx differ diff --git a/ManageTools/Program.cs b/ManageTools/Program.cs new file mode 100644 index 0000000..1bf9daa --- /dev/null +++ b/ManageTools/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace ManageTools +{ + static class Program + { + /// + /// 应用程序的主入口点。 + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Main()); + } + } +} diff --git a/ManageTools/Properties/AssemblyInfo.cs b/ManageTools/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6a37c75 --- /dev/null +++ b/ManageTools/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过以下 +// 特性集控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("ManageTools")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("ManageTools")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 使此程序集中的类型 +// 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, +// 则将该类型上的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("20615ae5-afcb-4165-8811-55fb3a69dfdd")] + +// 程序集的版本信息由下面四个值组成: +// +// 主版本 +// 次版本 +// 内部版本号 +// 修订号 +// +// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值, +// 方法是按如下所示使用“*”: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ManageTools/Properties/Resources.Designer.cs b/ManageTools/Properties/Resources.Designer.cs new file mode 100644 index 0000000..13958ec --- /dev/null +++ b/ManageTools/Properties/Resources.Designer.cs @@ -0,0 +1,189 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace ManageTools.Properties { + using System; + + + /// + /// 一个强类型的资源类,用于查找本地化的字符串等。 + /// + // 此类是由 StronglyTypedResourceBuilder + // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 + // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen + // (以 /str 作为命令选项),或重新生成 VS 项目。 + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// 返回此类使用的缓存的 ResourceManager 实例。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ManageTools.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 重写当前线程的 CurrentUICulture 属性 + /// 重写当前线程的 CurrentUICulture 属性。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// 查找类似 保存前端连接参数成功 的本地化字符串。 + /// + internal static string 保存前端连接参数成功 { + get { + return ResourceManager.GetString("保存前端连接参数成功", resourceCulture); + } + } + + /// + /// 查找类似 参数已生效 的本地化字符串。 + /// + internal static string 参数已生效 { + get { + return ResourceManager.GetString("参数已生效", resourceCulture); + } + } + + /// + /// 查找类似 提示信息 的本地化字符串。 + /// + internal static string 提示信息 { + get { + return ResourceManager.GetString("提示信息", resourceCulture); + } + } + + /// + /// 查找类似 数据库备份任务创建成功 的本地化字符串。 + /// + internal static string 数据库备份任务创建成功 { + get { + return ResourceManager.GetString("数据库备份任务创建成功", resourceCulture); + } + } + + /// + /// 查找类似 数据库备份失败 的本地化字符串。 + /// + internal static string 数据库备份失败 { + get { + return ResourceManager.GetString("数据库备份失败", resourceCulture); + } + } + + /// + /// 查找类似 数据库备份成功 的本地化字符串。 + /// + internal static string 数据库备份成功 { + get { + return ResourceManager.GetString("数据库备份成功", resourceCulture); + } + } + + /// + /// 查找类似 数据库连接失败 的本地化字符串。 + /// + internal static string 数据库连接失败 { + get { + return ResourceManager.GetString("数据库连接失败", resourceCulture); + } + } + + /// + /// 查找类似 数据库连接成功 的本地化字符串。 + /// + internal static string 数据库连接成功 { + get { + return ResourceManager.GetString("数据库连接成功", resourceCulture); + } + } + + /// + /// 查找类似 请确认服务是否已经关闭 的本地化字符串。 + /// + internal static string 请确认服务是否已经关闭 { + get { + return ResourceManager.GetString("请确认服务是否已经关闭", resourceCulture); + } + } + + /// + /// 查找类似 请设置服务器地址 的本地化字符串。 + /// + internal static string 请设置服务器地址 { + get { + return ResourceManager.GetString("请设置服务器地址", resourceCulture); + } + } + + /// + /// 查找类似 请设置正确的数据库参数 的本地化字符串。 + /// + internal static string 请设置正确的数据库参数 { + get { + return ResourceManager.GetString("请设置正确的数据库参数", resourceCulture); + } + } + + /// + /// 查找类似 请设置流媒体地址 的本地化字符串。 + /// + internal static string 请设置流媒体地址 { + get { + return ResourceManager.GetString("请设置流媒体地址", resourceCulture); + } + } + + /// + /// 查找类似 请重启服务 的本地化字符串。 + /// + internal static string 请重启服务 { + get { + return ResourceManager.GetString("请重启服务", resourceCulture); + } + } + + /// + /// 查找类似 配置抄表服务参数时出现异常 的本地化字符串。 + /// + internal static string 配置抄表服务参数时出现异常 { + get { + return ResourceManager.GetString("配置抄表服务参数时出现异常", resourceCulture); + } + } + } +} diff --git a/ManageTools/Properties/Resources.en.resx b/ManageTools/Properties/Resources.en.resx new file mode 100644 index 0000000..74d7448 --- /dev/null +++ b/ManageTools/Properties/Resources.en.resx @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + The front-end connection parameters are saved successfully + + + Parameters is valid now + + + Messages + + + Succeeded in creating task of database backup + + + Failed to backup database + + + Succeeded in backuping database + + + Failed to connect database + + + Succeeded in connecting database + + + lease ensure that service is close + + + Please set the baseUrl address + + + Please set the correct database parameters + + + Please set the cameraUrl address + + + Please start service again + + + There is a error in setting reading-meter service parameters + + \ No newline at end of file diff --git a/ManageTools/Properties/Resources.resx b/ManageTools/Properties/Resources.resx new file mode 100644 index 0000000..f415765 --- /dev/null +++ b/ManageTools/Properties/Resources.resx @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 保存前端连接参数成功 + + + 参数已生效 + + + 提示信息 + + + 数据库备份任务创建成功 + + + 数据库备份失败 + + + 数据库备份成功 + + + 数据库连接失败 + + + 数据库连接成功 + + + 请确认服务是否已经关闭 + + + 请设置服务器地址 + + + 请设置正确的数据库参数 + + + 请设置流媒体地址 + + + 请重启服务 + + + 配置抄表服务参数时出现异常 + + \ No newline at end of file diff --git a/ManageTools/Properties/Settings.Designer.cs b/ManageTools/Properties/Settings.Designer.cs new file mode 100644 index 0000000..6afbb20 --- /dev/null +++ b/ManageTools/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18444 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ManageTools.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/ManageTools/Properties/Settings.settings b/ManageTools/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/ManageTools/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/ManageTools/Properties/app.manifest b/ManageTools/Properties/app.manifest new file mode 100644 index 0000000..15b2b8c --- /dev/null +++ b/ManageTools/Properties/app.manifest @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ManageTools/SchTask.cs b/ManageTools/SchTask.cs new file mode 100644 index 0000000..69a38fb --- /dev/null +++ b/ManageTools/SchTask.cs @@ -0,0 +1,116 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using TaskScheduler; + +namespace ManageTools +{ + public class SchTaskExt + { + /// + /// delete task + /// + /// + private static void DeleteTask(string taskName) + { + TaskSchedulerClass ts = new TaskSchedulerClass(); + ts.Connect(null, null, null, null); + ITaskFolder folder = ts.GetFolder("\\"); + folder.DeleteTask(taskName, 0); + } + + /// + /// get all tasks + /// + public static IRegisteredTaskCollection GetAllTasks() + { + TaskSchedulerClass ts = new TaskSchedulerClass(); + ts.Connect(null, null, null, null); + ITaskFolder folder = ts.GetFolder("\\"); + IRegisteredTaskCollection tasks_exists = folder.GetTasks(1); + return tasks_exists; + } + /// + /// check task isexists + /// + /// + /// + public static bool IsExists(string taskName) + { + var isExists = false; + IRegisteredTaskCollection tasks_exists = GetAllTasks(); + for (int i = 1; i <= tasks_exists.Count; i++) + { + IRegisteredTask t = tasks_exists[i]; + if (t.Name.Equals(taskName)) + { + isExists = true; + break; + } + } + return isExists; + } + + /// + /// create task + /// + /// + /// + /// + /// + /// state + public static _TASK_STATE CreateTaskScheduler(string creator, string taskName, string path, string interval, String startTime) + { + try + { + if (IsExists(taskName)) + { + DeleteTask(taskName); + } + + //new scheduler + TaskSchedulerClass scheduler = new TaskSchedulerClass(); + //pc-name/ip,username,domain,password + scheduler.Connect(null, null, null, null); + //get scheduler folder + ITaskFolder folder = scheduler.GetFolder("\\"); + + + //set base attr + ITaskDefinition task = scheduler.NewTask(0); + task.RegistrationInfo.Author = "McodsAdmin";//creator + task.RegistrationInfo.Description = "...";//description + + //set trigger (IDailyTrigger ITimeTrigger) + ITimeTrigger tt = (ITimeTrigger)task.Triggers.Create(_TASK_TRIGGER_TYPE2.TASK_TRIGGER_TIME); + tt.Repetition.Interval = interval;// format PT1H1M==1小时1分钟 设置的值最终都会转成分钟加入到触发器 + tt.StartBoundary = startTime;//start time + + //set action + IExecAction action = (IExecAction)task.Actions.Create(_TASK_ACTION_TYPE.TASK_ACTION_EXEC); + action.Path = path; + + task.Settings.ExecutionTimeLimit = "PT0S"; //运行任务时间超时停止任务吗? PTOS 不开启超时 + task.Settings.DisallowStartIfOnBatteries = false;//只有在交流电源下才执行 + task.Settings.RunOnlyIfIdle = false;//仅当计算机空闲下才执行 + + IRegisteredTask regTask = folder.RegisterTaskDefinition(taskName, task, + (int)_TASK_CREATION.TASK_CREATE, null, //user + null, // password + _TASK_LOGON_TYPE.TASK_LOGON_INTERACTIVE_TOKEN, + ""); + regTask.Run(null); + return _TASK_STATE.TASK_STATE_RUNNING; + //IRunningTask runTask = regTask.Run(null); + //return runTask.State; + + } + catch (Exception ex) + { + throw ex; + } + + } + } +} diff --git a/ManageTools/SysEnvironment.cs b/ManageTools/SysEnvironment.cs new file mode 100644 index 0000000..ff970f1 --- /dev/null +++ b/ManageTools/SysEnvironment.cs @@ -0,0 +1,143 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Microsoft.Win32; + +namespace ManageTools +{ + class SysEnvironment + { + /// + /// 获取系统环境变量 + /// + /// + /// + public string GetSysEnvironmentByName(string name) + { + string result = string.Empty; + try + { + result = OpenSysEnvironment().GetValue(name).ToString();//读取 + } + catch (Exception) + { + + return string.Empty; + } + return result; + + } + + /// + /// 打开系统环境变量注册表 + /// + /// RegistryKey + private RegistryKey OpenSysEnvironment() + { + RegistryKey regLocalMachine = Registry.LocalMachine; + RegistryKey regSYSTEM = regLocalMachine.OpenSubKey("SYSTEM", true);//打开HKEY_LOCAL_MACHINE下的SYSTEM + RegistryKey regControlSet001 = regSYSTEM.OpenSubKey("ControlSet001", true);//打开ControlSet001 + RegistryKey regControl = regControlSet001.OpenSubKey("Control", true);//打开Control + RegistryKey regManager = regControl.OpenSubKey("Session Manager", true);//打开Control + + RegistryKey regEnvironment = regManager.OpenSubKey("Environment", true); + return regEnvironment; + } + + /// + /// 设置系统环境变量 + /// + /// 变量名 + /// 值 + public void SetSysEnvironment(string name, string strValue) + { + OpenSysEnvironment().SetValue(name, strValue); + + } + + /// + /// 检测系统环境变量是否存在 + /// + /// + /// + public bool CheckSysEnvironmentExist(string name) + { + if (!string.IsNullOrEmpty(GetSysEnvironmentByName(name))) + return true; + else + return false; + } + + /// + /// 添加到PATH环境变量(会检测路径是否存在,存在就不重复) + /// + /// + public void SetPathAfter(string strHome) + { + string pathlist; + pathlist = GetSysEnvironmentByName("PATH"); + //检测是否以;结尾 + if (pathlist.Substring(pathlist.Length - 1, 1) != ";") + { + SetSysEnvironment("PATH", pathlist + ";"); + pathlist = GetSysEnvironmentByName("PATH"); + } + string[] list = pathlist.Split(';'); + bool isPathExist = false; + + foreach (string item in list) + { + if (item == strHome) + isPathExist = true; + } + if (!isPathExist) + { + SetSysEnvironment("PATH", pathlist + strHome + ";"); + } + + } + + public void SetPathBefore(string strHome) + { + + string pathlist; + pathlist = GetSysEnvironmentByName("PATH"); + string[] list = pathlist.Split(';'); + bool isPathExist = false; + + foreach (string item in list) + { + if (item == strHome) + isPathExist = true; + } + if (!isPathExist) + { + SetSysEnvironment("PATH", strHome + ";" + pathlist); + } + + } + + public void SetPath(string strHome) + { + + string pathlist; + pathlist = GetSysEnvironmentByName("PATH"); + string[] list = pathlist.Split(';'); + bool isPathExist = false; + + foreach (string item in list) + { + if (item == strHome) + isPathExist = true; + } + if (!isPathExist) + { + SetSysEnvironment("PATH", pathlist + strHome + ";"); + + } + } + + + } +} diff --git a/ManageTools/UserControl1.Designer.cs b/ManageTools/UserControl1.Designer.cs new file mode 100644 index 0000000..dbf8abe --- /dev/null +++ b/ManageTools/UserControl1.Designer.cs @@ -0,0 +1,37 @@ +namespace ManageTools +{ + partial class UserControl1 + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要修改 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + } + + #endregion + } +} diff --git a/ManageTools/UserControl1.cs b/ManageTools/UserControl1.cs new file mode 100644 index 0000000..2c279f3 --- /dev/null +++ b/ManageTools/UserControl1.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace ManageTools +{ + public partial class UserControl1 : UserControl + { + public UserControl1() + { + InitializeComponent(); + } + } +} diff --git a/ManageTools/app.config b/ManageTools/app.config new file mode 100644 index 0000000..12e70e5 --- /dev/null +++ b/ManageTools/app.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/ManageTools/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs b/ManageTools/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs new file mode 100644 index 0000000..c66f422 --- /dev/null +++ b/ManageTools/obj/x86/Debug/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] diff --git a/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache b/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..d84ae89 Binary files /dev/null and b/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..2b5be41 Binary files /dev/null and b/ManageTools/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ManageTools/obj/x86/Debug/Interop.TaskScheduler.dll b/ManageTools/obj/x86/Debug/Interop.TaskScheduler.dll new file mode 100644 index 0000000..4be673b Binary files /dev/null and b/ManageTools/obj/x86/Debug/Interop.TaskScheduler.dll differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.Main.en.resources b/ManageTools/obj/x86/Debug/ManageTools.Main.en.resources new file mode 100644 index 0000000..a7eb153 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.Main.en.resources differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.Main.resources b/ManageTools/obj/x86/Debug/ManageTools.Main.resources new file mode 100644 index 0000000..a9bb8a5 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.Main.resources differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.en.resources b/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.en.resources new file mode 100644 index 0000000..22e400f Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.en.resources differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.resources b/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.resources new file mode 100644 index 0000000..7fd21d5 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.Properties.Resources.resources differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.application b/ManageTools/obj/x86/Debug/ManageTools.application new file mode 100644 index 0000000..de388be --- /dev/null +++ b/ManageTools/obj/x86/Debug/ManageTools.application @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + rAhAOdwaPOaVfY5a1ps4+9uqDNk= + + + + \ No newline at end of file diff --git a/ManageTools/obj/x86/Debug/ManageTools.csproj.CopyComplete b/ManageTools/obj/x86/Debug/ManageTools.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/ManageTools/obj/x86/Debug/ManageTools.csproj.CoreCompileInputs.cache b/ManageTools/obj/x86/Debug/ManageTools.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a82075a --- /dev/null +++ b/ManageTools/obj/x86/Debug/ManageTools.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4bff4daa8974f4d99577581106a114f01aeaa1a4 diff --git a/ManageTools/obj/x86/Debug/ManageTools.csproj.FileListAbsolute.txt b/ManageTools/obj/x86/Debug/ManageTools.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..37985c8 --- /dev/null +++ b/ManageTools/obj/x86/Debug/ManageTools.csproj.FileListAbsolute.txt @@ -0,0 +1,58 @@ +D:\work\web抄表\ManageTools\ManageTools\bin\Debug\ManageTools.exe +D:\work\web抄表\ManageTools\ManageTools\bin\Debug\ManageTools.pdb +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.resources +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.resources +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.GenerateResource.Cache +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.exe +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.pdb +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csprojResolveAssemblyReference.cache +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Debug\ManageTools.exe +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Debug\ManageTools.pdb +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Debug\en\ManageTools.resources.dll +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.en.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.en.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.GenerateResource.Cache +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\en\ManageTools.resources.dll +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.exe +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Debug\ManageTools.pdb +F:\主站\ManageTools\ManageTools\bin\Debug\ManageTools.exe +F:\主站\ManageTools\ManageTools\bin\Debug\ManageTools.pdb +F:\主站\ManageTools\ManageTools\bin\Debug\en\ManageTools.resources.dll +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csprojAssemblyReference.cache +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.resources +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.resources +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.en.resources +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.en.resources +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.GenerateResource.cache +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.CoreCompileInputs.cache +F:\主站\ManageTools\ManageTools\obj\x86\Debug\en\ManageTools.resources.dll +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.exe +F:\主站\ManageTools\ManageTools\obj\x86\Debug\ManageTools.pdb +D:\ManageTools\ManageTools\bin\Debug\ManageTools.exe.config +D:\ManageTools\ManageTools\bin\Debug\ManageTools.exe.manifest +D:\ManageTools\ManageTools\bin\Debug\ManageTools.application +D:\ManageTools\ManageTools\bin\Debug\ManageTools.exe +D:\ManageTools\ManageTools\bin\Debug\ManageTools.pdb +D:\ManageTools\ManageTools\bin\Debug\en\ManageTools.resources.dll +D:\ManageTools\ManageTools\bin\Debug\MySql.Data.dll +D:\ManageTools\ManageTools\bin\Debug\Newtonsoft.Json.dll +D:\ManageTools\ManageTools\bin\Debug\Newtonsoft.Json.pdb +D:\ManageTools\ManageTools\bin\Debug\Newtonsoft.Json.xml +D:\ManageTools\ManageTools\bin\Debug\Interop.TaskScheduler.dll +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csprojAssemblyReference.cache +D:\ManageTools\ManageTools\obj\x86\Debug\Interop.TaskScheduler.dll +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.ResolveComReference.cache +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.resources +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.resources +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Main.en.resources +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.Properties.Resources.en.resources +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.GenerateResource.cache +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.CoreCompileInputs.cache +D:\ManageTools\ManageTools\obj\x86\Debug\en\ManageTools.resources.dll +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.exe.manifest +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.application +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.csproj.CopyComplete +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.exe +D:\ManageTools\ManageTools\obj\x86\Debug\ManageTools.pdb diff --git a/ManageTools/obj/x86/Debug/ManageTools.csproj.GenerateResource.cache b/ManageTools/obj/x86/Debug/ManageTools.csproj.GenerateResource.cache new file mode 100644 index 0000000..4efb87d Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.csproj.GenerateResource.cache differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.csproj.ResolveComReference.cache b/ManageTools/obj/x86/Debug/ManageTools.csproj.ResolveComReference.cache new file mode 100644 index 0000000..bcc228b Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.csproj.ResolveComReference.cache differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.csprojAssemblyReference.cache b/ManageTools/obj/x86/Debug/ManageTools.csprojAssemblyReference.cache new file mode 100644 index 0000000..fbe3917 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.csprojAssemblyReference.cache differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.exe b/ManageTools/obj/x86/Debug/ManageTools.exe new file mode 100644 index 0000000..5efb103 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.exe differ diff --git a/ManageTools/obj/x86/Debug/ManageTools.exe.manifest b/ManageTools/obj/x86/Debug/ManageTools.exe.manifest new file mode 100644 index 0000000..fe1f5c6 --- /dev/null +++ b/ManageTools/obj/x86/Debug/ManageTools.exe.manifest @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P+nQDYxjbkzQjA+Ev3UAdY8i5kM= + + + + + + + + + + + + CIWvrJH8ZRLKfDv8tp0isgA+Jww= + + + + + + + + + + + + f5CtB8zouMxPD59FgJeJp5hV3Ug= + + + + + + + + + + + + 4PEeS47q84kFKU/E1MgxIHga8R4= + + + + + + + + + + + + lMUDZQ99v/RrkpQKyhDjPA7CXl8= + + + + + + + + + + VA5Qp4KcAejXlGAum8a2WVc1cYw= + + + + + + + + + EWZylcmVpg/qn57i4oPpEIfediE= + + + \ No newline at end of file diff --git a/ManageTools/obj/x86/Debug/ManageTools.pdb b/ManageTools/obj/x86/Debug/ManageTools.pdb new file mode 100644 index 0000000..cafc6e4 Binary files /dev/null and b/ManageTools/obj/x86/Debug/ManageTools.pdb differ diff --git a/ManageTools/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll b/ManageTools/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..b5ef83c Binary files /dev/null and b/ManageTools/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/ManageTools/obj/x86/Debug/en/ManageTools.resources.dll b/ManageTools/obj/x86/Debug/en/ManageTools.resources.dll new file mode 100644 index 0000000..ad15371 Binary files /dev/null and b/ManageTools/obj/x86/Debug/en/ManageTools.resources.dll differ diff --git a/ManageTools/obj/x86/Debug/system.ini b/ManageTools/obj/x86/Debug/system.ini new file mode 100644 index 0000000..381dc14 --- /dev/null +++ b/ManageTools/obj/x86/Debug/system.ini @@ -0,0 +1,16 @@ +[config] +autoRun=False +tb_Host=127.0.0.1 +tb_db=samr +tb_user=sa +mtb_pwd=sa +tb_path=F:\վ\ManageTools\ManageTools\obj\x86\Debug\backup +dTP_time=22:00:00 +language= +[runserver] +rmsName=Read-Service +rmsRun64=runJavaApp_64.bat +rmsRun32=runJavaApp_32.bat +GPRSName=GPRS +GPRSRun64=3761.exe +GPRSRun32=3761.exe diff --git a/ManageTools/obj/x86/Release/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs b/ManageTools/obj/x86/Release/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs new file mode 100644 index 0000000..c66f422 --- /dev/null +++ b/ManageTools/obj/x86/Release/.NETFramework,Version=v4.0,Profile=Client.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")] diff --git a/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache b/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..b9fcdb7 Binary files /dev/null and b/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache b/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..82755f4 Binary files /dev/null and b/ManageTools/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ManageTools/obj/x86/Release/Interop.TaskScheduler.dll b/ManageTools/obj/x86/Release/Interop.TaskScheduler.dll new file mode 100644 index 0000000..6aac580 Binary files /dev/null and b/ManageTools/obj/x86/Release/Interop.TaskScheduler.dll differ diff --git a/ManageTools/obj/x86/Release/ManageTools.Main.en.resources b/ManageTools/obj/x86/Release/ManageTools.Main.en.resources new file mode 100644 index 0000000..a7eb153 Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.Main.en.resources differ diff --git a/ManageTools/obj/x86/Release/ManageTools.Main.resources b/ManageTools/obj/x86/Release/ManageTools.Main.resources new file mode 100644 index 0000000..4bb1068 Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.Main.resources differ diff --git a/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.en.resources b/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.en.resources new file mode 100644 index 0000000..22e400f Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.en.resources differ diff --git a/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.resources b/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.resources new file mode 100644 index 0000000..7fd21d5 Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.Properties.Resources.resources differ diff --git a/ManageTools/obj/x86/Release/ManageTools.csproj.CopyComplete b/ManageTools/obj/x86/Release/ManageTools.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/ManageTools/obj/x86/Release/ManageTools.csproj.CoreCompileInputs.cache b/ManageTools/obj/x86/Release/ManageTools.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0372ab4 --- /dev/null +++ b/ManageTools/obj/x86/Release/ManageTools.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4076ce4fca5489ef49a278b3d81bb9600f7b3975 diff --git a/ManageTools/obj/x86/Release/ManageTools.csproj.FileListAbsolute.txt b/ManageTools/obj/x86/Release/ManageTools.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..90215d0 --- /dev/null +++ b/ManageTools/obj/x86/Release/ManageTools.csproj.FileListAbsolute.txt @@ -0,0 +1,68 @@ +D:\work\web抄表\ManageTools\ManageTools\bin\Release\ManageTools.exe +D:\work\web抄表\ManageTools\ManageTools\bin\Release\ManageTools.pdb +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.resources +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.resources +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.GenerateResource.Cache +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.exe +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.pdb +D:\work\web抄表\ManageTools\ManageTools\obj\x86\Release\ManageTools.csprojResolveAssemblyReference.cache +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Release\ManageTools.exe +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Release\ManageTools.pdb +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.exe +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.pdb +D:\Workspaces\sarm\ManageTools\ManageTools\bin\Release\en\ManageTools.resources.dll +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.en.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.GenerateResource.Cache +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\en\ManageTools.resources.dll +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.en.resources +D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\ManageTools.csprojResolveAssemblyReference.cache +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\ManageTools.exe.config +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\ManageTools.exe.manifest +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\ManageTools.application +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\ManageTools.exe +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\ManageTools.pdb +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\en\ManageTools.resources.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\MySql.Data.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.pdb +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.xml +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\bin\Release\Interop.TaskScheduler.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.csprojAssemblyReference.cache +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\Interop.TaskScheduler.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.ResolveComReference.cache +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.resources +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.resources +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.en.resources +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.en.resources +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.GenerateResource.cache +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.CoreCompileInputs.cache +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\en\ManageTools.resources.dll +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.exe.manifest +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.application +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.CopyComplete +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.exe +C:\Users\Administrator\Desktop\LDDQSetUp\ManageTools\ManageTools\obj\x86\Release\ManageTools.pdb +D:\ManageTools\ManageTools\bin\Release\ManageTools.exe.config +D:\ManageTools\ManageTools\bin\Release\ManageTools.exe +D:\ManageTools\ManageTools\bin\Release\ManageTools.pdb +D:\ManageTools\ManageTools\bin\Release\en\ManageTools.resources.dll +D:\ManageTools\ManageTools\bin\Release\MySql.Data.dll +D:\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.dll +D:\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.pdb +D:\ManageTools\ManageTools\bin\Release\Newtonsoft.Json.xml +D:\ManageTools\ManageTools\bin\Release\Interop.TaskScheduler.dll +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.csprojAssemblyReference.cache +D:\ManageTools\ManageTools\obj\x86\Release\Interop.TaskScheduler.dll +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.ResolveComReference.cache +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.resources +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.resources +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.Main.en.resources +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.Properties.Resources.en.resources +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.GenerateResource.cache +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.CoreCompileInputs.cache +D:\ManageTools\ManageTools\obj\x86\Release\en\ManageTools.resources.dll +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.csproj.CopyComplete +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.exe +D:\ManageTools\ManageTools\obj\x86\Release\ManageTools.pdb diff --git a/ManageTools/obj/x86/Release/ManageTools.csproj.GenerateResource.cache b/ManageTools/obj/x86/Release/ManageTools.csproj.GenerateResource.cache new file mode 100644 index 0000000..6fc6d7f Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.csproj.GenerateResource.cache differ diff --git a/ManageTools/obj/x86/Release/ManageTools.csproj.ResolveComReference.cache b/ManageTools/obj/x86/Release/ManageTools.csproj.ResolveComReference.cache new file mode 100644 index 0000000..bcc228b Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.csproj.ResolveComReference.cache differ diff --git a/ManageTools/obj/x86/Release/ManageTools.csprojAssemblyReference.cache b/ManageTools/obj/x86/Release/ManageTools.csprojAssemblyReference.cache new file mode 100644 index 0000000..8dcc30a Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.csprojAssemblyReference.cache differ diff --git a/ManageTools/obj/x86/Release/ManageTools.csprojResolveAssemblyReference.cache b/ManageTools/obj/x86/Release/ManageTools.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..92bd47b Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.csprojResolveAssemblyReference.cache differ diff --git a/ManageTools/obj/x86/Release/ManageTools.exe b/ManageTools/obj/x86/Release/ManageTools.exe new file mode 100644 index 0000000..918ed09 Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.exe differ diff --git a/ManageTools/obj/x86/Release/ManageTools.pdb b/ManageTools/obj/x86/Release/ManageTools.pdb new file mode 100644 index 0000000..a126e4d Binary files /dev/null and b/ManageTools/obj/x86/Release/ManageTools.pdb differ diff --git a/ManageTools/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll b/ManageTools/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..0ad9dac Binary files /dev/null and b/ManageTools/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/ManageTools/obj/x86/Release/en/ManageTools.resources.dll b/ManageTools/obj/x86/Release/en/ManageTools.resources.dll new file mode 100644 index 0000000..d3ce12a Binary files /dev/null and b/ManageTools/obj/x86/Release/en/ManageTools.resources.dll differ diff --git a/ManageTools/obj/x86/Release/system.ini b/ManageTools/obj/x86/Release/system.ini new file mode 100644 index 0000000..d291d4d --- /dev/null +++ b/ManageTools/obj/x86/Release/system.ini @@ -0,0 +1,16 @@ +[runserver] +rmsName=ǰû +rmsRun64=runJavaApp_64.bat +rmsRun32=runJavaApp_32.bat +GPRSName=GPRS +GPRSRun64=3761.exe +GPRSRun32=3761.exe +[config] +autoRun=True +tb_Host=127.0.0.1 +tb_db=samr +tb_user=sa +mtb_pwd=sa +tb_path=D:\Workspaces\sarm\ManageTools\ManageTools\obj\x86\Release\backup +dTP_time=22:00:00 +language= diff --git a/ManageTools/packages.config b/ManageTools/packages.config new file mode 100644 index 0000000..469c790 --- /dev/null +++ b/ManageTools/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/ManageTools20220606.zip b/ManageTools20220606.zip new file mode 100644 index 0000000..e0cf275 Binary files /dev/null and b/ManageTools20220606.zip differ diff --git a/NTSVC.ocx b/NTSVC.ocx new file mode 100644 index 0000000..0aa322d Binary files /dev/null and b/NTSVC.ocx differ diff --git a/bb.bat b/bb.bat new file mode 100644 index 0000000..5d5ea89 --- /dev/null +++ b/bb.bat @@ -0,0 +1,40 @@ +set currentpath=%cd% + +@rem 滻 +set path=%currentpath:ManageTools=Java% + +set java_home=\jdk1.6.0 + +set java_home=%path%%java_home% + + +start reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment" /v "JAVA_HOME" /t reg_sz /d %java_home% /f + + + + +@reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment" /v "JAVA_HOME" /t reg_sz /d "aaaaa" /f + +@rem reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment" /v "JAVA_HOME" /t reg_sz /d %java_home% /f + + + +@rem reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment" /v "X" /t reg_sz /d "Y" /f + +@rem REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment" /v "JAVA_HOME" /t reg_sz /d java_home /f + + + + +start reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v + +Windows Registry Editor Version 5.00 + +[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] +"ctfmon.exe"="C:\\WINDOWS\\system32\\ctfmon.exe" +"360sd"="\"D:\\Program Files\\360\\360SD\\360sdrun.exe\"" + +[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\360Disabled] +"HW_OPENEYE_OUC_Mobile Card"="rem \"C:\\Program Files\\Mobile Card\\UpdateDog\\ouc.exe\"" + +[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\AdobeUpdater] diff --git a/comdlg32.dll b/comdlg32.dll new file mode 100644 index 0000000..736b0fd Binary files /dev/null and b/comdlg32.dll differ diff --git a/conn.properties b/conn.properties new file mode 100644 index 0000000..fea9e64 --- /dev/null +++ b/conn.properties @@ -0,0 +1,4 @@ +driver = @GJHHNEKHKEJ@LLOJHMLJHCCNIEKFDAIOO@KEKMILBHAMLBFLOPCBFLOEKCIBAN@CJBELOPCBFLOGILMEJPCBFLO@E +url = FBAIOO@KOGHKEJ@LLOJHMLJHCCNIOGMILBHAMLBFLOPCBFLOOGFEFEGONGHLEHGOL@MJEHGBEHMJHLODGOJFIIIIPAAFOBNHOBONOAMKBFIKOBHMBFANLEIAINMOGG@C +user = MGOB@D +pwd = @@ diff --git a/en/ManageTools.exe b/en/ManageTools.exe new file mode 100644 index 0000000..35c0d4d Binary files /dev/null and b/en/ManageTools.exe differ diff --git a/en/ManageTools.resources.dll b/en/ManageTools.resources.dll new file mode 100644 index 0000000..124075f Binary files /dev/null and b/en/ManageTools.resources.dll differ diff --git a/en/ManageTools.resources.rar b/en/ManageTools.resources.rar new file mode 100644 index 0000000..7f6f403 Binary files /dev/null and b/en/ManageTools.resources.rar differ diff --git a/packages/MySql.Data.6.7.9/.signature.p7s b/packages/MySql.Data.6.7.9/.signature.p7s new file mode 100644 index 0000000..676f4cb Binary files /dev/null and b/packages/MySql.Data.6.7.9/.signature.p7s differ diff --git a/packages/MySql.Data.6.7.9/CHANGES b/packages/MySql.Data.6.7.9/CHANGES new file mode 100644 index 0000000..c145001 --- /dev/null +++ b/packages/MySql.Data.6.7.9/CHANGES @@ -0,0 +1,123 @@ +6.7.9 +- Changed handshake process to use bytes instead of encoded strings. +- Added support for Chinese character set gb18030. (Oracle bug # 21098546). +- Added support for Json type. (WL # 8132). +- Added changes for metadata information in generated columns with 5.7 (WL #411) + + +6.7.8 + - Changed default SSL mode to Preferred in connection string. Now the server connections will be using SSL if server allows it by default but it's possible to override this configuration. + + +6.7.7 +- Fix for Exception "The given key was not present in the dictionary" when using utf16le charset in a query. (MySql #72737, Oracle Bug #19355906) +- Fix for Memory leak in a loop opening a connection to the database and executing a command (MySql Bug #73122, Oracle Bug #19467233). +- Fix for Multiple issues caused by trailing and leading white space character in params using MySql Membership Provider (MySql Bug #73411, Oracle Bug #19453313) +- Fix for bad assumption leads to modify query adding CALL statement to the beginning of the sql query even when CommandType.Text is specified (MySql Bug #72736, Oracle Bug #19325120). +- Fix for Incorrect query result with Entity Framework 6 (MySql bug #74918, Oracle bug #20129927). +- Fix for GetTimeZoneOffset to use date and time to calculate timediff (MySQL Bug #74905, Oracle Bug #20065691). +- Fix for Invalid SQL query when eager loading two nested collections (MySQL Bug #70941, Oracle bug #18049862). +- Fix for chinese characters used in the connection string when connecting to MySql Server (MySQL Bug #70041, Oracle Bug #18141356). + + +6.7.6 +- Fix for open sockets connections left when connection open fails, the error happens when the client try to get a connection when the max number of connections is reached in the server. (MySql #72025, Oracle Bug #18665388). +- Fix for Exception of "duplicate entry" in MySqlSessionProvider (MySql Bug #70409, Oracle bug #18657550). +- Fix for Unable to read geometry column when it has been set with a SRID value. (MySql Bug #71869, Oracle Bug #19137999). +- Fix for Error when Calling MySqlConnection.GetSchema("PROCEDURES WITH PARAMETERS", ...) (Oracle bug #19285959). +- Fix for EF provider reports ManifestProviderToken = 5.6 for server 5.7 (Oracle bug #19453814). +- Fix for Fluent API DbModelBuilder.HasColumnType is ignored in EF6 (Oracle bug #19456229). +- Fix for Setting a PK GUID identity in Code First in EF6 no longer works in Server 5.7 (Oracle bug #19456452). +- Non PKs declared as Identity GUID have no GUID autogenerated (Oracle bug #19456415). +- Disabled installation on-demand in Installer (Oracle Bug #19670596). +- Fix for Generated SQL requests column that doesn't exist in LINQ to Entities (MySql bug #72004, Oracle bug #19681348). +- Fix for MySQL Connector/NET generates incorrect SQL for LINQ 'StartsWith' queries (MySql bug #72058, Oracle bug #19680236). +- Fix for Exception when using IEnumerable.Contains(model.property) in Where predicate (MySql bug #73643, Oracle bug #19690370). +- Fix for Generated Sql does not contain ORDER BY statement whose is requested by LINQ (MySql bug #73549, Oracle bug #19698010). +- Fix for Error of "Every derived table must have an alias" in LINQ to Entities when using EF6 + DbFirst + View + Take + (MySql Bug #72148, Oracle bug #19356006). +- Fix for 'the method or operation is not implemented' when using linq with orderby (MySQL Bug #70722, Oracle Bug #19681723). + + +6.7.5 +- Fix for bad query when using LINQ to Entities with a query using Take, OrderBy & Contains in Code First (MySql bug #69751, Oracle bug #17194945). +- Fix for LINQ to Entities error for bad aliasing in column for expression (MySql bug #69922, Oracle bug #17285548). +- Installer adds MySql.Data, MySql.Data.Entity, and MySql.Web to machine.config and into GAC (MySQL Bug #69760, Oracle Bug #17601689). +- Added MySql.Web.dll for .NET Framework 4.5 +- Fix for NullReferenceException when try to save entity with TINYINY or BIGINT as PK (MySql bug #70888, Oracle bug #17866076). +- Fix for .Net connector does not add auto_increment to bigint columns (MySql Bug #70602, Oracle Bug #17924407). +- Fix for Entity Framework migration with Foreign Key fails. (MySql Bug #70795, Oracle Bug #17924399). +- Fix for fields of type TIME(3) don't read milliseconds (MySql bug #70377, Oracle Bug #17923814). +- Fix for Wrong milliseconds serialization (MySql bug #70686, Oracle Bug #17924388). +- Fix for Case incorrect on table in SQL queries for MySqlSessionStateStore (MySql bug #69652, Oracle bug #17960855). +- Fix for rename column operation in Entity Framework migrations (MySQL Bug #71102, Oracle Bug #17959787). +- Fix for Entity Framework Inserts broken on tables with unsigned bigint as auto increment (MySql Bug #71242, Oracle Bug #18189217). +- Fix for code To SQL Generation Broken For Foreign Keys/Indexes On Table Create (MySQL #70079, Oracle Bug #18049272) +- Fix for DotNet Connector keepalive in milliseconds instead of seconds (MySql Bug #69484, Oracle Bug #17981275). +- Fix for EF SQL Generator, Union Syntax (Concat operator) is missing required parentheses (may cause semantic changes + when combined with Limit clause (Take operator)) (MySql bug #70828, Oracle bug #18049691). +- Fix for support for Entity Framework 4.3 Code first Identifiers for Migrations & EF6 (MySql Bug #67285, Oracle bug #16286397). +- Added threading and custom failover support for Replication & Load balancing (MySQL Bug #69832, Oracle Bug #18112966). +- Fix for maximumpoolsize and minimumpoolsize as invalid properties in connection string (Oracle Bug #18182246). +- Fix for 'default table cache age' connection string property, set default value to 60 seconds. +- Fix for MySqlDataTime.Millisecond to be a value between 0 and 999. +- Added Microsecond to MySqlDateTime for 6-digit precision support. +- Renamed MySql.Data.Entity.dll to MySql.Data.Entity.EF5.dll for Entity Framework 5 and .NET Framework 4.5 or above. + For EF 5 and .NET Framework 4.0 or below remains the same name. + + +6.7.4 +- Fix for Entity Framework when inserts data having Identity columns (Oracle bug #16494585). +- Fix for Connector/NET cannot read data from a MySql table using UTF-16/UTF-32 (MySql bug #69169, Oracle bug #16776818). +- Fix for Malformed query in Entity Framework when eager loading due to multiple projections (MySql bug #67183, Oracle bug #16872852). +- Fix for database objects with 'dbo' prefix when using automatic migrations in Entity Framework 5.0 (Oracle bug #16909439). +- Fix for bug IIS application pool reset worker process causes website to crash (Oracle bug #16909237, Mysql Bug #67665). +- Fix for bug Error in LINQ to Entities query when using Distinct().Count() (MySql Bug #68513, Oracle bug #16950146). +- Fix for occasionally return no data when socket connection is slow, interrupted or delayed (MySql bug #69039, Oracle bug #16950212). +- Fix for ConstraintException when filling a datatable (MySql bug #65065, Oracle bug #16952323). +- Fix for Data Provider is not found after uninstalling Mysql for visual studio (Oracle bug #16973456). +- Fix for nested sql generated for LINQ to Entities query with Take and Order by (MySql bug #65723, Oracle bug #16973939). + + +6.7.3 +- Fix for bug in Replication & load balancing (Oracle bug #16762427) +- Added support for Entity Framework 5.0 when using .net 4.0 (WorkItem #228). + + +6.7.2 +- Fix for Bug "REPAIR" option on connector/net_installer, raise an exception (Oracle Bug #16630567). +- Fix for Bug Entity Framework 5.0 (.net 4.0) with mysql connector/net 6.7.0 alpha (Oracle Bug #16694050). +- Added WinRT support. +- Fix for Incorrect assemblies runtime version installed (Oracle Bug #16725274). +- Fix for Core assemblies not listed in add reference dialog for .net 4.5 (Oracle Bug #16704115). + + +6.7.1 +- Fix for Bug Assemblies for .net 4.5 are not included in the installation (Oracle Bug #16463655). +- Fix for Bug Geometry Provider Incompatible Exception (Oracle Bug # 16453250). + + +6.7.0 +- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472). +- Fix for bug "Unable to connect using IPv6 connections" (MySQL bug #67253, Oracle bug #14835718). +- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176). +- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964). +- Fixed missing keywords not working as ids (wihout quoting) in parser: value, status, unknown & some unit tests from Arnaud feedback. +- Fix for Datetime precision doesn't work with code first or model first. (Oracle bug #15972773). +- Fix for Support for current_timestamp as default for datetime with ef for server 5.6 (Oracle bug #15935094). +- Adding support for Geometry type. Unit Tests included. Supporting server 5.1 and further. +- Added support for new connect attributes feature in server 5.6 (Oracle bug #15935112). +- Added protocol support for password expiration (Oracle bug #15935104). +- Added support for password hashing with appropriate strength for server 5.6 (Oracle bug #15935128). +- Added a more friendly message for error when trying to authenticate with old password. +- Fix for GetSchema returning MySqlException instead of ArgumentException when passing an invalid collection name + (Oracle bug #16271425, MySql bug #67901). +- Fix for EF 4.3 failing when FK identifiers are too long (MySql bug #67285, Oracle bug #16286397). +- Fix for race condition on ConnectionStringBuilder when using multiple threads + (MySql bug #68217, Oracle bug #16310698). +- Fix for Specifying delete cascade in EF migrations does not work (MySql bug #68457, Oracle bug #16398432). +- Fix for InvalidCastException thrown when executing an stored function (MySql bug #64633, Oracle bug #13864627). +- Fix for Default Command Timeout not applying for EFMySqlCommand (MySql bug #67171, Oracle bug #14825670). +- Fix for Cannot use geometry function on new instances created with ef code first (Oracle bug #16446399). + + diff --git a/packages/MySql.Data.6.7.9/MySql.Data.6.7.9.nupkg b/packages/MySql.Data.6.7.9/MySql.Data.6.7.9.nupkg new file mode 100644 index 0000000..e04dbe4 Binary files /dev/null and b/packages/MySql.Data.6.7.9/MySql.Data.6.7.9.nupkg differ diff --git a/packages/MySql.Data.6.7.9/Readme.txt b/packages/MySql.Data.6.7.9/Readme.txt new file mode 100644 index 0000000..d27b9b6 --- /dev/null +++ b/packages/MySql.Data.6.7.9/Readme.txt @@ -0,0 +1,15 @@ +Connector/Net 6.7 Release Notes +------------------------------------ + +Welcome to the release notes for Connector/Net 6.7 + +What's new in 6.7 +-------------------- + +- WinRT Connector. +- Load Balancing client support. +- Entity Framework 5 support. +- Memcached client. + + +Be sure and check the documentation for more information on these new features. \ No newline at end of file diff --git a/packages/MySql.Data.6.7.9/content/app.config.transform b/packages/MySql.Data.6.7.9/content/app.config.transform new file mode 100644 index 0000000..12e70e5 --- /dev/null +++ b/packages/MySql.Data.6.7.9/content/app.config.transform @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/packages/MySql.Data.6.7.9/content/web.config.transform b/packages/MySql.Data.6.7.9/content/web.config.transform new file mode 100644 index 0000000..12e70e5 --- /dev/null +++ b/packages/MySql.Data.6.7.9/content/web.config.transform @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/packages/MySql.Data.6.7.9/lib/net20-cf/MySql.Data.CF.dll b/packages/MySql.Data.6.7.9/lib/net20-cf/MySql.Data.CF.dll new file mode 100644 index 0000000..601657a Binary files /dev/null and b/packages/MySql.Data.6.7.9/lib/net20-cf/MySql.Data.CF.dll differ diff --git a/packages/MySql.Data.6.7.9/lib/net20/MySql.Data.dll b/packages/MySql.Data.6.7.9/lib/net20/MySql.Data.dll new file mode 100644 index 0000000..1bf8b17 Binary files /dev/null and b/packages/MySql.Data.6.7.9/lib/net20/MySql.Data.dll differ diff --git a/packages/MySql.Data.6.7.9/lib/net40/MySql.Data.dll b/packages/MySql.Data.6.7.9/lib/net40/MySql.Data.dll new file mode 100644 index 0000000..0cd7d6a Binary files /dev/null and b/packages/MySql.Data.6.7.9/lib/net40/MySql.Data.dll differ diff --git a/packages/MySql.Data.6.7.9/lib/net45/MySql.Data.dll b/packages/MySql.Data.6.7.9/lib/net45/MySql.Data.dll new file mode 100644 index 0000000..6bf3262 Binary files /dev/null and b/packages/MySql.Data.6.7.9/lib/net45/MySql.Data.dll differ diff --git a/packages/Newtonsoft.Json.3.5.8/.signature.p7s b/packages/Newtonsoft.Json.3.5.8/.signature.p7s new file mode 100644 index 0000000..f0c3be4 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/.signature.p7s differ diff --git a/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg b/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg new file mode 100644 index 0000000..122ff96 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/Newtonsoft.Json.3.5.8.nupkg differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll new file mode 100644 index 0000000..5b9827d Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.dll differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb new file mode 100644 index 0000000..64dd9ef Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml new file mode 100644 index 0000000..6d6e362 --- /dev/null +++ b/packages/Newtonsoft.Json.3.5.8/lib/20/Newtonsoft.Json.Net20.xml @@ -0,0 +1,6226 @@ + + + + Newtonsoft.Json.Net20 + + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets the type of the current Json token. + + + + + Gets the text value of the current Json token. + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token. + + The to read the token from. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Indicates how the output is formatted. + + + + + Initializes a new instance of the class. + + The stream. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Converts a binary value to and from a base 64 string value. + + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + Type of the property. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The value. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Represents a raw JSON string. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Represents an abstract JSON token. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The reference. + The object to reference. + + + + Specifies reference handling options for the . + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Specifies default value handling options for the . + + + + + Include default values when serializing and deserializing objects. + + + + + Ignore default values when serializing and deserializing objects. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Specifies the member serialization options for the . + + + + + All members are serialized by default. Members can be excluded using the . + + + + + Only members must be marked with the are serialized. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. + + + + + The time represented is local time. + + + + + The time represented is UTC. + + + + + The time represented is not specified as either local time or Coordinated Universal Time (UTC). + + + + + Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + + + Converts an to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Represents a collection of . + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The type of the object to deserialize. + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The object to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The object to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The JSON to deserialize. + The type of the object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Represents a token that can contain other tokens. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + Represents a JSON object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Occurs when a property value changes. + + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a JSON array. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Used by to resolves a for a given . + + + + + Used by to resolves a for a given . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Resolves the default for the contract. + + Type of the object. + + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The contract to create properties for. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's declaring types . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Get and set values for a using dynamic methods. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides information surrounding an error. + + + + + Gets or sets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets the name of the property. + + The name of the property. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets the member converter. + + The member converter. + + + + Gets the default value. + + The default value. + + + + Gets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets the property null value handling. + + The null value handling. + + + + Gets the property default value handling. + + The default value handling. + + + + Gets the property reference loop handling. + + The reference loop handling. + + + + Gets the property object creation handling. + + The object creation handling. + + + + Gets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The contract. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is optional. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets the maximum decimals. + + The maximum decimals. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a method that constructs an object. + + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Always include the .NET type name when serializing. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The culture to use when converting. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + If set to true ignore case. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the maximum valid value of an Enum type. Flags enums are ORed. + + The type of the returned value. Must be assignable from the enum's underlying value type. + The enum type to get the maximum value for. + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Tests whether the list's items are their unitialized value. + + The list. + Whether the list's items are their unitialized value + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string contains white space. + + The string to test for white space. + + true if the string contains white space; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Ensures the target string ends with the specified string. + + The target. + The value. + The target string with the value string at the end. + + + + Perform an action if the string is not null or empty. + + The value. + The action to perform. + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + The indent character. + + + + + Numbers the lines. + + The string to number. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll new file mode 100644 index 0000000..4703b89 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.dll differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb new file mode 100644 index 0000000..df5da99 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml new file mode 100644 index 0000000..e5e3da7 --- /dev/null +++ b/packages/Newtonsoft.Json.3.5.8/lib/35/Newtonsoft.Json.xml @@ -0,0 +1,6364 @@ + + + + Newtonsoft.Json + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets the type of the current Json token. + + + + + Gets the text value of the current Json token. + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token. + + The to read the token from. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Indicates how the output is formatted. + + + + + Initializes a new instance of the class. + + The stream. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Converts a binary value to and from a base 64 string value. + + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework EntityKey to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Represents a raw JSON string. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Represents an abstract JSON token. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + Type of the property. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The value. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The reference. + The object to reference. + + + + Specifies reference handling options for the . + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Specifies default value handling options for the . + + + + + Include default values when serializing and deserializing objects. + + + + + Ignore default values when serializing and deserializing objects. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Specifies the member serialization options for the . + + + + + All members are serialized by default. Members can be excluded using the . + + + + + Only members must be marked with the are serialized. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. + + + + + The time represented is local time. + + + + + The time represented is UTC. + + + + + The time represented is not specified as either local time or Coordinated Universal Time (UTC). + + + + + Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + + + Converts an to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Represents a collection of . + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The type of the object to deserialize. + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The object to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The object to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The JSON to deserialize. + The type of the object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment. + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Represents a token that can contain other tokens. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + Represents a JSON object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a JSON array. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Used by to resolves a for a given . + + + + + Used by to resolves a for a given . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Resolves the default for the contract. + + Type of the object. + + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The contract to create properties for. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's declaring types . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Provides information surrounding an error. + + + + + Gets or sets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets the name of the property. + + The name of the property. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets the member converter. + + The member converter. + + + + Gets the default value. + + The default value. + + + + Gets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets the property null value handling. + + The null value handling. + + + + Gets the property default value handling. + + The default value handling. + + + + Gets the property reference loop handling. + + The reference loop handling. + + + + Gets the property object creation handling. + + The object creation handling. + + + + Gets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The contract. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is optional. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets the maximum decimals. + + The maximum decimals. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Represents a method that constructs an object. + + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Always include the .NET type name when serializing. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The culture to use when converting. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + If set to true ignore case. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the maximum valid value of an Enum type. Flags enums are ORed. + + The type of the returned value. Must be assignable from the enum's underlying value type. + The enum type to get the maximum value for. + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Tests whether the list's items are their unitialized value. + + The list. + Whether the list's items are their unitialized value + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string contains white space. + + The string to test for white space. + + true if the string contains white space; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Ensures the target string ends with the specified string. + + The target. + The value. + The target string with the value string at the end. + + + + Perform an action if the string is not null or empty. + + The value. + The action to perform. + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + The indent character. + + + + + Numbers the lines. + + The string to number. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll new file mode 100644 index 0000000..5bbb778 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.dll differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb new file mode 100644 index 0000000..ba47027 Binary files /dev/null and b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.pdb differ diff --git a/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml new file mode 100644 index 0000000..ecfee1d --- /dev/null +++ b/packages/Newtonsoft.Json.3.5.8/lib/SL/Newtonsoft.Json.Silverlight.xml @@ -0,0 +1,5918 @@ + + + + Newtonsoft.Json.Silverlight + + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets the type of the current Json token. + + + + + Gets the text value of the current Json token. + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token. + + The to read the token from. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Indicates how the output is formatted. + + + + + Initializes a new instance of the class. + + The stream. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor then fall back to single paramatized constructor. + + + + + Allow Json.NET to use a non-public default constructor. + + + + + Converts a binary value to and from a base 64 string value. + + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. + + + + + The time represented is local time. + + + + + The time represented is UTC. + + + + + The time represented is not specified as either local time or Coordinated Universal Time (UTC). + + + + + Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. + + + + + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly. + + + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly. + + + + + Specifies default value handling options for the . + + + + + Include default values when serializing and deserializing objects. + + + + + Ignore default values when serializing and deserializing objects. + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets a value that indicates whether to preserve object reference data. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The object to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the specified object to a Json object. + + The type of the object to deserialize. + The object to deserialize. + The deserialized object from the Json string. + + + + Deserializes the specified JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The object to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The type of the object to deserialize. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The object to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON string to the specified type. + + The JSON to deserialize. + The type of the object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Represents a collection of . + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance using the specified . + + The settings to be applied to the . + A new instance using the specified . + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An interger. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current Json token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current Json token. + + + + + + Gets The Common Language Runtime (CLR) type for the current Json token. + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Represents a JSON array. + + + + + Represents a token that can contain other tokens. + + + + + Represents an abstract JSON token. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + The that matches the object path or a null reference if no matching token is found. + + + + Selects the token that matches the object path. + + + The object path from the current to the + to be returned. This must be a string of property names or array indexes separated + by periods, such as Tables[0].DefaultView[0].Price in C# or + Tables(0).DefaultView(0).Price in Visual Basic. + + A flag to indicate whether an error should be thrown if no token is found. + The that matches the object path. + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a JSON constructor. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + Represents a JSON object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Occurs when a property value changes. + + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Gets the number of elements contained in the . + + + The number of elements contained in the . + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Represents a raw JSON string. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Gets a value indicating whether this token has childen tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Specifies the member serialization options for the . + + + + + All members are serialized by default. Members can be excluded using the . + + + + + Only members must be marked with the are serialized. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Specifies reference handling options for the . + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Allows users to control class loading and mandate what class to load. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Used by to resolves a for a given . + + + + + Used by to resolves a for a given . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Resolves the default for the contract. + + Type of the object. + + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The contract to create properties for. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's declaring types . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The reference. + The object to reference. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + Provides information surrounding an error. + + + + + Gets or sets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether [default creator non public]. + + true if the default object creator is non-public; otherwise, false. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets the name of the property. + + The name of the property. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets the member converter. + + The member converter. + + + + Gets the default value. + + The default value. + + + + Gets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets the property null value handling. + + The null value handling. + + + + Gets the property default value handling. + + The default value handling. + + + + Gets the property reference loop handling. + + The reference loop handling. + + + + Gets the property object creation handling. + + The object creation handling. + + + + Gets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The contract. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a method that constructs an object. + + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Always include the .NET type name when serializing. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Determines whether the collection is null, empty or its contents are uninitialized values. + + The list. + + true if the collection is null or empty or its contents are uninitialized values; otherwise, false. + + + + + Makes a slice of the specified list in between the start and end indexes. + + The list. + The start index. + The end index. + A slice of the list. + + + + Makes a slice of the specified list in between the start and end indexes, + getting every so many items based upon the step. + + The list. + The start index. + The end index. + The step. + A slice of the list. + + + + Group the collection using a function which returns the key. + + The source collection to group. + The key selector. + A Dictionary with each key relating to a list of objects in a list grouped under it. + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert or cast the value to. + The value to convert. + The culture to use when converting. + The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The type to convert the value to. + The value to convert. + The culture to use when converting. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully or is assignable; otherwise, false. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + + + + + Parses the specified enum member name, returning it's value. + + Name of the enum member. + If set to true ignore case. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the maximum valid value of an Enum type. Flags enums are ORed. + + The type of the returned value. Must be assignable from the enum's underlying value type. + The enum type to get the maximum value for. + + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Tests whether the list's items are their unitialized value. + + The list. + Whether the list's items are their unitialized value + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the string contains white space. + + The string to test for white space. + + true if the string contains white space; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Ensures the target string ends with the specified string. + + The target. + The value. + The target string with the value string at the end. + + + + Perform an action if the string is not null or empty. + + The value. + The action to perform. + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + + + + + Indents the specified string. + + The string to indent. + The number of characters to indent by. + The indent character. + + + + + Numbers the lines. + + The string to number. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation event. + + The JsonSchemaException associated with the validation event. + + + + Gets the text description corresponding to the validation event. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is optional. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets the maximum decimals. + + The maximum decimals. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the identity. + + The identity. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets a collection of options. + + A collection of options. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the extend . + + The extended . + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified id. + + The id. + A for the specified id. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..20b1379 --- /dev/null +++ b/readme.txt @@ -0,0 +1,2 @@ +20150916 վ޸ģһ,һرգݿԶ +20160202 2016괺ǰ \ No newline at end of file diff --git a/readme.txt.bak b/readme.txt.bak new file mode 100644 index 0000000..e69de29 diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..67729c4 --- /dev/null +++ b/run.bat @@ -0,0 +1,17 @@ +@ECHO OFF + +@REM עMSWINSCK.OCX +regsvr32 MSWINSCK.OCX + +@REM עCOMDLG32.OCX +regsvr32 COMDLG32.OCX + +@REM ޸ϵͳö˿ +reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters /v MaxUserPort /t reg_dword /d 415028 /f + + + +EXIT + + + diff --git a/startJDK.bat b/startJDK.bat new file mode 100644 index 0000000..925a3cb --- /dev/null +++ b/startJDK.bat @@ -0,0 +1,31 @@ +@echo off +@rem if "%java_home%"=="c:\program files\java\jdk1.6.0" goto normal + +@rem ȡǰ· +set currentpath=%cd% + +@rem managetools滻Ϊjava +set path=%currentpath:managetools=java% + +set java_home=\jdk1.6.0 +set java_home=%path%%java_home% + +set java_jre=\jre1.6.0 +set java_jre=%path%%java_jre% + +set classpath="%java_home%\bin;%java_home%\lib\dt.jar;%java_home%\lib\tools.jar; + +set path=%java_home%\bin + +start reg add "hkey_local_machine\system\controlset001\control\session manager\environment" /v "JAVA_HOME" /t reg_sz /d %java_home% /f + +start reg add "hkey_local_machine\system\controlset001\control\session manager\environment" /v "JAVA_JRE" /t reg_sz /d %java_jre% /f + +start reg add "hkey_local_machine\system\controlset001\control\session manager\environment" /v "CLASSPATH" /t reg_sz /d %classpath% /f + +start reg add "hkey_local_machine\system\controlset001\control\session manager\environment" /v "PATH" /t reg_sz /d %path% /f + +@echo on +java -xms250m -xmx750m -classpath %classpath% com.sihitech.fileup.server.startserver + +exit \ No newline at end of file diff --git a/system.ini b/system.ini new file mode 100644 index 0000000..99ec448 --- /dev/null +++ b/system.ini @@ -0,0 +1,25 @@ +[config] +tb_Host=127.0.0.1 +tb_db=samr +tb_user=sa +mtb_pwd=123 +tb_path=F:\ +dTP_time=22:00:00 +autoRun=False +language= +[runserver] +rmsName=Read-Service +rmsRun64=runJavaApp_64.bat +rmsRun32=runJavaApp_32.bat +rmsSelfName=Read-Service-self +rmsSelfRun64=runJavaApp_self_64.bat +rmsSelfRun32=runJavaApp_self_32.bat +rmsCarName=Read-Service-car +rmsCarRun64=runJavaApp_car_64.bat +rmsCarRun32=runJavaApp_car_32.bat +rmsOpcName=Read-Service-opc +rmsOpcRun64=runJavaApp_opc_64.bat +rmsOpcRun32=runJavaApp_opc_32.bat +GPRSName=GPRS-SERVER VER 0.0.18 +GPRSRun64=3761.exe +GPRSRun32=3761.exe diff --git a/system.ini.bak b/system.ini.bak new file mode 100644 index 0000000..02ff7d1 --- /dev/null +++ b/system.ini.bak @@ -0,0 +1,17 @@ +[config] +tb_Host=192.168.1.52 +tb_db=samr +tb_user=sa +mtb_pwd=sa +tb_path=D:\wwb\LDDQSetUp\DB\backup +dTP_time=15:20:00 +autoRun=True + +[runserver] + +rmsName= +rmsRun64=runJavaApp_64.bat +rmsRun32=runJavaApp_32.bat +GPRSName=GPRS [] VER 0.0.12 +GPRSRun64=3761.exe +GPRSRun32=3761.exe diff --git a/watch.ini b/watch.ini new file mode 100644 index 0000000..6452e55 --- /dev/null +++ b/watch.ini @@ -0,0 +1,8 @@ +C:\JFGLDSetUp\apache-tomcat-6.0.29\bin\startup.bat +C:\JFGLDSetUp\release\runJavaApp.bat +C:\JFGLDSetUp\GPRSӦ\IpServer.exe + +F:\work\·2.0\GPRS()\IpServer.exe +F:\work\·2.0\GPRS()\IpServer.exe +F:\work\·2.0\GPRS()\IpServer.exe +F:\work\·2.0\GPRS()\IpServer.exe diff --git a/服务器管理工具需求.docx b/服务器管理工具需求.docx new file mode 100644 index 0000000..a0f2272 Binary files /dev/null and b/服务器管理工具需求.docx differ