From 75814756dd286fec57167e9a0ca3c21f9dc22be7 Mon Sep 17 00:00:00 2001 From: Aaron Johnson Date: Fri, 21 Aug 2020 19:46:43 -0500 Subject: [PATCH] version 1.0.0.0 --- .gitignore | 2 + Elite Power Management Simulator.sln | 25 ++ Elite Power Management Simulator/App.config | 6 + .../Form1.Designer.cs | 203 ++++++++++++++ Elite Power Management Simulator/Form1.cs | 265 ++++++++++++++++++ Elite Power Management Simulator/Form1.resx | 138 +++++++++ Elite Power Management Simulator/Program.cs | 22 ++ .../Properties/AssemblyInfo.cs | 36 +++ .../Properties/Resources.Designer.cs | 71 +++++ .../Properties/Resources.resx | 117 ++++++++ .../Properties/Settings.Designer.cs | 30 ++ .../Properties/Settings.settings | 7 + ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 823 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7385 bytes ...t Simulator.csproj.CoreCompileInputs.cache | 1 + ...ment Simulator.csproj.FileListAbsolute.txt | 10 + ...nt Simulator.csproj.GenerateResource.cache | Bin 0 -> 1012 bytes ...nt Simulator.csprojAssemblyReference.cache | Bin 0 -> 424 bytes .../Elite Power Management Simulator.exe | Bin 0 -> 14336 bytes .../Elite Power Management Simulator.pdb | Bin 0 -> 38400 bytes ...t_Simulator.Properties.Resources.resources | Bin 0 -> 180 bytes ...r_Management_Simulator.form_main.resources | Bin 0 -> 1332 bytes ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7389 bytes ...t Simulator.csproj.CoreCompileInputs.cache | 1 + ...ment Simulator.csproj.FileListAbsolute.txt | 9 + ...nt Simulator.csproj.GenerateResource.cache | Bin 0 -> 1012 bytes .../Elite Power Management Simulator.exe | Bin 0 -> 13824 bytes .../Elite Power Management Simulator.pdb | Bin 0 -> 38400 bytes ...t_Simulator.Properties.Resources.resources | Bin 0 -> 180 bytes ...r_Management_Simulator.form_main.resources | Bin 0 -> 1332 bytes 32 files changed, 951 insertions(+) create mode 100644 .gitignore create mode 100644 Elite Power Management Simulator.sln create mode 100644 Elite Power Management Simulator/App.config create mode 100644 Elite Power Management Simulator/Form1.Designer.cs create mode 100644 Elite Power Management Simulator/Form1.cs create mode 100644 Elite Power Management Simulator/Form1.resx create mode 100644 Elite Power Management Simulator/Program.cs create mode 100644 Elite Power Management Simulator/Properties/AssemblyInfo.cs create mode 100644 Elite Power Management Simulator/Properties/Resources.Designer.cs create mode 100644 Elite Power Management Simulator/Properties/Resources.resx create mode 100644 Elite Power Management Simulator/Properties/Settings.Designer.cs create mode 100644 Elite Power Management Simulator/Properties/Settings.settings create mode 100644 Elite Power Management Simulator/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 Elite Power Management Simulator/obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 Elite Power Management Simulator/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.CoreCompileInputs.cache create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.FileListAbsolute.txt create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.GenerateResource.cache create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csprojAssemblyReference.cache create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.exe create mode 100644 Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.pdb create mode 100644 Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.Properties.Resources.resources create mode 100644 Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.form_main.resources create mode 100644 Elite Power Management Simulator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 Elite Power Management Simulator/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.CoreCompileInputs.cache create mode 100644 Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.FileListAbsolute.txt create mode 100644 Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.GenerateResource.cache create mode 100644 Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.exe create mode 100644 Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.pdb create mode 100644 Elite Power Management Simulator/obj/Release/Elite_Power_Management_Simulator.Properties.Resources.resources create mode 100644 Elite Power Management Simulator/obj/Release/Elite_Power_Management_Simulator.form_main.resources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d717ac --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +Elite Power Management Simulator/bin/Debug/* +Elite Power Management Simulator/bin/Release/* diff --git a/Elite Power Management Simulator.sln b/Elite Power Management Simulator.sln new file mode 100644 index 0000000..53ebd37 --- /dev/null +++ b/Elite Power Management Simulator.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30413.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Elite Power Management Simulator", "Elite Power Management Simulator\Elite Power Management Simulator.csproj", "{7FC8D566-B9B7-4FE8-BA7E-60A2EC6BC741}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7FC8D566-B9B7-4FE8-BA7E-60A2EC6BC741}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7FC8D566-B9B7-4FE8-BA7E-60A2EC6BC741}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7FC8D566-B9B7-4FE8-BA7E-60A2EC6BC741}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7FC8D566-B9B7-4FE8-BA7E-60A2EC6BC741}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7F6E425E-6982-443B-9AF9-D1C16E4EBC92} + EndGlobalSection +EndGlobal diff --git a/Elite Power Management Simulator/App.config b/Elite Power Management Simulator/App.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/Elite Power Management Simulator/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Elite Power Management Simulator/Form1.Designer.cs b/Elite Power Management Simulator/Form1.Designer.cs new file mode 100644 index 0000000..c15c928 --- /dev/null +++ b/Elite Power Management Simulator/Form1.Designer.cs @@ -0,0 +1,203 @@ +namespace Elite_Power_Management_Simulator +{ + partial class form_main + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(form_main)); + this.prog_eng = new System.Windows.Forms.ProgressBar(); + this.prog_sys = new System.Windows.Forms.ProgressBar(); + this.prog_wep = new System.Windows.Forms.ProgressBar(); + this.label1 = new System.Windows.Forms.Label(); + this.lbl_eng = new System.Windows.Forms.Label(); + this.lbl_sys = new System.Windows.Forms.Label(); + this.lbl_wep = new System.Windows.Forms.Label(); + this.btn_reset = new System.Windows.Forms.Button(); + this.lbl_copyright = new System.Windows.Forms.Label(); + this.lbl_xant_ad = new System.Windows.Forms.Label(); + this.lbl_instructions = new System.Windows.Forms.Label(); + this.lbl_version = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // prog_eng + // + this.prog_eng.BackColor = System.Drawing.SystemColors.ControlDarkDark; + this.prog_eng.Location = new System.Drawing.Point(115, 32); + this.prog_eng.Maximum = 8; + this.prog_eng.Name = "prog_eng"; + this.prog_eng.Size = new System.Drawing.Size(158, 23); + this.prog_eng.TabIndex = 0; + this.prog_eng.Value = 4; + // + // prog_sys + // + this.prog_sys.BackColor = System.Drawing.SystemColors.ControlDarkDark; + this.prog_sys.Location = new System.Drawing.Point(12, 81); + this.prog_sys.Maximum = 8; + this.prog_sys.Name = "prog_sys"; + this.prog_sys.Size = new System.Drawing.Size(158, 23); + this.prog_sys.TabIndex = 1; + this.prog_sys.Value = 4; + // + // prog_wep + // + this.prog_wep.BackColor = System.Drawing.SystemColors.ControlDarkDark; + this.prog_wep.Location = new System.Drawing.Point(222, 81); + this.prog_wep.Maximum = 8; + this.prog_wep.Name = "prog_wep"; + this.prog_wep.Size = new System.Drawing.Size(158, 23); + this.prog_wep.TabIndex = 2; + this.prog_wep.Value = 4; + // + // label1 + // + this.label1.Location = new System.Drawing.Point(0, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(100, 23); + this.label1.TabIndex = 9; + // + // lbl_eng + // + this.lbl_eng.AutoSize = true; + this.lbl_eng.Location = new System.Drawing.Point(182, 58); + this.lbl_eng.Name = "lbl_eng"; + this.lbl_eng.Size = new System.Drawing.Size(30, 13); + this.lbl_eng.TabIndex = 3; + this.lbl_eng.Text = "ENG"; + // + // lbl_sys + // + this.lbl_sys.AutoSize = true; + this.lbl_sys.Location = new System.Drawing.Point(81, 107); + this.lbl_sys.Name = "lbl_sys"; + this.lbl_sys.Size = new System.Drawing.Size(28, 13); + this.lbl_sys.TabIndex = 4; + this.lbl_sys.Text = "SYS"; + // + // lbl_wep + // + this.lbl_wep.AutoSize = true; + this.lbl_wep.Location = new System.Drawing.Point(287, 107); + this.lbl_wep.Name = "lbl_wep"; + this.lbl_wep.Size = new System.Drawing.Size(32, 13); + this.lbl_wep.TabIndex = 5; + this.lbl_wep.Text = "WEP"; + // + // btn_reset + // + this.btn_reset.Location = new System.Drawing.Point(131, 125); + this.btn_reset.Name = "btn_reset"; + this.btn_reset.Size = new System.Drawing.Size(126, 31); + this.btn_reset.TabIndex = 6; + this.btn_reset.Text = "[ RST ]"; + this.btn_reset.UseVisualStyleBackColor = true; + this.btn_reset.Click += new System.EventHandler(this.btn_reset_Click); + // + // lbl_copyright + // + this.lbl_copyright.AutoSize = true; + this.lbl_copyright.Location = new System.Drawing.Point(274, 188); + this.lbl_copyright.Name = "lbl_copyright"; + this.lbl_copyright.Size = new System.Drawing.Size(106, 13); + this.lbl_copyright.TabIndex = 7; + this.lbl_copyright.Text = "(C)2020 Skyfall Tech"; + this.lbl_copyright.Click += new System.EventHandler(this.lbl_copyright_Click); + // + // lbl_xant_ad + // + this.lbl_xant_ad.AutoSize = true; + this.lbl_xant_ad.ForeColor = System.Drawing.SystemColors.ControlDark; + this.lbl_xant_ad.Location = new System.Drawing.Point(95, 9); + this.lbl_xant_ad.Name = "lbl_xant_ad"; + this.lbl_xant_ad.Size = new System.Drawing.Size(209, 13); + this.lbl_xant_ad.TabIndex = 8; + this.lbl_xant_ad.Text = "Buy your software from Xanthor\'s Software!"; + this.lbl_xant_ad.Visible = false; + // + // lbl_instructions + // + this.lbl_instructions.AutoSize = true; + this.lbl_instructions.ForeColor = System.Drawing.SystemColors.ControlDarkDark; + this.lbl_instructions.Location = new System.Drawing.Point(100, 167); + this.lbl_instructions.Name = "lbl_instructions"; + this.lbl_instructions.Size = new System.Drawing.Size(196, 13); + this.lbl_instructions.TabIndex = 10; + this.lbl_instructions.Text = "Use arrow keys to change power levels."; + this.lbl_instructions.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // lbl_version + // + this.lbl_version.AutoSize = true; + this.lbl_version.ForeColor = System.Drawing.SystemColors.ControlDark; + this.lbl_version.Location = new System.Drawing.Point(3, 188); + this.lbl_version.Name = "lbl_version"; + this.lbl_version.Size = new System.Drawing.Size(46, 13); + this.lbl_version.TabIndex = 11; + this.lbl_version.Text = "v1.0.0.0"; + // + // form_main + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(392, 210); + this.Controls.Add(this.lbl_version); + this.Controls.Add(this.lbl_instructions); + this.Controls.Add(this.lbl_xant_ad); + this.Controls.Add(this.lbl_copyright); + this.Controls.Add(this.btn_reset); + this.Controls.Add(this.lbl_wep); + this.Controls.Add(this.lbl_sys); + this.Controls.Add(this.lbl_eng); + this.Controls.Add(this.label1); + this.Controls.Add(this.prog_wep); + this.Controls.Add(this.prog_sys); + this.Controls.Add(this.prog_eng); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "form_main"; + this.Text = "Elite Power Management Simulator"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.ProgressBar prog_eng; + private System.Windows.Forms.ProgressBar prog_sys; + private System.Windows.Forms.ProgressBar prog_wep; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label lbl_eng; + private System.Windows.Forms.Label lbl_sys; + private System.Windows.Forms.Label lbl_wep; + private System.Windows.Forms.Button btn_reset; + private System.Windows.Forms.Label lbl_copyright; + private System.Windows.Forms.Label lbl_xant_ad; + private System.Windows.Forms.Label lbl_instructions; + private System.Windows.Forms.Label lbl_version; + } +} + diff --git a/Elite Power Management Simulator/Form1.cs b/Elite Power Management Simulator/Form1.cs new file mode 100644 index 0000000..96963e6 --- /dev/null +++ b/Elite Power Management Simulator/Form1.cs @@ -0,0 +1,265 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Elite_Power_Management_Simulator +{ + public partial class form_main : Form + { + public form_main() + { + InitializeComponent(); + } + + public static class global + { + public static Int16 eng = 4; + public static Int16 sys = 4; + public static Int16 wep = 4; + } + + public static class calc + { + public static int e = 0; + } + + private void btn_reset_Click(object sender, EventArgs e) + { + global.eng = 4; + global.sys = 4; + global.wep = 4; + update(); + } + public void update() + { + prog_eng.Value = global.eng; + prog_sys.Value = global.sys; + prog_wep.Value = global.wep; + } + + protected override bool ProcessCmdKey(ref Message msg, Keys keyData) + { + //capture up arrow key + if (keyData == Keys.Up) + { + bool fin = false; + if (global.eng < 8) + { + if (global.eng == 7) + { + calc.e = 1; + } + else + { + calc.e = 2; + } + if (calc.e == 2) + { + if (global.sys >= 1 && global.wep >= 1 && !fin) + { + global.eng += 2; + global.sys -= 1; + global.wep -= 1; + fin = true; + } + if (global.sys < 1 && global.wep > 1 && !fin) + { + global.eng += 2; + global.wep -= 2; + fin = true; + } + if (global.sys > 1 && global.wep < 1 && !fin) + { + global.eng += 2; + global.sys -= 2; + fin = true; + } + } + if (calc.e == 1) + { + if (global.sys % 2 == 0) + { + if (global.wep >= 1 && !fin) + { + global.eng += 1; + global.wep -= 1; + fin = true; + } + /*else + { + if (!fin) + { + MessageBox.Show("Internal math error!"); + } + }*/ + } + else + { + if (global.sys >= 1 && !fin) + { + global.eng += 1; + global.sys -= 1; + fin = true; + } + /*else + { + if (!fin) + { + MessageBox.Show("Internal math error!"); + } + }*/ + } + } + + } + update(); + return true; + } + //capture down arrow key + if (keyData == Keys.Down) + { + global.eng = 4; + global.sys = 4; + global.wep = 4; + update(); + return true; + } + //capture left arrow key + if (keyData == Keys.Left) + { + bool fin = false; + if (global.sys < 8) + { + if (global.sys == 7) + { + calc.e = 1; + } + else + { + calc.e = 2; + } + if (calc.e == 2) + { + if (global.eng >= 1 && global.wep >= 1 && !fin) + { + global.sys += 2; + global.eng -= 1; + global.wep -= 1; + fin = true; + } + if (global.eng < 1 && global.wep > 1 && !fin) + { + global.sys += 2; + global.wep -= 2; + fin = true; + } + if (global.eng > 1 && global.wep < 1 && !fin) + { + global.sys += 2; + global.eng -= 2; + fin = true; + } + } + if (calc.e == 1) + { + if (global.eng % 2 == 0) + { + if (global.wep >= 1 && !fin) + { + global.sys += 1; + global.wep -= 1; + fin = true; + } + } + else + { + if (global.eng >= 1 && !fin) + { + global.sys += 1; + global.eng -= 1; + fin = true; + } + } + } + + } + update(); + return true; + } + //capture right arrow key + if (keyData == Keys.Right) + { + bool fin = false; + if (global.wep < 8) + { + if (global.wep == 7) + { + calc.e = 1; + } + else + { + calc.e = 2; + } + if (calc.e == 2) + { + if (global.sys >= 1 && global.eng >= 1 && !fin) + { + global.wep += 2; + global.sys -= 1; + global.eng -= 1; + fin = true; + } + if (global.sys < 1 && global.eng > 1 && !fin) + { + global.wep += 2; + global.eng -= 2; + fin = true; + } + if (global.sys > 1 && global.eng < 1 && !fin) + { + global.wep += 2; + global.sys -= 2; + fin = true; + } + } + if (calc.e == 1) + { + if (global.sys % 2 == 0) + { + if (global.eng >= 1 && !fin) + { + global.wep += 1; + global.eng -= 1; + fin = true; + } + } + else + { + if (global.sys >= 1 && !fin) + { + global.wep += 1; + global.sys -= 1; + fin = true; + } + } + } + + } + update(); + return true; + } + return base.ProcessCmdKey(ref msg, keyData); + } + + private void lbl_copyright_Click(object sender, EventArgs e) + { + lbl_xant_ad.Visible = true; + } + } +} diff --git a/Elite Power Management Simulator/Form1.resx b/Elite Power Management Simulator/Form1.resx new file mode 100644 index 0000000..88a4383 --- /dev/null +++ b/Elite Power Management Simulator/Form1.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAQAAEABADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8A///4AB//8cOP/8eB4/+fAPn/Pw + D8/n8A/nwHAOA8AAAAOAHDgBgBvYAaARiAUgEAgEMDAcDDhiRhw8wAN8PMADfDhiRhwwMA3sIBAKBKAQ + CtWAGZrRgBw6EcAIEcPAMAwD5/AP5/PwD8/58A+f/HgeP/4cOH//gAH//+AH/w== + + + \ No newline at end of file diff --git a/Elite Power Management Simulator/Program.cs b/Elite Power Management Simulator/Program.cs new file mode 100644 index 0000000..c858e41 --- /dev/null +++ b/Elite Power Management Simulator/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Elite_Power_Management_Simulator +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new form_main()); + } + } +} diff --git a/Elite Power Management Simulator/Properties/AssemblyInfo.cs b/Elite Power Management Simulator/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1cf3377 --- /dev/null +++ b/Elite Power Management Simulator/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Elite Power Management Simulator")] +[assembly: AssemblyDescription("A power management simulator for testing pip macros intended for Elite Dangerous.")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Skyfall Tech")] +[assembly: AssemblyProduct("Elite Power Management Simulator")] +[assembly: AssemblyCopyright("Copyright ©2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("7fc8d566-b9b7-4fe8-ba7e-60a2ec6bc741")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Elite Power Management Simulator/Properties/Resources.Designer.cs b/Elite Power Management Simulator/Properties/Resources.Designer.cs new file mode 100644 index 0000000..b8a0751 --- /dev/null +++ b/Elite Power Management Simulator/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Elite_Power_Management_Simulator.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Elite_Power_Management_Simulator.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Elite Power Management Simulator/Properties/Resources.resx b/Elite Power Management Simulator/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Elite Power Management Simulator/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/Elite Power Management Simulator/Properties/Settings.Designer.cs b/Elite Power Management Simulator/Properties/Settings.Designer.cs new file mode 100644 index 0000000..a6c4860 --- /dev/null +++ b/Elite Power Management Simulator/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Elite_Power_Management_Simulator.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Elite Power Management Simulator/Properties/Settings.settings b/Elite Power Management Simulator/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Elite Power Management Simulator/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Elite Power Management Simulator/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Elite Power Management Simulator/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..057ed7f --- /dev/null +++ b/Elite Power Management Simulator/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/Elite Power Management Simulator/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Elite Power Management Simulator/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000000000000000000000000000000000000..13e74e975e8707019a06abf89709e91acc0822b1 GIT binary patch literal 823 zcmcIi%Wl*#6m>F5nnxF1v0@Q+ppLABVQ4`eRV6S&;#HVY*+hURxhd8-ab-J&;Wzj; z{(^r1-(fUB1?;et<44Z*IX=3?A%uLh17{q&u7x+xc%`J4jiC>EE^0bwdZ}q46%5le zP@2nbl8tUQx)1^?V=ZXo)x2Y3Tl4kh;qlsrX9dtj zdC*qzpmnJ=o}<6%o}SsSN2zowmHHPS`ljdd5DNdL@U$|j zX5CF;A|8}&VFDqFS^^yo+#^cf#KDW^6Nwwx?Eee8?<{=y?z1L~l z;8kp!KGjxIfsgjyp~?-e>tMUX%2CyTeT7QQJyDlRLlJ5mU9l>S#rgGS*HZlbhdZ^@ zwYpvt7pu5^uKwgGCqO%mJu}Us(BN661(?Z(Z@Df5*WS(=w>xICex_ogp;Zk%L{?2{ zs0(9tvo|1vhFKsN&Z44|&NzWGbEfH~l41|^-HWS>!ZZTjB*3!++ktkoHE>NU4~$Xz z8O~ld&pT$Eiaktk%4unfd+}HN?L`ebQd*U)t%bdEo_JlGnPsX zqZ~@7(+oc-Q$v4^mYc>xh~bIr>sbmo_ZN_$h3CFNXT2-DefxnfxFa@s5WyN3`rX5B z*Rs_@)^kp1Jf#Cs?d`Go|GmYQmiU6VuvmCJHxKzokGFCkn#U(P)g=6|)nB)M;_A}r zL5L<1Mcv($gz`^3ruw{r1_7Ex3=IObUoXzBH1XifFpBZa2o*<3ARS0$E}_7$F%lUP z<0K|fjI+xqQ|thf8JekALcp~v`sfx4v*PY z)bwY1`AOxqK>}LgyJ|-oB`Zcn+JlOQhBB3v0GW`phE!NPFS+D(2tit>EW!xMpwb`j zpsKr-B2=R~N`nk_16kBM7!~YyDRYl9xgPg+AoCenI*H=eX=6H>LCYwX#U9ht!|B@V z#OAUoQqb=8IhIF4BLX&!rE#pyyL0)u!sE;r_X=dwD_RXT|lQDXEf(tM0Qu_bZk~y3)JiAE|+(>Zp2={g>XC(xDE-9 zVQwRgp9oBsrE7?h?jX{Bl1N2vxl00rrI)V8*k2}XWsFUm#X+RqM6HBIpqg|D#g^Sg zyzM0M$f&Onq@E;5QFAaj&%BiK%oV6VWs&#i53vwMgZCW-b&NM9Wox1@AvVgtWH zNH0mq-@+gU`Zj4#63`1FeW^~(#KVWQozjfP+ zE&q&k-&yA`p9VKebkF?WORyy3zTb=A=REuE*4S9)J3RF|PnJ>`x_M{!QM^v%h|f}n z6k|NV!bk~k&C`@E#VORu$)qWLI#-*ee2Shd*dl8y5{gt-(43Plk;!+#IXy^sCAHaPdXzk6&={0Hdr BrE~xQ literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.CoreCompileInputs.cache b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bfe380c --- /dev/null +++ b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8069502011d0681850e57a53d5a1673222f430a6 diff --git a/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.FileListAbsolute.txt b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ed2ba8d --- /dev/null +++ b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Debug\Elite Power Management Simulator.exe.config +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Debug\Elite Power Management Simulator.exe +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Debug\Elite Power Management Simulator.pdb +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite Power Management Simulator.csprojAssemblyReference.cache +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite_Power_Management_Simulator.form_main.resources +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite_Power_Management_Simulator.Properties.Resources.resources +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite Power Management Simulator.csproj.GenerateResource.cache +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite Power Management Simulator.csproj.CoreCompileInputs.cache +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite Power Management Simulator.exe +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Debug\Elite Power Management Simulator.pdb diff --git a/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.GenerateResource.cache b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.csproj.GenerateResource.cache new file mode 100644 index 0000000000000000000000000000000000000000..6315c203700901f84a39447e8ada44c85fda8de7 GIT binary patch literal 1012 zcma)4QEL-H5WY+9(%dE0%R?!m4?z@!gd;}@`VtCFjTT#|rW8?8_HO5J$>uif?n&b> z@DKT0^hfyWi!VBJw57C%bROn*XTF_pzPWK+$8r9m(U+{-K=<)TWLg=O+jy@OlE){^ zEKEFA8ixH-&_<|Yl8oad9>t?!e_BdgYM2yITFvCJe_WJmF$mE`1f@Z=I_Scg(#s^qH92c_@qP~ltUz1bj}N#~ zs?-^nDjiYvYJi(~2=1VZs3=)Pg~@!%CH1>;b3+FhslTs_nZ-5|HM{Km7NN+0SpTOCl;YJ<5^(Ki|c> P-_J4EBRE-)a%7!}Rpp~${*{`vAC`+SR~c77ZSft zqoeODpF&D(t&d>%6_^(bjYLX49eE0g{*{isVDCmjcL}XkdUrcd?BiBy{R$fOgx;;i z8-~7U#!HY64Pzq~Me*cto8wM*VgUK$d4D)NKcN_*rvutVMAR;%(jPvWGJX=zga6zL P46-1Yk&!SXGa>#2smXQS literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.exe b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.exe new file mode 100644 index 0000000000000000000000000000000000000000..b59574819972b265902679e24a54dd209e3a5ae1 GIT binary patch literal 14336 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 N<2P`xU%z@D_-}#O1#AES literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.pdb b/Elite Power Management Simulator/obj/Debug/Elite Power Management Simulator.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0c9e99bca087a4ffed2c7aeaaccbea125f276734 GIT binary patch literal 38400 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 Klsa%r;Qs;0RCVzH literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.Properties.Resources.resources b/Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.Properties.Resources.resources new file mode 100644 index 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.form_main.resources b/Elite Power Management Simulator/obj/Debug/Elite_Power_Management_Simulator.form_main.resources new file mode 100644 index 0000000000000000000000000000000000000000..312560b3a67e0735b57582b8adfb6dc0d78b89a6 GIT binary patch literal 1332 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J znW3ezNveT`r81^vrFkWpxv4PQgHubGfQ|w=4usR7>RpNw%QN%R^*odF^K=wY1<7%i zfpMB?nt7U`VT!3iqH&^A*6dk8+ZarNc8aJllrUs4WHJ;p=rMRQBs1hQk&nN-fzyZ<*1N{}25C|2HuH|1V?l|4)US{m&2l^FM#!KmYs#|MLR{e9Q+J7?>Mm zEEpT4Z!j(p>|j+8;9xN@km0dNa+9$+z+3~uAhv-4?;8aHE|vuXTvr<;XI*TNu@XGM eA$a(J0S`0CERdNXvq5(Jld-4=+xdX~KQ{pEd*2`c literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Elite Power Management Simulator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..057ed7f --- /dev/null +++ b/Elite Power Management Simulator/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/Elite Power Management Simulator/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Elite Power Management Simulator/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..19b8d49cbafe913d1b801d31f5aa58cff1d875fe GIT binary patch literal 7389 zcmeHMTT>f16t=l2m|PmCl#pvTZQ3TSyR{(%l9@cD7&lCl3}cg|GngUr?y(WLE*m=o>oTH zt@~D(hzAuL`9ir%Dh!oeDK6)nx1fzs@>$`ro2S2=vlIn3((p_|WHk?R&T3Q(g!e17 z*3=HjXSMuXeZIa>FBJUwJfGv^1iAPTq@N=Z_=LA2Eojwzr+Kpp+AVXvBAbylH*oL` z9t3I+{O86%SPNRq`xYe4%3Q|YOG?&7qa*^D_PF$g&nnpoU!xLpUo@oBP=q>1SFA{5aen>TwH1GVcBi(w zcGv6TbQO0#s6RT&3D8bsPfW8YG!|9h^)G% zp&^Xbt^R-v8fJl9coP*Jb;c2t=@U(_loUIl@10&<6s8&Q76G0d*a@^-?SZRWd0>pv z&vEv`qD>fbogv_tBWXnlogpVRwY_9!A_HZpg9eGJN?L`ebQ?8Y(cRkEEo_91GL}k> zq8v%5(+oc-QzL(kS6aqGh~bIr>sbmo_ZN_$h3CFRXT2}1ubRe{Zpc1wQZ1KQ26(dj$E#CmXr5=5bD^nuH%V2J6;yt}dM( zhG-H|)Z0x-C_m>hHQ)_24A3NEXc(Y_dU0-~i3ev!QA}pWs5njn=|C!T0R?_dkjRjj zBykbNB)fz%#V(^L9+W%G>1hRt^d8qx?UCK8`+9k;$02jOkK6@!HrJ(~9lE)^f5@(& zra#k5PpfYX63{B&R$J02Sv4xs9#l0nm8mWV$b_6#q{7;H#U*b*2+}$g5k^P`mHu=G zRokwXApmZmS_Fd}bq#q`8H@^cd!)Hfnp}^2TafvTY`u!&_HlE%xk1}3mc<@Z)Whjn z?8FAMYowsl>vJrRg+>Hy3QLn%n|J5(bA>0FFYy1=WR})~K5UwVyC-Dmv+GzMbNwJ- zGjR#_Axq0eeq)p)9478NWRIAcSY+1K3RsIA&bXKo#07Q}r?8Xw6rMMmt{0~}>=ptF z1jJc2Ftu^wOvib!zxeneu5gF-I-N+PIrn3-w>rn8v)W#uen)qyvc+{X_WEsvbg42Vwj~V0t`VLyUA6k#>_rDsszR5*RG~gf+(gGHEMgY}zaiB5fyXB{T!oqGKqw z>>lE6CW%KzeT5*6BteRr1~JgLNqdrjUJCg;p^edNd`Lcrn7l*G{8J9~iQO(I8p zmU5&R;~^HtN_cOcrhF+*qK-}`O$pQowOPuj=*d!6Me}7ppqM#WI`ty|kma!T+QADU zEnVHxo$d;5oJN=frb;w+7A55b56KcAAQ099?xal7Ikma$8UfRi~ZZ#o$ zsauvZGD=)o0Yx%P%VtsaMj}yD;vV-gCCSDaAHrOSLxtjqp3%RDC*P-jV;i1)z281I GF8&9IyQeGw literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.CoreCompileInputs.cache b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5abe8d4 --- /dev/null +++ b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a05b2efad1c492f69cfd9e73a7de2300da2b5b0d diff --git a/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.FileListAbsolute.txt b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f3394ed --- /dev/null +++ b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Release\Elite Power Management Simulator.exe.config +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Release\Elite Power Management Simulator.exe +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\bin\Release\Elite Power Management Simulator.pdb +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite_Power_Management_Simulator.form_main.resources +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite_Power_Management_Simulator.Properties.Resources.resources +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite Power Management Simulator.csproj.GenerateResource.cache +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite Power Management Simulator.csproj.CoreCompileInputs.cache +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite Power Management Simulator.exe +C:\Users\ajohnson\source\repos\Elite Power Management Simulator\Elite Power Management Simulator\obj\Release\Elite Power Management Simulator.pdb diff --git a/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.GenerateResource.cache b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.csproj.GenerateResource.cache new file mode 100644 index 0000000000000000000000000000000000000000..6c88676e48c1ef8d812676a026a3e39e6fd98e8e GIT binary patch literal 1012 zcma)4&2G~`5VjlJjhz&n1F8@lBE$hHkrk_o;1VGtnTma*~a9igEF{ zNK-x@u^r|U*`sET*I=GQxd$sKIh45o;~_ZIVBXAx1k+n7ZCNJaKxCR}%x`DR;H_K$ zC&Zr6kXxnK{kdfpD71@!!6yS+Fe$zQKU3g&uJfR|i_82pkQ>4_2phJ@QP+|0)AJ_%}^(!ej*oDO-;3ciK%{`{%VDHYnJ?R{z(l zCr_#OD5_;pgJBz;OF_~@0Q{T-LOg~Mx|pCeh@gWmnkl_Z6I_$ipo{mrC}0KJ;(olx zl~R??!PM!Ps@DVD!b5lqT}(yEVk%7LQ!Z`Zjq4jaz)-!N^fx;4VinEy#U8C`4+jOh zk}cuhmAGWa9x5&h0sPLD9GnVcO@JG+<<@QAMv{;;|M>7W^=Ci7xh{#Q)$}Mw`u}_v R?|whST#w*nJ<5@F{sE?G7a;%u literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.exe b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.exe new file mode 100644 index 0000000000000000000000000000000000000000..5e09bfc4eb0a826183f3e95043d8d4e44926538e GIT binary patch literal 13824 zcmeHO4R9S-bw2z4Ez7bc|Hwaz-&#({vm-rAmi!xwNU~%{*iK|icH+dK?0at|ZM1Lq zvHPAa#l*be34sBo1h=&2H=#p2p@b$gK*LX|fwYvgP+aN^%(OI}Y58fJNiqyHFlpTH zoZWptk`o6?XF5aHxo7V=_uO;NJ@?$Z_uQu(y5s#6CZY(+<;z4*;LT6Jz*h%lG&d!` z*hHUQ^sNm~CB}+9db?DYHHE-wi^pYhF*ZQJI zhlvgojqW-j_n>HBPRw|>gtX`Cwr=MuB29@g5 zzES)NQItj@yS$PR6CqX=`_2H-^U?XeUK!sWO0B@8g;MZkZ1d#Wax>;=ZMj9@a==h3 z%q@QvIt>dWXSmshzJ}0g&?9G<(Z>;zku%&yaQJ6=SD3yFE`_K$l6*sdH!7zXh#8%7u3?r-iKLn#ieCyU;5!<@8Bi6Y|`mDZvS`78tk57xe9up9@ zp|!zl+j6}}?oP%!+v@u=+v<7j-9G!4h3q_1X6HAgvyrVm$3@HPH^VN`y7lH*=dh@0 z4NMezMa>P@`(vsos4$A)iUQB?t(zmsRL|O1nig)p&hzVHk?Z@FMZKzDc^Yf{8i)Nd zJ{Zk!Zv?P~`Re_;*lVl$H4eYl^{w-(&tCQG0(Mrxeif4zSNtmE8o$QjS60LB5)H0b7%Sf(oP1D+;Q9z20+Nqm0jY91DF_$B79DNKaWu!k>5!Nbc*I=ucvu7h4;> zHaJfDb|({XocJo}%k+vTe0Dfa*taZX7pMEGAbmkVdM4hSfaAnhwQ5=ee>7GDGO&jo zw_q%-je+Ar;Yex~Hh|6BL#G$>gxIZ&-4pIu9y*Oh9qCx?z3tV!O@vcxxS98YpJUU< zCer*JfKX~J$nH9ThLGEa*S);I_*LFo{3`D%A@>?)z_u1tAt|V0;|i+S08w4fyo;(- ze31eMw$~SijW?(+;c6<0Zr&!BQc<-xRPdymRNZ!_ZLHAN+xQ~-{0>H4u&=A&>c_Bk zC0pG$aF^>V9TNuOkVA4*#qnIX z+MC38TvtEO2Jfzw$z*4^DwFZ#`s9+@DPY=~8j;RX=Er9Wv&b|4ck(|lM~5B zwPrAn^Iugn7*{W{+v|9T&RrQP~bLt<@a|Dwe zoyA=zRx++WxxfPH-Qb%beIBTq!1!t#CvL><64V0|xL)f4#@8&E3Z^=jsunPwOxHU= zXp4RI(&5>PdTfOk`T<4<+-{hV+RApcrh53LzKbXS?|IB`;I>{SrnWH@OYQA71Rh2m zfn8fi;90LDa17QFcpcOccqDtG^7}JqnxLa| zy)%RE-+@Km7t+3o+4}*?+%8O;*PdC5I=YtSz4i=pCPq^OEa{jF&RA*?^&*BEDog7v z3(t_7F-wDEZyHqigpLQ(K_`3DUFn{#o^Du96eSbzc6e~(8KNigehB{FI97BFYszJg z94z=AytDD>812D{1iEPB{-Yy9cpn7b3s-I&H0=yC;{mI3+saQUi$JGeDm{dw1Zzix z5N3{WiV+!5Bgqe%xsMd?0>=nHzXLkaHDPZAF?vVnKrBYj3H+$CCbpDbfYmYjf%0@D zMtX?hK7mgQ{Dif1At76ozu$@PuGl0?PSJAp!X##v) z;0yF=$mtZxMPkWc5cpoe7W!!XBjFZ$GRm+&!7vm42rT>|^u{O?WuA3HZziT+D|WsG zt-nJ*hT~f39TBFV6ZyZNcp7?Nf=0O1&w)826wE_0@*mLwsh5>yv<=u%Y7(Ah z7*-_OZi-X<-RQA|-T_R3tfSNnoUs(-9>vTyL(-?>{{}b}{t4h0;|!al3>A77r4VNL z^*F<|QHGb|F980tP&$R@y;6T5@+{;XjrF zROPX~b9E!Utho@lljjJd|2QbWgk4fOZlhp z0a~Lx6g^BMkbFDpACJ5R{38(s^~Vr%hkg2BSO;Y`!Sn;+m4J3)868(X6J1FfcuY|K zH0(g;3nKFaka?c8$Q->Dt!0{1it%>>-a+q!g|~~eBk|v*cPqQ-L-YduP5fcd&qV$R za>f%ZUxS6`m5%tMfWL@84yZ&wPmhTGo0M~jFQZpu>}!ZM9^E5KA3X)nf0*u2(zKYi z0xqW;0oMs-BV|#)0s7L^L(c%-NIwMJEA#{OBI;v8zf)kAnnG!sp`Cy(4TnZV@>x1d ze-JuL@1b*m=K%lEhiB>gAyQ6*ay@Ow&ZYkf~*KvzzuDvU4RP!1Er!phORoK>vTwWU2RIIks-q^ z*shi_J+5PhYjFKY$toIoeSEH<->g|VQ1{DXr zSdoci;{)Tmq-RP~Q@V4D zZ5?%W=Sq$2r)r0JhE*G2iSNiNZNPQ)e8!v`H;T0~Dr85?>3PkWsrDGx95{6!?zHt& zc5Oq@XCFp;Om|%Pui7hU+-qBt##9N8xMK5=?q(gMP~YfzPI_c?n2q44k9#L zT-dPJF3dT`)btgb@&(PBtM>6jjCDd!#xRXyO)Cf2G0iOLbW-3jnss&5KBYVAA_5Vppo5UTdTLz1rYfy7wj+N6L@!=7Fi}B*Z zk&QrnHosx`Bpm7OUQS>bFY_TgpY~!O5=SaNmLbEVI!v`$V{u|o%g$6WY!g`LCCwZw z&Y60(?P|eF!Z0DxJW-A2iApq6I*XVFlvfaZhBjr{ZqdlPf$>4ij#x$Au?u6mbJED_ z3z~zmEok>0hp#LzuU9cBT?rKY;^S@Tub~s>tDrkYLwD1`RJb+$y$u)ZiDUa$5=X-p zZ^bpv$C&+32+1rDI7sYj7G1?Bw;5IrUy?Mh6j$c7@?{*t7ti9|)Rl-c@cDGG%?ZJq z1DSf4vcaNs>3}}xdV%Vq!YiNO`}N|jnY$71)xAO5D!YQ1HspP#*>avC-UUsa7w8d* zZ8#?2;E+V<%EIM+k47w`XlN$3H|{CHPNTMgma&psK=*^%oLwps++ND-J~FC1JdHla z;mpd!2jg011nX&*mly)b-J8#0WMXCTLBWl8fgG}FiY7=W3-4NrOLI7_)lyD@t3b5G zB#kntn>d%#QWJG#mVt!$Fx^7?Yv{h5_!u3>sj$lLON-w|!!(KmU51LVVFDImyGJR4 z_fAsj2zrgAY3}QRg4XvR1_23 zxMZx1j%nEAd_B~B60?igN=y0on#<>z2Q{4Yo68S-9UkW1iG+uI(tAC^w6@hA_v0Sz zb4+VQvdLP$;Jv;YRjH-?mmc5yU`v}=(Ng{iWofbd<6vz;yFi(<~Dmhz>< zpWSof*qYvF-ko^trir&VUuxJLj-h#`JhbXIM=RhMJv^J$<%o%+I`&)ze3IzUbqc9h z{YcU=g$@s>1v&HOt7kqpIPiq7bDT}B;9hE_MHOz`2@vkusK-AFRKKRf|1_WGV{eCA zPyBVv>gt)?Ho0T6yF0h7OY6}F@BT3V@ds^#&J|bOJki)M7G1`}mhscbrXK!{TO(1w zyk4w~oYf`R1$@gO6;6}lkD|*Vv6{lmgxNOB$%8!BbRXJa^swn*^On?1(-2?v@9=QDc(#x02%H_*#J1@U9yZ)wM zJiqkgKYf1b-~H(Mr9Zk*XbNAzU!;}Wb}Hp{-%}oHepggomWXt9wKeX{>}%U|A^bKj zT<_{y@}KImhR8$98ZMRBeCT4iZFlp9MDy1#bTx)q7RzMWtmEajoo^SN&%`e;{wzlI z|9;;LJU==x#Q(9){G9L1p655#EPV>)MI7T_#823@&$3zs^&?|LV2f`1bBT!FO)%3GHrs+H!5{gqLKVaCBTxp19gs;pz-_=I#@?)6#M8cva?f zA(x@2ZmydCuUuEFcx^5COGb}2vDbEnXLY$-kuRLCr*o$1ces2Vsr|K`U$2V?Lin{q z99+iVT5)z)7IFpfCqn)Xb^)DP<`F^h_;IA0*Thnw2WOS{--S~1U3q_`7cIw-NlX9^ zOBOkTztFt}_z2)W@2_>~&m+&h%<{d0m(+>y^R_%J($nG-@EQ`@F=RIm(oR4!&&ZaoKVvAUsfuf?f zhWwE8FV0B0l{qbB%{of8e>KZf;iVv7<$fjf#8I7g;}@F1_JVNCVK(q%2qf|Iidj3_ z?xqds8+d$3Y-Ow1#vq?&8MRjYTG=XObRhw%>N*BpHMum}=jGC{?K<#t6tHI;y!qat zIQ}KIWa67_(CeCZBD#MFbo==`@2lo#g zQQqUo*lrb1Ps!}F)?glZq~7fPCdZhOx%P7YoPT3d_2zG8j(cT}>vhbZ>G|`#Q~C_R zJA7x8m%A^%GrC&8E==9OD}hIep8L{Y?73++Z>s*yd|x|quXa_pvUU!cSzr6n@qL{; z+g1L-FQ=Kf5bSH8)7|!)-ngV;Ny8q^|M5wM2+QqjFFDq3H#?0VoZQZQkP&v`T64GN z=F=y;+mT9J#w1efAUP9#5T>dXVIw)*MB+!AI-5AtY*#HLvVHA`=4yW7OKXKf`xZ|E zu2o(9Iyq^-MtiolOF!s#^=!$3P9F!w(cfBvoqBH6F-{^qozmUcD77b$s^Y22!RI?$ z;!EFy`bphXO@@8#nmb~hME2>lt0iL~%Xg%G?YKN}b$?JIWXlz-2~6KoXZxNl6(@jU f&z4|@@JCd?6;HqScUmw0O8;}qZ-r-mD+c*LRNeFN literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.pdb b/Elite Power Management Simulator/obj/Release/Elite Power Management Simulator.pdb new file mode 100644 index 0000000000000000000000000000000000000000..38d324df0f6c6e27800ceae7f0c0d9f0c4f7c98f GIT binary patch literal 38400 zcmeI52Y^)7y@&4rE_IbfKtaW&O50%zZHWcgB1=(_5|oWFy9_Y6jhR6NOXj_Rf;67FdyCX>;Vi-@T{T|2g;E zbH{O^(r{&@a#l1wZ$MtZe(B>T7N!sJXJ)3h>YP8(!Zfig9~griuM5oS4w8Qlg&O#- zt@Y41M_JZ)Npm>Xz)-sn?>HQbo-8vp@MXz_)1GO*C2i$IYr~nhH@S6V!I)Ls-hVl5 zzgh;CvDc2w5R%7)|V}co;vEqK1&}@J9^}0%NHEEXf`NB2LKkM<#3)4mqTePiD#r%0^|7Ps8#N;*^OQLJw+wI?O*K7Tk zQ}~lNtax%H7>*PN=2p(Bh*VY-M=IxsOM}JXU{z(LxS%W)4W^H;To4SWj|)@;W(UiI z718vGq4N1NQKG| zMnbbIf?<`ekqS4{ljJ@x<@j*r>~NsGQHobpomOL%t11|dhJumevw}`{kN6w4F)6Ld zK{%d+#%^1agNeatG*mHr|5ZW6WS~)Npt58x&0iJ_M1sZsGYTdZ($#|tD#PdXpMpLN zRaTsG{y_f_f3|-_BoZtyDO)%q8V!d^=0}5(Mi~*xU)bcYA{d<&&)@kq^A~XQ7pRfH z#vDbahKed?RW?f9c*c(@eaKC_Gn3kSrnlalVw<8Fu9jKNHutb2sx4pRvIzejdGU2E zVQQP}u|E&XPTC&Fyg}G9s2P+qR0p9s?ww5EQf1#Yo=ao3TQXerBwMNtt-EB^ZHe* z8o#}_4}U^_)!OnaH?Lo{pz(Xna(hc_XFOQ5 zgVE{v!C8U%Wl{O_Tg{q1d)kN3JaYDHMeBREZ1Uv2>t@J)oRx27!)6R3NgJ+P5>FFi z_Pc4lD36#94(z{Z(3G_%Eq`e#j}$*BjlU6F55&p0FJ2yv>0|AbEQ^^Tmd5Bbew}oE z@%(uGw#RQv>l%BUv>?33u#Cn`I&v~H2{HA@X9~i;=)KYSZ;NxzV_!;mX!rdqpYGL{?mgzBZW$-|F~b=%d09Y zc$6GhIWtHlw)42<2ciLGriNWOuz)pc4ZE?Sig~sDO$uIM_fv0LljekjftiH%PYOiN zi`2-+k3$tRD;GrkdP?OHm80(|^yBZ*$MLJapalc{+zvO)?dKcqietrqy)pPpQN7tt zCDDrMEc+Q*d1aweO(T2M=ZT}nxY9f*ljXqvOLtA_#g(1j{HmFOXz&N6Vf4gUxBqW( zsYK`xDL*!8@T^!Gj70LvXO0OjWX`9*^e11(;$LBmKiSX3{yrp&%uRR0ceK)NeT0=w z#Xl=lVb`k(v(*jr7@kxvg%NibrafsZogIWVVYsX}jH9c*N81yT^c%3-;Z(QXH@J0U z#s^+3rqz_bRFu-T%1X+nmsVCS42NdV*~_-icGK*yL5b<&!2ZkNO&Ma+%nwD_$FY|k zd)luRnd-!p?@c$YFFcb4Yr&MsCat21P&5=M3oQ!9hqvNT`(@(iZbV^?|1NHu(;o3Q zk3S8&Y46E=qjD?1((lsGGCuw@?V;w$v~BH`drZY3;h5U8ovrVW!*6%Sb1ORz>33($ z`r>0*%cN0=OgF+Pj_z(8Js|N|J)!2DUNF@ku^iY64uqPA2g4H}=K*7s z!}?_Vw=wdse8fnTwzp#Vv4+DUI1)~Qd9W1b!zx$+!;tTUVoM-?V^_n`a19&-Z-wLF zI(R1hEgTR32q(Z7A$1;m9g;@u|KL>kG2}35OfMAKRF0+iEUOr{fXZ(xIEVWVa4zfy zQL3>4uncPaqmp7n;3Aj{FNUYWpTc|?-;5Bds{5iZ8UI!n5*TW~_D!3W0hR?wp;al)#_#ve3Vt6W~MeT=+1Y0hQkp_$c?~@Nu{Z{u*8e zpMcBY26!d>ExZbDgsb2)@CLXEu7%IS2jKH?9aQ{}!WXz-4_|_t;1>7>d=>r$z6N)~ zKS5tp%c2j&n!-1ro*&6aE=y!>zCYz5~yK@51TuJs5z0fg!jJhT%u>V)$2h zIs61(2e-pjx+lLkz@6N$gq~;{+?iBfYUJ-0i&+E(<@oR#!%`BWM9kZM!s9Hfh+VqFK_cbdPxL4}|=k zMBWaBeB|1CK9jn1=IH9Vg0ASc9+QgCnIoFRRGuG<&Xo>#=2@RT|4P3$L(rYJX-nT| z&6Vbsj<7wHu0`(>PY!j^i?-?+kME)*%-ra+=Sjt<6!fnq$yMnk!@XK;n))4YT2M zFb6U&?K$LAIEedi;9%I&$6gEU1b+lGAbGNN?kQ0FJEubF($ioW91bsl`B3{(1#k^4 zg!e+qV(ZFL@MZ3c;Gf}WC>?nQ{2FRbk!~Ch)8Pb|0VhN0!YOb(WS+Ej-&7do{%jb7 z=fIWlTzDg#4j+Ou;073gufP(x6_&ysa5nrJQn#_A(FGwWT{RaDf#<xI*;pOltxEwwUuY|9{mGJ-JRq$(gHEcuQyaslM^qp8H z{5c#Be*wqB)o?1j0nULp!b{*ya0R>>-Uipe2jMO7H}DSl3cM5kFI)?Ez`LL?h4mzC z2Y(5>!+YRBcrPq~_d)H?X%3tXAAlFY2jMdK5L^u(hWEl>!S(PFsCT35;9KxN;Ro_(@;e3yr%=IZA8P0VcG6E@d*$qxaMjFay>$yv0g+zKv=w6$07rfu}Bpn{dEiSIPxZP zAR2})HR0_4p|fn$+@;WxDKF64E*>78{hvK~c0@JVrpB|QYuC@E(28{Cm~^zyXkNxT z2Mth*d$up4d@D_}XEDmHe}-z@kX*_&-Zb;r*qk2@%EO*KYt~L{otu`o9@~)CDwCGI z+p~9R{f#_kB2L@*ERz;fkLG;abVVnryxn0-)`H%(ic{ABM@%Y?wxf4y^Dypr5q1RX&uSQ;+rUwQ6oRd#%c|QxEm$IS;?ebG{u$`sK*@zU#Fr z93~yvNgcP~UUR#iX^N2x5Y5@zPfD8aR|9HyGycu~@6n#1ZRxj9ntto<$!iZs;k5rN zzs5be|69HPt8t<6KL(;7^ll<%_HsncK`juf**3b~NZ)=l zf&JUt{$IQ4kgvEQ&6F{w{l^8^g?0Au6mFw^&3=ySz9;SP-Oo3B_l>zv&(hH{`-7vn zcFN#Wo7hI>Gx{)%c9H*fkfN$BV;x|7yS=oI7>W4f>jt&cdbiPZt-XvEW+LSNKr;H) zw{yz@pY9-2dj5F{D(efm7TL?NdB1!Amdno#UH2t!IQFn?{{^o5t*(2yYv0x7GS{B< zw(Vd0T>P^Jx#aoKzMtpbcXi|2=Gy<>y`Svfx1@d*zNKqF&JFi#mp^gswO=KFdL|Wp zYUtgVhTIjjn>Rf1drd>(J?`WLZ5uc0IZhtqR`pzX!q?+kBYXoTtra|0>t46@#89ia zbpkcyUME0Z3*Yd%c5$0@MsZy;yslLPHm?4)df-p`Sz}*%VFpr$T!1V_Rw6edcOyI# zS{sl*Ag?3uAsR>0qwVQj=}3QMD58C3?Ijl@2a@Sx9f^9g=NXn=d1sF6H@%=D8eTYk zd}XL2s`unQZFe<&vswoLI$C`^ZkdBKWoBxAaKcpCVcbOn*T%nN@A{u5y;_}y&wa=+ zewD7za{XrM-In8bD)s2I>b^WR;T(5291B;IC+)BMEcYd-Cr^&O>p!Qu-2LfZKC9*n zO_PS>=7t$4J>cYRyseAsf5B(MI)2=+gR1kl(GFYvqR#kt>|OtZtJBiEG@n)f%Qh3% z@#BUaQnS9Pf}}Z&Ye3IW8e{btvo_F7q-QOut^-Vc)tBu=+BuVOB4a$j;%ZutzHMss zZEm%m(Hz*+*8g=kW{jS3{J451P_09^#=}-`u$VB8n;WL2I*j(vnp!nCN=z8X%?(pp ztvl6^kDxrxE>-n>rag6o; z%wws64;b%vW7!}3JD8J<(eqI!`{t7k#_qfCoGZnpD|7GIwzIan3TAv8)oo2Q9rWGZhFk192~PYnuksWV+Y4 zE>>2~z>&E_@>xFEX7_0xZSV8Sqt<^vBu)1l48Iv+5vyQiPIhj=pnN;|c)iwN<}~XS z$D7_g?N#~{-A^#A!P$A)`PqZMU-{cxT64)vLiV`)@pkslE~_jFlvx8uj2KujIE!_a z%oEHqx;IAG+E4cGC41epXWY-V z@Q!1J)BZ0H5Voo9rv2Vs#i=v8CY(pj*!@Rma<$JQQ`=4ZYG$93qQ*@VT0hk;l#f2+ z^qN27SL+uUV<)EAyK7B|yBYIF3L$kuO#d~pZX%B6gweZPoq^F_r|e{ILH79noNz92I-0dY415xwNON<(jrAkAj_8{%8rRFj}hp z2Z4B!)A427PDia-VcD-iI0|9iiT@*^%$pN(ltj`Ts5PMHm2{+(MYOg%UZ5|SZI3hP z1xsnZ-q`Dza#xa$o8E1d(Q{s>@gLVU5~TwT=RO_sPv=SOcPn}hQb+2G^h31Akb(FS zb-cESI$=9RYkYN7vZb>~c861EQwLP1R7X=M)pLTLX?T}zf8(cebw+eH_ITt3M9)em zBI!t1q#M#5>4Ee_RL+x-UPvG0a4_cC{%|O3vW#_WAW^^nl>Gg_x^;Un*d(g`lfVCW zFtm2vJSM9BlfVC0w{8yxn?$vL^7sD^hSuJ79<@g(yNZ5U&` zuSt#Ft{JPxsh${W6}L{HhTQ7}sB7UHUe_*elRW<$uZkaZq4A$Q|D!`8o-;@8`^UrK z{Lc^SG|51RObw)?pzBfVcKOWOKr>PD{O=*t=D?`d#ywAW z5T7MYp8u03+IL3h|5jy`u9A8y8Z)g$>*eE%mUJsA`Rl7|HYLyh+5cA?eVLHu-(Tm= zlIQ=z#ngd0jF>$CXIAXR4gN2XJk^#w|F`c{=s_K`&dKT9mVJHxPv^|?kbI;7(fPlV z5q=xW8jg%WMk4i{|I5W*XA*UWPis@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/Elite Power Management Simulator/obj/Release/Elite_Power_Management_Simulator.form_main.resources b/Elite Power Management Simulator/obj/Release/Elite_Power_Management_Simulator.form_main.resources new file mode 100644 index 0000000000000000000000000000000000000000..312560b3a67e0735b57582b8adfb6dc0d78b89a6 GIT binary patch literal 1332 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J znW3ezNveT`r81^vrFkWpxv4PQgHubGfQ|w=4usR7>RpNw%QN%R^*odF^K=wY1<7%i zfpMB?nt7U`VT!3iqH&^A*6dk8+ZarNc8aJllrUs4WHJ;p=rMRQBs1hQk&nN-fzyZ<*1N{}25C|2HuH|1V?l|4)US{m&2l^FM#!KmYs#|MLR{e9Q+J7?>Mm zEEpT4Z!j(p>|j+8;9xN@km0dNa+9$+z+3~uAhv-4?;8aHE|vuXTvr<;XI*TNu@XGM eA$a(J0S`0CERdNXvq5(Jld-4=+xdX~KQ{pEd*2`c literal 0 HcmV?d00001