diff --git a/CSMPFunctions.lua b/CSMPFunctions.lua
index 62af318..88ef73d 100644
--- a/CSMPFunctions.lua
+++ b/CSMPFunctions.lua
@@ -240,6 +240,32 @@ function LoadCharacterNew(playerApp,newChar)
end
end)
end
+ elseif (newVal.CustomizationType.Value == 7) then
+ if (rbxlegacyversion ~= "pre-alpha" or rbxlegacyversion ~= "pre-alpha-ext" or rbxlegacyversion ~= "alpha" or rbxlegacyversion ~= "beta" or rbxlegacyversion ~= "delta-beta") then
+ pcall(function()
+ local newPart = game.Workspace:InsertContent("rbxasset://../../../charcustom/heads/"..newVal.Value)
+ if newPart[1] then
+ if newPart[1].className == "SpecialMesh" then
+ newPart[1].Parent = charparts[1]
+ else
+ newPart[1]:remove()
+ end
+ end
+ end)
+ end'
+ elseif (newVal.CustomizationType.Value == 8) then
+ if (rbxlegacyversion ~= "pre-alpha" or rbxlegacyversion ~= "pre-alpha-ext" or rbxlegacyversion ~= "alpha" or rbxlegacyversion ~= "beta" or rbxlegacyversion ~= "delta-beta" or rbxlegacyversion ~= "pre-gamma" or rbxlegacyversion ~= "delta-pre-gamma") then
+ pcall(function()
+ local newPart = game.Workspace:InsertContent("rbxasset://../../../charcustom/bodies/"..newVal.MeshIndex.Value.."/"..newVal.Value)
+ if newPart[1] then
+ if newPart[1].className == "SpecialMesh" then
+ newPart[1].Parent = charparts[newVal.MeshIndex.Value]
+ else
+ newPart[1]:remove()
+ end
+ end
+ end)
+ end
end
end
end
@@ -397,71 +423,59 @@ function InitalizeClientAppearance(Player,Hat1ID,Hat2ID,Hat3ID,HeadColorID,Torso
typeValue.Name = "CustomizationType"
typeValue.Parent = newHead
typeValue.Value = 7
- --TORSOS
- local newTorso = Instance.new("StringValue",newCharApp)
- if (TorsoID ~= nil) then
- newTorso.Value = TorsoID
- newTorso.Name = TorsoID
- else
- newTorso.Value = "DefaultTorso.rbxm"
- newTorso.Name = "DefaultTorso.rbxm"
+ --PACKAGES
+ for i=2,5,1 do
+ local BodyMesh = Instance.new("StringValue",newCharApp)
+ if (i == 2) then
+ if (TorsoID ~= nil) then
+ BodyMesh.Value = TorsoID
+ BodyMesh.Name = TorsoID
+ else
+ BodyMesh.Value = "DefaultTorso.rbxm"
+ BodyMesh.Name = "DefaultTorso.rbxm"
+ end
+ elseif (i == 3) then
+ if (LArmID ~= nil) then
+ newLArm.Value = LArmID
+ newLArm.Name = LArmID
+ else
+ newLArm.Value = "DefaultLArm.rbxm"
+ newLArm.Name = "DefaultLArm.rbxm"
+ end
+ elseif (i == 4) then
+ if (RArmID ~= nil) then
+ BodyMesh.Value = RArmID
+ BodyMesh.Name = RArmID
+ else
+ BodyMesh.Value = "DefaultRArm.rbxm"
+ BodyMesh.Name = "DefaultRArm.rbxm"
+ end
+ elseif (i == 5) then
+ if (LLegID ~= nil) then
+ BodyMesh.Value = LLegID
+ BodyMesh.Name = LLegID
+ else
+ BodyMesh.Value = "DefaultLLeg.rbxm"
+ BodyMesh.Name = "DefaultLLeg.rbxm"
+ end
+ elseif (i == 6) then
+ if (RLegID ~= nil) then
+ newRLeg.Value = RLegID
+ newRLeg.Name = RLegID
+ else
+ newRLeg.Value = "DefaultRLeg.rbxm"
+ newRLeg.Name = "DefaultRLeg.rbxm"
+ end
+ end
+ local indexValue = Instance.new("NumberValue")
+ indexValue.Name = "MeshIndex"
+ indexValue.Parent = BodyColor
+ indexValue.Value = i
+ local typeValue = Instance.new("NumberValue")
+ typeValue.Name = "CustomizationType"
+ typeValue.Parent = BodyColor
+ typeValue.Value = 8
end
- local typeValue = Instance.new("NumberValue")
- typeValue.Name = "CustomizationType"
- typeValue.Parent = newTorso
- typeValue.Value = 8
- --RIGHT ARM
- local newRArm = Instance.new("StringValue",newCharApp)
- if (RArmID ~= nil) then
- newRArm.Value = RArmID
- newRArm.Name = RArmID
- else
- newRArm.Value = "DefaultRArm.rbxm"
- newRArm.Name = "DefaultRArm.rbxm"
- end
- local typeValue = Instance.new("NumberValue")
- typeValue.Name = "CustomizationType"
- typeValue.Parent = newRArm
- typeValue.Value = 9
- --LEFT ARM
- local newLArm = Instance.new("StringValue",newCharApp)
- if (LArmID ~= nil) then
- newLArm.Value = LArmID
- newLArm.Name = LArmID
- else
- newLArm.Value = "DefaultLArm.rbxm"
- newLArm.Name = "DefaultLArm.rbxm"
- end
- local typeValue = Instance.new("NumberValue")
- typeValue.Name = "CustomizationType"
- typeValue.Parent = newLArm
- typeValue.Value = 10
- --RIGHT LEG
- local newRLeg = Instance.new("StringValue",newCharApp)
- if (RLegID ~= nil) then
- newRLeg.Value = RLegID
- newRLeg.Name = RLegID
- else
- newRLeg.Value = "DefaultRLeg.rbxm"
- newRLeg.Name = "DefaultRLeg.rbxm"
- end
- local typeValue = Instance.new("NumberValue")
- typeValue.Name = "CustomizationType"
- typeValue.Parent = newRLeg
- typeValue.Value = 11
- --LEFT LEG
- local newLLeg = Instance.new("StringValue",newCharApp)
- if (LLegID ~= nil) then
- newLLeg.Value = LLegID
- newLLeg.Name = LLegID
- else
- newLLeg.Value = "DefaultLLeg.rbxm"
- newLLeg.Name = "DefaultLLeg.rbxm"
- end
- local typeValue = Instance.new("NumberValue")
- typeValue.Name = "CustomizationType"
- typeValue.Parent = newLLeg
- typeValue.Value = 12
end
function CSServer(Port,PlayerLimit)
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.Designer.cs
deleted file mode 100644
index 5be782e..0000000
--- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.Designer.cs
+++ /dev/null
@@ -1,621 +0,0 @@
-/*
- * Created by SharpDevelop.
- * User: BITL
- * Date: 2/25/2017
- * Time: 1:02 PM
- *
- * To change this template use Tools | Options | Coding | Edit Standard Headers.
- */
-namespace RBXLegacyLauncher
-{
- partial class CharacterColors
- {
- ///
- /// Designer variable used to keep track of non-visual components.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Disposes resources used by the form.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing) {
- if (components != null) {
- components.Dispose();
- }
- }
- base.Dispose(disposing);
- }
-
- ///
- /// This method is required for Windows Forms designer support.
- /// Do not change the method contents inside the source code editor. The Forms designer might
- /// not be able to load this method if it was changed manually.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CharacterColors));
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.button17 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.button20 = new System.Windows.Forms.Button();
- this.button21 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.button24 = new System.Windows.Forms.Button();
- this.button25 = new System.Windows.Forms.Button();
- this.button26 = new System.Windows.Forms.Button();
- this.button27 = new System.Windows.Forms.Button();
- this.button28 = new System.Windows.Forms.Button();
- this.button29 = new System.Windows.Forms.Button();
- this.button30 = new System.Windows.Forms.Button();
- this.button31 = new System.Windows.Forms.Button();
- this.button32 = new System.Windows.Forms.Button();
- this.button33 = new System.Windows.Forms.Button();
- this.button34 = new System.Windows.Forms.Button();
- this.button35 = new System.Windows.Forms.Button();
- this.button36 = new System.Windows.Forms.Button();
- this.button37 = new System.Windows.Forms.Button();
- this.button38 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.button40 = new System.Windows.Forms.Button();
- this.button39 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.button41 = new System.Windows.Forms.Button();
- this.button42 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(105)))), ((int)(((byte)(172)))));
- this.button2.Location = new System.Drawing.Point(49, 62);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(68, 72);
- this.button2.TabIndex = 1;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.Button2Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
- this.button3.Location = new System.Drawing.Point(12, 62);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(31, 72);
- this.button3.TabIndex = 2;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.Button3Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
- this.button4.Location = new System.Drawing.Point(123, 62);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(31, 72);
- this.button4.TabIndex = 3;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.Button4Click);
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
- this.button5.Location = new System.Drawing.Point(49, 140);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(31, 70);
- this.button5.TabIndex = 4;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.Button5Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
- this.button6.Location = new System.Drawing.Point(86, 140);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(31, 70);
- this.button6.TabIndex = 5;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.Button6Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(243)))));
- this.button7.Location = new System.Drawing.Point(170, 13);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(29, 26);
- this.button7.TabIndex = 6;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.Button7Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(229)))), ((int)(((byte)(224)))));
- this.button8.Location = new System.Drawing.Point(205, 13);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(28, 26);
- this.button8.TabIndex = 7;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.Button8Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(163)))), ((int)(((byte)(165)))));
- this.button9.Location = new System.Drawing.Point(239, 13);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(28, 26);
- this.button9.TabIndex = 8;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.Button9Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(95)))), ((int)(((byte)(96)))));
- this.button10.Location = new System.Drawing.Point(273, 13);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(28, 26);
- this.button10.TabIndex = 9;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.Button10Click);
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(234)))), ((int)(((byte)(142)))));
- this.button11.Location = new System.Drawing.Point(407, 13);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(28, 26);
- this.button11.TabIndex = 13;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.Button11Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
- this.button12.Location = new System.Drawing.Point(373, 13);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(28, 26);
- this.button12.TabIndex = 12;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.Button12Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(40)))), ((int)(((byte)(27)))));
- this.button13.Location = new System.Drawing.Point(339, 13);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(28, 26);
- this.button13.TabIndex = 11;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.Button13Click);
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(42)))), ((int)(((byte)(53)))));
- this.button14.Location = new System.Drawing.Point(304, 13);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(29, 26);
- this.button14.TabIndex = 10;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.Button14Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(186)))), ((int)(((byte)(219)))));
- this.button15.Location = new System.Drawing.Point(273, 45);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(28, 26);
- this.button15.TabIndex = 17;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.Button15Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(153)))), ((int)(((byte)(201)))));
- this.button16.Location = new System.Drawing.Point(239, 45);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(28, 26);
- this.button16.TabIndex = 16;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.Button16Click);
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(143)))), ((int)(((byte)(155)))));
- this.button17.Location = new System.Drawing.Point(205, 45);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(28, 26);
- this.button17.TabIndex = 15;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.Button17Click);
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(105)))), ((int)(((byte)(172)))));
- this.button18.Location = new System.Drawing.Point(170, 45);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(29, 26);
- this.button18.TabIndex = 14;
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.Button18Click);
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(63)))));
- this.button19.Location = new System.Drawing.Point(407, 45);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(28, 26);
- this.button19.TabIndex = 21;
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.Button19Click);
- //
- // button20
- //
- this.button20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(134)))), ((int)(((byte)(64)))));
- this.button20.Location = new System.Drawing.Point(373, 45);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(28, 26);
- this.button20.TabIndex = 20;
- this.button20.UseVisualStyleBackColor = false;
- this.button20.Click += new System.EventHandler(this.Button20Click);
- //
- // button21
- //
- this.button21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(116)))), ((int)(((byte)(134)))), ((int)(((byte)(156)))));
- this.button21.Location = new System.Drawing.Point(339, 45);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(28, 26);
- this.button21.TabIndex = 19;
- this.button21.UseVisualStyleBackColor = false;
- this.button21.Click += new System.EventHandler(this.Button21Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(210)))), ((int)(((byte)(228)))));
- this.button22.Location = new System.Drawing.Point(304, 45);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(29, 26);
- this.button22.TabIndex = 18;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.Button22Click);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
- this.button23.Location = new System.Drawing.Point(273, 77);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(28, 26);
- this.button23.TabIndex = 25;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.Button23Click);
- //
- // button24
- //
- this.button24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(76)))), ((int)(((byte)(150)))), ((int)(((byte)(73)))));
- this.button24.Location = new System.Drawing.Point(239, 77);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(28, 26);
- this.button24.TabIndex = 24;
- this.button24.UseVisualStyleBackColor = false;
- this.button24.Click += new System.EventHandler(this.Button24Click);
- //
- // button25
- //
- this.button25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(126)))), ((int)(((byte)(71)))));
- this.button25.Location = new System.Drawing.Point(205, 77);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(28, 26);
- this.button25.TabIndex = 23;
- this.button25.UseVisualStyleBackColor = false;
- this.button25.Click += new System.EventHandler(this.Button25Click);
- //
- // button26
- //
- this.button26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(41)))), ((int)(((byte)(70)))), ((int)(((byte)(43)))));
- this.button26.Location = new System.Drawing.Point(170, 77);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(29, 26);
- this.button26.TabIndex = 22;
- this.button26.UseVisualStyleBackColor = false;
- this.button26.Click += new System.EventHandler(this.Button26Click);
- //
- // button27
- //
- this.button27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(63)))), ((int)(((byte)(39)))));
- this.button27.Location = new System.Drawing.Point(407, 77);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(28, 26);
- this.button27.TabIndex = 29;
- this.button27.UseVisualStyleBackColor = false;
- this.button27.Click += new System.EventHandler(this.Button27Click);
- //
- // button28
- //
- this.button28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(95)))), ((int)(((byte)(55)))));
- this.button28.Location = new System.Drawing.Point(373, 77);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(28, 26);
- this.button28.TabIndex = 28;
- this.button28.UseVisualStyleBackColor = false;
- this.button28.Click += new System.EventHandler(this.Button28Click);
- //
- // button29
- //
- this.button29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(144)))), ((int)(((byte)(130)))));
- this.button29.Location = new System.Drawing.Point(339, 77);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(28, 26);
- this.button29.TabIndex = 27;
- this.button29.UseVisualStyleBackColor = false;
- this.button29.Click += new System.EventHandler(this.Button29Click);
- //
- // button30
- //
- this.button30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(196)))), ((int)(((byte)(140)))));
- this.button30.Location = new System.Drawing.Point(304, 77);
- this.button30.Name = "button30";
- this.button30.Size = new System.Drawing.Size(29, 26);
- this.button30.TabIndex = 26;
- this.button30.UseVisualStyleBackColor = false;
- this.button30.Click += new System.EventHandler(this.Button30Click);
- //
- // button31
- //
- this.button31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(196)))), ((int)(((byte)(153)))));
- this.button31.Location = new System.Drawing.Point(273, 109);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(28, 26);
- this.button31.TabIndex = 33;
- this.button31.UseVisualStyleBackColor = false;
- this.button31.Click += new System.EventHandler(this.Button31Click);
- //
- // button32
- //
- this.button32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(135)))), ((int)(((byte)(121)))));
- this.button32.Location = new System.Drawing.Point(239, 109);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(28, 26);
- this.button32.TabIndex = 32;
- this.button32.UseVisualStyleBackColor = false;
- this.button32.Click += new System.EventHandler(this.Button32Click);
- //
- // button33
- //
- this.button33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(186)))), ((int)(((byte)(199)))));
- this.button33.Location = new System.Drawing.Point(205, 109);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(28, 26);
- this.button33.TabIndex = 31;
- this.button33.UseVisualStyleBackColor = false;
- this.button33.Click += new System.EventHandler(this.Button33Click);
- //
- // button34
- //
- this.button34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(50)))), ((int)(((byte)(123)))));
- this.button34.Location = new System.Drawing.Point(170, 109);
- this.button34.Name = "button34";
- this.button34.Size = new System.Drawing.Size(29, 26);
- this.button34.TabIndex = 30;
- this.button34.UseVisualStyleBackColor = false;
- this.button34.Click += new System.EventHandler(this.Button34Click);
- //
- // button35
- //
- this.button35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(185)))), ((int)(((byte)(145)))));
- this.button35.Location = new System.Drawing.Point(407, 109);
- this.button35.Name = "button35";
- this.button35.Size = new System.Drawing.Size(28, 26);
- this.button35.TabIndex = 37;
- this.button35.UseVisualStyleBackColor = false;
- this.button35.Click += new System.EventHandler(this.Button35Click);
- //
- // button36
- //
- this.button36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(142)))), ((int)(((byte)(105)))));
- this.button36.Location = new System.Drawing.Point(373, 109);
- this.button36.Name = "button36";
- this.button36.Size = new System.Drawing.Size(28, 26);
- this.button36.TabIndex = 36;
- this.button36.UseVisualStyleBackColor = false;
- this.button36.Click += new System.EventHandler(this.Button36Click);
- //
- // button37
- //
- this.button37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(92)))), ((int)(((byte)(69)))));
- this.button37.Location = new System.Drawing.Point(339, 109);
- this.button37.Name = "button37";
- this.button37.Size = new System.Drawing.Size(28, 26);
- this.button37.TabIndex = 35;
- this.button37.UseVisualStyleBackColor = false;
- this.button37.Click += new System.EventHandler(this.Button37Click);
- //
- // button38
- //
- this.button38.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(122)))), ((int)(((byte)(118)))));
- this.button38.Location = new System.Drawing.Point(304, 109);
- this.button38.Name = "button38";
- this.button38.Size = new System.Drawing.Size(29, 26);
- this.button38.TabIndex = 34;
- this.button38.UseVisualStyleBackColor = false;
- this.button38.Click += new System.EventHandler(this.Button38Click);
- //
- // label1
- //
- this.label1.Location = new System.Drawing.Point(170, 140);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(105, 16);
- this.label1.TabIndex = 38;
- this.label1.Text = "SELECTED PART:";
- //
- // label2
- //
- this.label2.Location = new System.Drawing.Point(267, 140);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(80, 16);
- this.label2.TabIndex = 39;
- //
- // button40
- //
- this.button40.Location = new System.Drawing.Point(304, 159);
- this.button40.Name = "button40";
- this.button40.Size = new System.Drawing.Size(131, 23);
- this.button40.TabIndex = 41;
- this.button40.Text = "Reset Colors";
- this.button40.UseVisualStyleBackColor = true;
- this.button40.Click += new System.EventHandler(this.Button40Click);
- //
- // button39
- //
- this.button39.Location = new System.Drawing.Point(170, 159);
- this.button39.Name = "button39";
- this.button39.Size = new System.Drawing.Size(131, 23);
- this.button39.TabIndex = 42;
- this.button39.Text = "Randomize Colors";
- this.button39.UseVisualStyleBackColor = true;
- this.button39.Click += new System.EventHandler(this.Button39Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
- this.button1.Location = new System.Drawing.Point(59, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(47, 46);
- this.button1.TabIndex = 0;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.Button1Click);
- //
- // button41
- //
- this.button41.Location = new System.Drawing.Point(170, 187);
- this.button41.Name = "button41";
- this.button41.Size = new System.Drawing.Size(131, 23);
- this.button41.TabIndex = 43;
- this.button41.Text = "Change Part Shape";
- this.button41.UseVisualStyleBackColor = true;
- //
- // button42
- //
- this.button42.Location = new System.Drawing.Point(304, 187);
- this.button42.Name = "button42";
- this.button42.Size = new System.Drawing.Size(131, 23);
- this.button42.TabIndex = 44;
- this.button42.Text = "Change Face";
- this.button42.UseVisualStyleBackColor = true;
- //
- // CharacterColors
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(437, 222);
- this.Controls.Add(this.button42);
- this.Controls.Add(this.button41);
- this.Controls.Add(this.button39);
- this.Controls.Add(this.button40);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button35);
- this.Controls.Add(this.button36);
- this.Controls.Add(this.button37);
- this.Controls.Add(this.button38);
- this.Controls.Add(this.button31);
- this.Controls.Add(this.button32);
- this.Controls.Add(this.button33);
- this.Controls.Add(this.button34);
- this.Controls.Add(this.button27);
- this.Controls.Add(this.button28);
- this.Controls.Add(this.button29);
- this.Controls.Add(this.button30);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.button24);
- this.Controls.Add(this.button25);
- this.Controls.Add(this.button26);
- this.Controls.Add(this.button19);
- this.Controls.Add(this.button20);
- this.Controls.Add(this.button21);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.button18);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "CharacterColors";
- this.Text = "Character Color Picker";
- this.Load += new System.EventHandler(this.CharacterColorsLoad);
- this.ResumeLayout(false);
- }
- private System.Windows.Forms.Button button42;
- private System.Windows.Forms.Button button41;
- private System.Windows.Forms.Button button39;
- private System.Windows.Forms.Button button40;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button38;
- private System.Windows.Forms.Button button37;
- private System.Windows.Forms.Button button36;
- private System.Windows.Forms.Button button35;
- private System.Windows.Forms.Button button34;
- private System.Windows.Forms.Button button33;
- private System.Windows.Forms.Button button32;
- private System.Windows.Forms.Button button31;
- private System.Windows.Forms.Button button30;
- private System.Windows.Forms.Button button29;
- private System.Windows.Forms.Button button28;
- private System.Windows.Forms.Button button27;
- private System.Windows.Forms.Button button26;
- private System.Windows.Forms.Button button25;
- private System.Windows.Forms.Button button24;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- }
-}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.cs
deleted file mode 100644
index 9522992..0000000
--- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.cs
+++ /dev/null
@@ -1,467 +0,0 @@
-/*
- * Created by SharpDevelop.
- * User: BITL
- * Date: 2/25/2017
- * Time: 1:02 PM
- *
- * To change this template use Tools | Options | Coding | Edit Standard Headers.
- */
-using System;
-using System.Drawing;
-using System.Windows.Forms;
-using System.Xml;
-using System.IO;
-using System.Diagnostics;
-using System.Threading;
-
-namespace RBXLegacyLauncher
-{
- ///
- /// Description of CharacterColors.
- ///
- public partial class CharacterColors : Form
- {
- public static string SelectedPart = "Head";
- public string[,] ColorArray;
-
- public CharacterColors()
- {
- //
- // The InitializeComponent() call is required for Windows Forms designer support.
- //
- InitializeComponent();
-
- ColorArray = new string[32, 2] {
- { "1", button7.BackColor.ToString() },
- { "208", button8.BackColor.ToString() },
- { "194", button9.BackColor.ToString() },
- { "199", button10.BackColor.ToString() },
- { "26", button14.BackColor.ToString() },
- { "21", button13.BackColor.ToString() },
- { "24", button12.BackColor.ToString() },
- { "226", button11.BackColor.ToString() },
- { "23", button18.BackColor.ToString() },
- { "107", button17.BackColor.ToString() },
- { "102", button16.BackColor.ToString() },
- { "11", button15.BackColor.ToString() },
- { "45", button22.BackColor.ToString() },
- { "135", button21.BackColor.ToString() },
- { "106", button20.BackColor.ToString() },
- { "105", button19.BackColor.ToString() },
- { "141", button26.BackColor.ToString() },
- { "28", button25.BackColor.ToString() },
- { "37", button24.BackColor.ToString() },
- { "119", button23.BackColor.ToString() },
- { "29", button30.BackColor.ToString() },
- { "151", button29.BackColor.ToString() },
- { "38", button28.BackColor.ToString() },
- { "192", button27.BackColor.ToString() },
- { "104", button34.BackColor.ToString() },
- { "9", button33.BackColor.ToString() },
- { "101", button32.BackColor.ToString() },
- { "5", button31.BackColor.ToString() },
- { "153", button38.BackColor.ToString() },
- { "217", button37.BackColor.ToString() },
- { "18", button36.BackColor.ToString() },
- { "125", button35.BackColor.ToString() }
- };
-
- //
- // TODO: Add constructor code after the InitializeComponent() call.
- //
- }
-
- void Button1Click(object sender, EventArgs e)
- {
- SelectedPart = "Head";
- label2.Text = SelectedPart;
- }
-
- void Button2Click(object sender, EventArgs e)
- {
- SelectedPart = "Torso";
- label2.Text = SelectedPart;
- }
-
- void Button3Click(object sender, EventArgs e)
- {
- SelectedPart = "Right Arm";
- label2.Text = SelectedPart;
- }
-
- void Button4Click(object sender, EventArgs e)
- {
- SelectedPart = "Left Arm";
- label2.Text = SelectedPart;
- }
-
- void Button5Click(object sender, EventArgs e)
- {
- SelectedPart = "Right Leg";
- label2.Text = SelectedPart;
- }
-
- void Button6Click(object sender, EventArgs e)
- {
- SelectedPart = "Left Leg";
- label2.Text = SelectedPart;
- }
-
- void CharacterColorsLoad(object sender, EventArgs e)
- {
- label2.Text = SelectedPart;
- button1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
- button2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
- button3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
- button4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
- button5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
- button6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
- }
-
- Color ConvertStringtoColor(string CString)
- {
- var p = CString.Split(new char[]{',',']'});
-
- int A = Convert.ToInt32(p[0].Substring(p[0].IndexOf('=') + 1));
- int R = Convert.ToInt32(p[1].Substring(p[1].IndexOf('=') + 1));
- int G = Convert.ToInt32(p[2].Substring(p[2].IndexOf('=') + 1));
- int B = Convert.ToInt32(p[3].Substring(p[3].IndexOf('=') + 1));
-
- return Color.FromArgb(A,R,G,B);
- }
-
- void ChangeColorOfPart(int ColorID, Color ButtonColor)
- {
- if (SelectedPart == "Head")
- {
- GlobalVars.HeadColorID = ColorID;
- GlobalVars.ColorMenu_HeadColor = ButtonColor.ToString();
- button1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
- }
- else if (SelectedPart == "Torso")
- {
- GlobalVars.TorsoColorID = ColorID;
- GlobalVars.ColorMenu_TorsoColor = ButtonColor.ToString();
- button2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
- }
- else if (SelectedPart == "Right Arm")
- {
- GlobalVars.RightArmColorID = ColorID;
- GlobalVars.ColorMenu_RightArmColor = ButtonColor.ToString();
- button3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
- }
- else if (SelectedPart == "Left Arm")
- {
- GlobalVars.LeftArmColorID = ColorID;
- GlobalVars.ColorMenu_LeftArmColor = ButtonColor.ToString();
- button4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
- }
- else if (SelectedPart == "Right Leg")
- {
- GlobalVars.RightLegColorID = ColorID;
- GlobalVars.ColorMenu_RightLegColor = ButtonColor.ToString();
- button5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
- }
- else if (SelectedPart == "Left Leg")
- {
- GlobalVars.LeftLegColorID = ColorID;
- GlobalVars.ColorMenu_LeftLegColor = ButtonColor.ToString();
- button6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
- }
- }
-
- void Button7Click(object sender, EventArgs e)
- {
- Color ButtonColor = button7.BackColor;
- int colorID = 1;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button8Click(object sender, EventArgs e)
- {
- Color ButtonColor = button8.BackColor;
- int colorID = 208;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button9Click(object sender, EventArgs e)
- {
- Color ButtonColor = button9.BackColor;
- int colorID = 194;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button10Click(object sender, EventArgs e)
- {
- Color ButtonColor = button10.BackColor;
- int colorID = 199;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button14Click(object sender, EventArgs e)
- {
- Color ButtonColor = button14.BackColor;
- int colorID = 26;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button13Click(object sender, EventArgs e)
- {
- Color ButtonColor = button13.BackColor;
- int colorID = 21;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button12Click(object sender, EventArgs e)
- {
- Color ButtonColor = button12.BackColor;
- int colorID = 24;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button11Click(object sender, EventArgs e)
- {
- Color ButtonColor = button11.BackColor;
- int colorID = 226;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button18Click(object sender, EventArgs e)
- {
- Color ButtonColor = button18.BackColor;
- int colorID = 23;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button17Click(object sender, EventArgs e)
- {
- Color ButtonColor = button17.BackColor;
- int colorID = 107;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button16Click(object sender, EventArgs e)
- {
- Color ButtonColor = button16.BackColor;
- int colorID = 102;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button15Click(object sender, EventArgs e)
- {
- Color ButtonColor = button15.BackColor;
- int colorID = 11;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button22Click(object sender, EventArgs e)
- {
- Color ButtonColor = button22.BackColor;
- int colorID = 45;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button21Click(object sender, EventArgs e)
- {
- Color ButtonColor = button21.BackColor;
- int colorID = 135;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button20Click(object sender, EventArgs e)
- {
- Color ButtonColor = button20.BackColor;
- int colorID = 106;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button19Click(object sender, EventArgs e)
- {
- Color ButtonColor = button19.BackColor;
- int colorID = 105;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button26Click(object sender, EventArgs e)
- {
- Color ButtonColor = button26.BackColor;
- int colorID = 141;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button25Click(object sender, EventArgs e)
- {
- Color ButtonColor = button25.BackColor;
- int colorID = 28;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button24Click(object sender, EventArgs e)
- {
- Color ButtonColor = button24.BackColor;
- int colorID = 37;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button23Click(object sender, EventArgs e)
- {
- Color ButtonColor = button23.BackColor;
- int colorID = 119;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button30Click(object sender, EventArgs e)
- {
- Color ButtonColor = button30.BackColor;
- int colorID = 29;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button29Click(object sender, EventArgs e)
- {
- Color ButtonColor = button29.BackColor;
- int colorID = 151;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button28Click(object sender, EventArgs e)
- {
- Color ButtonColor = button28.BackColor;
- int colorID = 38;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button27Click(object sender, EventArgs e)
- {
- Color ButtonColor = button27.BackColor;
- int colorID = 192;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button34Click(object sender, EventArgs e)
- {
- Color ButtonColor = button34.BackColor;
- int colorID = 104;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button33Click(object sender, EventArgs e)
- {
- Color ButtonColor = button33.BackColor;
- int colorID = 9;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button32Click(object sender, EventArgs e)
- {
- Color ButtonColor = button32.BackColor;
- int colorID = 101;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button31Click(object sender, EventArgs e)
- {
- Color ButtonColor = button31.BackColor;
- int colorID = 5;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button38Click(object sender, EventArgs e)
- {
- Color ButtonColor = button38.BackColor;
- int colorID = 153;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button37Click(object sender, EventArgs e)
- {
- Color ButtonColor = button37.BackColor;
- int colorID = 217;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button36Click(object sender, EventArgs e)
- {
- Color ButtonColor = button36.BackColor;
- int colorID = 18;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button35Click(object sender, EventArgs e)
- {
- Color ButtonColor = button35.BackColor;
- int colorID = 125;
- ChangeColorOfPart(colorID, ButtonColor);
- }
-
- void Button39Click(object sender, EventArgs e)
- {
- Random rand = new Random();
- int RandomColor;
-
- for (int i=1; i <= 6; i++)
- {
- RandomColor = rand.Next(ColorArray.GetLength(0));
- if (i == 1)
- {
- GlobalVars.HeadColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_HeadColor = ColorArray[RandomColor, 1];
- button1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
- }
- else if (i == 2)
- {
- GlobalVars.TorsoColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_TorsoColor = ColorArray[RandomColor, 1];
- button2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
- }
- else if (i == 3)
- {
- GlobalVars.RightArmColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_RightArmColor = ColorArray[RandomColor, 1];
- button3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
- }
- else if (i == 4)
- {
- GlobalVars.LeftArmColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_LeftArmColor = ColorArray[RandomColor, 1];
- button4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
- }
- else if (i == 5)
- {
- GlobalVars.RightLegColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_RightLegColor = ColorArray[RandomColor, 1];
- button5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
- }
- else if (i == 6)
- {
- GlobalVars.LeftLegColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
- GlobalVars.ColorMenu_LeftLegColor = ColorArray[RandomColor, 1];
- button6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
- }
- }
- }
-
- void Button40Click(object sender, EventArgs e)
- {
- GlobalVars.HeadColorID = 24;
- GlobalVars.TorsoColorID = 23;
- GlobalVars.LeftArmColorID = 24;
- GlobalVars.RightArmColorID = 24;
- GlobalVars.LeftLegColorID = 119;
- GlobalVars.RightLegColorID = 119;
- GlobalVars.ColorMenu_HeadColor = "Color [A=255, R=245, G=205, B=47]";
- GlobalVars.ColorMenu_TorsoColor = "Color [A=255, R=13, G=105, B=172]";
- GlobalVars.ColorMenu_LeftArmColor = "Color [A=255, R=245, G=205, B=47]";
- GlobalVars.ColorMenu_RightArmColor = "Color [A=255, R=245, G=205, B=47]";
- GlobalVars.ColorMenu_LeftLegColor = "Color [A=255, R=164, G=189, B=71]";
- GlobalVars.ColorMenu_RightLegColor = "Color [A=255, R=164, G=189, B=71]";
- button1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
- button2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
- button3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
- button4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
- button5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
- button6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
- MessageBox.Show("Colors Reset!");
- }
- }
-}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.resx b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.resx
deleted file mode 100644
index 8fcf2e5..0000000
--- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterColors.resx
+++ /dev/null
@@ -1,6293 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
-
- AAABAAYAEBAAAAAAIABoBAAAZgAAACAgAAAAACAAqBAAAM4EAAAwMAAAAAAgAKglAAB2FQAAQEAAAAAA
- IAAoQgAAHjsAAICAAAAAACAAKAgBAEZ9AAAAAAAAAAAgACggBABuhQEAKAAAABAAAAAgAAAAAQAgAAAA
- AABABAAAAAAAAAAAAAAAAAAAAAAAAP//////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////95eXn/1dXV/25ubv/Q0ND/iYmJ/6Wl
- pf+hoaH/hYWF/4mJif/V1dX/srKy/9zc3P//////////////////////f39///////9ubm7/0NDQ/4mJ
- if/FxcX/sbGx/5WVlf+JiYn/1dXV/5SUlP/Kysr//////////////////////8/Pz///////+vr///Ly
- ///X1///zs7//+Li///39///////////////////6+v/////////////xsb//5mZ//+MjP//+Pj//4mJ
- //9hYf//q6v//9DQ//+8vP//dnb//4GB///l5f//2Nj//5CQ//+Rkf//5ub//66u///x8f//mZn//4mJ
- ///y8v//mpr//29v//96ev//k5P//0pK///x8f//nZ3//5iY////////l5f//+rq//+rq///9PT//8vL
- ///19f//ra3//1BQ///9/f//lpb//9vb//+Njf//h4f///39////////t7f//8vL////////qKj///f3
- //+dnf//kZH//+bm//9jY///+vr//4eH//++vv//iIj//4mJ///5+f///////8zM//+fn////v7//6Wl
- ///6+v//np7//6ys///V1f//jY3///j4//+MjP//zs7//2Ji///t7f///v7//5yc///7+///4+P//4uL
- //+iov///Pz//83N///Pz///2Nj//21t//+hof//oaH//4uL//+YmP//tLT//7Gx///Hx///ior//5iY
- ///c3P//w8P//6Cg//+goP//nJz//7+////9/f///////////////////////9TU//+srP////////Dw
- ///a2v//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//KAAAACAAAABAAAAAAQAgAAAAAACAEAAAAAAAAAAA
- AAAAAAAAAAAAAP//////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////3t7
- e/9ra2v/f39//9fX1/97e3v/a2tr/39/f//X19f/u7u7/2tra/9zc3P/w8PD/5+fn///////e3t7/8PD
- w/+7u7v/a2tr/4uLi//r6+v//////3t7e//Dw8P/////////////////////////////////////////
- ////////T09P/6+vr////////////09PT/+Dg4P/6+vr//////9PT0//r6+v/6+vr/+vr6//Z2dn/39/
- f/8nJyf/r6+v/09PT/+vr6//8/Pz/+vr6///////T09P/6+vr///////////////////////////////
- //////////////////9PT0//r6+v////////////T09P/4ODg//r6+v//////09PT/+vr6//x8fH/9fX
- 1/9/f3///////09PT/+vr6//T09P/6+vr//z8/P/6+vr/7u7u/9XV1f/n5+f/+vr6///////////////
- /////////////////////////////09PT/+vr6////////////97e3v/a2tr/39/f//X19f/u7u7/2tr
- a/+Li4v/6+vr/8fHx/9/f3//a2tr/+vr6/+7u7v/a2tr/4uLi//r6+v/e3t7/8PDw//b29v/w8PD////
- ////////////////////////////////////////e3t7/8PDw///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+zs
- ///Nzf///////9XV//+Li///lJT//6io//+8vP//z8///+Pj///6+v//////////////////////////
- ////////9fX//7m5/////////////////////////////7u7//+Pj///j4///4+P//+ysv//////////
- ///o6P//Ojr//zo6//83N///YGD//6+v//+srP//mJj//4OD//9vb///Q0P//5SU//+lpf//vb3/////
- //////////////z8//9TU///V1f//1ZW///k5P//////////////////YGD//5mZ//+vr///qqr//0ZG
- ////////5eX//zk5///IyP//8/P//yIi//+env/////////////////////////////i4v//Hx///1ZW
- //9MTP//l5f////////+/v//aWn//5iY////////ysr//z8///+dnf////////////9eXv//4+P/////
- ///+/v//PT3//+Hh//84OP//zs7/////////////Pz///1JS//93d///b2///0ZG//8zM////v7//4yM
- //8MDP//+vr///v7//9ubv//bW3//4KC//97e//////////////+/v//WVn//62t/////////////1tb
- ///m5v////////////8sLP//ODj//9TU//////////////39//8tLf//Ojr//7m5//8+Pv//9fX//0lJ
- ///U1P//i4v//wQE///Q0P////////////+Zmf//ZGT///7+/////////////5CQ//93d///////////
- ////////WFj//+jo/////////////z4+///Z2f/////////////W1v//Q0P//x0d///5+f///////y4u
- //81Nf//dHT///v7////////fHz//1ZW///7+//////////////////////////////Cwv//SEj///v7
- //////////////////9WVv//6+v/////////////8PD/////////////0tL//w4O//+env//QkL/////
- //////////////b2/////////v7//4iI//8yMv//dHT//1dX///6+v//////////////////5ub//zQ0
- ///q6v///////////////////////1NT///u7v////////j4//8/P///bm7///Dw////////3t7//1pa
- //8XF///+fn///////+6uv//x8f///b2////////0dH//yQk///k5P//MjL//+fn////////////////
- ///u7v//S0v//6Cg////////////////////////T0////Dw/////////Pz//z8///+wsP//Njb//7u7
- /////////////xwc///39///+/v//yUl//91df//JSX//97e///k5P//Rkb//z4+///Q0P//////////
- ///////////////////6+v//aGj//3d3///9/f////////////9NTf//8/P/////////////Pj7/////
- //+zs///goL/////////////Ghr///7+///n5///Hx///3Jy//9TU////////5ub//8LC///uLj/////
- /////////////+jo///09P/////////////+/v//j4///1FR///y8v///////0pK///39///////////
- //89Pf//xsb//zc3///W1v////////////8fH/////////39///g4P//vr7//+np///+/v//R0f//5qa
- ///////////////////+/v//UFD//0RE///x8f/////////////+/v//UVH//5aW////////SEj///n5
- /////////////zc3//9WVv//6en//////////////////x0d///R0f//6ur///39/////////v7//3Jy
- //9PT///R0f//+Tk/////////////6am//9wcP//urr//0BA///t7f///////319//90dP///v7/////
- //9ERP///Pz/////////////////////////////3t7//4SE//86Ov//YGD//3Jy//9YWP//RUX//0ND
- //83N///hIT////////MzP//OTn//7Ky///p6f//ODj///T0////////v7///zw8//95ef//bGz///7+
- /////////////0JC//9+fv//e3v//3h4//90dP//cHD//0JC//9UVP//rKz///f3////////////////
- ///////////////////////////////////z8///YWH//yUl//+/v///////////////////xcX//3Bw
- ///9/f//////////////////z8///8PD///Gxv//yMj//8vL///Nzf//8PD/////////////////////
- ////////////////////////////////////////////////////////zc3/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAwAAAAYAAAAAEAIAAAAAAAgCUAAAAA
- AAAAAAAAAAAAAAAAAAD//////v7+/////////////v7+///////+/v7////////////+/v7/////////
- ///+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v//////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///////v7+////
- /////////v7+///////+/v7////////////+/v7////////////+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v//////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///////v7+/////////////v7+//////+qqqr/X19f/19f
- X/9fX1//ZGRk//////+qqqr/X19f/19fX/9fX1//ZGRk//7+/v/+/v7/goKC/19fX/9fX1//ZGRk//7+
- /v+qqqr/3Nzc//7+/v+qqqr/ZGRk//7+/v/+/v7/goKC/19fX/9fX1//3Nzc//7+/v/+/v7/+vr6/19f
- X/+0tLT///////7+/v/+/v7///////7+/v/+/v7///////7+/v//////////////////////////////
- //93d3f/BgYG/9/f3//f39//4ODg//////93d3f/BgYG/9/f3//f39//4ODg//////+IiIj/DQ0N/9/f
- 3//f39//ODg4//////93d3f/rq6u/9/f3/9oaGj/BwcH//////+IiIj/DQ0N/9/f3//f39//aGho////
- ////////9/f3/wAAAP+Hh4f////////////////////////////////////////////+/v7//v7+//7+
- /v/+/v7//v7+//7+/v93d3f/BwcH//7+/v/+/v7//v7+//7+/v93d3f/BAQE/5+fn//S0tL//v7+//7+
- /v93d3f/BwcH//7+/v/MzMz/Kioq//7+/v93d3f/SkpK/19fX/8sLCz/BwcH//7+/v93d3f/BwcH//7+
- /v/+/v7//v7+//7+/v/+/v7/9/f3/wAAAP+Hh4f//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v///////v7+/////////////v7+//////93d3f/BwcH///////+/v7///////////93d3f/BAQE/5+f
- n//S0tL///////7+/v93d3f/BwcH//7+/v/MzMz/oqKi//7+/v93d3f/x8fH//7+/v93d3f/BwcH//7+
- /v93d3f/BwcH//7+/v/+/v7///////7+/v/+/v7/f39//ywsLP99fX3/3Nzc//7+/v/+/v7///////7+
- /v/+/v7///////7+/v////////////////////////////////93d3f/BwcH////////////////////
- //93d3f/BgYG/9/f3//f39//4ODg//////+IiIj/DQ0N/9/f3//f39//aGho//////+IiIj/tbW1/9/f
- 3/9oaGj/Hx8f//////+IiIj/DQ0N/9/f3//f39//aGho//////+IiIj/DQ0N/+jo6P/u7u7/UFBQ////
- ///////////////////////////////////+/v7//v7+//7+/v/+/v7//v7+//7+/v93d3f/BwcH//7+
- /v/+/v7//v7+//7+/v+qqqr/X19f/19fX/9fX1//ZGRk//7+/v/+/v7/goKC/19fX/9fX1//3Nzc//7+
- /v/+/v7/goKC/19fX/9fX1//3Nzc//7+/v/+/v7/goKC/19fX/9fX1//3Nzc//7+/v+qqqr/ZGRk//7+
- /v/+/v7/h4eH//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///////v7+/////////////v7+////
- //93d3f/BwcH///////+/v7////////////+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v//////////////
- ///////////////////u7u7/4ODg////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+/9XV
- /v+Pj/7//v7+//7+/v/Y2P7/fHz+/0hI/v9aWv7/bm7+/4GB/v+Wlv7/qan+/729/v/R0f7/5ub+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7/mZn+/7Oz/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v///////v7+/9ra///X1///19f+/9fX///X1/7/19f//+rq///+/v7/////////
- ///+/v7/zs7//xQU/v8MDP7/XV3//zU1/v8JCf7/VVX//5aW/v+Hh/7/c3P//19f/v9LS/7/Nzf//yMj
- /v8PD/7/AwP//+vr/v/19f7/oaH///39/v/+/v7///////7+/v/+/v7///////7+/v+pqf7/Dg7//xQU
- /v9VVf7/5eX///7+/v/+/v7///////7+/v///////////xUV//8GBv//Bwf//wcH//8HB///AwP//3R0
- ///////////////////Jyf//EhL//35+///c3P//JSX//wYG///n5///////////////////////////
- ///////////////////9/f//IyP//6Cg//9AQP//BAT//1pa///29v///////////////////////8DA
- //8MDP//trb//+rq//9dXf//ERH//5aW///8/P/////////////+/v7//v7+/w8P/v/Pz/7//v7+//7+
- /v/+/v7/dXX+/2Zm/v/+/v7//v7+/8TE/v8PD/7/iIj+//7+/v/+/v7/yMj+/wAA/v8+Pv7/7u7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7/ZGT+/wUF/v9FRf7/29v+/zg4/v83N/7/5ub+//7+
- /v/+/v7/09P+/xER/v+dnf7//v7+//7+/v/+/v7/urr+/yMj/v86Ov7/6+v+//7+/v///////v7+/w8P
- ///V1f///v7+///////+/v7/g4P//1hY///+/v7/vr7//w0N//+Rkf7///////7+/v/+/v7/zc3//xER
- /v9HR/7/Kyv//9bW/v+xsf7/hob//1tb/v8wMP7/tbX///7+/v/o6P7/LS3//xYW/v/39/7///////f3
- /v9cXP7/HR3//83N/v/j4/7/HR3//4CA/v/+/v7///////7+/v/+/v7/+fn//zw8/v9UVP7//v7///7+
- /v///////f3//wwM///V1f//////////////////kZH//0lJ//+4uP//DAz//5mZ////////////////
- ////////x8f//xgY//+Skv//AQH//0xM//8AAP//UVH//35+//9ERP//b2////////9OTv//DQ3//wEB
- ///o6P/////////////+/v//hob//w0N//8lJf//ZGT///7+///////////////////+/v//b2///ykp
- ///y8v/////////////+/v7//f3+/wwM/v/b2/7//v7+//7+/v/+/v7/n5/+/xcX/v8LC/7/o6P+//7+
- /v/+/v7//v7+//7+/v/+/v7/sbH+/wAA/v8dHf7/srL+//Ly/v8AAP7/6Oj+//7+/v9sbP7/MDD+//7+
- /v/n5/7/Kyv+/wAA/v+pqf7//v7+//7+/v/+/v7//v7+/6+v/v9WVv7/+vr+//7+/v/+/v7//v7+//7+
- /v+lpf7/Dg7+/9bW/v/+/v7//v7+//7+/v//////+/v+/wkJ///c3P///v7+///////+/v7/rKz//wYG
- //+qqv7////////////+/v7///////j4/v+AgP7/Bwf//xkZ/v/x8f7///////7+/v8PD/7/RUX//0lJ
- /v8YGP7/wcH///7+/v/+/v7/6ur//y4u/v9DQ/7/9/f///7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7//////9LS/v8MDP7/rKz///7+/v/+/v7///////7+/v//////+/v//wgI///g4P//////////
- ////////w8P//7Ky////////////////////////w8P//yoq//8qKv//goL//ygo////////////////
- //+2tv//iYn//21t///j4///////////////////2Nj//0BA//8AAP//SEj///X1////////////////
- ////////////////////////7+///yYm//92dv///v7////////////////////////+/v7/+fn+/wUF
- /v/h4f7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/v7/7/RET+/wAA/v+Dg/7/rq7+/ysr
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//39/v9zc/7/BQX+/1BQ/v/R0f7/Nzf+/0ND
- /v/09P7//v7+//7+/v/+/v7//v7+//7+/v/9/f7/T0/+/z4+/v/7+/7//v7+//7+/v/+/v7//v7+//7+
- /v//////+fn+/wQE///l5f///v7+///////+/v7/paX//19f/v+Bgf7/9fX///7+/v/+/v7//v7//7W1
- /v8tLf7/CQn//ykp/v/9/f7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/d3f7/SUn//xgY
- /v/8/P7/rKz//wcH/v/Jyf7///////7+/v/+/v7///////7+/v/+/v7/gYH//xER/v+4uP7///////7+
- /v/+/v7///////7+/v//////9/f//wEB///n5///////////////////dnb//zIy//81Nf//IyP//7i4
- ///+/v/////////////7+///e3v//wAA///s7P////////////8cHP//Hx///zAw//92dv//5eX/////
- ////////kZH//0RE///Pz///Dw///6Sk/////////////////////////////////////////v7//6io
- //8NDf//kpL///7+///////////////////+/v7/9/f+/wAA/v/q6v7//v7+//7+/v/+/v7/fX3+/11d
- /v/7+/7/jo7+/wwM/v9oaP7//v7+//7+/v/+/v7/qan+/wAA/v/29v7//v7+//b2/v8AAP7/ra3+/6qq
- /v8iIv7/ODj+//7+/v/+/v7/R0f+/3Fx/v8bG/7/hYX+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/Hx/7/GBj+/2ho/v/6+v7//v7+//7+/v//////9PT+/wAA///t7f///v7+////
- ///+/v7/hob//1ZW/v/+/v7//////5mZ/v87O/7///////7+/v/+/v7/paX//wAA/v/9/f7//////+Dg
- /v8AAP7/nJz//6ys/v8KCv7/y8v///7+/v/z8/7/CAj//w4O/v9mZv7//v7///7+/v/+/v7///////7+
- /v/+/v7//Pz///7+/v/+/v7///////7+/v/+/v7/4eH//y8v/v9CQv7/7Oz///7+/v//////8fH//wAA
- ///w8P//////////////////jo7//09P////////7u7//z8///9hYf//////////////////oqL//wkJ
- /////////////+Tk//9aWv//ODj//xUV//91df////////////+ysv//AAD//0hI///6+v//////////
- ///////////////////j4///OTn//+Tk//////////////////////////////Ly//9NTf//JSX//9jY
- ///+/v7/7+/+/wAA/v/z8/7//v7+//7+/v/+/v7/lJT+/0ZG/v/Z2f7/KCj+/0VF/v/t7f7//v7+//7+
- /v/+/v7/np7+/xER/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/9/f7//v7+//7+/v9RUf7/Kyv+//Hx
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v9MTP7/Fhb+/yMj/v/g4P7//v7+//7+/v/+/v7//v7+//7+
- /v9xcf7/Gxv+/9zc/v//////6+v+/wAA///29v///v7+///////+/v7/nJz//wUF/v8DA/7/cHD///v7
- /v/+/v7///////7+/v/+/v7/l5f//xoa/v/+/v7///////7+/v/+/v7///////7+/v/+/v7//f3//2xs
- /v8XF/7/Cgr//42N/v/9/f7///////7+/v/+/v7//////6Oj/v8UFP7/5+f//2dn/v8eHv7/2tr///7+
- /v/+/v7//v7//3l5/v8YGP7/19f///7+/v//////6ur//wAA///5+f//////////////////3t7//7u7
- ///g4P///v7///////////////////7+///V1f//VFT//wQE//80NP//TU3//2dn//+AgP//mZn//7Ky
- ///Ly///a2v//yMj///g4P//wsL//x8f//9JSf//6Oj/////////////5+f//xMT//+np/////////39
- //9tbf//Ghr//9XV///+/v//gYH//xQU///T0//////////////+/v7/5eX+/wAA/v/7+/7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/j4/7/i4v+/zEx/v8HB/7/T0/+/6am/v+xsf7/mJj+/35+
- /v9lZf7/S0v+/zIy/v8YGP7/Jyf+/+Pj/v/+/v7//v7+/+7u/v9UVP7/GRn+/7q6/v/+/v7/VFT+/1BQ
- /v/+/v7//v7+//7+/v/9/f7/dXX+/xUV/v9ubv7/ERH+/83N/v/+/v7//v7+//7+/v//////5OT+/wAA
- //++vv//ubn+/7i4//+0tP7/sbH//66u/v+qqv7/lJT//0BA/v8FBf7/QED//5qa/v/t7f7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7/m5v//w0N
- /v9QUP7/EhL//+bm/v/+/v7///////7+/v/+/v7//v7//319/v8ODv7/yMj///7+/v/+/v7///////7+
- /v//////4+P//yAg//8mJv//Jib//ysr//8sLP//MDD//zIy//80NP//QED//4uL///i4v//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////9bW//8wMP//oaH///////////////////////////////////7+///h4f//////////
- ///////////////////+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/5+f7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///////v7+/////////////v7+///////+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v//////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v///////v7+/////////////v7+///////+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v//////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v///////v7+/////////////v7+////
- ///+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+
- /v///////////////////////v7+////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////v7+/////////////v7+///////+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+
- /v/+/v7///////7+/v/+/v7///////7+/v/+/v7///////7+/v///////////////////////v7+////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////8AAAAAAAD//wAA
- AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
- //8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
- AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
- //8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
- AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
- //8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
- AAAAAP//AAAAAAAA//8oAAAAQAAAAIAAAAABACAAAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAA////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////8/Pz/9/f3//f39//39/f/9/f3//f39//6+v
- r///////z8/P/39/f/9/f3//f39//39/f/9/f3//r6+v////////////z8/P/39/f/9/f3//f39//39/
- f/+vr6///////8/Pz/+vr6/////////////Pz8//f39//6+vr////////////8/Pz/9/f3//f39//39/
- f/+vr6///////////////////////8/Pz/9/f3//r6+v////////////////////////////////////
- //////////////////////////////////////////////////////////////////+fn5//AAAA/y8v
- L/9/f3//f39//39/f/+vr6///////5+fn/8AAAD/Ly8v/39/f/9/f3//f39//6+vr///////z8/P/09P
- T/8vLy//f39//39/f/9PT0//X19f//////+fn5//X19f////////////n5+f/wAAAP9fX1///////8/P
- z/9PT0//Ly8v/39/f/9/f3//f39//6+vr/////////////////+fn5//AAAA/19fX///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////n5+f/wAAAP9fX1////////////////////////////+fn5//AAAA/19fX///////////////
- /////////////5+fn/8AAAD/X19f////////////n5+f/19fX///////n5+f/y8vL/9/f3//f39//09P
- T/8AAAD/X19f//////+fn5//AAAA/19fX////////////8/Pz/+vr6//////////////////n5+f/wAA
- AP9fX1//////////////////////////////////////////////////////////////////////////
- /////////////////////////////5+fn/8AAAD/X19f////////////////////////////n5+f/wAA
- AP8vLy//f39//6+vr/////////////////+fn5//AAAA/19fX///////z8/P/09PT/9fX1///////5+f
- n/8vLy//f39//39/f/9PT0//AAAA/19fX///////n5+f/wAAAP9fX1//////////////////////////
- /////////////5+fn/8AAAD/X19f////////////////////////////////////////////////////
- //////////////////////////////////////////////////+fn5//AAAA/19fX///////////////
- /////////////5+fn/8AAAD/Ly8v/39/f/+vr6//////////////////n5+f/wAAAP9fX1///////8/P
- z/9/f3//r6+v//////+fn5//X19f////////////n5+f/wAAAP9fX1///////5+fn/8AAAD/X19f////
- /////////////////////////////8/Pz/9PT0//Ly8v/39/f/+vr6//////////////////////////
- ////////////////////////////////////////////////////////////////////////n5+f/wAA
- AP9fX1////////////////////////////+fn5//AAAA/19fX////////////////////////////5+f
- n/8AAAD/X19f////////////z8/P/6+vr///////n5+f/19fX////////////5+fn/8AAAD/X19f////
- //+fn5//AAAA/19fX////////////8/Pz/+vr6///////8/Pz/9PT0//Ly8v/6+vr//Pz8//f39//6+v
- r///////////////////////////////////////////////////////////////////////////////
- /////////////5+fn/8AAAD/X19f////////////////////////////n5+f/wAAAP8vLy//f39//39/
- f/9/f3//r6+v///////Pz8//T09P/y8vL/9/f3//f39//39/f/+vr6///////8/Pz/9/f3//f39//39/
- f/9PT0//Ly8v/6+vr///////z8/P/09PT/8vLy//f39//39/f/9/f3//r6+v//////+fn5//AAAA/19f
- X////////////5+fn/9fX1//////////////////////////////////////////////////////////
- //////////////////////////////////+fn5//AAAA/19fX////////////////////////////8/P
- z/9/f3//f39//39/f/9/f3//f39//6+vr////////////8/Pz/9/f3//f39//39/f/+vr6//////////
- ////////z8/P/39/f/9/f3//f39//6+vr//////////////////Pz8//f39//39/f/9/f3//r6+v////
- ////////z8/P/39/f/+vr6/////////////Pz8//r6+v////////////////////////////////////
- ////////////////////////////////////////////////////////n5+f/wAAAP9fX1//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////8/P
- z/9/f3//r6+v////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+0tP//R0f//+/v/////////////9ra//9+fv//IyP//w0N//8gIP//NDT//0hI
- //9bW///cHD//4OD//+Xl///qqr//76+///S0v//7u7/////////////////////////////////////
- ////////////////////////////////////////2dn//zQ0//+1tf//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+srP//BQX//wAA//8uLv//oKD//zg4//8AAP//BAT//0pK
- //93d///Y2P//09P//86Ov//Jyf//xIS//8BAf//AAD//wAA//8AAP//AAD//0lJ/////////////87O
- ///w8P//////////////////////////////////////////////////5+f//yIi//8CAv//AAD//1ZW
- ///m5v/////////////////////////////////////////////Ozv//Hx///x8f//8fH///Hx///x8f
- //8fH///Hx///x8f//+trf////////////////////////////+lpf//AwP//zU1//+urv//Dg7//wAA
- //8GBv//k5P//+np////////////////////////////////////////+/v//+np///V1f//wMD//01N
- //8MDP//+vr//729//8MDP//KSn//9zc////////////////////////////////////////8/P//zQ0
- //8ODv//zc3//4+P//8MDP//EBD//5iY///9/f//////////////////////////////////w8P//wAA
- //9HR///X1///19f//9fX///X1///1dX//8AAP//lJT///////////////////////+fn///AgL//zw8
- ///x8f///////8/P//8YGP//BQX//8PD////////////////////////////////////////////////
- //////////////////+lpf//AAD//35+//8JCf//LCz//xQU//8TE///v7//////////////////////
- ////////+vr//0lJ//8FBf//u7v/////////////4OD//0xM//8AAP//Ozv//9TU////////////////
- /////////////7+///8AAP//v7/////////////////////////z8///AAD//4aG////////////////
- //+Xl///AQH//0ND///z8///////////////////a2v//wAA//8ICP//rq7/////////////////////
- ////////////////////////////////////////5eX//wAA//8AAP//Nzf//+3t///d3f//Kyv//wUF
- //+amv///////////////////v7//2Fh//8AAP//oqL/////////////////////////////qan//xgY
- //8FBf//np7///////////////////////+/v///AAD//8fH/////////////////////////v7//wMD
- //93d/////////////+Pj///AAD//0tL///29v///////////////////////2ho//8VFf//NTX//wIC
- //+Wlv////////Ly///Jyf//np7//3Jy//9HR///Y2P//////////////////5+f//8BAf//Hx////Hx
- //////////////Hx//9KSv//AAD//3Bw///7+////////35+//8AAP//hob/////////////////////
- /////////////+/v//8lJf//FRX//+Li////////////////////////urr//wAA///IyP//////////
- //////////////////8QEP//aWn///////+Hh///AAD//1JS///5+f//////////////////////////
- //9hYf//Hx////Hx//8gIP//AAD//0hI//8BAf//AAD//wAA//8ICP//ExP//w8P///7+////////5KS
- //8BAf//CQn//woK///5+f///////////////////Pz//3R0//8AAP//SUn//46O//8AAP//aWn///7+
- //////////////////////////////39//9PT///AwP//729/////////////////////////////7e3
- //8AAP//ycn/////////////////////////////HR3//1tb//9/f///AAD//1pa///7+///////////
- ////////////////////////X1///xcX//89Pf//AAD//0JC//+zs///AAD//3Fx///a2v///Pz//6Sk
- //8AAP//yMj///////+Skv//AQH//w8P//8AAP//wsL/////////////////////////////np7//wYG
- //8AAP//Tk7///v7//////////////////////////////////+Fhf//AAD//4qK////////////////
- //////////////////+3t///AAD//9DQ/////////////////////////////yws//8LC///AAD//2Nj
- ///8/P//////////////////////////////////+Pj//z8///8AAP//ERH//52d///+/v//8vL//wAA
- //+Hh/////////7+//+Cgv//AAD//4uL/////////////5qa//8BAf//AAD//4KC////////////////
- ///////////////////Cwv//TU3///X1//////////////////////////////////+5uf//AgL//1RU
- ///+/v//////////////////////////////////sbH//wAA///Q0P//////////////////////////
- //86Ov//AAD//2tr///9/f//////////////////////////////////xMT//yoq//8AAP//HR3//+fn
- //////////////////8PD///Kyv//319//9UVP//AAD//1BQ///x8f//////////////////oKD//wIC
- //8tLf//8/P/////////////////////////////////////////////////////////////////////
- ///g4P//FBT//ykp///x8f///////////////////////////////////////7Cw//8AAP//09P/////
- ////////////////////////SEj//3V1///+/v/////////////////////////////w8P//aWn//wEB
- //8bG///Jib//zIy////////////////////////Xl7//yAg//8BAf//AgL//4OD///9/f//////////
- //////////////7+//9PT///AAD//zo6///x8f//////////////////////////////////////////
- ///////////////////39///NDT//w0N///W1v//////////////////////////////////////////
- //+wsP//AAD//9fX/////////////////////////////8PD////////////////////////////////
- //+vr///Gxv//wEB//9paf//8PD//09P//84OP//////////////////////////////////9/f//+Pj
- /////////////////////////////8PD//84OP//AAD//yIi//8FBf//Njb//+7u////////////////
- ////////////////////////////////////////ZGT//wAA//+srP//////////////////////////
- ////////////////////////qKj//wAA///X1///////////////////////////////////////////
- ///////////////////9/f//nJz//xsb//8AAP//S0v//9TU//9ISP//Ozv/////////////////////
- /////////////////////////////////////////Pz//2Bg//8AAP//AQH//46O///6+v//rq7//wcH
- //8xMf//7Oz/////////////////////////////////////////////nJz//wAA//9ubv//////////
- /////////////////////////////////////////////6io//8AAP//3Nz/////////////////////
- ///z8///f3///39///+Wlv//+fn////////////////////////19f//hYX//w4O//8DA///Dg7//z8/
- ///////////////////////////////////////////////////////////////////o6P//YGD//wEB
- //8gIP//+vr///////9ZWf//AAD//5+f/////////////////////////////////////////////729
- //8REf//HBz//83N//////////////////////////////////////////////////+mpv//AAD//9/f
- ////////////////////////8PD//wAA//8AAP//AAD//yws///ExP//////////////////////////
- ///q6v//bm7//wYG//8JCf//6en//////////////////3Z2//93d///h4f//5iY///b2///////////
- //////////////////84OP//Nzf///////+Xl///AAD//29v////////////////////////////////
- ////////////////////////2dn//yUl//8KCv//rKz/////////////////////////////////////
- ////////n5///wAA///f3/////////////////////////f3//8AAP//g4P//7Oz//8dHf//AQH//2ho
- ///v7/////////////////////////////87O///AAD//+vr//////////////////8HB///AgL//wAA
- //8AAP//AwP//1ZW///Q0P/////////////u7v//AwP//4CA//+0tP//AwP//1BQ///8/P//////////
- ///////////////////////////////////////////////////t7f//QUH//wEB//+EhP///v7/////
- /////////////////////////////5+f//8AAP//5ub////////////////////////+/v//AAD//3t7
- ////////8vL//21t//8CAv//GRn//+fn////////////////////////ODj//wAA///09P//////////
- ///w8P//AAD//4yM///4+P//3t7//z09//8AAP//qan/////////////p6f//wAA//+Xl///Cwv//zc3
- ///19f////////////////////////////////////////////////////////////////////////n5
- //9kZP//AAD//1pa///39/////////////////////////////+cnP//AAD//+jo////////////////
- /////////////wcH//90dP//////////////////enr//wAA///z8////////////////////////zMz
- //8AAP///Pz/////////////2tr//wAA//9/f///6en//9zc//8LC///T0///////////////////11d
- //8DA///Fhb//yIi///p6f//////////////////////////////////////////////////////////
- /////////////////////////v7//4yM//8CAv//Nzf//+bm////////////////////////l5f//wAA
- ///o6P////////////////////////////8PD///bW3//////////////v7//1VV//8XF///////////
- //////////////////8xMf//Bgb//////////////////8TE//8AAP//AAD//wAA//8DA///Dw///+Tk
- //////////////z8//8VFf//AAD//xMT///Y2P//////////////////////////////////////////
- //+mpv//1NT/////////////////////////////////////////////sbH//wwM//8cHP//zs7/////
- /////////////5eX//8AAP//8PD/////////////////////////////Fhb//2Rk////////+Pj//2Bg
- //8AAP//YGD/////////////////////////////Kir//xAQ///////////////////5+f//1NT//7Gx
- //+Ojv//a2v//6io///////////////////IyP//AAD//wgI///Cwv//////////////////////////
- ///////////////////i4v//Dg7//xQU///Ozv//////////////////////////////////////////
- ///Ozv//CQn//woK///Y2P////////////+Tk///AAD///Dw/////////////////////////////x4e
- //9cXP//6Oj//zo6//8AAP//e3v///39/////////////////////////////ygo//8ZGf//////////
- ///////////////////////////////////////////////////9/f//VVX//wAA//+goP//////////
- ///////////////////////////////////+/v//SUn//wkJ//8eHv//EBD//8jI////////////////
- ///////////////////+/v//bm7//wAA//91df//////////////////kJD//wAA///x8f//////////
- //////////////////8mJv//CAj//wUF//8KCv//qKj/////////////////////////////////////
- //8gIP//IiL////////////////////////////////////////////////////////9/f//ZWX//wAA
- //8BAf//Kyv//9LS////////////////////////////////////////oaH//wAA//+MjP//4eH//yMj
- //8NDf//wMD/////////////////////////////dnb//wAA//9tbf///v7//////////////////5CQ
- //8AAP//9/f/////////////////////////////Wlr//1ZW//95ef//0ND/////////////////////
- ////////////////////////Hh7//xUV//+Wlv//sLD//8nJ///i4v//+fn/////////////////////
- ///9/f//ZWX//wAA//+EhP//ubn//xgY//8ICP//lpb///7+////////////////////////5+f//xER
- //84OP///Pz////////k5P//Jyf//woK//+6uv//////////////////f3///wAA//9lZf///v7/////
- //////////////////+Kiv//AAD///f3////////////////////////////////////////////////
- /////////////////////////////9zc//+Cgv//KCj//wAA//8AAP//AAD//wAA//8AAP//AAD//wEB
- //8VFf//Li7//0hI//9hYf//TU3//wAA//+IiP/////////////p6f//Skr//wAA//9RUf//7e3/////
- /////////////1FR//8HB///1tb//////////////////+jo//8sLP//Bwf//7Oz////////hob//wAA
- //9eXv///Pz/////////////////////////////iIj//wAA///6+v//////////////////////////
- ///////////////////////////////////o6P//kpL//zc3//8AAP//AQH//zw8//+Wlv//6+v///Hx
- ///X1///vb3//6Sk//+Li///cnL//1hY//8+Pv//JSX//wwM//+Li/////////////////////////7+
- //+Pj///Bwf//x0d///Cwv///////6mp//8AAP//hob/////////////////////////////7Oz//zEx
- //8FBf//Xl7//wAA//9WVv//+/v//////////////////////////////////4iI//8AAP////////n5
- ///39///9fX///Dw///w8P//6en//+jo///k5P//3d3//6Gh//9HR///AwP//wAA//8tLf//h4f//+Dg
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////8/P//8oKP//AwP//3l5//8WFv//NDT///v7////////////////
- ///////////////////u7v//Njb//wAA//9PT///+fn/////////////////////////////////////
- //+AgP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//ICD//3l5
- ///T0///////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////9PT//2Rk//8AAP//Bgb//9HR
- //////////////////////////////////////////////Hx//94eP//+Pj/////////////////////
- ////////////////////////v7///4CA//+IiP//iIj//4mJ//+QkP//kJD//5KS//+Xl///l5f//5qa
- //+fn///xcX///39////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////qqr//42N////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////wAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAIAAAAAAAQAAAQAgAAAAAAAACAEAAAAAAAAA
- AAAAAAAAAAAAAP//////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/7+/v/////////////////8/Pz//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP+/v7////////////////////////////8/Pz//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/v7+//////////////////z8/P/8AAAD/v7+/////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v////////////////////////////z8/P/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/v7+//////////////////////////////////////////////////z8/
- P/8AAAD/AAAA/wAAAP+/v7//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////Pz8//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/v7+//////////////////z8/
- P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/7+/v///////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+/v7//////////
- ////////Pz8//wAAAP+/v7////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- ////////////////////////Pz8//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+/v7//////////
- ////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////
- ////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////
- /////////////////////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////
- //////////////////8/Pz//AAAA/7+/v/////////////////8/Pz//AAAA/7+/v///////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v////////////////////////////z8/P/8AAAD/v7+/////////////////////////////////////
- //8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////z8/
- P/8AAAD/AAAA/wAAAP+/v7//////////////////////////////////////////////////////////
- //8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v////////////////////////////z8/P/8AAAD/v7+/////
- /////////////z8/P/8AAAD/v7+/////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v/////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////Pz8//wAA
- AP+/v7///////////////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////
- /////////////////////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////
- //////////////////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- ////////////////////////Pz8//wAAAP+/v7//////////////////Pz8//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/v7+//////////////////z8/P/8AAAD/AAAA/wAA
- AP+/v7//////////////////////////////////////////////////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////////////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP+/v7////////////////////////////8/Pz//AAAA/7+/
- v/////////////////8/Pz//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP+/v7//////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////
- //////////////////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////
- //////////////////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/7+/v///////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v/////////////////8/Pz//AAAA/wAAAP8AAAD/v7+//////////////////z8/P/8AAAD/v7+/////
- ////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v/////////////////8/Pz//AAAA/wAA
- AP8AAAD/v7+/////////////////////////////////////////////////////////////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////////////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/v7+/////////////////////
- //////////////////8/Pz//AAAA/wAAAP8AAAD/v7+//////////////////z8/P/8AAAD/AAAA/wAA
- AP+/v7//////////////////Pz8//wAAAP+/v7////////////////////////////8/Pz//AAAA/wAA
- AP8AAAD/v7+//////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////////////
- ////////////////////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v///////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- ////////////////////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v////////////////////////////////////////////////////////////z8/P/8AAAD/AAAA/wAA
- AP+/v7////////////////////////////////////////////////////////////8/Pz//AAAA/7+/
- v////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////Pz8//wAA
- AP8AAAD/AAAA/7+/v///////////////////////////////////////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v///////Pz8//wAAAP+/v7//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////////////////////////////
- //////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////////////
- ////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////
- /////////////////////////////z8/P/8AAAD/v7+/////////////////////////////Pz8//wAA
- AP8AAAD/AAAA/7+/v/////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////
- //////////////////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- //8/Pz//AAAA/7+/v///////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/
- v////////////////////////////////////////////////////////////z8/P/8AAAD/AAAA/wAA
- AP+/v7////////////////////////////////////////////////////////////8/Pz//AAAA/wAA
- AP8AAAD/v7+/////////////////////////////Pz8//wAAAP+/v7//////////////////Pz8//wAA
- AP+/v7////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+//////////////////z8/
- P/8AAAD/AAAA/wAAAP+/v7////////////////////////////8/Pz//AAAA/7+/v///////////////
- //8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////Pz8//wAAAP+/v7//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////////////////////
- ////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////
- /////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////////////
- //8/Pz//AAAA/7+/v/////////////////8/Pz//AAAA/7+/v////////////////////////////z8/
- P/8AAAD/AAAA/wAAAP+/v7//////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////
- /////////////z8/P/8AAAD/v7+//////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////
- //////////////////8/Pz//AAAA/7+/v///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////z8/P/8AAAD/AAAA/wAA
- AP+/v7////////////////////////////////////////////////////////////8/Pz//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+/v7//////////////////////////
- //8/Pz//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/7+/v///////////////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+/v7//////////////////////////
- /////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/v7+/////////////////////
- ////////Pz8//wAAAP8AAAD/AAAA/7+/v////////////////////////////z8/P/8AAAD/v7+/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////Pz8//wAAAP8AAAD/AAAA/7+/v///////////////////////////////
- /////////////////////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/7+/v////////////////////////////z8/P/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/v7+///////////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/7+/v///////////////////////////////////////Pz8//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP+/v7////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////
- ////////////////////////Pz8//wAAAP+/v7//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////8/Pz//AAAA/wAA
- AP8AAAD/v7+/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////z8/P/8AAAD/AAAA/wAAAP+/v7//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////Pz8//wAA
- AP8AAAD/AAAA/7+/v///////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8/Pz//AAAA/wAAAP8AAAD/v7+/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///c3P//Ojr//9PT///////////////////////////////////////////////////Q0P//dHT//xoa
- //8QEP//JSX//zc3//9KSv//Xl7//3Nz//+Ghv//mpr//6ys///AwP//19f//+np///7+///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////z8//9YWP//eHj///b2////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////2dn//x0d//8AAP//EBD//8LC////////////////
- /////////////+Pj//+Jif//Kyv//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8SEv//Jib//zg4//9LS///YGD//3R0//+Hh///m5v//6+v
- ///Dw///+Pj/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////a2v//wAA//8AAP//IyP//7u7////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////9LS
- //8VFf//AAD//wAA//8AAP//CAj//6ys////////8fH//56e//9CQv//AgL//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+0tP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////4iI//8AAP//AAD//wAA//8AAP//AAD//11d
- ///p6f//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////Nzf//FRX//wAA//8AAP//AAD//wAA//8AAP//AwP//4aG
- //8JCf//AAD//wAA//8AAP//AAD//wAA//8REf//Zmb//8HB///29v//5+f//9PT//+7u///qan//5aW
- //9/f///bGz//1hY//9ERP//Li7//xwc//8HB///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3Fx////////////////////////7+///0xM///ExP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //+iov//AQH//wAA//8AAP//Cgr//wAA//8AAP//AAD//xMT//+fn////f3/////////////////////
- ////////////////////////////////////////////////////////////////////////rKz//z8/
- //8/P///Pz///z8///8/P///Pz///z8///8/P///Pz///z8///8/P///Pz///z8///8/P///Pz///z8/
- //95ef//////////////////////////////////////////////////////////////////yMj//w8P
- //8AAP//AAD//woK//+lpf//KSn//wAA//8AAP//AAD//wAA//8AAP//AAD//wgI//9VVf//sLD///j4
- ////////////////////////////////////////////////////////////////////////////////
- ///y8v//3d3//8nJ//+1tf//oqL//4uL//94eP//TEz//wAA//8AAP//MDD//////////////////+rq
- //8wMP//AAD//wYG//+goP//////////////////////////////////////////////////////////
- ////////////////////////////////////////u7v//wYG//8AAP//AAD//1BQ///w8P//cHD//wMD
- //8AAP//AAD//wAA//9AQP//2dn/////////////////////////////////////////////////////
- //////////////////////////////////+Rkf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//z4+////////////////////////////////
- /////////////////////////////8HB//8PD///AAD//wAA//8ODv//vr7////////s7P//OTn//wAA
- //8AAP//AAD//wAA//8aGv//8fH/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///o6P//AAD//wAA//8CAv//7u7////////k5P//Kir//wAA//8AAP//AAD//wAA//93d////Pz/////
- /////////////////////////////////////////////////////////////////////////////8/P
- //8PD///AAD//wAA//85Of//9fX/////////////y8v//zAw//8AAP//AAD//wAA//8HB///gYH///j4
- /////////////////////////////////////////////////////////////////////////////5GR
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//MDD///////////////////////////////////////////////////////++vv//Cgr//wAA
- //8AAP//Dw///8jI///////////////////19f//TEz//wAA//8AAP//AAD//xYW///y8v//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8qKv//AAD//wAA//+wsP//3d3//yQk
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9OTv//8vL/////////////////////////////////////
- ///////////////////////////////////h4f//Ghr//wAA//8AAP//JSX//+rq////////////////
- ////////+/v//4qK//8KCv//AAD//wAA//8AAP//KSn//8HB////////////////////////////////
- ////////////////////////////////////////gID//wAA//8AAP//X1///7+///+/v///v7///7+/
- //+/v///v7///7+///+/v///v7///7+///+fn///AAD//wAA//8jI///////////////////////////
- ////////////////////////tbX//woK//8AAP//AAD//xUV///Nzf//////////////////////////
- ///8/P//YmL//wAA//8AAP//AAD//zMz///o6P//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////2xs//8AAP//AAD//01N//8dHf//AAD//wAA//8GBv//qan//1FR//8AAP//AAD//wAA
- //8tLf//4OD/////////////////////////////////////////////////////////////7e3//ykp
- //8AAP//AAD//xYW///d3f///////////////////////////////////////93d//9HR///AAD//wAA
- //8AAP//AQH//2Vl///t7f//////////////////////////////////////////////////////////
- //9/f///AAD//wAA//9/f////////////////////////////////////////////////////////+Hh
- //8AAP//AAD//xQU/////////////////////////////////////////////7Oz//8GBv//AAD//wAA
- //8WFv//0tL////////////////////////////////////////d3f//AAD//wAA//8AAP//AAD//yMj
- ///b2///////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////rKz//wAA//8AAP//AAD//wAA
- //8AAP//Cgr//7q6/////////f3//3t7//8BAf//AAD//wAA//8WFv//xMT/////////////////////
- //////////////////////////////b2//88PP//AAD//wAA//8KCv//y8v/////////////////////
- //////////////////////////////////+lpf//FRX//wAA//8AAP//AAD//xcX//+mpv//////////
- /////////////////////////////////////////////39///8AAP//AAD//39/////////////////
- ////////////////////////////////////////8PD//wAA//8AAP//BQX/////////////////////
- //////////////////+kpP//Bgb//wAA//8AAP//HR3//9zc////////////////////////////////
- /////////////9HR//8AAP//AAD//wAA//8AAP//AAD//xUV///Kyv//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////r6///AQH//wAA//8AAP//AAD//w8P///Dw////////////////////////6Sk
- //8ICP//AAD//wAA//8GBv//oKD////////////////////////////////////////8/P//U1P//wAA
- //8AAP//AwP//7a2////////////////////////////////////////////////////////////////
- ///s7P//YmL//wAA//8AAP//AAD//wQE///R0f//////////////////////////////////////////
- ////////f3///wAA//8AAP//kJD/////////////////////////////////////////////////////
- ///8/P//AAD//wAA//8AAP//9fX/////////////////////////////pKT//wMD//8AAP//AAD//yQk
- ///c3P//////////////////////////////////////////////////0dH//wAA//8AAP//FBT//wYG
- //8AAP//AAD//woK//+2tv//////////////////////////////////////////////////9/f//9DQ
- //+lpf//eXn//05O///Dw////////////////////////////////////////76+//8EBP//AAD//wAA
- //8VFf//ycn//////////////////////////////////8fH//8YGP//AAD//wAA//8AAP//d3f///z8
- /////////////////////////////25u//8AAP//AAD//wAA//+amv//////////////////////////
- //////////////////////////////////////////////////+Pj///AAD//wAA//8AAP//jo7/////
- //////////////////////////////////////////////////9/f///AAD//wAA//+Rkf//////////
- //////////////////////////////////////////////////8NDf//AAD//wAA///o6P//////////
- /////////////5aW//8CAv//AAD//wAA//8kJP//5OT/////////////////////////////////////
- ///////////////////R0f//AAD//wAA//8/P///wMD//w8P//8AAP//AAD//wQE//+dnf//////////
- ///6+v//09P//6io//9+fv//U1P//ycn//8DA///AAD//wAA//8AAP//AAD//3l5////////////////
- //////////////////+0tP//Cgr//wAA//8AAP//AAD//2dn////////////////////////////////
- /////////////+Li//8xMf//AAD//wAA//8AAP//Tk7///Ly//////////////////+MjP//AAD//wAA
- //8AAP//f3//////////////////////////////////////////////////////////////////////
- ////////wsL//wUF//8AAP//AAD//1ZW///9/f//////////////////////////////////////////
- /////////////3p6//8AAP//AAD//5GR////////////////////////////////////////////////
- /////////////xsb//8AAP//AAD//9vb//////////////////+Vlf//AQH//wAA//8AAP//LS3//+jo
- /////////////////////////////////////////////////////////////8bG//8AAP//AAD//z8/
- ////////z8///xkZ//8AAP//AAD//wEB//+EhP//f3///wUF//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//OTn/////////////////////////////qqr//wYG//8AAP//AAD//wAA
- //8AAP//KSn///////////////////////////////////////////////////T0//9TU///AAD//wAA
- //8AAP//LS3//+Dg////////pqb//wEB//8AAP//AAD//2Fh///9/f//////////////////////////
- /////////////////////////////////////////////+bm//8YGP//AAD//wAA//8rK///8/P/////
- ////////////////////////////////////////////////////////cHD//wAA//8AAP//kZH/////
- ////////////////////////////////////////////////////////KCj//wAA//8AAP//zMz/////
- ////////iYn//wAA//8AAP//AAD//zEx///q6v//////////////////////////////////////////
- ////////////////////////v7///wAA//8AAP//Pz/////////5+f//Z2f//wAA//8AAP//AAD//wAA
- //8cHP//AAD//wAA//8AAP//AAD//wAA//8AAP//AQH//yIi//9MTP//AAD//wAA//8DA///8PD/////
- /////////////5+f//8DA///AAD//wAA//8iIv//AgL//wAA//8AAP//6Oj/////////////////////
- //////////////////////////////39//9+fv//AQH//wAA//8AAP//Fhb//4yM//8GBv//AAD//wAA
- //9ISP//+vr/////////////////////////////////////////////////////////////////////
- ///6+v//PDz//wAA//8AAP//Dg7//9jY////////////////////////////////////////////////
- //////////////////9wcP//AAD//wAA//+Rkf//////////////////////////////////////////
- //////////////////81Nf//AAD//wAA//+9vf///////4WF//8AAP//AAD//wAA//83N///7+//////
- //////////////////////////////////////////////////////////////////+/v///AAD//wAA
- //9LS///xsb//ysr//8AAP//AAD//wAA//8EBP//eXn//5qa//8AAP//AAD//xwc//9ycv//oaH//8vL
- ///z8/////////////8pKf//AAD//wAA//+zs///////////////////pKT//wMD//8AAP//AAD//yQk
- //8ZGf//AAD//wAA//+lpf//////////////////////////////////////////////////////////
- //+np///CQn//wAA//8AAP//AAD//wAA//8AAP//MjL///Ly////////////////////////////////
- /////////////////////////////////////////////29v//8AAP//AAD//wEB//+vr///////////
- /////////////////////////////////////////////////////////////3Bw//8AAP//AAD//5eX
- /////////////////////////////////////////////////////////////0FB//8AAP//AAD//7Cw
- //95ef//AAD//wAA//8AAP//Q0P//+/v////////////////////////////////////////////////
- /////////////////////////////7+///8AAP//AAD//xAQ//8CAv//AAD//wAA//8AAP//NDT//8/P
- ////////urr//wAA//8AAP//OTn//////////////////////////////////2xs//8AAP//AAD//3Bw
- ////////////////////////pKT//wYG//8AAP//AAD//wAA//8AAP//AAD//2Rk////////////////
- ///////////////////////////////////////////////////Jyf//GRn//wAA//8AAP//AAD//yAg
- ///n5///////////////////////////////////////////////////////////////////////////
- //+mpv//AAD//wAA//8AAP//eXn/////////////////////////////////////////////////////
- ////////////////////////cHD//wAA//8AAP//oaH/////////////////////////////////////
- ////////////////////////UVH//wAA//8AAP//Ly///wAA//8AAP//AAD//0RE///19f//////////
- ////////////////////////////////////////////////////////////////////////sbH//wAA
- //8AAP//AAD//wAA//8AAP//Cgr//42N///8/P/////////////Z2f//AAD//wAA//8fH///////////
- ////////////////////////iIj//wAA//8AAP//Ly//////////////////////////////s7P//wYG
- //8AAP//AAD//wAA//8AAP//JCT/////////////////////////////////////////////////////
- ///////////////////k5P//MjL//wAA//8TE///19f/////////////////////////////////////
- ////////////////////////////////////////0tL//wsL//8AAP//AAD//0VF///8/P//////////
- //////////////////////////////////////////////////////////////////9wcP//AAD//wAA
- //+hof////////////////////////////////////////////////////////////9iYv//AAD//wAA
- //8AAP//AAD//wAA//9PT///+fn/////////////////////////////////////////////////////
- /////////////////////////////+bm//9LS///AAD//wAA//8AAP//AAD//0VF///e3v//////////
- //////////////T0//8AAP//AAD//wQE///8/P///////////////////f3//4CA//8CAv//AAD//wAA
- //8ICP//9vb/////////////////////////////s7P//wYG//8AAP//AAD//wAA//8AAP//5OT/////
- ///////////////////////////////////////////////////////////////////19f//XV3//8TE
- /////////////////////////////////////////////////////////////////////////////+/v
- //8lJf//AAD//wAA//8gIP//6+v/////////////////////////////////////////////////////
- /////////////////////////////2dn//8AAP//AAD//6Gh////////////////////////////////
- /////////////////////////////25u//8AAP//AAD//wAA//8AAP//Vlb///n5////////////////
- //////////////////////////////////////////////////////////////39//+Zmf//EBD//wAA
- //8AAP//AAD//xIS//+hof///f3//////////////////////////////////xER//8AAP//AAD//6+v
- ///m5v///////+/v//9OTv//AAD//wAA//8AAP//HBz//8jI////////////////////////////////
- ////////urr//woK//8AAP//AAD//wAA//+fn///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////9/f//UFD//wAA//8AAP//Bwf//8rK////////////////
- ////////////////////////////////////////////////////////////////////////YmL//wAA
- //8AAP//oaH/////////////////////////////////////////////////////////////enr//wAA
- //8AAP//AAD//1tb///8/P//////////////////////////////////////////////////////////
- ///////////////////Y2P//Pj7//wAA//8AAP//AAD//wAA//8AAP//YmL/////////////////////
- ////////////////////////LCz//wAA//8AAP//AAD//wAA//8PD///FRX//wAA//8AAP//AAD//zw8
- ///n5///////////////////////////////////////////////////vr7//woK//8AAP//AAD//xUV
- ///S0v//////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////4aG
- //8AAP//AAD//wAA//+cnP//////////////////////////////////////////////////////////
- //////////////////////////////////9iYv//AAD//wAA//+hof//////////////////////////
- //////////////////////////////////+Jif//AAD//wAA//9paf///Pz/////////////////////
- ///////////////////////////////////////////////////5+f//goL//wcH//8AAP//AAD//wAA
- //8EBP//AAD//wAA//9iYv////////////////////////////////////////////9ISP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9tbf//+vr/////////////////////////////////////
- ////////////////////////p6f//wAA//8AAP//AAD//xMT///IyP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+7u///AwP//wAA//8AAP//ZGT/////////////////////
- /////////////////////////////////////////////////////////////////////////////2Ji
- //8AAP//AAD//6ys/////////////////////////////////////////////////////////////5iY
- //8AAP//bm7///39////////////////////////////////////////////////////////////////
- ////////xsb//ysr//8AAP//AAD//wAA//8CAv//bW3//5WV//8AAP//AAD//2lp////////////////
- /////////////////////////////729//91df//UlL//y0t//8HB///AAD//wAA//8ICP//oKD/////
- //////////////////////////////////////////////////////////////z8//+UlP//AAD//wAA
- //8AAP//AAD//w8P///IyP//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////4eH//xMT
- //8AAP//AAD//zU1///4+P//////////////////////////////////////////////////////////
- ////////////////////////////////////////YmL//wAA//8AAP//sLD/////////////////////
- ////////////////////////////////////////paX//3l5////////////////////////////////
- ////////////////////////////////////////8fH//2tr//8CAv//AAD//wAA//8AAP//Kyv//8bG
- ////////oaH//wAA//8AAP//cHD/////////////////////////////////////////////////////
- //////////////z8///h4f//vLz//9LS////////////////////////////////////////////////
- //////////////////+1tf//LS3//wAA//8AAP//AAD//wAA//8AAP//AAD//w8P//++vv//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////f3//81Nf//AAD//wAA//8UFP//4eH/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9iYv//AAD//wAA//+wsP//////////////////////////////////////////////////////////
- ///w8P///////////////////////////////////////////////////////////////////////7Gx
- //8cHP//AAD//wAA//8AAP//BQX//4GB///4+P////////////+amv//AAD//wAA//9wcP//////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////Nzf//QkL//wAA//8AAP//AAD//wAA
- //8QEP//enr//xUV//8AAP//AAD//woK//++vv//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////ZGT//wAA
- //8AAP//AwP//7y8////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////1FR//8AAP//AAD//7Cw////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////5+f//gID//wwM//8AAP//AAD//wAA//8AAP//UlL//9nZ
- /////////////5GR//8AAP//AAD//3Bw////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///f3///XFz//wEB//8AAP//AAD//wAA//8JCf//dXX//+3t////////0tL//xUV//8AAP//AAD//woK
- //+2tv//////////////////////////////////////////////////////////////////////////
- /////////////////////////////52d//8AAP//AAD//wAA//+Hh///////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////UVH//wAA//8AAP//sLD/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////5+f//2lp//8EBP//AAD//wAA//8AAP//BAT//2pq///o6P//kZH//wAA//8AAP//fX3/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////9vb//0dH//8AAP//AAD//wAA//8AAP//BQX//7u7
- ////////////////////////09P//x0d//8AAP//AAD//wYG//+zs///////////////////////////
- ///////////////////////////////////////////////////////////////////Ly///CAj//wAA
- //8AAP//NDT///39////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9RUf//AAD//wAA//+ysv//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////9nZ//9SUv//AAD//wAA
- //8AAP//AAD//w0N//85Of//AAD//wAA//9/f///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////f3//6Wl//8aGv//AAD//wAA//8AAP//BQX//3V1///29v//////////////////29v//wkJ
- //8AAP//AAD//wkJ///m5v//////////////////////////////////////////////////////////
- /////////////////////////////9/f//8pKf//AAD//wAA//8AAP//cHD///z8////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////1FR//8AAP//AAD//7+/////////////////////////////////////////////////
- ////////0dH//wAA//8AAP//AAD//wAA//8AAP//Wlr//+np////////////////////////////////
- ///////////////////////////////////Fxf//Ozv//wAA//8AAP//AAD//wAA//8AAP//AAD//39/
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////Ly//91df//BQX//wAA
- //8AAP//CAj///X1//////////////////+Bgf//AAD//wAA//8AAP//j4//////////////////////
- /////////////////////////////////////////////////////////////////////////////+/v
- //9HR///AAD//wAA//8AAP//Skr//+/v////////////////////////////////////////////////
- ////////////////////////////////////////////////////////UVH//wAA//8AAP//v7//////
- ///////////////////////////////////////////////////g4P//AAD//wAA//8AAP//AAD//wAA
- //8AAP//EhL//56e///9/f//////////////////////////////////////////////////////////
- ////////rq7//ycn//8AAP//AAD//wAA//8AAP//Jib//9/f////////////////////////////////
- ////////09P//9bW///n5///9fX/////////////////////////////////////////////////////
- //////////////////////////////////+Ojv//AAD//wAA//9KSv//////////////////np7//wEB
- //8AAP//AAD//25u////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////z8//9qav//AAD//wAA//8AAP//KSn//93d
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9KSv//AAD//wAA//+/v///////////////////////////////////////////
- /////////////+Hh//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//z8////X1///////////
- ////////////////////////////////////////////////////////+/v//5eX//8YGP//AAD//wAA
- //8AAP//ycn///////////////////////////////////////8vL///AAD//wAA//8AAP//Bwf//xkZ
- //8pKf//OTn//4OD///u7v///////////////////////////////////////////////////////1NT
- //8AAP//AAD//5KS/////////////7q6//8GBv//AAD//wAA//9RUf///Pz/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+UlP//AwP//wAA//8AAP//FBT//8LC////////////////////////////////
- /////////////////////////////////////////////////////////////z8///8AAP//AAD//7+/
- ////////////////////////////////////////////////////////7u7//wAA//8AAP//ERH/////
- //+4uP//ICD//wAA//8AAP//AAD//wcH//+AgP//+Pj/////////////////////////////////////
- /////////////////////////////35+//8AAP//AAD//wAA///R0f//////////////////////////
- /////////////xsb//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wwM//9ycv//4uL/////
- ///////////////////////////////////6+v//Dg7//wAA//8AAP//3Nz////////Q0P//Dw///wAA
- //8AAP//Njb///X1////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+3t///Dw///wAA
- //8AAP//Bgb//52d////////////////////////////////////////////////////////////////
- ////////////////////////Pz///wAA//8AAP//v7//////////////////////////////////////
- ///////////////////w8P//AAD//wAA//8AAP/////////////09P//cnL//wMD//8AAP//AAD//wAA
- //8oKP//wMD/////////////////////////////////////////////////////////////cHD//wAA
- //8AAP//AAD//97e////////////////////////////////////////BAT//wAA//8AAP//CAj//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8GBv//YWH//+Li/////////////////////////////7+/
- //8AAP//AAD//yYm////////5OT//x0d//8AAP//AAD//yIi///p6f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////U1P//IiL//wAA//8AAP//AAD//3Nz///8/P//////////
- //////////////////////////////////////////////////////////////////8/P///AAD//wAA
- ///Jyf////////////////////////////////////////////////////////z8//8AAP//AAD//wAA
- ////////////////////////zMz//zEx//8AAP//AAD//wAA//8BAf//ZGT//+7u////////////////
- //////////////////////////////////9wcP//AAD//wAA//8AAP//4uL/////////////////////
- /////////////+vr//8AAP//AAD//wwM////////+Pj//+np///b2///n5///ykp//8AAP//AAD//wAA
- //8VFf//6+v/////////////////////////////dHT//wAA//8AAP//cHD//+/v//8vL///AAD//wAA
- //8SEv//2dn/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///p6f//Ozv//wAA//8AAP//AAD//0xM///x8f//////////////////////////////////////////
- /////////////////////////////z8///8AAP//AAD//9HR////////////////////////////////
- /////////////////////////////wAA//8AAP//AAD///Dw////////////////////////+/v//4mJ
- //8KCv//AAD//wAA//8AAP//srL//////////////////////////////////////////////////3Bw
- //8AAP//AAD//wAA///w8P//////////////////////////////////2Nj//wAA//8AAP//JSX/////
- ////////////////////////ysr//wEB//8AAP//AAD//6en////////////////////////////////
- //8qKv//AAD//wAA//+0tP//R0f//wAA//8AAP//Bwf//8PD////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////4+P//XFz//wAA//8AAP//AAD//ysr
- ///f3///////////////////////////////////////////////////////////////////Pz///wAA
- //8AAP//0dH/////////////////////////////////////////////////////////////DQ3//wAA
- //8AAP//8PD//////////////////////////////////9zc//8ODv//AAD//wAA///X1///////////
- ////////////////////////////////////////bGz//wAA//8AAP//AAD///Pz////////////////
- ///////////////////AwP//AAD//wAA//85Of////////////////////////j4//8sLP//AAD//wAA
- //9NTf//////////////////////////////////4OD//wAA//8AAP//CQn//1lZ//8AAP//AAD//wEB
- //+pqf//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////9/f//hob//wEB//8AAP//AAD//xQU///Cwv//////////////////////////
- //////////////////////////////////80NP//AAD//wAA///R0f//////////////////////////
- //////////////////////////////////8REf//AAD//wAA///j4///////////////////////////
- ////////+vr//wMD//8AAP//AQH///f3////////////////////////////////////////////////
- //9iYv//AAD//wAA//8AAP///////////////////////////////////////6qq//8AAP//AAD//ycn
- //+env//wcH//+Xl////////e3v//wAA//8AAP//Dg7//+Hh////////////////////////////////
- //+Wlv//AAD//wAA//8DA///AAD//wAA//8AAP//ior/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////qqr//woK
- //8AAP//AAD//wYG//+dnf///////////////////////////////////////////////////////zAw
- //8AAP//AAD//9HR/////////////////////////////////////////////////////////////xwc
- //8AAP//AAD//+Hh///////////////////////////////////d3f//AAD//wAA//8eHv//////////
- /////////////////////////////////////////////2Ji//8AAP//AAD//wgI////////////////
- ////////////////////////lpb//wAA//8AAP//AAD//wAA//8AAP//AAD//wwM//8DA///AAD//wAA
- //+Wlv///////////////////////////////////////0xM//8AAP//AAD//wAA//8AAP//AAD//2ho
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+6uv///Pz/////////////////////////////////////////////////////
- ////////////////////////////////////////ysr//xkZ//8AAP//AAD//wAA//9zc////Pz/////
- ////////////////////////////////////////MDD//wAA//8AAP//0dH/////////////////////
- ////////////////////////////////////////IiL//wAA//8AAP//09P/////////////////////
- /////////f3//3l5//8AAP//AAD//z4+////////////////////////////////////////////////
- ////////YmL//wAA//8AAP//ERH///////////////////////////////////////98fP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//PDz///z8////////////////////////////////
- ///29v//Cgr//wAA//8AAP//AAD//wAA//9MTP///Pz/////////////////////////////////////
- ////////////////////////////////////////////////////////19f//wcH//9bW////Pz/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////4+P//zEx//8AAP//AAD//wAA//9MTP//8fH/////////////////////////////////////
- //8wMP//AAD//wAA///h4f//////////////////////////////////////////////////////////
- //8qKv//AAD//wAA///R0f////////////////////////X1//9ZWf//AAD//wAA//8AAP//Y2P/////
- //////////////////////////////////////////////////9XV///AAD//wAA//8eHv//////////
- /////////////////////////////+np//+6uv//mZn//3R0//9SUv//MDD//w0N//8AAP//AAD//wgI
- ///Y2P///////////////////////////////////////7e3//8AAP//AAD//wAA//8AAP//MjL///Pz
- ////////////////////////////////////////////////////////////////////////////////
- //////////////z8//84OP//AAD//wAA//9QUP//+fn/////////////////////////////////////
- ////////////////////////////////////////////////////////8/P//09P//8AAP//AAD//wAA
- //8rK///39///////////////////////////////////zAw//8AAP//AAD//+Hh////////////////
- /////////////////////////////////////////////zAw//8AAP//AAD//8LC////////////////
- ///k5P//NDT//wAA//8AAP//AAD//zg4///m5v//////////////////////////////////////////
- /////////////1FR//8AAP//AAD//yIi////////////////////////////////////////////////
- /////////////////////////////+jo///ExP//w8P/////////////////////////////////////
- ////////bW3//wAA//8AAP//AAD//yAg///m5v//////////////////////////////////////////
- ////////////////////////////////////////////////////////j4///wAA//8AAP//AAD//wAA
- //9NTf//9fX/////////////////////////////////////////////////////////////////////
- ////////////////////////+fn//yQk//8AAP//AAD//wAA//+Fhf//////////////////////////
- ////////Ly///wAA//8AAP//4eH/////////////////////////////////////////////////////
- ////////ODj//wAA//8AAP//v7//////////////yMj//xkZ//8AAP//AAD//wAA//9fX///+Pj/////
- ////////////////////////////////////////////////////////UVH//wAA//8AAP//MDD/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+/v//8dHf//AAD//wAA//8PD///1dX/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////9vb//8KCv//AAD//wAA//8AAP//AAD//wAA//9DQ///9fX/////////////////////
- //////////////////////////////////////////////////////////////z8//9bW///AAD//wAA
- //8AAP//cHD///////////////////////////////////////8iIv//AAD//wAA///h4f//////////
- //////////////////////////////////////////////////8/P///AAD//wAA//+0tP///////6Sk
- //8ICP//AAD//wAA//8DA///jo7/////////////////////////////////////////////////////
- //////////////////9RUf//AAD//wAA//80NP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///5+f//R0f//wAA//8AAP//AAD//5yc////////////////////////////////////////////////
- ///////////////////////////////////////////////////9/f//QUH//wAA//8AAP//JSX//3p6
- //8AAP//AAD//wAA//87O///7+//////////////////////////////////////////////////////
- ///////////////////9/f//YmL//wAA//8AAP//AAD//2lp///9/f//////////////////////////
- /////////////yIi//8AAP//AAD//+Hh////////////////////////////////////////////////
- /////////////0dH//8AAP//AAD//yMj//8UFP//AAD//wAA//8AAP//ERH//7m5////////////////
- /////////////////////////////////////////////////////////////0BA//8AAP//AAD//z8/
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////+fn//09P//8AAP//AAD//wAA//8AAP//DAz//6Cg
- ////////////////////////////////////////////////////////////////////////////////
- /////////////5WV//8AAP//AAD//wIC///Cwv///////4mJ//8AAP//AAD//wAA//83N///7e3/////
- /////////////////////////////////////////////////////////f3//2lp//8AAP//AAD//wAA
- //9eXv///f3/////////////////////////////////////////////IiL//wAA//8AAP//5+f/////
- ////////////////////////////////////////////////////////UVH//wAA//8AAP//AAD//wAA
- //8AAP//AAD//ygo///a2v//////////////////////////////////////////////////////////
- ////////////////////////Pz///wAA//8AAP//SEj/////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////n5
- //9PT///AAD//wAA//8AAP//BAT//wAA//8AAP//AAD//1pa///x8f//////////////////////////
- ///////////////////////////////////////////////////h4f//Dg7//wAA//8AAP//b2//////
- /////////////42N//8BAf//AAD//wAA//8tLf//6ur/////////////////////////////////////
- //////////////////9zc///AAD//wAA//8AAP//W1v///z8////////////////////////////////
- //////////////////8iIv//AAD//wAA///w8P//////////////////////////////////////////
- //////////////////9XV///AAD//wAA//8AAP//AAD//wYG//9SUv//7+//////////////////////
- //////////////////////////////////////////////////////////////////8/P///AAD//wAA
- //9RUf//////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////5+f//T0///wAA//8AAP//AAD//4mJ///MzP//Jib//wAA
- //8AAP//AAD//yMj///Ly///////////////////////////////////////////////////////////
- /////////////0ZG//8AAP//AAD//yEh///z8////////////////////////5aW//8BAf//AAD//wAA
- //8rK///5OT/////////////////////////////////////////////eXn//wAA//8AAP//AAD//09P
- ///8/P///////////////////////////////////////////////////////yIi//8AAP//AAD///Dw
- /////////////////////////////////////////////////////////////5qa//93d///nJz//7y8
- ///h4f///Pz/////////////////////////////////////////////////////////////////////
- /////////////////////////////zg4//8AAP//AAD//wUF//8jI///OTn//1VV//9sbP//h4f//6Gh
- //+4uP//0tL//+rq////////////////////////////////////////////////////////+fn//09P
- //8AAP//AAD//wAA//+Jif/////////////z8///YmL//wAA//8AAP//AAD//wUF//+Kiv///f3/////
- //////////////////////////////////////////////////+goP//AAD//wAA//8BAf//vr7/////
- /////////////////////////////5mZ//8DA///AAD//wAA//8kJP//5OT/////////////////////
- /////////////4SE//8AAP//AAD//wAA//9PT///+fn/////////////////////////////////////
- ////////////////////////Gxv//wAA//8AAP//8PD/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////19f//35+//8jI///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wYG//8gIP//Nzf//1FR
- //9qav//g4P//52d//+1tf//zs7//+bm//9PT///AAD//wAA//8BAf//jY3/////////////////////
- ////////p6f//w8P//8AAP//AAD//wAA//9HR///5+f/////////////////////////////////////
- ////////5eX//xAQ//8AAP//AAD//2ho/////////////////////////////////////////////6Sk
- //8DA///AAD//wAA//8eHv//3Nz///////////////////////+Jif//AAD//wAA//8AAP//Q0P///b2
- //////////////////////////////////////////////////////////////////8REf//AAD//wAA
- ///w8P//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///m5v//jY3//zMz//8AAP//AAD//wAA//8AAP//AAD//wAA//8CAv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AQH//5aW////////////////////////////////////////39///zo6//8AAP//AAD//wAA
- //8WFv//uLj///////////////////////////////////////9RUf//AAD//wAA//8eHv//8fH/////
- /////////////////////////////////////////////6am//8GBv//AAD//wAA//8dHf//1dX/////
- ////////k5P//wAA//8AAP//AAD//0FB///19f//////////////////////////////////////////
- /////////////////////////////xER//8AAP//AAD///Dw////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+/v//+cnP//Q0P//wIC//8AAP//AAD//wAA//8AAP//AAD//wwM
- //9aWv//tLT///r6///v7///2Nj//7u7//+lpf//iYn//3Bw//9YWP//Ozv//yUl//8JCf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wEB//+Wlv//////////////////////////
- ////////////////////////+/v//3t7//8DA///AAD//wAA//8BAf//c3P///n5////////////////
- ////////p6f//wAA//8AAP//AQH//7q6////////////////////////////////////////////////
- /////////////7Oz//8GBv//AAD//wAA//8VFf//0tL//5aW//8BAf//AAD//wAA//83N///7+//////
- ////////////////////////////////////////////////////////////////////////ERH//wAA
- //8AAP///Pz/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////9/f//6ys//9SUv//Bwf//wAA
- //8AAP//AAD//wAA//8AAP//BQX//0xM//+mpv//8/P/////////////////////////////////////
- ///////////////////////////////////v7///2Nj//7u7//+lpf//iYn//3Bw//9YWP//Ozv//yUl
- //8LC///lpb//////////////////////////////////////////////////////////////////8DA
- //8cHP//AAD//wAA//8AAP//NDT//9vb/////////////+rq//8VFf//AAD//wAA//9hYf//////////
- /////////////////////////////////////////////////////////////7S0//8KCv//AAD//wAA
- //8PD///AQH//wAA//8AAP//MzP//+/v////////////////////////////////////////////////
- //////////////////////////////////8REf//AAD//wAA////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///8/P//u7v//2Fh//8PD///AAD//wAA//8AAP//AAD//wAA//8BAf//PT3//5eX///r6///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+3t//9RUf//AAD//wAA//8AAP//DQ3//6Oj
- ////////WVn//wAA//8AAP//Gxv//+/v////////////////////////////////////////////////
- /////////////////////////////76+//8KCv//AAD//wAA//8AAP//AAD//y0t///q6v//////////
- /////////////////////////////////////////////////////////////////////////////xER
- //8AAP//AAD/////////////9vb///Dw///w8P//8PD///Dw///n5///4eH//+Hh///h4f//4eH//9XV
- ///R0f//0dH//9HR///R0f//wsL//7+///+4uP//cXH//xoa//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8uLv//iIj//+Li////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+Xl///CQn//wAA//8AAP//AAD//0JC//8AAP//AAD//wAA//+0tP//////////
- /////////////////////////////////////////////////////////////////////////////76+
- //8PD///AAD//wAA//8nJ///6ur/////////////////////////////////////////////////////
- ////////////////////////////////////////AwP//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//yAg//96ev//09P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////U1P//LS3//wAA
- //8AAP//AAD//wAA//8AAP//XFz/////////////////////////////////////////////////////
- /////////////////////////////////////////////8jI//8PD///JCT//+Tk////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Fhb//2tr///Fxf///f3/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////39///a2v//wEB//8AAP//AAD//xgY///s7P//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////8nJ///j4///////////////////////////////////////////////////////////
- /////////////////////////////////////////////wAA//8AAP//AgL//xER//8REf//ERH//xER
- //8REf//Fhb//yIi//8iIv//IiL//yIi//8iIv//KSn//zAw//8wMP//MDD//zAw//8wMP//Ojr//z8/
- //8/P///Xl7//7e3///6+v//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////srL//xQU//8AAP//ra3/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////5OT//4eH////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- 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
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAQAAAAIAAAEAIAAAAAAAACAEAAAA
- AAAAAAAAAAAAAAAAAAD/////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39//////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f/////////////////9/f3//AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////f39//wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39//////////////////39/f/8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/
- f////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39///////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP9/f3///////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/
- f///////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- //////////////////////////////////9/f3//AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP9/f3//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- ////////////////////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- /////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////
- ////////////////////////////////////////f39//wAAAP8AAAD/AAAA/39/f///////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/f39/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- /////////////////////////////39/f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- //////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////
- /////////////////////////////////////////////39/f/8AAAD/AAAA/wAAAP9/f3//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9/f3//AAAA/wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/39/f///////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////f39//wAAAP8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////39/f/8AAAD/AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f3//AAAA/wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f39//wAA
- AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- f/8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/f39/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f3//AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/39/f///////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f39//wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP9/f3//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////90dP//dHT/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////6+v//v7///11d//8NDf//Ghr//ycn//9ERP//U1P//2Fh//96ev//iIj//6Oj
- //+3t///xMT//+Hh///r6///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////6en//z8///+hof//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////90dP//AAD//wAA//9VVf//+vr/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////9LS//9xcf//Ghr//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//Jyf//0RE//9TU///YWH//3p6//+IiP//o6P//7y8
- ///Hx///4eH///Dw////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////8/P//zg4//8AAP//AAD//0FB
- ///c3P//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////90dP//AAD//wAA//8AAP//AAD//0FB
- ///z8///////////////////////////////////////////////////////////////////////////
- ///k5P//hIT//ysr//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//x4e//8sLP//RET//1ZW//9hYf//f3///4yM//+jo///vLz//8fH
- ///h4f//8PD/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////+vr//0xM//8AAP//AAD//wAA
- //8AAP//CAj//4aG///6+v//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////r6//9ra///AAD//wAA//8AAP//AAD//wAA
- //8AAP//Li7//+np////////////////////////////////////////////////////////8PD//56e
- //9DQ///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Hh7//yws//9ERP//Wlr//2Rk//9/f///kZH//+Xl////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////2dn//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Kir//8jI////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////r6//9VVf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8iIv//2dn///////////////////////////////////r6//+ysv//VVX//wgI
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+Hh///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////4OD//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//amr///Dw////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////r6//9VVf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xUV///Cwv//////////////////x8f//2lp//8VFf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//S0v/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////52d//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//qKj/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////r6//9VVf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//DQ3//6+v///r6///Jyf//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//CAj//1VV//+ysv//9vb//+Tk
- ///a2v//xMT//6+v//+env//f3///3Bw//9hYf//RET//zg4//8jI///CAj//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N
- ///29v///////////////////////////////////////////////////////8LC//9iYv//8/P/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////7Oz//8EBP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9NTf//4eH/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//9ISP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//e3v//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9HR///np7///Pz////////////////
- ///////////////////////////////////////////////////////////////////29v//4eH//8/P
- ///AwP//o6P//5GR//9/f///ZGT//1ZW//9ERP//LCz//x4e//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//w8P//////////////////////////////////////////////////8LC//8NDf//AAD//zU1
- ///p6f//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////8zM//8NDf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Jib//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N
- //+Pj///+vr/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////5GR//9/f///f3///39///9/f///f3///39/
- //9/f///f3///39///9/f///f3///39///9/f///f3///39///9/f///f3///39///9/f///f3///39/
- //9/f///f3///39///9/f///f3///39///9/f///f3///39///9/f///f3///39////R0f//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//88PP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//ykp//+Dg///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//MzP//5CQ///k5P//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+vr///h4f//xMT//7Oz
- //+jo///g4P//3d3//9hYf//TEz//0BA//8jI///DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//39//////////////////////////////////////////////6+v//8NDf//AAD//wAA
- //8AAP//Ghr//8zM////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////93d//8aGv//AAD//wAA
- //8AAP//AAD//wAA//8AAP//NTX///Pz///Q0P//Njb//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zEx///MzP//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8jI///AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//lZX/////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//88PP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//ykp///p6f///////6Gh//8EBP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//yIi//98fP//2dn/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////4eH//9bW//9aWv//AAD//wAA
- //8AAP//AAD//wAA//9ERP///////////////////////////////////////6ys//8EBP//AAD//wAA
- //8AAP//AAD//wAA//8NDf//qKj/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+np//8pKf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//IiL//+np//////////////r6//+Skv//DQ3//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//BAT//3Jy///z8///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////IyP//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//39/
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//88PP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//ykp///p6f//////////////////s7P//w0N//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Jib//8fH////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////s7P//wAA
- //8AAP//AAD//wAA//8AAP//CAj///b2/////////////////////////////6Wl//8EBP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+Dg///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////Pz//88PP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//FRX//9nZ/////////////////////////////+Hh//9NTf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Hh7//7Cw////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////yMj//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //96ev//////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zg4///p6f/////////////////////////////Cwv//FRX//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//0RE////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////Dw
- //8AAP//AAD//wAA//8AAP//AAD//wAA///Dw////////////////////////5OT//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1lZ///z8///////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////r6//9QUP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//DQ3//8LC/////////////////////////////////////////////6io
- //8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//VVX//+Xl////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////8jI///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//YWH/////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zw8///z8////////////////////////////////////////9nZ//8eHv//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9ERP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////NDT//wAA//8AAP//AAD//wAA//8AAP//f3///////////////////5OT//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//NTX//+np////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9ra///AAD//wAA
- //8AAP//AAD//wAA//8AAP//BAT//6ys////////////////////////////////////////////////
- ////////8PD//2Zm//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8REf//lpb///r6
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////IyP//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//2Fh////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zw8///z8///////////////////////////////////////////////////6en//ykp
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//FRX//8zM////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////3R0//8AAP//AAD//wAA//8AAP//AAD//0RE/////////////3h4//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//zMz/////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+IiP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//5OT////////////////////////////////////////////////
- ////////////////////////xcX//yoq//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //85Of//1NT/////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////wQE
- //8AAP//AAD//wAA//8AAP//AAD//39///9/f///f3///39///9/f///f3///39///9/f///f3///39/
- //9/f///f3///39///9/f///f3///39///9/f///f3///39///9/f///f3///39///9RUf//AAD//wAA
- //8AAP//AAD//wAA//9ISP//////////////////////////////////////////////////////////
- /////////////////////////////////////////////+Hh//8pKf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//0hI///z8///////////////////////////////////////////////////////////
- ///z8///PDz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//u7v/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+7u///AAD//wAA//8AAP//AAD//wAA//8EBP//8/P//3R0//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Ghr//7S0//8iIv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N
- //+oqP//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+hof//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//3h4////////////////////////////////////////////////
- ///////////////////////////////////29v//goL//wgI//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wQE//97e///9vb/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //8AAP//AAD//wAA//8AAP//AAD//wAA////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////r6///wAA
- //8AAP//AAD//wAA//8AAP//RET/////////////////////////////////////////////////////
- /////////////////////////////////////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//1VV///6+v//////////////////////////////////////////////////////////
- //////////////b2//9VVf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wQE//+lpf//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////8/P//wQE//8AAP//AAD//wAA//8AAP//AAD//0BA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Ghr//9nZ////////6en//zw8//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//4OD////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+3t///BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//1lZ////////////////////////////////////////////////
- ///////////////////////////////////////////////////Z2f//PT3//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//yIi//+5uf//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////AAD//wAA//8AAP//AAD//wAA//8AAP//////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////8TE
- //8AAP//AAD//wAA//8AAP//AAD//zAw////////////////////////////////////////////////
- /////////////////////////////////////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//1VV///6+v//////////////////////////////////////////////////////////
- ////////////////////////xMT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//4+P
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////87O///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//KSn//9nZ///////////////////6+v//YmL//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//WVn///Pz////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////MzP//DQ3//wAA
- //8AAP//AAD//wAA//8AAP//AAD//0FB///6+v//////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+dnf//ERH//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//11d///s7P//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////wAA//8AAP//AAD//wAA//8AAP//AAD/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///ExP//AAD//wAA//8AAP//AAD//wAA//8jI///////////////////////////////////////////
- /////////////////////////////////////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//1lZ///6+v//////////////////////////////////////////////////////////
- /////////////////////////////7Oz//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//dHT///r6////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////eHj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//KSn//+np//////////////////////////////////+Li///BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//81Nf//6en/////////////////////////////////////
- ///////////////////////////////////////////////////////////////////d3f//Ghr//wAA
- //8AAP//AAD//wAA//8AAP//AAD//ykp///z8///////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+np
- //9VVf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//ERH//52d////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////8AAP//AAD//wAA//8AAP//AAD//wAA////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////4eH//wAA//8AAP//AAD//wAA//8AAP//Fhb/////////////////////////////////////
- /////////////////////////////////////////////8LC//8aGv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3R0////////////////////////////////////////////////////////////////
- //////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9VVf//+vr/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////7u7//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//MTH//+np/////////////////////////////////////////////7Oz
- //8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xoa///MzP//////////////////////////
- ///////////////////////////////////////////////////////////////////p6f//KSn//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xoa///p6f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////7S0//8iIv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//a2v/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////AAD//wAA//8AAP//AAD//wAA//8AAP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////+Hh//8AAP//AAD//wAA//8AAP//AAD//wAA////////////////////////////////
- /////////////////////////////////////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3R0////////////////////////////////////////////////////////////////
- ////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zw8///z8///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////z8///BAT//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//PDz///Pz////////////////////////////////////////////////
- ////////1NT//yIi//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//DQ3//6io////////////////
- ///////////////////////////////////////////////////////////////////z8///PDz//wAA
- //8AAP//AAD//wAA//8AAP//AAD//w0N///Z2f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////8/P//3Jy//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//ERH//93d
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////wAA//8AAP//AAD//wAA//8AAP//Hh7/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////29v//AAD//wAA//8AAP//AAD//wAA//8AAP//9vb/////////////////////
- /////////////////////////////////////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3R0////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//KSn//+np////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9ra//+zs///iIj//7e3////////////////////////////////
- ////////////////////////////////////////////////////////6en//xER//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//PDz///Pz////////////////////////////////////////////////
- ///////////////////p6f//PDz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//g4P/////
- ///////////////////////////////////////////////////////////////////6+v//UFD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//+/v///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+Dg///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//7e3
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8AAP//AAD//wAA//8AAP//AAD//yMj////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////wAA//8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////
- /////////////////////////////////////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//5OT////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA
- //9RUf//Ghr//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//2dn/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///g4P//t7f//4yM//9hYf//ODj//w0N//8AAP//AAD//wAA//9aWv//////////////////////////
- ////////////////////////////////////////////////////////6en//ykp//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//VVX///b2////////////////////////////////////////////////
- //////////////////////////////r6//9iYv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //9ZWf//8/P/////////////////////////////////////////////////////////////b2///wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+oqP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+3t///BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//4OD
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////AAD//wAA//8AAP//AAD//wAA//8jI///////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8REf//AAD//wAA//8AAP//AAD//wAA///h4f//////////
- /////////////////////////////////////////////6ys//8ICP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//5OT////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA
- //8AAP//f3///+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xER///Cwv//////////
- ////////////////////////////////////////////////////////5+f//7y8//+Rkf//ZGT//zg4
- //8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//FRX/////////////////////
- ////////////////////////////////////////////////////////3d3//ykp//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//+vr////////////////////////////////////////////////
- /////////////////////////////////////////////4uL//8EBP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zU1///p6f//////////////////////////////////////////////////i4v//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+Pj///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////h4f//FRX//wAA//8AAP//AAD//wAA//8AAP//AAD//0hI
- ///6+v//////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////wAA//8AAP//AAD//wAA//8AAP//IyP/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////IyP//wAA//8AAP//AAD//wAA//8AAP//xMT/////
- /////////////////////////////////////////////6ys//8EBP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//5OT////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////6Oj//8AAP//AAD//wAA
- //8AAP//AAD//39/////////8PD//zw8//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//CAj//6ys
- /////////////////////////////+vr//+/v///kZH//2ho//88PP//ERH//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA///S0v//////////
- ////////////////////////////////////////////////////////2dn//xoa//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+zs///////////////////////////////////////////
- ////////////////////////////////////////////////////////s7P//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Ghr//8zM////////////////////////////////////////paX//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9vb///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////29v//MTH//wAA//8AAP//AAD//wAA//8AAP//AAD//yIi
- ///w8P//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8AAP//AAD//wAA//8AAP//AAD//yMj
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////ycn//8AAP//AAD//wAA//8AAP//AAD//8TE
- /////////////////////////////////////////////6ys//8EBP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//BAT//6Wl////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+env//AAD//wAA
- //8AAP//AAD//wAA//9/f//////////////z8///UFD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8EBP//lpb////////Z2f//RET//xYW//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//kZH/////
- ////////////////////////////////////////////////////////2dn//xoa//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//cHD/////////////////////////////////////
- ///////////////////////////////////////////////////////////////////U1P//IiL//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//qKj/////////////////////////////u7v//wQE
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9VVf//+vr/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////YmL//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N
- ///Q0P//////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////r6///AAD//wAA//8AAP//AAD//wAA
- //8jI///////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9ERP//AAD//wAA//8AAP//AAD//wAA
- //+rq////////////////////////////////////////6Wl//8EBP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//BAT//6ys////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f3///wAA
- //8AAP//AAD//wAA//8AAP//f3////////////////////r6//9nZ///AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//98fP//4eH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1NT
- ////////////////////////////////////////////////////////wsL//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zQ0////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+zs
- //9BQf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+Dg///////////////////0ND//w0N
- //8AAP//AAD//wAA//8AAP//AAD//wAA//88PP//8/P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////nZ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //+hof//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////4eH//wAA//8AAP//AAD//wAA
- //8AAP//IyP/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////RET//wAA//8AAP//AAD//wAA
- //8AAP//o6P//////////////////////////////////5OT//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//BAT//6ys////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- //8AAP//AAD//wAA//8AAP//AAD//39//////////////////////////////0tL//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//15e//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8NDf//+vr/////////////////////////////////////////////wsL//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//8PD/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////+vr//2dn//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1lZ///z8///4eH//xoa
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8pKf//7Oz/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////zMz//wgI//8AAP//AAD//wAA//8AAP//AAD//wAA
- //9ra///////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+Hh//8AAP//AAD//wAA
- //8AAP//AAD//yMj////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////15e//8AAP//AAD//wAA
- //8AAP//AAD//5GR/////////////////////////////5OT//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//DQ3//7Oz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f///AAD//wAA//8AAP//AAD//wAA//9/f///////////////////6en//1VV//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8ICP//CAj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//MDD//1pa//+IiP//q6v//wAA//8AAP//AAD//wAA
- //8AAP//AAD//8vL////////////////////////////////////////r6///w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//i4v//wgI//8AAP//AAD//wAA//8AAP//AAD//7Oz////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////k5P//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//NTX//ykp
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//3d3/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////7Oz//x4e//8AAP//AAD//wAA//8AAP//AAD//wAA
- //84OP//+vr/////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////h4f//AAD//wAA
- //8AAP//AAD//wAA//8jI///////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9hYf//AAD//wAA
- //8AAP//AAD//wAA//9/f////////////////////////5OT//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//DQ3//8LC////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f3///wAA//8AAP//AAD//wAA//8AAP//jIz/////////////nZ3//xER//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9FRf//4eH//zg4//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zAw//9WVv//f3///6+v///W1v//+vr///////////////////////80NP//AAD//wAA
- //8AAP//AAD//wAA//+Hh////////////////////////////////////////8LC//8NDf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//5OT//9ERP//AAD//wAA//8AAP//AAD//wAA//9tbf//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+3t///DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//zMz/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////+vr//0VF//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8aGv//5eX/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////4eH//wAA
- //8AAP//AAD//wAA//8AAP//IyP/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////c3P//wAA
- //8AAP//AAD//wAA//8AAP//d3f//////////////////4OD//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//DQ3//8LC////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39///8AAP//AAD//wAA//8AAP//AAD//6Oj///Z2f//QUH//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xER//+hof////////////9TU///AAD//wAA//8AAP//AAD//wAA
- //9wcP//0tL///b2////////////////////////////////////////////////////////cHD//wAA
- //8AAP//AAD//wAA//8AAP//R0f/////////////////////////////////////////////wsL//w0N
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//IiL//wAA//8AAP//AAD//wAA//8AAP//Kyv/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////9nZ//8mJv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//t7f/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////4CA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8EBP//v7//////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+Hh
- //8AAP//AAD//wAA//8AAP//AAD//yMj////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- //8AAP//AAD//wAA//8AAP//AAD//2Fh/////////////3R0//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Ghr//8LC////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f///AAD//wAA//8AAP//AAD//wAA//9CQv//CAj//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//1VV///s7P//////////////////aGj//wAA//8AAP//AAD//wAA
- //8AAP//f3///////////////////////////////////////////////////////////////////7u7
- //8AAP//AAD//wAA//8AAP//AAD//wgI///29v//////////////////////////////////////////
- ///Cwv//DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- ///n5///////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////7Oz//0FB//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//oaH/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////6+v//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//j4//////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///h4f//AAD//wAA//8AAP//AAD//wAA//88PP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //+IiP//AAD//wAA//8AAP//AAD//wAA//9hYf///////3R0//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Ghr//9nZ////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f3///wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Hh7//7S0/////////////////////////////4OD//8AAP//AAD//wAA
- //8AAP//AAD//2Rk////////////////////////////////////////////////////////////////
- ///z8///BAT//wAA//8AAP//AAD//wAA//8AAP//w8P/////////////////////////////////////
- /////////////8LC//8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//q6v/////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////6+v//Z2f//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//g4P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////93d//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//WVn/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////4eH//wAA//8AAP//AAD//wAA//8AAP//RET/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////o6P//wAA//8AAP//AAD//wAA//8AAP//RET//3R0//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Ghr//9nZ////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////2ho//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//b2////Pz//////////////////////////////////+jo///AAD//wAA
- //8AAP//AAD//wAA//9MTP//////////////////////////////////////////////////////////
- /////////////zs7//8AAP//AAD//wAA//8AAP//AAD//39/////////////////////////////////
- ////////////////////////2dn//xoa//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//2ho////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //+Tk///BAT//wAA//8AAP//AAD//wAA//8AAP//Z2f/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//8uLv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Li7///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////+Hh//8AAP//AAD//wAA//8AAP//AAD//0RE////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Hh7//9nZ////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9hYf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8qKv//yMj/////////////////////////////////////////////xMT//wAA
- //8AAP//AAD//wAA//8AAP//MDD/////////////////////////////////////////////////////
- /////////////8zM//8aGv//AAD//wAA//8AAP//AAD//wAA//8/P///////////////////////////
- ///////////////////////////////////Z2f//Ghr//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8rK///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////7e3//8NDf//AAD//wAA//8AAP//TEz///r6////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9ZWf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//DQ3//9nZ////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////h4f//AAD//wAA//8AAP//AAD//wAA//9ERP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////ExP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//KSn//+np////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////p6f//NTX//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wQE//+Cgv//+vr//////////////////////////////////////////////////93d
- //8AAP//AAD//wAA//8AAP//AAD//xER////////////////////////////////////////////////
- /////////////52d//8ICP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT///Pz////////////////
- /////////////////////////////////////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//+fn////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////2dn//yYm//8AAP//NTX///Pz////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+Skv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//6+v////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////4eH//wAA//8AAP//AAD//wAA//8AAP//RET/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////xMT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//KSn//+np////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+dnf//ERH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//zk5///Z2f//////////////////////////////////////////////////////////
- ///29v//AAD//wAA//8AAP//AAD//wAA//8AAP//8/P/////////////////////////////////////
- ////////+vr//2dn//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//x4e///p6f//////////
- ////////////////////////////////////////////////////////2dn//xoa//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+rq///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////s7P//YmL//+np////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+/v///BAT//wAA//8AAP//AAD//wAA
- //8AAP//AAD//4CA////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9ra//8AAP//AAD//wAA//8AAP//AAD//0RE////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9ra//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//KSn//+np////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9nZ//9BQf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//DQ3//5aW///6+v//////////////////////////////////////////////////////////
- /////////////xYW//8AAP//AAD//wAA//8AAP//AAD//9ra////////////////////////////////
- ////////6en//zg4//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//0FB///p6f//////////
- ///////////////////////////////////////////////////////////////////Z2f//KSn//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//YWH/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////p6f//Ghr//wAA//8AAP//AAD//wAA
- //8AAP//AAD//0VF///6+v//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////ExP//AAD//wAA//8AAP//AAD//wAA//9ERP//////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////h4f//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//PDz///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////+vr//4aG//8ICP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//SEj//+Xl////////////////////////////////////////////////////////////////
- //////////////////8wMP//AAD//wAA//8AAP//AAD//wAA//9VVf//kZH//7y8///g4P//////////
- ////////v7///xoa//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//3Bw///6+v//////////
- /////////////////////////////////////////////////////////////////////////////+np
- //8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//yMj///6+v//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////6+v//PDz//wAA//8AAP//AAD//wAA
- //8AAP//AAD//x4e///s7P//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////xMT//wAA//8AAP//AAD//wAA//8AAP//RET/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////6+v//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//PDz///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////yMj//y4u//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//8TE////////////////////////////////////////////////////////////////
- ////////////////////////TEz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wgI
- //80NP//U1P//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//CAj//6Gh////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////6en//ykp//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//VVX///r6////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////c3P//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wgI///MzP//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////8TE//8AAP//AAD//wAA//8AAP//AAD//0RE
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//PDz///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////z8///b2///wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA///ExP//////////////////////////////////////////////////////////
- /////////////////////////////2Rk//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Hh7//8zM////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////p6f//KSn//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9VVf//+vr/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////paX//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//+dnf//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////ExP//AAD//wAA//8AAP//AAD//wAA
- //9ERP//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////BAT//wAA//8AAP//AAD//wAA
- //8AAP//VVX///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+0tP//Hh7//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//xMT/////////////////////////////////////////////////////
- //////////////////////////////////9/f///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//RUX//+zs////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8mJv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//0xM
- ///z8///////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////1NT//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9nZ///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////xMT//wAA//8AAP//AAD//wAA
- //8AAP//RET/////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////yMj//8AAP//AAD//wAA
- //8AAP//VVX///r6////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////+np//9VVf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//w0N
- //8AAP//AAD//wAA//8AAP//AAD//8TE////////////////////////////////////////////////
- ////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//d3f///r6////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////kZH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//PDz///Pz////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////8/P//yYm//8AAP//AAD//wAA
- //8AAP//AAD//wAA//81Nf//9vb/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////8TE//8AAP//AAD//wAA
- //8AAP//AAD//1NT////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////8jI///AAD//wAA
- //8AAP//VVX///r6////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////52d//8REf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//MTH//8zM
- //9ERP//AAD//wAA//8AAP//AAD//wAA///ExP//////////////////////////////////////////
- /////////////////////////////////////////////87O//8nJ///AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//paX/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////8TE//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//88PP//8/P/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////0xM//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8VFf//5eX/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////ExP//AAD//wAA
- //8AAP//AAD//wAA//9hYf//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////QED//wAA
- //8AAP//a2v///r6////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////2dn//0FB//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8ICP//ior///r6
- ////////RET//wAA//8AAP//AAD//wAA//8AAP//4eH/////////////////////////////////////
- //////////////////////////////////////////////////////////////r6///a2v//t7f//5GR
- //9ra///TEz//x4e//8AAP//AAD//wAA//8AAP//AAD//wAA//8iIv//0ND/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////8/P//4KC//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zw8///z8///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////4iI//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8EBP//u7v/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////xMT//wAA
- //8AAP//AAD//wAA//8AAP//YWH/////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////0RE
- //8AAP//dHT/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///6+v//hob//wgI//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9BQf//3Nz/////
- /////////////0RE//8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////9vb//9bW//+zs///jIz//2ho//9eXv//7Oz/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////6+v//nZ3//xoa//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//PDz//+np////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////7u7//8EBP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//iIj/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////8TE
- //8AAP//AAD//wAA//8AAP//AAD//2Fh////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9TU///dHT/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///IyP//Li7//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xER//+dnf//////////
- //////////////////9ERP//AAD//wAA//8AAP//AAD//wAA///h4f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+ysv//Kir//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8pKf//6en/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+Hh//8VFf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//UVH/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///ExP//AAD//wAA//8AAP//AAD//wAA//9hYf//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////xcX/////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////Pz
- //9vb///BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1VV///l5f//////////
- ////////////////////////RET//wAA//8AAP//AAD//wAA//8AAP//4eH/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////8jI//9CQv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8nJ///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//ykp///p6f//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////b2//81Nf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//KSn///Pz////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////xMT//wAA//8AAP//AAD//wAA//8AAP//YWH/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////7S0
- //8eHv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//FRX//7Cw////////////////
- /////////////////////////////ycn//8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////3Nz//1lZ//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//0JC///IyP//+vr//1VV//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//KSn//+np
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9nZ///AAD//wAA
- //8AAP//AAD//wAA//8AAP//DQ3//9TU////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//2Fh////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+np
- //9FRf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9dXf//4eH/////
- //////////////////////////////////8jI///AAD//wAA//8AAP//AAD//wAA///h4f//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////s7P//cnL//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//MjL//7m5///////////////////6+v//VVX//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8pKf//5eX/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+hof//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//6io////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+jo///AAD//wAA//8AAP//AAD//wAA//9hYf//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////729//8yMv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wgI
- //92dv//8PD/////////////////////////////IyP//wAA//8AAP//AAD//wAA//8AAP//4eH/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////b2//+Kiv//ERH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8mJv//paX///////////////////////////////////r6//9VVf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//xoa///Z2f//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////MzP//CAj//wAA
- //8AAP//AAD//wAA//8AAP//AAD//3d3////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//YWH/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////6Gh//8iIv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//xER//+Ojv//9vb//////////////////yMj//8AAP//AAD//wAA//8AAP//AAD///b2
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////9zc//8eHv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xER
- //+Zmf//+vr/////////////////////////////////////////////+vr//1VV//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Ghr//9nZ////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////s7P//IiL//wAA
- //8AAP//AAD//wAA//8AAP//AAD//0FB///6+v//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//2Fh////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////9vb//46O//8REf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//yYm//+lpf////////////8jI///AAD//wAA//8AAP//AAD//wAA
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////yMj//zY2//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8EBP//amr///Dw////////////////////////////////////////////////////////dHT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//2dn/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////6+v//SEj//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+QkP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA//9hYf//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////8PD//3Z2//8ICP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zY2///Cwv//IyP//wAA//8AAP//AAD//wAA
- //8AAP//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////6+v//mZn//xER//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8VFf//nZ3/////////////////////////////////////////////////////
- //90dP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xoa///Z2f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////4CA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//3x8///6+v//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//a2v/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////4eH//2Fh
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////s7P//Zmb//wQE//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//85Of//3d3/////////////////////////////////////
- ////////+vr//ycn//8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//wsL/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////oaH//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//TEz///Pz////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//39/
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9mZv//8PD/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////0dH//0VF//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////MzP//OTn//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//9nZ////////////////////////////////
- /////////////3R0//8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//rKz/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////Cwv//FRX//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8uLv//4eH/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA
- //9/f///////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xUV//+oqP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////vb3//zIy//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //+dnf//FRX//wAA//8AAP//AAD//wAA//8AAP//AAD//yMj////////////////////////////////
- /////////////5OT//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//j4//////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////93d//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xoa
- ///Cwv//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA
- //8AAP//f3//////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////AwP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//0lJ///h4f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////oaH//yIi//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//5mZ///6+v//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////Dw//8yMv//AAD//wAA//8AAP//AAD//wAA//9tbf//////////////////////////
- /////////////6ys//8EBP//AAD//wAA//8AAP//AAD//wAA//8AAP//b2//////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////8/P//0VF//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//BAT//6Gh////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////6Oj//8AAP//AAD//wAA
- //8AAP//AAD//39/////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////xMT//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//CAj//4+P///6+v//////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////29v//jo7//xER//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//g4P/////////////////////////////////////
- /////////////////////////////////////////////7+///+Rkf//o6P//7e3///ExP//2tr//+Hh
- ///29v//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////Ghr//wAA//8AAP//AAD//wAA//8AAP//u7v/////////////////////
- /////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//UFD///r6////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////6+v//a2v//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//fHz///r6////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+jo///AAD//wAA
- //8AAP//AAD//wAA//9/f///////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////8TE//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//MTH//8jI
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////w8P//dnb//wgI
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//4OD////////////////////////////////
- //////////////////////////////////////////////////9oaP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8eHv//IyP//0BA//9ERP//YWH//2Rk//9/f///zc3/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////zs7//wAA//8AAP//AAD//wAA//8AAP//CAj///b2////////////////
- /////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//ODj///Pz////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+Wlv//BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9QUP//8/P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////iIj//wAA
- //8AAP//AAD//wAA//8AAP//f3//////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////ExP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8EBP//b2////Dw////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///h4f//YWH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+jo///////////////////////////
- ////////////////////////////////////////////////////////Vlb//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9CQv//u7v/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39///8AAP//AAD//wAA//8AAP//AAD//0tL////////////////
- /////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//Jib//+np////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////7e3
- //8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zEx///l5f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- //8AAP//AAD//wAA//8AAP//AAD//39/////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////2tr//wAA
- //8AAP//AAD//wAA//8AAP//IyP/////////////wMD//yoq//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8eHv//sLD/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//o6P/////////////////////
- /////////////////////////////////////////////////////////////0RE//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8yMv//qqr///r6////////////////////////////////////////////////////////////////
- //////////////////////////////////87O///AAD//wAA//8AAP//AAD//wAA//+Vlf//////////
- //////////////Pz//88PP//AAD//wAA//8AAP//AAD//wAA//8AAP//ERH//9nZ////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////1NT//yIi//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Ghr//8fH////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f///AAD//wAA//8AAP//AAD//wAA//9/f///////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+Hh
- //8AAP//AAD//wAA//8AAP//AAD//yMj///////////////////29v//fn7//wQE//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9RUf//5eX/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////6+v//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//6Oj////////////////
- //////////////////////////////////////////////////////////////////8nJ///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8mJv//lZX///b2////////////////////////////////////////////////
- ///////////////////////////////////s7P//AAD//wAA//8AAP//AAD//wAA//8AAP//3Nz/////
- //////////////r6//9VVf//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//8LC////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////p6f//PDz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8ICP//paX/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f3///wAA//8AAP//AAD//wAA//8AAP//f3//////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///h4f//AAD//wAA//8AAP//AAD//wAA//8AAP/////////////////////////////U1P//OTn//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N//+Wlv//+vr/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////4eH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+3t///////////
- ////////////////////////////////////////////////////////////////////////ERH//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//hYX///Dw////////////////////////////////
- ////////////////////////////////////////pqb//wAA//8AAP//AAD//wAA//8AAP//Jyf/////
- //////////////////90dP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//6io////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////b2//9dXf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //+AgP//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39///8AAP//AAD//wAA//8AAP//AAD//39/////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////4eH//wAA//8AAP//AAD//wAA//8AAP//AAD///////////////////////////////////r6
- //+Wlv//DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zk5///Q0P//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+Hh//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//xMT/////
- /////////////////////////////////////////////////////////////////////////////wAA
- //8AAP//AAD//wAA//8AAP//AAD//yMj//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8REf//i4v/////////////////////
- /////////////////////////////////////////////1pa//8AAP//AAD//wAA//8AAP//AAD//3Fx
- //////////////////+Tk///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//4uL////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////4iI//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//1BQ///z8///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9/f///AAD//wAA//8AAP//AAD//wAA//+Dg///////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////Pz//8AAP//AAD//wAA//8AAP//AAD//wAA////////////////////////////////
- /////////////+Xl//9NTf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//3d3
- ///29v//////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////h4f//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//8TE
- /////////////////////////////////////////////////////////////////////////////+Hh
- //8AAP//AAD//wAA//8AAP//AAD//w0N///////////////////k5P//4eH//8fH///ExP//q6v//319
- //8REf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//7Cw////////////////
- //////////////////////////////////////////////r6//8REf//AAD//wAA//8AAP//AAD//wAA
- //+/v/////////////+srP//BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//2tr////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////qKj//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//MTH//+Xl////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////f3///wAA//8AAP//AAD//wAA//8AAP//o6P/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////AAD//wAA//8AAP//AAD//wAA//8AAP//////////////////////////
- /////////////////////////////6ys//8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//IiL//7y8////////////////////////////////////////////////////////////////
- ////////////////////////////////////////4eH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- ///Hx///////////////////////////////////////////////////////////////////////////
- ///Pz///AAD//wAA//8AAP//AAD//wAA//8jI///////////////////////////////////////////
- ////////8PD//4yM//8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1VV////////////////
- ///////////////////////////////////////////////////Hx///AAD//wAA//8AAP//AAD//wAA
- //8NDf//9vb////////Cwv//DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//0hI///6+v//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////Hx///Ghr//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//x8f/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39///8AAP//AAD//wAA//8AAP//AAD//6Oj////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////wAA//8AAP//AAD//wAA//8AAP//AAD//+Tk////////////////
- ////////////////////////////////////////8PD//2Zm//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9WVv//////////////////////////////////////////////////////////
- /////////////////////////////////////////////+Hh//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//4eH/////////////////////////////////////////////////////////////////////
- ////////wMD//wAA//8AAP//AAD//wAA//8AAP//RET/////////////////////////////////////
- ////////////////////////3Nz//wQE//8AAP//AAD//wAA//8AAP//AAD//xER///s7P//////////
- ////////////////////////////////////////////////////////fHz//wAA//8AAP//AAD//wAA
- //8AAP//T0/////////Z2f//Ghr//wAA//8AAP//AAD//wAA//8AAP//AAD//zEx///z8///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////+Xl
- //8xMf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wgI//+lpf//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f///AAD//wAA//8AAP//AAD//wAA//+jo///////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8AAP//AAD//wAA//8AAP//AAD//wAA///h4f//////////
- ////////////////////////////////////////////////////////wMD//yoq//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//d3f/////////////////////////////////////////////////////
- ///////////////////////////////////////////////////h4f//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//+Hh////////////////////////////////////////////////////////////////
- /////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//1NT////////////////////////////////
- /////////////////////////////01N//8AAP//AAD//wAA//8AAP//AAD//wAA//+hof//////////
- /////////////////////////////////////////////////////////////y8v//8AAP//AAD//wAA
- //8AAP//AAD//5mZ///p6f//KSn//wAA//8AAP//AAD//wAA//8AAP//AAD//x4e///p6f//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////8/P//0xM//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//4CA////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f3///wAA//8AAP//AAD//wAA//8AAP//o6P/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////ERH//wAA//8AAP//AAD//wAA//8AAP//4eH/////
- ///////////////////////////////////////////////////////////////////29v//fn7//wQE
- //8AAP//AAD//wAA//8AAP//AAD//56e////////////////////////////////////////////////
- ////////////////////////////////////////////////////////4eH//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA///h4f//////////////////////////////////////////////////////////
- //////////////////+MjP//AAD//wAA//8AAP//AAD//wAA//9kZP//////////////////////////
- /////////////////////////////6Gh//8AAP//AAD//wAA//8AAP//AAD//wAA//9FRf//////////
- /////////////////////////////////////////////////////////////+Tk//8AAP//AAD//wAA
- //8AAP//AAD//wAA///U1P//PDz//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N///Z2f//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////6+v//fHz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//UFD///Pz
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39///8AAP//AAD//wAA//8AAP//AAD//6Oj
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////yMj//8AAP//AAD//wAA//8AAP//AAD//+Hh
- ////////////////////////////////////////////////////////////////////////////////
- //80NP//AAD//wAA//8AAP//AAD//wAA///AwP//////////////////////////////////////////
- /////////////////////////////////////////////////////////////8/P//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//8PD/////////////////////////////////////////////////////
- ////////////////////////d3f//wAA//8AAP//AAD//wAA//8AAP//f3//////////////////////
- /////////////////////////////+Xl//8REf//AAD//wAA//8AAP//AAD//wAA//8NDf//4eH/////
- //////////////////////////////////////////////////////////////////+env//AAD//wAA
- //8AAP//AAD//wAA//8nJ///VVX//wAA//8AAP//AAD//wAA//8AAP//AAD//wQE//+/v///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+dnf//BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8xMf//5eX/////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////9wcP//AAD//wAA//8AAP//AAD//wAA
- //+jo///////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8jI///AAD//wAA//8AAP//AAD//wAA
- ///Ly///////////////////////////////////////////////////////////////////////////
- ////////DQ3//wAA//8AAP//AAD//wAA//8AAP//4eH/////////////////////////////////////
- ///////////////////////////////////////////////////////////////////ExP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD/////////////////////////////////////////////////////
- /////////////////////////////2Fh//8AAP//AAD//wAA//8AAP//AAD//5qa////////////////
- //////////////////////////////////9NTf//AAD//wAA//8AAP//AAD//wAA//8AAP//j4//////
- ////////////////////////////////////////////////////////////////////////Vlb//wAA
- //8AAP//AAD//wAA//8AAP//DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+lpf//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////7+///8REf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//xoa///Hx///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////YWH//wAA//8AAP//AAD//wAA
- //8AAP//o6P/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////IyP//wAA//8AAP//AAD//wAA
- //8AAP//xMT/////////////////////////////////////////////////////////////////////
- ////////6+v//wAA//8AAP//AAD//wAA//8AAP//BAT/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////xMT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA////////////////////////////////////////////////
- //////////////////////////////////9MTP//AAD//wAA//8AAP//AAD//wAA//8EBP//LCz//09P
- //9wcP//lZX//7y8///d3f////////////+hof//AAD//wAA//8AAP//AAD//wAA//8AAP//OTn///r6
- ////////////////////////////////////////////////////////////////////////9vb//w0N
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+Dg///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////2dn//ykp//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//CAj//6Wl////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////2Fh//8AAP//AAD//wAA
- //8AAP//AAD//6Oj////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////yws//8AAP//AAD//wAA
- //8AAP//AAD//8TE////////////////////////////////////////////////////////////////
- /////////////8vL//8AAP//AAD//wAA//8AAP//AAD//yws////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////8TE
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//////////////////////////////////////////
- ////////////////////////////////////////ODj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//8sLP//DQ3//wAA//8AAP//AAD//wAA//8AAP//BAT//9TU
- /////////////////////////////////////////////////////////////////////////////7+/
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9iYv//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////r6////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////w8P//QUH//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//gID/////////////////////////////////////
- //////////////////////////////////////////////////////////////////9hYf//AAD//wAA
- //8AAP//AAD//wAA//+jo///////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9ERP//AAD//wAA
- //8AAP//AAD//wAA///ExP//////////////////////////////////////////////////////////
- //////////////////+rq///AAD//wAA//8AAP//AAD//wAA//9MTP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///ExP//AAD//wAA//8AAP//AAD//wAA//8AAP//IyP/////////////////////////////////////
- /////////////////////////////////////////////yMj//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//4KC
- ////////////////////////////////////////////////////////////////////////////////
- //90dP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9FRf//+vr/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////7S0//88PP//8/P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////r6
- //9nZ///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9QUP//8/P/////////////////////
- ////////////////////////////////////////////////////////////////////////YWH//wAA
- //8AAP//AAD//wAA//8AAP//o6P/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////RET//wAA
- //8AAP//AAD//wAA//8AAP//q6v/////////////////////////////////////////////////////
- ////////////////////////bW3//wAA//8AAP//AAD//wAA//8AAP//a2v/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////xMT//wAA//8AAP//AAD//wAA//8AAP//AAD//yMj////////////////////////////////
- //////////////////////////////////////////////////8EBP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//yoq
- ///29v//////////////////////////////////////////////////////////////////////////
- ////////Kyv//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8uLv//8/P/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////Dw//8eHv//AAD//zw8///z8///////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////4+P//8EBP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zEx///l5f//////////
- /////////////////////////////////////////////////////////////////////////////2Fh
- //8AAP//AAD//wAA//8AAP//AAD//6Oj////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////0RE
- //8AAP//AAD//wAA//8AAP//AAD//6Oj////////////////////////////////////////////////
- ///////////////////6+v//d3f//wAA//8AAP//AAD//wAA//8AAP//AAD//4yM////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////8TE//8AAP//AAD//wAA//8AAP//AAD//wAA//8jI///////////////////////////
- ///////////////////////////////////////////////////w8P//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- ///IyP//////////////////////////////////////////////////////////////////////////
- ////////3Nz//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//6en/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9vb///AAD//wAA//8AAP//PDz///Pz////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////s7P//w0N//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Ghr//8fH
- ////////////////////////////////////////////////////////////////////////////////
- //9hYf//AAD//wAA//8AAP//AAD//wAA///ExP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9ISP//AAD//wAA//8AAP//AAD//wAA//+jo///////////////////////////////////////////
- ///////////////////z8///SEj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+zs///////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////+8vP//AAD//wAA//8AAP//AAD//wAA//8AAP//NDT/////////////////////
- ////////////////////////////////////////////////////////9vb//6+v//+IiP//ZGT//0hI
- //8eHv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //9vb///////////////////////////////////////////////////////////////////////////
- /////////////5WV//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8NDf//0ND/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////AwP//AAD//wAA//8AAP//AAD//wAA//8uLv//6en/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////Q0P//Hh7//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8ICP//paX/////////////////////////////////////////////////////////////////////
- ////////YWH//wAA//8AAP//AAD//wAA//8AAP//xMT/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////YWH//wAA//8AAP//AAD//wAA//8AAP//o6P/////////////////////////////////////
- ///////////////////Z2f//KSn//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//2dn/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//AAD//0RE////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////b2///a2v//t7f//5GR//9wcP//T0///yws//8ICP//AAD//wAA//8AAP//AAD//wAA
- //8iIv//8/P/////////////////////////////////////////////////////////////////////
- //////////////////9LS///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//t7f/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////z8///IiL//wAA//8AAP//AAD//wAA//8AAP//AAD//ykp
- ///p6f//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+np//84OP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//+AgP//////////////////////////////////////////////////////////
- /////////////2Fh//8AAP//AAD//wAA//8AAP//AAD//8TE////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////2Fh//8AAP//AAD//wAA//8AAP//AAD//4yM////////////////////////////////
- //////////////////+7u///ERH//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//nZ3/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//wAA//9ERP//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+Tk///AwP//np7//3d3
- //9WVv//t7f/////////////////////////////////////////////////////////////////////
- ///////////////////29v//CAj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//nZ3/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////cnL//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//KSn//+np////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////8/P//1VV//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//6Ki////////////////////////////////////////////////
- //////////////////9hYf//AAD//wAA//8AAP//AAD//wAA///ExP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9hYf//AAD//wAA//8AAP//AAD//wAA//9/f///////////////////////////
- //////////////////+Tk///BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//wsL/////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA//8AAP//RET/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////t7f//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//gID/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////yMj//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8iIv//2dn/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////Pz//88PP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//3R0////////////////////////////////////////////////
- ////////////////////////YWH//wAA//8AAP//AAD//wAA//8AAP//xMT/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////YWH//wAA//8AAP//AAD//wAA//8AAP//f3//////////////////////
- //////////////r6//9nZ///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8xMf//5eX/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA//8AAP//AAD//2Fh
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////2ho//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//XV3/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////9vb//yoq//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xoa///Z2f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////Pz//88PP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//3R0////////////////////////////////////////////////
- /////////////////////////////1pa//8AAP//AAD//wAA//8AAP//AAD//8TE////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////39///8AAP//AAD//wAA//8AAP//AAD//39/////////////////
- /////////////+np//9BQf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//9ZWf//8/P/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////6Oj//8AAP//AAD//wAA//8AAP//AAD//wAA
- //9hYf//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//PDz///r6
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////3d3//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Ghr//9nZ////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////Pz//88PP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//1VV///6+v//////////////////////////////////////////
- //////////////////////////////////9ERP//AAD//wAA//8AAP//AAD//wAA///ExP//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////9/f///AAD//wAA//8AAP//AAD//wAA//9wcP//////////
- /////////////9TU//8iIv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+IiP//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+jo///AAD//wAA//8AAP//AAD//wAA
- //8AAP//YWH/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9nZ//8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//KSn///Dw
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////9DQ//8EBP//AAD//wAA//8AAP//AAD//wAA
- //8ICP//Xl7//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//x8f/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////r6//88PP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//1VV///6+v//////////////////////////////////////////
- ////////////////////////////////////////RET//wAA//8AAP//AAD//wAA//8AAP//xMT/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////f3///wAA//8AAP//AAD//wAA//8AAP//YWH/////
- /////////////6+v//8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N//+zs///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3Bw////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//2Nj
- ///29v//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////r6//8xMf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//j4////////+Li///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N///Cwv//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////r6//9VVf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//1VV///6+v//////////////////////////////////////////
- /////////////////////////////////////////////0RE//8AAP//AAD//wAA//8AAP//AAD//8TE
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////39///8AAP//AAD//wAA//8AAP//AAD//zAw
- //9eXv//PDz//xYW//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//yYm///U1P//////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////4OD//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9/f///////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//MTH//9nZ////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+Cgv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//OTn///r6/////////////5OT//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//DQ3//8LC
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////r6//9VVf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//0hI///6+v//////////////////////////////////////////
- //////////////////////////////////////////////////9ERP//AAD//wAA//8AAP//AAD//wAA
- ///ExP//////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////+env//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//0VF///s7P//////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9/f///AAD//wAA
- //8AAP//AAD//wAA//8AAP//f3//////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8NDf//np7/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////Q0P//BAT//wAA//8AAP//AAD//wAA
- //8AAP//CAj//9nZ////////////////////////k5P//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8NDf//t7f/////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////r6//9VVf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zw8///z8///////////////////////////////////////////
- ////////////////////////////////////////////////////////RET//wAA//8AAP//AAD//wAA
- //8AAP//xMT/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////o6P//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//3Bw///6+v//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////f3///wAA
- //8AAP//AAD//wAA//8AAP//AAD//39/////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9ZWf//8PD/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////6+v//OTn//wAA//8AAP//AAD//wAA
- //8AAP//AAD//4+P//////////////////////////////////+Tk///AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wQE//+srP//////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9ZWf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zw8///z8///////////////////////////////////////////
- /////////////////////////////////////////////////////////////0RE//8AAP//AAD//wAA
- //8AAP//AAD//9ra////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////6Oj//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//52d////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////39/
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+jo///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//xER
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//yIi///IyP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////j4///wAA//8AAP//AAD//wAA
- //8AAP//AAD//zY2///6+v///////////////////////////////////////6Wl//8EBP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//BAT//6ys////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////90dP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zw8///z8///////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9ERP//AAD//wAA
- //8AAP//AAD//wAA///h4f//////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////+jo///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//Ghr//8LC////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9/f///AAD//wAA//8AAP//AAD//wAA//8AAP//o6P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT
- ///s7P//SEj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//4uL////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////2dn//wgI//8AAP//AAD//wAA
- //8AAP//AAD//wQE///Q0P//////////////////////////////////////////////////rKz//wQE
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8EBP//qKj/////////////////////////////////////
- //////////////////////////////////////////////////////////////////90dP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//ykp///z8///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////RET//wAA
- //8AAP//AAD//wAA//8AAP//4eH/////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////vLz//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8aGv//S0v//+Xl////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////f3///wAA//8AAP//AAD//wAA//8AAP//AAD//6Oj////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT
- //////////////////+Skv//CAj//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//RUX//+np
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////zk5//8AAP//AAD//wAA
- //8AAP//AAD//wAA//+Cgv//////////////////////////////////////////////////////////
- //+srP//BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+Tk///////////////////////////
- //////////////////////////////////////////////////////////////////90dP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//ykp///p6f//////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////0RE
- //8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////8TE
- //8AAP//AAD//wAA//8nJ///TEz//2ho//+MjP//s7P//9bW///z8///////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////39///8AAP//AAD//wAA//8AAP//AAD//wAA//8WFv//PDz//1NT//9oaP//f3///56e
- //+3t///z8///+Tk////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT
- /////////////////////////////9DQ//8qKv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8VFf//t7f/////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////5aW//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8xMf//+vr/////////////////////////////////////////////////////
- /////////////6ys//8EBP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT////////////////
- //////////////////////////////////////////////////////////////////+AgP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//ykp///p6f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //9ERP//AAD//wAA//8AAP//AAD//wAA///h4f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///p6f//vLz//93d////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////9iYv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//x4e//84OP//T0///2Rk//9/f///mpr//7Oz///Ly///4eH/////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT
- ////////////////////////////////////////8/P//2tr//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//9zc///+vr/////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+Hh//8NDf//AAD//wAA
- //8AAP//AAD//wAA//8EBP//0ND/////////////////////////////////////////////////////
- ////////////////////////t7f//w0N//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//k5P/////
- //////////////////////////////////////////////////////////////////+Tk///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//ykp///p6f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////RET//wAA//8AAP//AAD//wAA//8AAP//4eH/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////0tL//3Fx//8eHv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Ghr//zQ0//9MTP//YWH//3p6//+Vlf//r6///8fH///h4f//+vr/////////////////////
- /////////////////////////////+np//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//5OT
- ////////////////////////////////////////////////////////rKz//xER//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//zEx///d3f//////////////////////////////////////////
- //////////////////////////////////////////////////////////////////9BQf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//goL/////////////////////////////////////////////////////
- ///////////////////////////////////Cwv//DQ3//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //94eP////////////////////////////////////////////////////////////+Tk///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xoa///d3f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////ycn//8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////9zc
- //+EhP//Jyf//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8WFv//MDD//0hI
- //9hYf//d3f//5GR//+rq///xMT//9bW//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6Gh
- ///////////////////////////////////////////////////////////////////h4f//PDz//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//DQ3//6Gh////////////////////////////////
- //////////////////////////////////////////////////////////////////+Zmf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Kir///b2////////////////////////////////////////////////
- /////////////////////////////////////////////8LC//8NDf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//3R0//////////////////////////////////////////////////+Tk///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xoa///Z2f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////8jI///AAD//wAA//8AAP//AAD//wAA///h4f//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////s7P//kJD//zs7
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6ys
- //////////////////////////////////////////////////////////////////////////////r6
- //+Dg///BAT//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//WVn///Pz////////////////
- ///////////////////////////////////////////////////////////////////l5f//ERH//wAA
- //8AAP//AAD//wAA//8AAP//BAT//8jI////////////////////////////////////////////////
- ////////////////////////////////////////////////////////wsL//w0N//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//dHT///////////////////////////////////////+dnf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xoa///Z2f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////IyP//wAA//8AAP//AAD//wAA//8AAP//4eH/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////8/P//6am//9HR///BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//wQE
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6ys
- ////////////////////////////////////////////////////////////////////////////////
- /////////////8PD//8iIv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8iIv//zMz/////
- ////////////////////////////////////////////////////////////////////////TU3//wAA
- //8AAP//AAD//wAA//8AAP//AAD//3d3////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////MzP//Ghr//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9dXf//+vr///////////////////////+srP//BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//xER///Z2f//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////yMj//8AAP//AAD//wAA//8AAP//AAD//+Hh////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////b2//+ysv//WVn//wgI//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8/P///lZX//+zs
- ////////6+v//9bW///AwP//o6P//4OD//9ra///Vlb//0BA//8jI///BAT//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6ys
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////8PD//1VV//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wQE
- //+Li///////////////////////////////////////////////////////////////////oaH//wAA
- //8AAP//AAD//wAA//8AAP//AAD//yoq///29v//////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////9nZ
- //8aGv//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//1VV///6+v////////////+srP//BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//w0N///Cwv//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////8jI///AAD//wAA//8AAP//AAD//wAA///h4f//////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////wsL//2Rk//8VFf//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//MzP//4SE///k5P//////////
- ///////////////////////////////////////////////////////////////////r6///1tb//8DA
- //+jo///g4P//2tr//9WVv//QED//yMj//8EBP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6ys
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////mZn//w0N//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//0VF///p6f//////////////////////////////////////////////////7Oz//xER
- //8AAP//AAD//wAA//8AAP//AAD//wQE///IyP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////2dn//xoa//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//VVX///r6//+srP//BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//w0N///Cwv//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////IyP//wAA//8AAP//AAD//wAA//8AAP//8/P/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////9LS//95ef//Hh7//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//x4e//98fP//0tL/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////+vr///W1v//wMD//6Oj//+Dg///a2v//1ZW
- //9AQP//IyP//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//BAT//6ys
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////Z2f//MTH//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//Ghr//7e3/////////////////////////////////////////////1VV
- //8AAP//AAD//wAA//8AAP//AAD//wAA//9vb///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////Z2f//Ghr//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//89Pf//BAT//wAA
- //8AAP//AAD//wAA//8AAP//AAD//w0N///Cwv//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////yMj//8AAP//AAD//wAA//8AAP//AAD/////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////g4P//hIT//y4u//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8VFf//aWn//8fH////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////6+v//9bW///AwP//o6P//4OD//9ra///Vlb//0BA//8jI///CAj//6ys
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////b2//9zc///AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//d3f///r6/////////////////////////////6ys
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8iIv//8/P/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////93d//8pKf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//+7u///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////8jI///AAD//wAA//8AAP//AAD//wAA
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////7Oz//5WV//8/P///AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//DQ3//11d//+2tv//+vr/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////7e3
- //8VFf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//81Nf//3d3//////////////////+zs
- //8VFf//AAD//wAA//8AAP//AAD//wAA//8AAP//wMD/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////6en//ykp//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//+srP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////IyP//wAA//8AAP//AAD//wAA
- //8AAP//////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////////////////Pz
- //+mpv//S0v//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wQE//9OTv//pqb///Pz////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////6en//0VF//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N//+lpf//////////
- //9iYv//AAD//wAA//8AAP//AAD//wAA//8AAP//b2//////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////p6f//KSn//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//+srP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////yMj//8AAP//AAD//wAA
- //8AAP//AAD/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////6+v//trb//11d
- //8NDf//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//Pz///56e///s7P//////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////j4///wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//15e
- //+qqv//AAD//wAA//8AAP//AAD//wAA//8AAP//IiL///Pz////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////+np//8pKf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wQE//+srP//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////////////////////////8jI///AAD//wAA
- //8AAP//AAD//wAA////////////////////////+vr//+Hh///h4f//4eH//+Hh///h4f//4eH//+Hh
- ///h4f//4eH//9ra///ExP//xMT//8TE///ExP//xMT//8TE///ExP//xMT//8TE//+zs///o6P//6Oj
- //+jo///o6P//6Oj//+jo///o6P//6Oj//+jo///jIz//39///9/f///f3///39///9kZP//FRX//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//zMz
- //+IiP//5OT/////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////MzP//Jib//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//729////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////6en//zw8
- //8AAP//AAD//wAA//8AAP//AAD//wAA//+amv//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////DQ3//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8iIv//fHz//9XV
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////////////////////////////////Pz//9iYv//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//2Ji////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///z8///PDz//wAA//8AAP//AAD//wAA//+Tk///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////////////////////wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//FRX//21t///Hx///////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////////////////////6io//8NDf//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//x4e///w8P//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////Pz//88PP//AAD//wAA//+Tk///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//w0N//9dXf//u7v///r6////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////4eH//zk5
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//+0tP//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////8/P//zw8//+Pj///////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8ICP//UlL//6qq///29v//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///6+v//e3v//wQE//8AAP//AAD//wAA//8AAP//AAD//wAA//9iYv//////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////29v//////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA
- //8AAP//AAD//wAA//8AAP//AAD//0ND//+env//7Oz/////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////AwP//Hh7//wAA//8AAP//AAD//wAA//8aGv//8PD/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- //////////////////8AAP//AAD//wAA//8AAP//AAD//wgI//8jI///IyP//yMj//8jI///IyP//yMj
- //8jI///IyP//yMj//8jI///IyP//zg4//9ERP//RET//0RE//9ERP//RET//0RE//9ERP//RET//0RE
- //9ERP//RET//2Fh//9hYf//YWH//2Fh//9hYf//YWH//2Fh//9hYf//YWH//2Fh//9hYf//a2v//39/
- //9/f///f3///39///9/f///lZX//+Tk////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////+zs//9RUf//AAD//wAA//8AAP//rKz/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- /////////////////////////////////////////////5aW//8ICP//VVX/////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////1NT//+zs////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- 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
- 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
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
-
-
-
\ No newline at end of file
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs
index fe1250e..0b34ae8 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs
@@ -37,35 +37,76 @@ namespace RBXLegacyLauncher
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CharacterCustomization));
- this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
+ this.tabControl1 = new System.Windows.Forms.TabControl();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.ChangeFaceButton42 = new System.Windows.Forms.Button();
+ this.PartShapeButton41 = new System.Windows.Forms.Button();
+ this.RandColorsButton39 = new System.Windows.Forms.Button();
+ this.ResetColorsButton40 = new System.Windows.Forms.Button();
+ this.PartSelectionLabel2 = new System.Windows.Forms.Label();
+ this.PartLabel1 = new System.Windows.Forms.Label();
+ this.ColorButton35 = new System.Windows.Forms.Button();
+ this.ColorButton36 = new System.Windows.Forms.Button();
+ this.ColorButton37 = new System.Windows.Forms.Button();
+ this.ColorButton38 = new System.Windows.Forms.Button();
+ this.ColorButton31 = new System.Windows.Forms.Button();
+ this.ColorButton32 = new System.Windows.Forms.Button();
+ this.ColorButton33 = new System.Windows.Forms.Button();
+ this.ColorButton34 = new System.Windows.Forms.Button();
+ this.ColorButton27 = new System.Windows.Forms.Button();
+ this.ColorButton28 = new System.Windows.Forms.Button();
+ this.ColorButton29 = new System.Windows.Forms.Button();
+ this.ColorButton30 = new System.Windows.Forms.Button();
+ this.ColorButton23 = new System.Windows.Forms.Button();
+ this.ColorButton24 = new System.Windows.Forms.Button();
+ this.ColorButton25 = new System.Windows.Forms.Button();
+ this.ColorButton26 = new System.Windows.Forms.Button();
+ this.ColorButton19 = new System.Windows.Forms.Button();
+ this.ColorButton20 = new System.Windows.Forms.Button();
+ this.ColorButton21 = new System.Windows.Forms.Button();
+ this.ColorButton22 = new System.Windows.Forms.Button();
+ this.ColorButton15 = new System.Windows.Forms.Button();
+ this.ColorButton16 = new System.Windows.Forms.Button();
+ this.ColorButton17 = new System.Windows.Forms.Button();
+ this.ColorButton18 = new System.Windows.Forms.Button();
+ this.ColorButton11 = new System.Windows.Forms.Button();
+ this.ColorButton12 = new System.Windows.Forms.Button();
+ this.ColorButton13 = new System.Windows.Forms.Button();
+ this.ColorButton14 = new System.Windows.Forms.Button();
+ this.ColorButton10 = new System.Windows.Forms.Button();
+ this.ColorButton9 = new System.Windows.Forms.Button();
+ this.ColorButton8 = new System.Windows.Forms.Button();
+ this.ColorButton7 = new System.Windows.Forms.Button();
+ this.LLegButton6 = new System.Windows.Forms.Button();
+ this.RLegButton5 = new System.Windows.Forms.Button();
+ this.LArmButton4 = new System.Windows.Forms.Button();
+ this.RArmButton3 = new System.Windows.Forms.Button();
+ this.TorsoButton2 = new System.Windows.Forms.Button();
+ this.HeadButton1 = new System.Windows.Forms.Button();
+ this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.label4 = new System.Windows.Forms.Label();
+ this.label5 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
- this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.tabControl1.SuspendLayout();
+ this.tabPage2.SuspendLayout();
+ this.tabPage3.SuspendLayout();
+ this.tabPage4.SuspendLayout();
this.SuspendLayout();
//
- // button1
- //
- this.button1.Location = new System.Drawing.Point(9, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(72, 23);
- this.button1.TabIndex = 31;
- this.button1.Text = "Body";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.Button1Click);
- //
// button2
//
- this.button2.Location = new System.Drawing.Point(87, 12);
+ this.button2.Location = new System.Drawing.Point(133, 6);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(67, 23);
this.button2.TabIndex = 32;
@@ -75,7 +116,7 @@ namespace RBXLegacyLauncher
//
// radioButton1
//
- this.radioButton1.Location = new System.Drawing.Point(16, 150);
+ this.radioButton1.Location = new System.Drawing.Point(63, 23);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(40, 16);
this.radioButton1.TabIndex = 34;
@@ -85,7 +126,7 @@ namespace RBXLegacyLauncher
//
// radioButton2
//
- this.radioButton2.Location = new System.Drawing.Point(16, 172);
+ this.radioButton2.Location = new System.Drawing.Point(109, 23);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(50, 16);
this.radioButton2.TabIndex = 35;
@@ -95,7 +136,7 @@ namespace RBXLegacyLauncher
//
// radioButton3
//
- this.radioButton3.Location = new System.Drawing.Point(87, 150);
+ this.radioButton3.Location = new System.Drawing.Point(174, 23);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(50, 16);
this.radioButton3.TabIndex = 36;
@@ -106,7 +147,7 @@ namespace RBXLegacyLauncher
// radioButton4
//
this.radioButton4.Checked = true;
- this.radioButton4.Location = new System.Drawing.Point(87, 172);
+ this.radioButton4.Location = new System.Drawing.Point(230, 23);
this.radioButton4.Name = "radioButton4";
this.radioButton4.Size = new System.Drawing.Size(53, 16);
this.radioButton4.TabIndex = 37;
@@ -117,102 +158,667 @@ namespace RBXLegacyLauncher
//
// label1
//
- this.label1.Location = new System.Drawing.Point(51, 130);
+ this.label1.Location = new System.Drawing.Point(136, 3);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 17);
this.label1.TabIndex = 38;
this.label1.Text = "Icon Type";
//
+ // tabControl1
+ //
+ this.tabControl1.Controls.Add(this.tabPage2);
+ this.tabControl1.Controls.Add(this.tabPage3);
+ this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Location = new System.Drawing.Point(12, 12);
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.Size = new System.Drawing.Size(455, 270);
+ this.tabControl1.TabIndex = 48;
+ //
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.ChangeFaceButton42);
+ this.tabPage2.Controls.Add(this.PartShapeButton41);
+ this.tabPage2.Controls.Add(this.RandColorsButton39);
+ this.tabPage2.Controls.Add(this.ResetColorsButton40);
+ this.tabPage2.Controls.Add(this.PartSelectionLabel2);
+ this.tabPage2.Controls.Add(this.PartLabel1);
+ this.tabPage2.Controls.Add(this.ColorButton35);
+ this.tabPage2.Controls.Add(this.ColorButton36);
+ this.tabPage2.Controls.Add(this.ColorButton37);
+ this.tabPage2.Controls.Add(this.ColorButton38);
+ this.tabPage2.Controls.Add(this.ColorButton31);
+ this.tabPage2.Controls.Add(this.ColorButton32);
+ this.tabPage2.Controls.Add(this.ColorButton33);
+ this.tabPage2.Controls.Add(this.ColorButton34);
+ this.tabPage2.Controls.Add(this.ColorButton27);
+ this.tabPage2.Controls.Add(this.ColorButton28);
+ this.tabPage2.Controls.Add(this.ColorButton29);
+ this.tabPage2.Controls.Add(this.ColorButton30);
+ this.tabPage2.Controls.Add(this.ColorButton23);
+ this.tabPage2.Controls.Add(this.ColorButton24);
+ this.tabPage2.Controls.Add(this.ColorButton25);
+ this.tabPage2.Controls.Add(this.ColorButton26);
+ this.tabPage2.Controls.Add(this.ColorButton19);
+ this.tabPage2.Controls.Add(this.ColorButton20);
+ this.tabPage2.Controls.Add(this.ColorButton21);
+ this.tabPage2.Controls.Add(this.ColorButton22);
+ this.tabPage2.Controls.Add(this.ColorButton15);
+ this.tabPage2.Controls.Add(this.ColorButton16);
+ this.tabPage2.Controls.Add(this.ColorButton17);
+ this.tabPage2.Controls.Add(this.ColorButton18);
+ this.tabPage2.Controls.Add(this.ColorButton11);
+ this.tabPage2.Controls.Add(this.ColorButton12);
+ this.tabPage2.Controls.Add(this.ColorButton13);
+ this.tabPage2.Controls.Add(this.ColorButton14);
+ this.tabPage2.Controls.Add(this.ColorButton10);
+ this.tabPage2.Controls.Add(this.ColorButton9);
+ this.tabPage2.Controls.Add(this.ColorButton8);
+ this.tabPage2.Controls.Add(this.ColorButton7);
+ this.tabPage2.Controls.Add(this.LLegButton6);
+ this.tabPage2.Controls.Add(this.RLegButton5);
+ this.tabPage2.Controls.Add(this.LArmButton4);
+ this.tabPage2.Controls.Add(this.RArmButton3);
+ this.tabPage2.Controls.Add(this.TorsoButton2);
+ this.tabPage2.Controls.Add(this.HeadButton1);
+ this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(447, 244);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "BODY";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // ChangeFaceButton42
+ //
+ this.ChangeFaceButton42.Location = new System.Drawing.Point(298, 202);
+ this.ChangeFaceButton42.Name = "ChangeFaceButton42";
+ this.ChangeFaceButton42.Size = new System.Drawing.Size(131, 23);
+ this.ChangeFaceButton42.TabIndex = 88;
+ this.ChangeFaceButton42.Text = "Change Face";
+ this.ChangeFaceButton42.UseVisualStyleBackColor = true;
+ //
+ // PartShapeButton41
+ //
+ this.PartShapeButton41.Location = new System.Drawing.Point(164, 202);
+ this.PartShapeButton41.Name = "PartShapeButton41";
+ this.PartShapeButton41.Size = new System.Drawing.Size(131, 23);
+ this.PartShapeButton41.TabIndex = 87;
+ this.PartShapeButton41.Text = "Change Part Shape";
+ this.PartShapeButton41.UseVisualStyleBackColor = true;
+ //
+ // RandColorsButton39
+ //
+ this.RandColorsButton39.Location = new System.Drawing.Point(164, 174);
+ this.RandColorsButton39.Name = "RandColorsButton39";
+ this.RandColorsButton39.Size = new System.Drawing.Size(131, 23);
+ this.RandColorsButton39.TabIndex = 86;
+ this.RandColorsButton39.Text = "Randomize Colors";
+ this.RandColorsButton39.UseVisualStyleBackColor = true;
+ this.RandColorsButton39.Click += new System.EventHandler(this.RandColorsButton39Click);
+ //
+ // ResetColorsButton40
+ //
+ this.ResetColorsButton40.Location = new System.Drawing.Point(298, 174);
+ this.ResetColorsButton40.Name = "ResetColorsButton40";
+ this.ResetColorsButton40.Size = new System.Drawing.Size(131, 23);
+ this.ResetColorsButton40.TabIndex = 85;
+ this.ResetColorsButton40.Text = "Reset Colors";
+ this.ResetColorsButton40.UseVisualStyleBackColor = true;
+ this.ResetColorsButton40.Click += new System.EventHandler(this.ResetColorsButton40Click);
+ //
+ // PartSelectionLabel2
+ //
+ this.PartSelectionLabel2.Location = new System.Drawing.Point(261, 155);
+ this.PartSelectionLabel2.Name = "PartSelectionLabel2";
+ this.PartSelectionLabel2.Size = new System.Drawing.Size(80, 16);
+ this.PartSelectionLabel2.TabIndex = 84;
+ //
+ // PartLabel1
+ //
+ this.PartLabel1.Location = new System.Drawing.Point(164, 155);
+ this.PartLabel1.Name = "PartLabel1";
+ this.PartLabel1.Size = new System.Drawing.Size(105, 16);
+ this.PartLabel1.TabIndex = 83;
+ this.PartLabel1.Text = "SELECTED PART:";
+ //
+ // ColorButton35
+ //
+ this.ColorButton35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(185)))), ((int)(((byte)(145)))));
+ this.ColorButton35.Location = new System.Drawing.Point(401, 124);
+ this.ColorButton35.Name = "ColorButton35";
+ this.ColorButton35.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton35.TabIndex = 82;
+ this.ColorButton35.UseVisualStyleBackColor = false;
+ this.ColorButton35.Click += new System.EventHandler(this.ColorButton35Click);
+ //
+ // ColorButton36
+ //
+ this.ColorButton36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(142)))), ((int)(((byte)(105)))));
+ this.ColorButton36.Location = new System.Drawing.Point(367, 124);
+ this.ColorButton36.Name = "ColorButton36";
+ this.ColorButton36.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton36.TabIndex = 81;
+ this.ColorButton36.UseVisualStyleBackColor = false;
+ this.ColorButton36.Click += new System.EventHandler(this.ColorButton36Click);
+ //
+ // ColorButton37
+ //
+ this.ColorButton37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(92)))), ((int)(((byte)(69)))));
+ this.ColorButton37.Location = new System.Drawing.Point(333, 124);
+ this.ColorButton37.Name = "ColorButton37";
+ this.ColorButton37.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton37.TabIndex = 80;
+ this.ColorButton37.UseVisualStyleBackColor = false;
+ this.ColorButton37.Click += new System.EventHandler(this.ColorButton37Click);
+ //
+ // ColorButton38
+ //
+ this.ColorButton38.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(122)))), ((int)(((byte)(118)))));
+ this.ColorButton38.Location = new System.Drawing.Point(298, 124);
+ this.ColorButton38.Name = "ColorButton38";
+ this.ColorButton38.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton38.TabIndex = 79;
+ this.ColorButton38.UseVisualStyleBackColor = false;
+ this.ColorButton38.Click += new System.EventHandler(this.ColorButton38Click);
+ //
+ // ColorButton31
+ //
+ this.ColorButton31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(196)))), ((int)(((byte)(153)))));
+ this.ColorButton31.Location = new System.Drawing.Point(267, 124);
+ this.ColorButton31.Name = "ColorButton31";
+ this.ColorButton31.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton31.TabIndex = 78;
+ this.ColorButton31.UseVisualStyleBackColor = false;
+ this.ColorButton31.Click += new System.EventHandler(this.ColorButton31Click);
+ //
+ // ColorButton32
+ //
+ this.ColorButton32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(135)))), ((int)(((byte)(121)))));
+ this.ColorButton32.Location = new System.Drawing.Point(233, 124);
+ this.ColorButton32.Name = "ColorButton32";
+ this.ColorButton32.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton32.TabIndex = 77;
+ this.ColorButton32.UseVisualStyleBackColor = false;
+ this.ColorButton32.Click += new System.EventHandler(this.ColorButton32Click);
+ //
+ // ColorButton33
+ //
+ this.ColorButton33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(186)))), ((int)(((byte)(199)))));
+ this.ColorButton33.Location = new System.Drawing.Point(199, 124);
+ this.ColorButton33.Name = "ColorButton33";
+ this.ColorButton33.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton33.TabIndex = 76;
+ this.ColorButton33.UseVisualStyleBackColor = false;
+ this.ColorButton33.Click += new System.EventHandler(this.ColorButton33Click);
+ //
+ // ColorButton34
+ //
+ this.ColorButton34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(50)))), ((int)(((byte)(123)))));
+ this.ColorButton34.Location = new System.Drawing.Point(164, 124);
+ this.ColorButton34.Name = "ColorButton34";
+ this.ColorButton34.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton34.TabIndex = 75;
+ this.ColorButton34.UseVisualStyleBackColor = false;
+ this.ColorButton34.Click += new System.EventHandler(this.ColorButton34Click);
+ //
+ // ColorButton27
+ //
+ this.ColorButton27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(63)))), ((int)(((byte)(39)))));
+ this.ColorButton27.Location = new System.Drawing.Point(401, 92);
+ this.ColorButton27.Name = "ColorButton27";
+ this.ColorButton27.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton27.TabIndex = 74;
+ this.ColorButton27.UseVisualStyleBackColor = false;
+ this.ColorButton27.Click += new System.EventHandler(this.ColorButton27Click);
+ //
+ // ColorButton28
+ //
+ this.ColorButton28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(160)))), ((int)(((byte)(95)))), ((int)(((byte)(55)))));
+ this.ColorButton28.Location = new System.Drawing.Point(367, 92);
+ this.ColorButton28.Name = "ColorButton28";
+ this.ColorButton28.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton28.TabIndex = 73;
+ this.ColorButton28.UseVisualStyleBackColor = false;
+ this.ColorButton28.Click += new System.EventHandler(this.ColorButton28Click);
+ //
+ // ColorButton29
+ //
+ this.ColorButton29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(144)))), ((int)(((byte)(130)))));
+ this.ColorButton29.Location = new System.Drawing.Point(333, 92);
+ this.ColorButton29.Name = "ColorButton29";
+ this.ColorButton29.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton29.TabIndex = 72;
+ this.ColorButton29.UseVisualStyleBackColor = false;
+ this.ColorButton29.Click += new System.EventHandler(this.ColorButton29Click);
+ //
+ // ColorButton30
+ //
+ this.ColorButton30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(196)))), ((int)(((byte)(140)))));
+ this.ColorButton30.Location = new System.Drawing.Point(298, 92);
+ this.ColorButton30.Name = "ColorButton30";
+ this.ColorButton30.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton30.TabIndex = 71;
+ this.ColorButton30.UseVisualStyleBackColor = false;
+ this.ColorButton30.Click += new System.EventHandler(this.ColorButton30Click);
+ //
+ // ColorButton23
+ //
+ this.ColorButton23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
+ this.ColorButton23.Location = new System.Drawing.Point(267, 92);
+ this.ColorButton23.Name = "ColorButton23";
+ this.ColorButton23.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton23.TabIndex = 70;
+ this.ColorButton23.UseVisualStyleBackColor = false;
+ this.ColorButton23.Click += new System.EventHandler(this.ColorButton23Click);
+ //
+ // ColorButton24
+ //
+ this.ColorButton24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(76)))), ((int)(((byte)(150)))), ((int)(((byte)(73)))));
+ this.ColorButton24.Location = new System.Drawing.Point(233, 92);
+ this.ColorButton24.Name = "ColorButton24";
+ this.ColorButton24.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton24.TabIndex = 69;
+ this.ColorButton24.UseVisualStyleBackColor = false;
+ this.ColorButton24.Click += new System.EventHandler(this.ColorButton24Click);
+ //
+ // ColorButton25
+ //
+ this.ColorButton25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(126)))), ((int)(((byte)(71)))));
+ this.ColorButton25.Location = new System.Drawing.Point(199, 92);
+ this.ColorButton25.Name = "ColorButton25";
+ this.ColorButton25.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton25.TabIndex = 68;
+ this.ColorButton25.UseVisualStyleBackColor = false;
+ this.ColorButton25.Click += new System.EventHandler(this.ColorButton25Click);
+ //
+ // ColorButton26
+ //
+ this.ColorButton26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(41)))), ((int)(((byte)(70)))), ((int)(((byte)(43)))));
+ this.ColorButton26.Location = new System.Drawing.Point(164, 92);
+ this.ColorButton26.Name = "ColorButton26";
+ this.ColorButton26.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton26.TabIndex = 67;
+ this.ColorButton26.UseVisualStyleBackColor = false;
+ this.ColorButton26.Click += new System.EventHandler(this.ColorButton26Click);
+ //
+ // ColorButton19
+ //
+ this.ColorButton19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(63)))));
+ this.ColorButton19.Location = new System.Drawing.Point(401, 60);
+ this.ColorButton19.Name = "ColorButton19";
+ this.ColorButton19.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton19.TabIndex = 66;
+ this.ColorButton19.UseVisualStyleBackColor = false;
+ this.ColorButton19.Click += new System.EventHandler(this.ColorButton19Click);
+ //
+ // ColorButton20
+ //
+ this.ColorButton20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(134)))), ((int)(((byte)(64)))));
+ this.ColorButton20.Location = new System.Drawing.Point(367, 60);
+ this.ColorButton20.Name = "ColorButton20";
+ this.ColorButton20.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton20.TabIndex = 65;
+ this.ColorButton20.UseVisualStyleBackColor = false;
+ this.ColorButton20.Click += new System.EventHandler(this.ColorButton20Click);
+ //
+ // ColorButton21
+ //
+ this.ColorButton21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(116)))), ((int)(((byte)(134)))), ((int)(((byte)(156)))));
+ this.ColorButton21.Location = new System.Drawing.Point(333, 60);
+ this.ColorButton21.Name = "ColorButton21";
+ this.ColorButton21.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton21.TabIndex = 64;
+ this.ColorButton21.UseVisualStyleBackColor = false;
+ this.ColorButton21.Click += new System.EventHandler(this.ColorButton21Click);
+ //
+ // ColorButton22
+ //
+ this.ColorButton22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(210)))), ((int)(((byte)(228)))));
+ this.ColorButton22.Location = new System.Drawing.Point(298, 60);
+ this.ColorButton22.Name = "ColorButton22";
+ this.ColorButton22.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton22.TabIndex = 63;
+ this.ColorButton22.UseVisualStyleBackColor = false;
+ this.ColorButton22.Click += new System.EventHandler(this.ColorButton22Click);
+ //
+ // ColorButton15
+ //
+ this.ColorButton15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(186)))), ((int)(((byte)(219)))));
+ this.ColorButton15.Location = new System.Drawing.Point(267, 60);
+ this.ColorButton15.Name = "ColorButton15";
+ this.ColorButton15.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton15.TabIndex = 62;
+ this.ColorButton15.UseVisualStyleBackColor = false;
+ this.ColorButton15.Click += new System.EventHandler(this.ColorButton15Click);
+ //
+ // ColorButton16
+ //
+ this.ColorButton16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(111)))), ((int)(((byte)(153)))), ((int)(((byte)(201)))));
+ this.ColorButton16.Location = new System.Drawing.Point(233, 60);
+ this.ColorButton16.Name = "ColorButton16";
+ this.ColorButton16.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton16.TabIndex = 61;
+ this.ColorButton16.UseVisualStyleBackColor = false;
+ this.ColorButton16.Click += new System.EventHandler(this.ColorButton16Click);
+ //
+ // ColorButton17
+ //
+ this.ColorButton17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(143)))), ((int)(((byte)(155)))));
+ this.ColorButton17.Location = new System.Drawing.Point(199, 60);
+ this.ColorButton17.Name = "ColorButton17";
+ this.ColorButton17.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton17.TabIndex = 60;
+ this.ColorButton17.UseVisualStyleBackColor = false;
+ this.ColorButton17.Click += new System.EventHandler(this.ColorButton17Click);
+ //
+ // ColorButton18
+ //
+ this.ColorButton18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(105)))), ((int)(((byte)(172)))));
+ this.ColorButton18.Location = new System.Drawing.Point(164, 60);
+ this.ColorButton18.Name = "ColorButton18";
+ this.ColorButton18.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton18.TabIndex = 59;
+ this.ColorButton18.UseVisualStyleBackColor = false;
+ this.ColorButton18.Click += new System.EventHandler(this.ColorButton18Click);
+ //
+ // ColorButton11
+ //
+ this.ColorButton11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(234)))), ((int)(((byte)(142)))));
+ this.ColorButton11.Location = new System.Drawing.Point(401, 28);
+ this.ColorButton11.Name = "ColorButton11";
+ this.ColorButton11.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton11.TabIndex = 58;
+ this.ColorButton11.UseVisualStyleBackColor = false;
+ this.ColorButton11.Click += new System.EventHandler(this.ColorButton11Click);
+ //
+ // ColorButton12
+ //
+ this.ColorButton12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
+ this.ColorButton12.Location = new System.Drawing.Point(367, 28);
+ this.ColorButton12.Name = "ColorButton12";
+ this.ColorButton12.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton12.TabIndex = 57;
+ this.ColorButton12.UseVisualStyleBackColor = false;
+ this.ColorButton12.Click += new System.EventHandler(this.ColorButton12Click);
+ //
+ // ColorButton13
+ //
+ this.ColorButton13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(40)))), ((int)(((byte)(27)))));
+ this.ColorButton13.Location = new System.Drawing.Point(333, 28);
+ this.ColorButton13.Name = "ColorButton13";
+ this.ColorButton13.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton13.TabIndex = 56;
+ this.ColorButton13.UseVisualStyleBackColor = false;
+ this.ColorButton13.Click += new System.EventHandler(this.ColorButton13Click);
+ //
+ // ColorButton14
+ //
+ this.ColorButton14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(42)))), ((int)(((byte)(53)))));
+ this.ColorButton14.Location = new System.Drawing.Point(298, 28);
+ this.ColorButton14.Name = "ColorButton14";
+ this.ColorButton14.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton14.TabIndex = 55;
+ this.ColorButton14.UseVisualStyleBackColor = false;
+ this.ColorButton14.Click += new System.EventHandler(this.ColorButton14Click);
+ //
+ // ColorButton10
+ //
+ this.ColorButton10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(95)))), ((int)(((byte)(96)))));
+ this.ColorButton10.Location = new System.Drawing.Point(267, 28);
+ this.ColorButton10.Name = "ColorButton10";
+ this.ColorButton10.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton10.TabIndex = 54;
+ this.ColorButton10.UseVisualStyleBackColor = false;
+ this.ColorButton10.Click += new System.EventHandler(this.ColorButton10Click);
+ //
+ // ColorButton9
+ //
+ this.ColorButton9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(163)))), ((int)(((byte)(165)))));
+ this.ColorButton9.Location = new System.Drawing.Point(233, 28);
+ this.ColorButton9.Name = "ColorButton9";
+ this.ColorButton9.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton9.TabIndex = 53;
+ this.ColorButton9.UseVisualStyleBackColor = false;
+ this.ColorButton9.Click += new System.EventHandler(this.ColorButton9Click);
+ //
+ // ColorButton8
+ //
+ this.ColorButton8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(229)))), ((int)(((byte)(224)))));
+ this.ColorButton8.Location = new System.Drawing.Point(199, 28);
+ this.ColorButton8.Name = "ColorButton8";
+ this.ColorButton8.Size = new System.Drawing.Size(28, 26);
+ this.ColorButton8.TabIndex = 52;
+ this.ColorButton8.UseVisualStyleBackColor = false;
+ this.ColorButton8.Click += new System.EventHandler(this.ColorButton8Click);
+ //
+ // ColorButton7
+ //
+ this.ColorButton7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(243)))));
+ this.ColorButton7.Location = new System.Drawing.Point(164, 28);
+ this.ColorButton7.Name = "ColorButton7";
+ this.ColorButton7.Size = new System.Drawing.Size(29, 26);
+ this.ColorButton7.TabIndex = 51;
+ this.ColorButton7.UseVisualStyleBackColor = false;
+ this.ColorButton7.Click += new System.EventHandler(this.ColorButton7Click);
+ //
+ // LLegButton6
+ //
+ this.LLegButton6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
+ this.LLegButton6.Location = new System.Drawing.Point(80, 155);
+ this.LLegButton6.Name = "LLegButton6";
+ this.LLegButton6.Size = new System.Drawing.Size(31, 70);
+ this.LLegButton6.TabIndex = 50;
+ this.LLegButton6.UseVisualStyleBackColor = false;
+ //
+ // RLegButton5
+ //
+ this.RLegButton5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(189)))), ((int)(((byte)(71)))));
+ this.RLegButton5.Location = new System.Drawing.Point(43, 155);
+ this.RLegButton5.Name = "RLegButton5";
+ this.RLegButton5.Size = new System.Drawing.Size(31, 70);
+ this.RLegButton5.TabIndex = 49;
+ this.RLegButton5.UseVisualStyleBackColor = false;
+ //
+ // LArmButton4
+ //
+ this.LArmButton4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
+ this.LArmButton4.Location = new System.Drawing.Point(117, 77);
+ this.LArmButton4.Name = "LArmButton4";
+ this.LArmButton4.Size = new System.Drawing.Size(31, 72);
+ this.LArmButton4.TabIndex = 48;
+ this.LArmButton4.UseVisualStyleBackColor = false;
+ //
+ // RArmButton3
+ //
+ this.RArmButton3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
+ this.RArmButton3.Location = new System.Drawing.Point(6, 77);
+ this.RArmButton3.Name = "RArmButton3";
+ this.RArmButton3.Size = new System.Drawing.Size(31, 72);
+ this.RArmButton3.TabIndex = 47;
+ this.RArmButton3.UseVisualStyleBackColor = false;
+ //
+ // TorsoButton2
+ //
+ this.TorsoButton2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(105)))), ((int)(((byte)(172)))));
+ this.TorsoButton2.Location = new System.Drawing.Point(43, 77);
+ this.TorsoButton2.Name = "TorsoButton2";
+ this.TorsoButton2.Size = new System.Drawing.Size(68, 72);
+ this.TorsoButton2.TabIndex = 46;
+ this.TorsoButton2.UseVisualStyleBackColor = false;
+ //
+ // HeadButton1
+ //
+ this.HeadButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(205)))), ((int)(((byte)(47)))));
+ this.HeadButton1.Location = new System.Drawing.Point(53, 27);
+ this.HeadButton1.Name = "HeadButton1";
+ this.HeadButton1.Size = new System.Drawing.Size(47, 46);
+ this.HeadButton1.TabIndex = 45;
+ this.HeadButton1.UseVisualStyleBackColor = false;
+ //
+ // tabPage3
+ //
+ this.tabPage3.Controls.Add(this.button2);
+ this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(447, 244);
+ this.tabPage3.TabIndex = 2;
+ this.tabPage3.Text = "HATS";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // tabPage4
+ //
+ this.tabPage4.Controls.Add(this.label4);
+ this.tabPage4.Controls.Add(this.label5);
+ this.tabPage4.Controls.Add(this.textBox1);
+ this.tabPage4.Controls.Add(this.textBox3);
+ this.tabPage4.Controls.Add(this.label3);
+ this.tabPage4.Controls.Add(this.label2);
+ this.tabPage4.Controls.Add(this.textBox2);
+ this.tabPage4.Controls.Add(this.label1);
+ this.tabPage4.Controls.Add(this.radioButton3);
+ this.tabPage4.Controls.Add(this.radioButton2);
+ this.tabPage4.Controls.Add(this.radioButton4);
+ this.tabPage4.Controls.Add(this.radioButton1);
+ this.tabPage4.Location = new System.Drawing.Point(4, 22);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage4.Size = new System.Drawing.Size(447, 244);
+ this.tabPage4.TabIndex = 3;
+ this.tabPage4.Text = "ICON";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // label4
+ //
+ this.label4.ForeColor = System.Drawing.Color.Red;
+ this.label4.Location = new System.Drawing.Point(6, 175);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(321, 40);
+ this.label4.TabIndex = 53;
+ this.label4.Text = "NOTE: These clothing options will not work while playing the game offline.";
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label5
+ //
+ this.label5.Location = new System.Drawing.Point(143, 52);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(53, 15);
+ this.label5.TabIndex = 50;
+ this.label5.Text = "T-Shirt ID";
+ //
// textBox1
//
- this.textBox1.Location = new System.Drawing.Point(71, 56);
+ this.textBox1.Location = new System.Drawing.Point(102, 70);
this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(87, 20);
- this.textBox1.TabIndex = 39;
+ this.textBox1.Size = new System.Drawing.Size(137, 20);
+ this.textBox1.TabIndex = 47;
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
//
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(71, 81);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(87, 20);
- this.textBox2.TabIndex = 40;
- this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
- //
// textBox3
//
- this.textBox3.Location = new System.Drawing.Point(71, 107);
+ this.textBox3.Location = new System.Drawing.Point(102, 152);
this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(87, 20);
- this.textBox3.TabIndex = 41;
+ this.textBox3.Size = new System.Drawing.Size(137, 20);
+ this.textBox3.TabIndex = 49;
this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.textBox3.TextChanged += new System.EventHandler(this.TextBox3TextChanged);
//
// label3
//
- this.label3.Location = new System.Drawing.Point(16, 107);
+ this.label3.Location = new System.Drawing.Point(143, 134);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(49, 15);
- this.label3.TabIndex = 45;
+ this.label3.TabIndex = 52;
this.label3.Text = "Pants ID";
//
// label2
//
- this.label2.Location = new System.Drawing.Point(16, 84);
+ this.label2.Location = new System.Drawing.Point(147, 93);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 15);
- this.label2.TabIndex = 44;
+ this.label2.TabIndex = 51;
this.label2.Text = "Shirt ID";
//
- // label5
+ // textBox2
//
- this.label5.Location = new System.Drawing.Point(12, 59);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(53, 15);
- this.label5.TabIndex = 43;
- this.label5.Text = "T-Shirt ID";
- //
- // label6
- //
- this.label6.Location = new System.Drawing.Point(12, 38);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(125, 15);
- this.label6.TabIndex = 47;
- this.label6.Text = "Clothing";
- this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ this.textBox2.Location = new System.Drawing.Point(102, 111);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(137, 20);
+ this.textBox2.TabIndex = 48;
+ this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
//
// CharacterCustomization
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.ClientSize = new System.Drawing.Size(166, 201);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.textBox3);
- this.Controls.Add(this.textBox2);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.radioButton4);
- this.Controls.Add(this.radioButton3);
- this.Controls.Add(this.radioButton2);
- this.Controls.Add(this.radioButton1);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
+ this.ClientSize = new System.Drawing.Size(473, 293);
+ this.Controls.Add(this.tabControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "CharacterCustomization";
this.Text = "Character Customization";
this.Load += new System.EventHandler(this.CharacterCustomizationLoad);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage4.ResumeLayout(false);
+ this.tabPage4.PerformLayout();
this.ResumeLayout(false);
- this.PerformLayout();
}
- private System.Windows.Forms.Label label6;
+ private System.Windows.Forms.Button HeadButton1;
+ private System.Windows.Forms.Button TorsoButton2;
+ private System.Windows.Forms.Button RArmButton3;
+ private System.Windows.Forms.Button LArmButton4;
+ private System.Windows.Forms.Button RLegButton5;
+ private System.Windows.Forms.Button LLegButton6;
+ private System.Windows.Forms.Button ColorButton7;
+ private System.Windows.Forms.Button ColorButton8;
+ private System.Windows.Forms.Button ColorButton9;
+ private System.Windows.Forms.Button ColorButton10;
+ private System.Windows.Forms.Button ColorButton14;
+ private System.Windows.Forms.Button ColorButton13;
+ private System.Windows.Forms.Button ColorButton12;
+ private System.Windows.Forms.Button ColorButton11;
+ private System.Windows.Forms.Button ColorButton18;
+ private System.Windows.Forms.Button ColorButton17;
+ private System.Windows.Forms.Button ColorButton16;
+ private System.Windows.Forms.Button ColorButton15;
+ private System.Windows.Forms.Button ColorButton22;
+ private System.Windows.Forms.Button ColorButton21;
+ private System.Windows.Forms.Button ColorButton20;
+ private System.Windows.Forms.Button ColorButton19;
+ private System.Windows.Forms.Button ColorButton26;
+ private System.Windows.Forms.Button ColorButton25;
+ private System.Windows.Forms.Button ColorButton24;
+ private System.Windows.Forms.Button ColorButton23;
+ private System.Windows.Forms.Button ColorButton30;
+ private System.Windows.Forms.Button ColorButton29;
+ private System.Windows.Forms.Button ColorButton28;
+ private System.Windows.Forms.Button ColorButton27;
+ private System.Windows.Forms.Button ColorButton34;
+ private System.Windows.Forms.Button ColorButton33;
+ private System.Windows.Forms.Button ColorButton32;
+ private System.Windows.Forms.Button ColorButton31;
+ private System.Windows.Forms.Button ColorButton38;
+ private System.Windows.Forms.Button ColorButton37;
+ private System.Windows.Forms.Button ColorButton36;
+ private System.Windows.Forms.Button ColorButton35;
+ private System.Windows.Forms.Label PartLabel1;
+ private System.Windows.Forms.Label PartSelectionLabel2;
+ private System.Windows.Forms.Button ResetColorsButton40;
+ private System.Windows.Forms.Button RandColorsButton39;
+ private System.Windows.Forms.Button PartShapeButton41;
+ private System.Windows.Forms.Button ChangeFaceButton42;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.TabPage tabPage4;
+ private System.Windows.Forms.TabPage tabPage3;
+ private System.Windows.Forms.TabPage tabPage2;
+ private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
@@ -225,6 +831,5 @@ namespace RBXLegacyLauncher
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
}
}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs
index c4fe919..0966157 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs
@@ -22,6 +22,9 @@ namespace RBXLegacyLauncher
///
public partial class CharacterCustomization : Form
{
+ public static string SelectedPart = "Head";
+ public string[,] ColorArray;
+
public CharacterCustomization()
{
//
@@ -29,6 +32,41 @@ namespace RBXLegacyLauncher
//
InitializeComponent();
+ ColorArray = new string[32, 2] {
+ { "1", ColorButton7.BackColor.ToString() },
+ { "208", ColorButton8.BackColor.ToString() },
+ { "194", ColorButton9.BackColor.ToString() },
+ { "199", ColorButton10.BackColor.ToString() },
+ { "26", ColorButton14.BackColor.ToString() },
+ { "21", ColorButton13.BackColor.ToString() },
+ { "24", ColorButton12.BackColor.ToString() },
+ { "226", ColorButton11.BackColor.ToString() },
+ { "23", ColorButton18.BackColor.ToString() },
+ { "107", ColorButton17.BackColor.ToString() },
+ { "102", ColorButton16.BackColor.ToString() },
+ { "11", ColorButton15.BackColor.ToString() },
+ { "45", ColorButton22.BackColor.ToString() },
+ { "135", ColorButton21.BackColor.ToString() },
+ { "106", ColorButton20.BackColor.ToString() },
+ { "105", ColorButton19.BackColor.ToString() },
+ { "141", ColorButton26.BackColor.ToString() },
+ { "28", ColorButton25.BackColor.ToString() },
+ { "37", ColorButton24.BackColor.ToString() },
+ { "119", ColorButton23.BackColor.ToString() },
+ { "29", ColorButton30.BackColor.ToString() },
+ { "151", ColorButton29.BackColor.ToString() },
+ { "38", ColorButton28.BackColor.ToString() },
+ { "192", ColorButton27.BackColor.ToString() },
+ { "104", ColorButton34.BackColor.ToString() },
+ { "9", ColorButton33.BackColor.ToString() },
+ { "101", ColorButton32.BackColor.ToString() },
+ { "5", ColorButton31.BackColor.ToString() },
+ { "153", ColorButton38.BackColor.ToString() },
+ { "217", ColorButton37.BackColor.ToString() },
+ { "18", ColorButton36.BackColor.ToString() },
+ { "125", ColorButton35.BackColor.ToString() }
+ };
+
//
// TODO: Add constructor code after the InitializeComponent() call.
//
@@ -39,7 +77,6 @@ namespace RBXLegacyLauncher
textBox1.Text = GlobalVars.Custom_TShirt.ToString();
textBox2.Text = GlobalVars.Custom_Shirt.ToString();
textBox3.Text = GlobalVars.Custom_Pants.ToString();
- textBox4.Text = GlobalVars.Custom_Face.ToString();
if (GlobalVars.Custom_IconType.Equals("BC"))
{
radioButton1.Checked = true;
@@ -65,12 +102,66 @@ namespace RBXLegacyLauncher
{
button2.Enabled = false;
}
+ //color menu implementation
+ PartSelectionLabel2.Text = SelectedPart;
+ HeadButton1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
+ TorsoButton2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
+ RArmButton3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
+ LArmButton4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
+ RLegButton5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
+ LLegButton6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
}
- void Button1Click(object sender, EventArgs e)
+ Color ConvertStringtoColor(string CString)
{
- CharacterColors ccol = new CharacterColors();
- ccol.Show();
+ var p = CString.Split(new char[]{',',']'});
+
+ int A = Convert.ToInt32(p[0].Substring(p[0].IndexOf('=') + 1));
+ int R = Convert.ToInt32(p[1].Substring(p[1].IndexOf('=') + 1));
+ int G = Convert.ToInt32(p[2].Substring(p[2].IndexOf('=') + 1));
+ int B = Convert.ToInt32(p[3].Substring(p[3].IndexOf('=') + 1));
+
+ return Color.FromArgb(A,R,G,B);
+ }
+
+ void ChangeColorOfPart(int ColorID, Color ButtonColor)
+ {
+ if (SelectedPart == "Head")
+ {
+ GlobalVars.HeadColorID = ColorID;
+ GlobalVars.ColorMenu_HeadColor = ButtonColor.ToString();
+ HeadButton1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
+ }
+ else if (SelectedPart == "Torso")
+ {
+ GlobalVars.TorsoColorID = ColorID;
+ GlobalVars.ColorMenu_TorsoColor = ButtonColor.ToString();
+ TorsoButton2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
+ }
+ else if (SelectedPart == "Right Arm")
+ {
+ GlobalVars.RightArmColorID = ColorID;
+ GlobalVars.ColorMenu_RightArmColor = ButtonColor.ToString();
+ RArmButton3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
+ }
+ else if (SelectedPart == "Left Arm")
+ {
+ GlobalVars.LeftArmColorID = ColorID;
+ GlobalVars.ColorMenu_LeftArmColor = ButtonColor.ToString();
+ LArmButton4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
+ }
+ else if (SelectedPart == "Right Leg")
+ {
+ GlobalVars.RightLegColorID = ColorID;
+ GlobalVars.ColorMenu_RightLegColor = ButtonColor.ToString();
+ RLegButton5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
+ }
+ else if (SelectedPart == "Left Leg")
+ {
+ GlobalVars.LeftLegColorID = ColorID;
+ GlobalVars.ColorMenu_LeftLegColor = ButtonColor.ToString();
+ LLegButton6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
+ }
}
void Button2Click(object sender, EventArgs e)
@@ -139,25 +230,6 @@ namespace RBXLegacyLauncher
}
}
- void TextBox4TextChanged(object sender, EventArgs e)
- {
- int parsedValue;
- if (int.TryParse(textBox4.Text, out parsedValue))
- {
- if (textBox4.Text.Equals(""))
- {
- GlobalVars.Custom_Face = 0;
- }
- else
- {
- GlobalVars.Custom_Face = Convert.ToInt32(textBox4.Text);
- }
- }
- else
- {
- GlobalVars.Custom_Face = 0;
- }
- }
void RadioButton1CheckedChanged(object sender, EventArgs e)
{
@@ -178,5 +250,299 @@ namespace RBXLegacyLauncher
{
GlobalVars.Custom_IconType = "NBC";
}
+
+ void ColorButton7Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton7.BackColor;
+ int colorID = 1;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton8Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton8.BackColor;
+ int colorID = 208;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton9Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton9.BackColor;
+ int colorID = 194;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton10Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton10.BackColor;
+ int colorID = 199;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton14Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton14.BackColor;
+ int colorID = 26;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton13Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton13.BackColor;
+ int colorID = 21;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton12Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton12.BackColor;
+ int colorID = 24;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton11Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton11.BackColor;
+ int colorID = 226;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton18Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton18.BackColor;
+ int colorID = 23;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton17Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton17.BackColor;
+ int colorID = 107;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton16Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton16.BackColor;
+ int colorID = 102;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton15Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton15.BackColor;
+ int colorID = 11;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton22Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton22.BackColor;
+ int colorID = 45;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton21Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton21.BackColor;
+ int colorID = 135;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton20Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton20.BackColor;
+ int colorID = 106;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton19Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton19.BackColor;
+ int colorID = 105;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton26Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton26.BackColor;
+ int colorID = 141;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton25Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton25.BackColor;
+ int colorID = 28;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton24Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton24.BackColor;
+ int colorID = 37;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton23Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton23.BackColor;
+ int colorID = 119;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton30Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton30.BackColor;
+ int colorID = 29;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton29Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton29.BackColor;
+ int colorID = 151;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton28Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton28.BackColor;
+ int colorID = 38;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton27Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton27.BackColor;
+ int colorID = 192;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton34Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton34.BackColor;
+ int colorID = 104;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton33Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton33.BackColor;
+ int colorID = 9;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton32Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton32.BackColor;
+ int colorID = 101;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton31Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton31.BackColor;
+ int colorID = 5;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton38Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton38.BackColor;
+ int colorID = 153;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton37Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton37.BackColor;
+ int colorID = 217;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton36Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton36.BackColor;
+ int colorID = 18;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void ColorButton35Click(object sender, EventArgs e)
+ {
+ Color ButtonColor = ColorButton35.BackColor;
+ int colorID = 125;
+ ChangeColorOfPart(colorID, ButtonColor);
+ }
+
+ void RandColorsButton39Click(object sender, EventArgs e)
+ {
+ Random rand = new Random();
+ int RandomColor;
+
+ for (int i=1; i <= 6; i++)
+ {
+ RandomColor = rand.Next(ColorArray.GetLength(0));
+ if (i == 1)
+ {
+ GlobalVars.HeadColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_HeadColor = ColorArray[RandomColor, 1];
+ HeadButton1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
+ }
+ else if (i == 2)
+ {
+ GlobalVars.TorsoColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_TorsoColor = ColorArray[RandomColor, 1];
+ TorsoButton2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
+ }
+ else if (i == 3)
+ {
+ GlobalVars.RightArmColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_RightArmColor = ColorArray[RandomColor, 1];
+ RArmButton3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
+ }
+ else if (i == 4)
+ {
+ GlobalVars.LeftArmColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_LeftArmColor = ColorArray[RandomColor, 1];
+ LArmButton4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
+ }
+ else if (i == 5)
+ {
+ GlobalVars.RightLegColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_RightLegColor = ColorArray[RandomColor, 1];
+ RLegButton5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
+ }
+ else if (i == 6)
+ {
+ GlobalVars.LeftLegColorID = Convert.ToInt32(ColorArray[RandomColor, 0]);
+ GlobalVars.ColorMenu_LeftLegColor = ColorArray[RandomColor, 1];
+ LLegButton6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
+ }
+ }
+ }
+
+ void ResetColorsButton40Click(object sender, EventArgs e)
+ {
+ GlobalVars.HeadColorID = 24;
+ GlobalVars.TorsoColorID = 23;
+ GlobalVars.LeftArmColorID = 24;
+ GlobalVars.RightArmColorID = 24;
+ GlobalVars.LeftLegColorID = 119;
+ GlobalVars.RightLegColorID = 119;
+ GlobalVars.ColorMenu_HeadColor = "Color [A=255, R=245, G=205, B=47]";
+ GlobalVars.ColorMenu_TorsoColor = "Color [A=255, R=13, G=105, B=172]";
+ GlobalVars.ColorMenu_LeftArmColor = "Color [A=255, R=245, G=205, B=47]";
+ GlobalVars.ColorMenu_RightArmColor = "Color [A=255, R=245, G=205, B=47]";
+ GlobalVars.ColorMenu_LeftLegColor = "Color [A=255, R=164, G=189, B=71]";
+ GlobalVars.ColorMenu_RightLegColor = "Color [A=255, R=164, G=189, B=71]";
+ HeadButton1.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_HeadColor);
+ TorsoButton2.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_TorsoColor);
+ RArmButton3.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightArmColor);
+ LArmButton4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor);
+ RLegButton5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor);
+ LLegButton6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor);
+ MessageBox.Show("Colors Reset!");
+ }
}
}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/LauncherFuncs.cs b/RBXLegacyLauncher/RBXLegacyLauncher/LauncherFuncs.cs
index e5ee1c9..c811397 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/LauncherFuncs.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/LauncherFuncs.cs
@@ -69,7 +69,7 @@ namespace RBXLegacyLauncher
Decryptline24 = SecurityFuncs.Base64Decode(result[23]);
Decryptline25 = SecurityFuncs.Base64Decode(result[24]);
Decryptline26 = SecurityFuncs.Base64Decode(result[25]);
- Decryptline27 = SecurityFuncs.Base64Decode(result[26]);
+ //Decryptline27 = SecurityFuncs.Base64Decode(result[26]);
bool bline1 = Convert.ToBoolean(Decryptline1);
GlobalVars.CloseOnLaunch = bline1;
@@ -124,9 +124,8 @@ namespace RBXLegacyLauncher
GlobalVars.Custom_Shirt = iline24;
int iline25 = Convert.ToInt32(Decryptline25);
GlobalVars.Custom_Pants = iline25;
- int iline26 = Convert.ToInt32(Decryptline26);
- GlobalVars.Custom_Face = iline26;
- GlobalVars.Custom_IconType = Decryptline27;
+
+ GlobalVars.Custom_IconType = Decryptline26;
}
public static void WriteConfigValues(string cfgpath)
@@ -157,7 +156,6 @@ namespace RBXLegacyLauncher
SecurityFuncs.Base64Encode(GlobalVars.Custom_TShirt.ToString()),
SecurityFuncs.Base64Encode(GlobalVars.Custom_Shirt.ToString()),
SecurityFuncs.Base64Encode(GlobalVars.Custom_Pants.ToString()),
- SecurityFuncs.Base64Encode(GlobalVars.Custom_Face.ToString()),
SecurityFuncs.Base64Encode(GlobalVars.Custom_IconType.ToString())
};
File.WriteAllText(cfgpath, SecurityFuncs.Base64Encode(string.Join("|",lines)));
@@ -203,7 +201,6 @@ namespace RBXLegacyLauncher
GlobalVars.Custom_TShirt = 0;
GlobalVars.Custom_Shirt = 0;
GlobalVars.Custom_Pants = 0;
- GlobalVars.Custom_Face = 0;
GlobalVars.Custom_IconType = "NBC";
}
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs
index 72cae20..9318379 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/LoaderForm.cs
@@ -85,19 +85,19 @@ namespace RBXLegacyLauncher
string HatIDOffline3 = GlobalVars.Custom_Hat3ID_Offline;
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" +GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
try
{
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
index 0d18165..c75ee47 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs
@@ -672,19 +672,19 @@ namespace RBXLegacyLauncher
string HatIDOffline3 = GlobalVars.Custom_Hat3ID_Offline;
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'localhost'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'localhost'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'localhost'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(" + GlobalVars.UserID + ",'localhost'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'localhost'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'localhost'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false)
{
- args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'localhost'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = "-script " + quote + "dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSConnect(0,'localhost'," + GlobalVars.RobloxPort + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
try
{
@@ -740,19 +740,19 @@ namespace RBXLegacyLauncher
string HatIDOffline3 = GlobalVars.Custom_Hat3ID_Offline;
if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true)
{
- args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(" + GlobalVars.UserID + ",'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true)
{
- args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(" + GlobalVars.UserID + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(" + GlobalVars.UserID + ",'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false)
{
- args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(0,'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(0,'" + GlobalVars.PlayerName + "','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false )
{
- args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(0,'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.Custom_Face + "','" + GlobalVars.Custom_IconType + "');" + quote;
+ args = quote + mapfile + "\" -script \"dofile('" + GlobalVars.DefaultScript + "'); _G.SetRBXLegacyVersion('" + GlobalVars.SelectedClientVersion + "'); _G.CSSolo(0,'Player','" + HatIDOffline1 + "','" + HatIDOffline2 + "','" + HatIDOffline3 + "'," + GlobalVars.HeadColorID + "," + GlobalVars.TorsoColorID + "," + GlobalVars.LeftArmColorID + "," + GlobalVars.RightArmColorID + "," + GlobalVars.LeftLegColorID + "," + GlobalVars.RightLegColorID + ",'" + GlobalVars.Custom_TShirt + "','" + GlobalVars.Custom_Shirt + "','" + GlobalVars.Custom_Pants + "','" + GlobalVars.FaceID + "','" + GlobalVars.HeadID + "','" + GlobalVars.TorsoID + "','" + GlobalVars.RightArmID + "','" + GlobalVars.LeftArmID + "','" + GlobalVars.RightLegID + "','" + GlobalVars.LeftLegID + "','" + GlobalVars.Custom_IconType + "');" + quote;
}
try
{
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/RBXLegacyLauncher.csproj b/RBXLegacyLauncher/RBXLegacyLauncher/RBXLegacyLauncher.csproj
index c36ac36..f02d349 100644
--- a/RBXLegacyLauncher/RBXLegacyLauncher/RBXLegacyLauncher.csproj
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/RBXLegacyLauncher.csproj
@@ -56,10 +56,6 @@
-
-
- CharacterColors.cs
-
CharacterCustomization.cs
@@ -110,9 +106,6 @@
-
- CharacterColors.cs
-
CharacterCustomization.cs
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterColors.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization_HatMenu.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization_HatMenu.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.CharacterCustomization_HatMenu.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.DocForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.DocForm.resources
new file mode 100644
index 0000000..64e6468
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.DocForm.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.InfoEditor.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.InfoEditor.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.InfoEditor.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.LoaderForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.LoaderForm.resources
new file mode 100644
index 0000000..06d421a
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.LoaderForm.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources
new file mode 100644
index 0000000..19fd998
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.QuickConfigure.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.QuickConfigure.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.QuickConfigure.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.SDKForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.SDKForm.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.SDKForm.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ServerInfo.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ServerInfo.resources
new file mode 100644
index 0000000..ebc3208
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ServerInfo.resources differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..2bb4b3a
--- /dev/null
+++ b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt
@@ -0,0 +1,13 @@
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csprojResolveAssemblyReference.cache
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.CharacterColors.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.CharacterCustomization.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.CharacterCustomization_HatMenu.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.ClientinfoEditor.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.DocForm.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.InfoEditor.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.LoaderForm.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.MainForm.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.QuickConfigure.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.SDKForm.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.ServerInfo.resources
+C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csproj.GenerateResource.Cache
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..ff15256
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache differ
diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..8c03152
Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache differ
diff --git a/charcustom/bodies/torsos/DefaultTorso.rbxm b/charcustom/bodies/2/DefaultTorso.rbxm
similarity index 100%
rename from charcustom/bodies/torsos/DefaultTorso.rbxm
rename to charcustom/bodies/2/DefaultTorso.rbxm
diff --git a/charcustom/bodies/r_arm/DefaultRArm.rbxm b/charcustom/bodies/3/DefaultRArm.rbxm
similarity index 100%
rename from charcustom/bodies/r_arm/DefaultRArm.rbxm
rename to charcustom/bodies/3/DefaultRArm.rbxm
diff --git a/charcustom/bodies/l_arm/DefaultLArm.rbxm b/charcustom/bodies/4/DefaultLArm.rbxm
similarity index 100%
rename from charcustom/bodies/l_arm/DefaultLArm.rbxm
rename to charcustom/bodies/4/DefaultLArm.rbxm
diff --git a/charcustom/bodies/r_leg/DefaultRLeg.rbxm b/charcustom/bodies/5/DefaultRLeg.rbxm
similarity index 100%
rename from charcustom/bodies/r_leg/DefaultRLeg.rbxm
rename to charcustom/bodies/5/DefaultRLeg.rbxm
diff --git a/charcustom/bodies/l_leg/DefaultLLeg.rbxm b/charcustom/bodies/6/DefaultLLeg.rbxm
similarity index 100%
rename from charcustom/bodies/l_leg/DefaultLLeg.rbxm
rename to charcustom/bodies/6/DefaultLLeg.rbxm
diff --git a/charcustom/bodies/heads/DefaultHead.rbxm b/charcustom/heads/DefaultHead.rbxm
similarity index 100%
rename from charcustom/bodies/heads/DefaultHead.rbxm
rename to charcustom/heads/DefaultHead.rbxm