diff options
| author | FloppyDiskDrive <[email protected]> | 2017-09-21 17:16:49 -0500 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-09-21 17:16:49 -0500 |
| commit | cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0 (patch) | |
| tree | fe0d16447fab2a74b6161b4c981c036a93ed8239 /ShiftOS.Main | |
| parent | 30b6a49d5b0e720eee131e970761ece7c6ed7ef0 (diff) | |
| download | shiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.tar.gz shiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.tar.bz2 shiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.zip | |
Added the SOS code (VB and C#)
Very, very incomplete (C# isn't *remotely* complete.)
Diffstat (limited to 'ShiftOS.Main')
343 files changed, 6358 insertions, 0 deletions
diff --git a/ShiftOS.Main/App.config b/ShiftOS.Main/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/ShiftOS.Main/App.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> + <startup> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> + </startup> +</configuration>
\ No newline at end of file diff --git a/ShiftOS.Main/NewHijack.Designer.cs b/ShiftOS.Main/NewHijack.Designer.cs new file mode 100644 index 0000000..25dda8b --- /dev/null +++ b/ShiftOS.Main/NewHijack.Designer.cs @@ -0,0 +1,104 @@ +namespace HijackScreen +{ + partial class Form1 + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.lblHijack = new System.Windows.Forms.Label(); + this.conversationTimer = new System.Windows.Forms.Timer(this.components); + this.textGen = new System.Windows.Forms.Timer(this.components); + this.lblhackwords = new System.Windows.Forms.Label(); + this.tmrHackFX = new System.Windows.Forms.Timer(this.components); + this.BackgroundWorker1 = new System.ComponentModel.BackgroundWorker(); + this.SuspendLayout(); + // + // lblHijack + // + this.lblHijack.Anchor = System.Windows.Forms.AnchorStyles.None; + this.lblHijack.AutoSize = true; + this.lblHijack.BackColor = System.Drawing.Color.WhiteSmoke; + this.lblHijack.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblHijack.Location = new System.Drawing.Point(151, 173); + this.lblHijack.Name = "lblHijack"; + this.lblHijack.Size = new System.Drawing.Size(18, 25); + this.lblHijack.TabIndex = 2; + this.lblHijack.Text = "\\"; + // + // conversationTimer + // + this.conversationTimer.Tick += new System.EventHandler(this.conversationTimer_Tick); + // + // textGen + // + this.textGen.Interval = 20; + this.textGen.Tick += new System.EventHandler(this.textGen_Tick); + // + // lblhackwords + // + this.lblhackwords.AutoSize = true; + this.lblhackwords.Dock = System.Windows.Forms.DockStyle.Fill; + this.lblhackwords.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblhackwords.ForeColor = System.Drawing.SystemColors.ButtonFace; + this.lblhackwords.Location = new System.Drawing.Point(0, 0); + this.lblhackwords.Name = "lblhackwords"; + this.lblhackwords.Size = new System.Drawing.Size(127, 18); + this.lblhackwords.TabIndex = 3; + this.lblhackwords.Text = "Encrypting MBR..."; + // + // tmrHackFX + // + this.tmrHackFX.Interval = 50; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Silver; + this.ClientSize = new System.Drawing.Size(653, 457); + this.Controls.Add(this.lblHijack); + this.Controls.Add(this.lblhackwords); + this.Name = "Form1"; + this.Text = "Form1"; + this.TransparencyKey = System.Drawing.Color.White; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + internal System.Windows.Forms.Label lblHijack; + internal System.Windows.Forms.Timer conversationTimer; + internal System.Windows.Forms.Timer textGen; + internal System.Windows.Forms.Label lblhackwords; + internal System.Windows.Forms.Timer tmrHackFX; + internal System.ComponentModel.BackgroundWorker BackgroundWorker1; + } +} + diff --git a/ShiftOS.Main/NewHijack.cs b/ShiftOS.Main/NewHijack.cs new file mode 100644 index 0000000..dcd83ab --- /dev/null +++ b/ShiftOS.Main/NewHijack.cs @@ -0,0 +1,176 @@ +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; +using System.IO; +using System.Media; + + +namespace HijackScreen +{ + public partial class Form1 : Form + { +#region Setting Up Stuff + string shiftVersion = "0.1.0 Beta 1"; + bool newGame = true; + int textCount = 0; + string rText; + int charCount; + string textToTypeGen; + int currentLetter; + int slashCount; + int convoCount = 0; + object textGenInput; + DirectoryInfo di; + bool needToClose = false; + string oldVersion; + public bool upgraded = false; + FileStream fs; + StreamReader sr; + int hackEffect; + int percentChanged; + DriveInfo cDrive; + DialogResult dialogResult; + //Holy jesus that was a lot of objects... Really Phil? +#endregion + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + CheckForIllegalCrossThreadCalls = false; + this.FormBorderStyle = FormBorderStyle.None; + this.WindowState = FormWindowState.Maximized; + cDrive = new DriveInfo("C:\\"); + if (Directory.Exists("C:\\ShiftOS-Rewind\\")) + { + if (File.ReadAllText("C:\\ShiftOS-Rewind\\Shiftum64\\HDAccess.sft") != shiftVersion) + { + dialogResult = MessageBox.Show("It appears that the version you are running is not compatible with this version of ShiftOS-Rewind\nWould you like to convert the save file?", "Oh dear!", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk); + if (dialogResult == DialogResult.Yes) + { + ConvertSaveFile(); + } + else + { + Application.Exit(); + } + } + } + else + { + tmrHackFX.Start(); + BackgroundWorker1.RunWorkerAsync(); + conversationTimer.Start(); + textGen.Start(); + } + } + /// <summary> + /// The text to type during the intro sequence. + /// </summary> + /// <param name="textToType"> The string it uses to type. </param> + private void TextType(string textToType) + { + textToTypeGen = textToType; + conversationTimer.Stop(); + charCount = textToTypeGen.Length; + currentLetter = 0; + slashCount = 1; + textGen.Start(); + } + + /// <summary> + /// Attempts to convert the save file into the correct version. + /// </summary> + private void ConvertSaveFile() + { + try + { + File.AppendAllText("C:\\ShiftOS-Rewind\\Shiftum64\\HDAccess.sft", shiftVersion); + } + catch(Exception ex) + { + MessageBox.Show("An error occured (big surprise). Here's the error: " + ex); + } + } + + private void textGen_Tick(object sender, EventArgs e) + { + switch (slashCount) + { + case 1: + if (currentLetter < textToTypeGen.Length) + { + textGenInput = rText + @"\"; + } + break; + case 2: + if (currentLetter < textToTypeGen.Length) + { + textGenInput = rText + @"|"; + } + break; + case 3: + if (currentLetter < textToTypeGen.Length) + { + textGenInput = rText + @"/"; + } + break; + case 4: + if (currentLetter < textToTypeGen.Length) + { + rText += textToTypeGen.ToCharArray(currentLetter, 1); + textGenInput = rText; + Stream str = ShiftOS.Main.Properties.Resources.typesound; + SoundPlayer sp = new SoundPlayer(str); + sp.Play(); + sp.Stream.Position = 0; + } + break; + + } + slashCount += 1; + if (slashCount == 5) + { + slashCount = 1; + } + + if (currentLetter == textToTypeGen.Length) + { + textToTypeGen = ""; + conversationTimer.Start(); + textGen.Stop(); + } + } + + private void conversationTimer_Tick(object sender, EventArgs e) + { + switch (convoCount) + { + case 0: + if (needToClose == true) this.Close(); + break; + case 1: + textGenInput = lblhackwords; + TextType("Your computer is now being Hijacked"); + conversationTimer.Interval = 1000; + break; + case 2: + textGenInput = lblhackwords; + textGen.Interval = 10; + rText = ""; + TextType("Congrats, " + Environment.UserName + "! You've been involunatarily selected to test out my new experimental operating system called ShiftOS!"); + break; + } + convoCount = convoCount + 1; + + } + } +} diff --git a/ShiftOS.Main/NewHijack.resx b/ShiftOS.Main/NewHijack.resx new file mode 100644 index 0000000..bf059b2 --- /dev/null +++ b/ShiftOS.Main/NewHijack.resx @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <metadata name="conversationTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>498, 17</value> + </metadata> + <metadata name="textGen.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>648, 17</value> + </metadata> + <metadata name="tmrHackFX.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>741, 17</value> + </metadata> + <metadata name="BackgroundWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 56</value> + </metadata> +</root>
\ No newline at end of file diff --git a/ShiftOS.Main/Program.cs b/ShiftOS.Main/Program.cs new file mode 100644 index 0000000..fd2ca89 --- /dev/null +++ b/ShiftOS.Main/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace HijackScreen +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new newHijack()); + } + } +} diff --git a/ShiftOS.Main/Properties/AssemblyInfo.cs b/ShiftOS.Main/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6f85581 --- /dev/null +++ b/ShiftOS.Main/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("HijackScreen")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HijackScreen")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("61a6e932-3129-4d58-ac79-f69d6e0b3054")] + +// 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/ShiftOS.Main/Properties/Resources.Designer.cs b/ShiftOS.Main/Properties/Resources.Designer.cs new file mode 100644 index 0000000..94a198f --- /dev/null +++ b/ShiftOS.Main/Properties/Resources.Designer.cs @@ -0,0 +1,3408 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// 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. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace ShiftOS.Main.Properties { + using System; + + + /// <summary> + /// A strongly-typed resource class, for looking up localized strings, etc. + /// </summary> + // 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", "15.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() { + } + + /// <summary> + /// Returns the cached ResourceManager instance used by this class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ShiftOS.Main.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream _3beepvirus { + get { + return ResourceManager.GetStream("_3beepvirus", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap anycolourshade { + get { + object obj = ResourceManager.GetObject("anycolourshade", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap anycolourshade2 { + get { + object obj = ResourceManager.GetObject("anycolourshade2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap anycolourshade3 { + get { + object obj = ResourceManager.GetObject("anycolourshade3", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap anycolourshade4 { + get { + object obj = ResourceManager.GetObject("anycolourshade4", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeaudioplayerbox { + get { + object obj = ResourceManager.GetObject("appscapeaudioplayerbox", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeaudioplayerprice { + get { + object obj = ResourceManager.GetObject("appscapeaudioplayerprice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeaudioplayerpricepressed { + get { + object obj = ResourceManager.GetObject("appscapeaudioplayerpricepressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapecalculator { + get { + object obj = ResourceManager.GetObject("appscapecalculator", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapecalculatorprice { + get { + object obj = ResourceManager.GetObject("appscapecalculatorprice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapecalculatorpricepressed { + get { + object obj = ResourceManager.GetObject("appscapecalculatorpricepressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapedepositbitnotewalletscreenshot { + get { + object obj = ResourceManager.GetObject("appscapedepositbitnotewalletscreenshot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapedepositinfo { + get { + object obj = ResourceManager.GetObject("appscapedepositinfo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapedepositnowbutton { + get { + object obj = ResourceManager.GetObject("appscapedepositnowbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapedownloadbutton { + get { + object obj = ResourceManager.GetObject("appscapedownloadbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfoaudioplayertext { + get { + object obj = ResourceManager.GetObject("appscapeinfoaudioplayertext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfoaudioplayervisualpreview { + get { + object obj = ResourceManager.GetObject("appscapeinfoaudioplayervisualpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfobackbutton { + get { + object obj = ResourceManager.GetObject("appscapeinfobackbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfobutton { + get { + object obj = ResourceManager.GetObject("appscapeinfobutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfobuttonpressed { + get { + object obj = ResourceManager.GetObject("appscapeinfobuttonpressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfobuybutton { + get { + object obj = ResourceManager.GetObject("appscapeinfobuybutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfocalculatortext { + get { + object obj = ResourceManager.GetObject("appscapeinfocalculatortext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfocalculatorvisualpreview { + get { + object obj = ResourceManager.GetObject("appscapeinfocalculatorvisualpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfoorcwritetext { + get { + object obj = ResourceManager.GetObject("appscapeinfoorcwritetext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfoorcwritevisualpreview { + get { + object obj = ResourceManager.GetObject("appscapeinfoorcwritevisualpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfovideoplayertext { + get { + object obj = ResourceManager.GetObject("appscapeinfovideoplayertext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfovideoplayervisualpreview { + get { + object obj = ResourceManager.GetObject("appscapeinfovideoplayervisualpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfowebbrowsertext { + get { + object obj = ResourceManager.GetObject("appscapeinfowebbrowsertext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeinfowebbrowservisualpreview { + get { + object obj = ResourceManager.GetObject("appscapeinfowebbrowservisualpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapemoresoftware { + get { + object obj = ResourceManager.GetObject("appscapemoresoftware", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeorcwrite { + get { + object obj = ResourceManager.GetObject("appscapeorcwrite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapetitlebanner { + get { + object obj = ResourceManager.GetObject("appscapetitlebanner", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeundefinedprice { + get { + object obj = ResourceManager.GetObject("appscapeundefinedprice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapeundefinedpricepressed { + get { + object obj = ResourceManager.GetObject("appscapeundefinedpricepressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapevideoplayer { + get { + object obj = ResourceManager.GetObject("appscapevideoplayer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapevideoplayerprice { + get { + object obj = ResourceManager.GetObject("appscapevideoplayerprice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapevideoplayerpricepressed { + get { + object obj = ResourceManager.GetObject("appscapevideoplayerpricepressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapewebbrowser { + get { + object obj = ResourceManager.GetObject("appscapewebbrowser", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapewebbrowserprice { + get { + object obj = ResourceManager.GetObject("appscapewebbrowserprice", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapewebbrowserpricepressed { + get { + object obj = ResourceManager.GetObject("appscapewebbrowserpricepressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap appscapewelcometoappscape { + get { + object obj = ResourceManager.GetObject("appscapewelcometoappscape", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadcirclerubber { + get { + object obj = ResourceManager.GetObject("ArtPadcirclerubber", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadcirclerubberselected { + get { + object obj = ResourceManager.GetObject("ArtPadcirclerubberselected", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPaderacer { + get { + object obj = ResourceManager.GetObject("ArtPaderacer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadfloodfill { + get { + object obj = ResourceManager.GetObject("ArtPadfloodfill", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadlinetool { + get { + object obj = ResourceManager.GetObject("ArtPadlinetool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadmagnify { + get { + object obj = ResourceManager.GetObject("ArtPadmagnify", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadnew { + get { + object obj = ResourceManager.GetObject("ArtPadnew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadopen { + get { + object obj = ResourceManager.GetObject("ArtPadopen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadOval { + get { + object obj = ResourceManager.GetObject("ArtPadOval", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadpaintbrush { + get { + object obj = ResourceManager.GetObject("ArtPadpaintbrush", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadpencil { + get { + object obj = ResourceManager.GetObject("ArtPadpencil", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadpixelplacer { + get { + object obj = ResourceManager.GetObject("ArtPadpixelplacer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadRectangle { + get { + object obj = ResourceManager.GetObject("ArtPadRectangle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadredo { + get { + object obj = ResourceManager.GetObject("ArtPadredo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadsave { + get { + object obj = ResourceManager.GetObject("ArtPadsave", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadsquarerubber { + get { + object obj = ResourceManager.GetObject("ArtPadsquarerubber", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadsquarerubberselected { + get { + object obj = ResourceManager.GetObject("ArtPadsquarerubberselected", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadtexttool { + get { + object obj = ResourceManager.GetObject("ArtPadtexttool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ArtPadundo { + get { + object obj = ResourceManager.GetObject("ArtPadundo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Byte[]. + /// </summary> + internal static byte[] AxInterop_WMPLib { + get { + object obj = ResourceManager.GetObject("AxInterop_WMPLib", resourceCulture); + return ((byte[])(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap bitnotediggergradetable { + get { + object obj = ResourceManager.GetObject("bitnotediggergradetable", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap BitnotesAcceptedHereLogo { + get { + object obj = ResourceManager.GetObject("BitnotesAcceptedHereLogo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap bitnoteswebsidepnl { + get { + object obj = ResourceManager.GetObject("bitnoteswebsidepnl", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap bitnotewalletdownload { + get { + object obj = ResourceManager.GetObject("bitnotewalletdownload", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap bitnotewalletpreviewscreenshot { + get { + object obj = ResourceManager.GetObject("bitnotewalletpreviewscreenshot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap bitnotewebsitetitle { + get { + object obj = ResourceManager.GetObject("bitnotewebsitetitle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized string similar to <?xml version="1.0" encoding="UTF-8" ?> + ///<grammar version="1.0" xml:lang="en-US" + /// xmlns="http://www.w3.org/2001/06/grammar" + /// tag-format="semantics/1.0" root="Main"> + /// + /// <!-- Catalyst Grammar File + /// + /// This file gives Catalyst the ability to recognize + /// audio input and give a proper response. + /// + /// --> + /// + /// <rule id="Main"> + /// <item> + /// How much Code Points do I have? + /// </item> + /// <item>Can you run <ruleref uri="#programs"/>?</item> + /// <item>Can you mini [rest of string was truncated]";. + /// </summary> + internal static string CatalystGrammar { + get { + return ResourceManager.GetString("CatalystGrammar", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap centrebutton { + get { + object obj = ResourceManager.GetObject("centrebutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap centrebuttonpressed { + get { + object obj = ResourceManager.GetObject("centrebuttonpressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap christmaseasteregg { + get { + object obj = ResourceManager.GetObject("christmaseasteregg", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap crash { + get { + object obj = ResourceManager.GetObject("crash", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap crash_cheat { + get { + object obj = ResourceManager.GetObject("crash_cheat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap crash_force { + get { + object obj = ResourceManager.GetObject("crash_force", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap crash_ofm { + get { + object obj = ResourceManager.GetObject("crash_ofm", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap deletefile { + get { + object obj = ResourceManager.GetObject("deletefile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap deletefolder { + get { + object obj = ResourceManager.GetObject("deletefolder", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized string similar to Desktop++ v1.0 + /// + ///Ever wanted to have a useful desktop with icons? Icons that can open files, websites or other content? Icons that can be dragged across the screen any way you like? Well, Desktop++ is for you. Desktop++ constantly scans 'C:/ShiftOS/Home/Desktop' and creates an icon for each file and folder within. + /// + ///Desktop++ also allows you to change between Icon and Tile view, where Tile view gives more information, and Icon View allows simplicity and draggability. It also allows you to dump a Text File [rest of string was truncated]";. + /// </summary> + internal static string DesktopPlusPlusAbout { + get { + return ResourceManager.GetString("DesktopPlusPlusAbout", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream dial_up_modem_02 { + get { + return ResourceManager.GetStream("dial_up_modem_02", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap dodge { + get { + object obj = ResourceManager.GetObject("dodge", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap downarrow { + get { + object obj = ResourceManager.GetObject("downarrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap downloadmanagericon { + get { + object obj = ResourceManager.GetObject("downloadmanagericon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap DSC01042 { + get { + object obj = ResourceManager.GetObject("DSC01042", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap fileiconsaa { + get { + object obj = ResourceManager.GetObject("fileiconsaa", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap fileskimmericon_fw { + get { + object obj = ResourceManager.GetObject("fileskimmericon_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap floodgateicn { + get { + object obj = ResourceManager.GetObject("floodgateicn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap Gray_Shades { + get { + object obj = ResourceManager.GetObject("Gray_Shades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconArtpad { + get { + object obj = ResourceManager.GetObject("iconArtpad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconAudioPlayer { + get { + object obj = ResourceManager.GetObject("iconAudioPlayer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconBitnoteDigger { + get { + object obj = ResourceManager.GetObject("iconBitnoteDigger", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconBitnoteWallet { + get { + object obj = ResourceManager.GetObject("iconBitnoteWallet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconCalculator { + get { + object obj = ResourceManager.GetObject("iconCalculator", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconClock { + get { + object obj = ResourceManager.GetObject("iconClock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconColourPicker_fw { + get { + object obj = ResourceManager.GetObject("iconColourPicker_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconDodge { + get { + object obj = ResourceManager.GetObject("iconDodge", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconDownloader { + get { + object obj = ResourceManager.GetObject("iconDownloader", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconFileOpener_fw { + get { + object obj = ResourceManager.GetObject("iconFileOpener_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconFileSaver_fw { + get { + object obj = ResourceManager.GetObject("iconFileSaver_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconFileSkimmer { + get { + object obj = ResourceManager.GetObject("iconFileSkimmer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconfloodgate { + get { + object obj = ResourceManager.GetObject("iconfloodgate", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap icongraphicpicker { + get { + object obj = ResourceManager.GetObject("icongraphicpicker", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconIconManager { + get { + object obj = ResourceManager.GetObject("iconIconManager", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconInfoBox_fw { + get { + object obj = ResourceManager.GetObject("iconInfoBox_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconKnowledgeInput { + get { + object obj = ResourceManager.GetObject("iconKnowledgeInput", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconmaze { + get { + object obj = ResourceManager.GetObject("iconmaze", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconNameChanger { + get { + object obj = ResourceManager.GetObject("iconNameChanger", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconorcwrite { + get { + object obj = ResourceManager.GetObject("iconorcwrite", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconPong { + get { + object obj = ResourceManager.GetObject("iconPong", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconShifter { + get { + object obj = ResourceManager.GetObject("iconShifter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconShiftnet { + get { + object obj = ResourceManager.GetObject("iconShiftnet", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconShiftorium { + get { + object obj = ResourceManager.GetObject("iconShiftorium", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconshutdown { + get { + object obj = ResourceManager.GetObject("iconshutdown", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconSkinLoader { + get { + object obj = ResourceManager.GetObject("iconSkinLoader", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconSkinShifter { + get { + object obj = ResourceManager.GetObject("iconSkinShifter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconSnakey { + get { + object obj = ResourceManager.GetObject("iconSnakey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconSysinfo { + get { + object obj = ResourceManager.GetObject("iconSysinfo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconTerminal { + get { + object obj = ResourceManager.GetObject("iconTerminal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconTextPad { + get { + object obj = ResourceManager.GetObject("iconTextPad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconunitytoggle { + get { + object obj = ResourceManager.GetObject("iconunitytoggle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconVideoPlayer { + get { + object obj = ResourceManager.GetObject("iconVideoPlayer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconvirusscanner { + get { + object obj = ResourceManager.GetObject("iconvirusscanner", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap iconWebBrowser { + get { + object obj = ResourceManager.GetObject("iconWebBrowser", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Byte[]. + /// </summary> + internal static byte[] Industrial { + get { + object obj = ResourceManager.GetObject("Industrial", resourceCulture); + return ((byte[])(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream infobox { + get { + return ResourceManager.GetStream("infobox", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap installericon { + get { + object obj = ResourceManager.GetObject("installericon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Byte[]. + /// </summary> + internal static byte[] Interop_WMPLib { + get { + object obj = ResourceManager.GetObject("Interop_WMPLib", resourceCulture); + return ((byte[])(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Byte[]. + /// </summary> + internal static byte[] Linux_Mint_7 { + get { + object obj = ResourceManager.GetObject("Linux_Mint_7", resourceCulture); + return ((byte[])(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap loadbutton { + get { + object obj = ResourceManager.GetObject("loadbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap Minimatchbackground { + get { + object obj = ResourceManager.GetObject("Minimatchbackground", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap minimatchdodgepreviewimage { + get { + object obj = ResourceManager.GetObject("minimatchdodgepreviewimage", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap minimatchlabyrinthpreview { + get { + object obj = ResourceManager.GetObject("minimatchlabyrinthpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap newfolder { + get { + object obj = ResourceManager.GetObject("newfolder", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap newicon { + get { + object obj = ResourceManager.GetObject("newicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap nextbutton { + get { + object obj = ResourceManager.GetObject("nextbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap openicon { + get { + object obj = ResourceManager.GetObject("openicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap pausebutton { + get { + object obj = ResourceManager.GetObject("pausebutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap pixelsetter { + get { + object obj = ResourceManager.GetObject("pixelsetter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap playbutton { + get { + object obj = ResourceManager.GetObject("playbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap previousbutton { + get { + object obj = ResourceManager.GetObject("previousbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap Receive { + get { + object obj = ResourceManager.GetObject("Receive", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap ReceiveClicked { + get { + object obj = ResourceManager.GetObject("ReceiveClicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream rolldown { + get { + return ResourceManager.GetStream("rolldown", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream rollup { + get { + return ResourceManager.GetStream("rollup", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap saveicon { + get { + object obj = ResourceManager.GetObject("saveicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap Send { + get { + object obj = ResourceManager.GetObject("Send", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap SendClicked { + get { + object obj = ResourceManager.GetObject("SendClicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizericonpreview { + get { + object obj = ResourceManager.GetObject("shiftomizericonpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizerindustrialskinpreview { + get { + object obj = ResourceManager.GetObject("shiftomizerindustrialskinpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizerlinuxmintskinpreview { + get { + object obj = ResourceManager.GetObject("shiftomizerlinuxmintskinpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizernamechangerpreview { + get { + object obj = ResourceManager.GetObject("shiftomizernamechangerpreview", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizerskinshifterscreenshot { + get { + object obj = ResourceManager.GetObject("shiftomizerskinshifterscreenshot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizersliderleftarrow { + get { + object obj = ResourceManager.GetObject("shiftomizersliderleftarrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap shiftomizersliderrightarrow { + get { + object obj = ResourceManager.GetObject("shiftomizersliderrightarrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized string similar to Apache License + /// Version 2.0, January 2004 + /// http://www.apache.org/licenses/ + /// + /// TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + /// + /// 1. Definitions. + /// + /// "License" shall mean the terms and conditions for use, reproduction, + /// and distribution as defined by Sections 1 through 9 of this document. + /// + /// "Licensor" shall mean the copyright owner or entity authorized by + /// the copyright owner that is granting the License. + /// + /// " [rest of string was truncated]";. + /// </summary> + internal static string ShiftOS_License { + get { + return ResourceManager.GetString("ShiftOS_License", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap skindownarrow { + get { + object obj = ResourceManager.GetObject("skindownarrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap skinfile { + get { + object obj = ResourceManager.GetObject("skinfile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap skinuparrow { + get { + object obj = ResourceManager.GetObject("skinuparrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap snakeyback { + get { + object obj = ResourceManager.GetObject("snakeyback", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap stopbutton { + get { + object obj = ResourceManager.GetObject("stopbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap stretchbutton { + get { + object obj = ResourceManager.GetObject("stretchbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap stretchbuttonpressed { + get { + object obj = ResourceManager.GetObject("stretchbuttonpressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap Symbolinfo { + get { + object obj = ResourceManager.GetObject("Symbolinfo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap test { + get { + object obj = ResourceManager.GetObject("test", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap textpad_fw { + get { + object obj = ResourceManager.GetObject("textpad_fw", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap tilebutton { + get { + object obj = ResourceManager.GetObject("tilebutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap tilebuttonpressed { + get { + object obj = ResourceManager.GetObject("tilebuttonpressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap TotalBalanceClicked { + get { + object obj = ResourceManager.GetObject("TotalBalanceClicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap TotalBalanceUnclicked { + get { + object obj = ResourceManager.GetObject("TotalBalanceUnclicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap transactionsClicked { + get { + object obj = ResourceManager.GetObject("transactionsClicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap transactionsUnclicked { + get { + object obj = ResourceManager.GetObject("transactionsUnclicked", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream typesound { + get { + return ResourceManager.GetStream("typesound", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap uparrow { + get { + object obj = ResourceManager.GetObject("uparrow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap updatecustomcolourpallets { + get { + object obj = ResourceManager.GetObject("updatecustomcolourpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealartpad { + get { + object obj = ResourceManager.GetObject("upgradealartpad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealclock { + get { + object obj = ResourceManager.GetObject("upgradealclock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealfileskimmer { + get { + object obj = ResourceManager.GetObject("upgradealfileskimmer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealpong { + get { + object obj = ResourceManager.GetObject("upgradealpong", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealshifter { + get { + object obj = ResourceManager.GetObject("upgradealshifter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealshiftorium { + get { + object obj = ResourceManager.GetObject("upgradealshiftorium", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealtextpad { + get { + object obj = ResourceManager.GetObject("upgradealtextpad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradealunitymode { + get { + object obj = ResourceManager.GetObject("upgradealunitymode", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeamandpm { + get { + object obj = ResourceManager.GetObject("upgradeamandpm", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeapplaunchermenu { + get { + object obj = ResourceManager.GetObject("upgradeapplaunchermenu", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeapplaunchershutdown { + get { + object obj = ResourceManager.GetObject("upgradeapplaunchershutdown", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad { + get { + object obj = ResourceManager.GetObject("upgradeartpad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad128colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad128colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad16colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad16colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad32colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad32colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad4colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad4colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad64colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad64colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpad8colorpallets { + get { + object obj = ResourceManager.GetObject("upgradeartpad8colorpallets", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpaderaser { + get { + object obj = ResourceManager.GetObject("upgradeartpaderaser", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadfilltool { + get { + object obj = ResourceManager.GetObject("upgradeartpadfilltool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadicon { + get { + object obj = ResourceManager.GetObject("upgradeartpadicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadlimitlesspixels { + get { + object obj = ResourceManager.GetObject("upgradeartpadlimitlesspixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadlinetool { + get { + object obj = ResourceManager.GetObject("upgradeartpadlinetool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadload { + get { + object obj = ResourceManager.GetObject("upgradeartpadload", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadnew { + get { + object obj = ResourceManager.GetObject("upgradeartpadnew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadovaltool { + get { + object obj = ResourceManager.GetObject("upgradeartpadovaltool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpaintbrushtool { + get { + object obj = ResourceManager.GetObject("upgradeartpadpaintbrushtool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpenciltool { + get { + object obj = ResourceManager.GetObject("upgradeartpadpenciltool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit1024 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit1024", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit16 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit16", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit16384 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit16384", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit256 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit256", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit4 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit4", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit4096 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit4096", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit64 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit64", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit65536 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit65536", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixellimit8 { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixellimit8", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixelplacer { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixelplacer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadpixelplacermovementmode { + get { + object obj = ResourceManager.GetObject("upgradeartpadpixelplacermovementmode", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadrectangletool { + get { + object obj = ResourceManager.GetObject("upgradeartpadrectangletool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadredo { + get { + object obj = ResourceManager.GetObject("upgradeartpadredo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadsave { + get { + object obj = ResourceManager.GetObject("upgradeartpadsave", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadtexttool { + get { + object obj = ResourceManager.GetObject("upgradeartpadtexttool", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeartpadundo { + get { + object obj = ResourceManager.GetObject("upgradeartpadundo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeautoscrollterminal { + get { + object obj = ResourceManager.GetObject("upgradeautoscrollterminal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeblue { + get { + object obj = ResourceManager.GetObject("upgradeblue", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradebluecustom { + get { + object obj = ResourceManager.GetObject("upgradebluecustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeblueshades { + get { + object obj = ResourceManager.GetObject("upgradeblueshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeblueshadeset { + get { + object obj = ResourceManager.GetObject("upgradeblueshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradebrown { + get { + object obj = ResourceManager.GetObject("upgradebrown", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradebrowncustom { + get { + object obj = ResourceManager.GetObject("upgradebrowncustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradebrownshades { + get { + object obj = ResourceManager.GetObject("upgradebrownshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradebrownshadeset { + get { + object obj = ResourceManager.GetObject("upgradebrownshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeclock { + get { + object obj = ResourceManager.GetObject("upgradeclock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeclockicon { + get { + object obj = ResourceManager.GetObject("upgradeclockicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeclosebutton { + get { + object obj = ResourceManager.GetObject("upgradeclosebutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradecolourpickericon { + get { + object obj = ResourceManager.GetObject("upgradecolourpickericon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradecustomusername { + get { + object obj = ResourceManager.GetObject("upgradecustomusername", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradedesktoppanel { + get { + object obj = ResourceManager.GetObject("upgradedesktoppanel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradedesktoppanelclock { + get { + object obj = ResourceManager.GetObject("upgradedesktoppanelclock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradedraggablewindows { + get { + object obj = ResourceManager.GetObject("upgradedraggablewindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradefileskimmer { + get { + object obj = ResourceManager.GetObject("upgradefileskimmer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradefileskimmerdelete { + get { + object obj = ResourceManager.GetObject("upgradefileskimmerdelete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradefileskimmericon { + get { + object obj = ResourceManager.GetObject("upgradefileskimmericon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradefileskimmernew { + get { + object obj = ResourceManager.GetObject("upgradefileskimmernew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegray { + get { + object obj = ResourceManager.GetObject("upgradegray", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegraycustom { + get { + object obj = ResourceManager.GetObject("upgradegraycustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegrayshades { + get { + object obj = ResourceManager.GetObject("upgradegrayshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegrayshadeset { + get { + object obj = ResourceManager.GetObject("upgradegrayshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegreen { + get { + object obj = ResourceManager.GetObject("upgradegreen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegreencustom { + get { + object obj = ResourceManager.GetObject("upgradegreencustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegreenshades { + get { + object obj = ResourceManager.GetObject("upgradegreenshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradegreenshadeset { + get { + object obj = ResourceManager.GetObject("upgradegreenshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradehoursssincemidnight { + get { + object obj = ResourceManager.GetObject("upgradehoursssincemidnight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeiconunitymode { + get { + object obj = ResourceManager.GetObject("upgradeiconunitymode", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeinfoboxicon { + get { + object obj = ResourceManager.GetObject("upgradeinfoboxicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradekiaddons { + get { + object obj = ResourceManager.GetObject("upgradekiaddons", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradekielements { + get { + object obj = ResourceManager.GetObject("upgradekielements", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeknowledgeinput { + get { + object obj = ResourceManager.GetObject("upgradeknowledgeinput", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeknowledgeinputicon { + get { + object obj = ResourceManager.GetObject("upgradeknowledgeinputicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademinimizebutton { + get { + object obj = ResourceManager.GetObject("upgrademinimizebutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademinimizecommand { + get { + object obj = ResourceManager.GetObject("upgrademinimizecommand", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademinuteaccuracytime { + get { + object obj = ResourceManager.GetObject("upgrademinuteaccuracytime", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademinutesssincemidnight { + get { + object obj = ResourceManager.GetObject("upgrademinutesssincemidnight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademoveablewindows { + get { + object obj = ResourceManager.GetObject("upgrademoveablewindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgrademultitasking { + get { + object obj = ResourceManager.GetObject("upgrademultitasking", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeorange { + get { + object obj = ResourceManager.GetObject("upgradeorange", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeorangecustom { + get { + object obj = ResourceManager.GetObject("upgradeorangecustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeorangeshades { + get { + object obj = ResourceManager.GetObject("upgradeorangeshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeorangeshadeset { + get { + object obj = ResourceManager.GetObject("upgradeorangeshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeosname { + get { + object obj = ResourceManager.GetObject("upgradeosname", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepanelbuttons { + get { + object obj = ResourceManager.GetObject("upgradepanelbuttons", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepink { + get { + object obj = ResourceManager.GetObject("upgradepink", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepinkcustom { + get { + object obj = ResourceManager.GetObject("upgradepinkcustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepinkshades { + get { + object obj = ResourceManager.GetObject("upgradepinkshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepinkshadeset { + get { + object obj = ResourceManager.GetObject("upgradepinkshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepong { + get { + object obj = ResourceManager.GetObject("upgradepong", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepongicon { + get { + object obj = ResourceManager.GetObject("upgradepongicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepurple { + get { + object obj = ResourceManager.GetObject("upgradepurple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepurplecustom { + get { + object obj = ResourceManager.GetObject("upgradepurplecustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepurpleshades { + get { + object obj = ResourceManager.GetObject("upgradepurpleshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradepurpleshadeset { + get { + object obj = ResourceManager.GetObject("upgradepurpleshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradered { + get { + object obj = ResourceManager.GetObject("upgradered", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderedcustom { + get { + object obj = ResourceManager.GetObject("upgraderedcustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderedshades { + get { + object obj = ResourceManager.GetObject("upgraderedshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderedshadeset { + get { + object obj = ResourceManager.GetObject("upgraderedshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderemoveth1 { + get { + object obj = ResourceManager.GetObject("upgraderemoveth1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderemoveth2 { + get { + object obj = ResourceManager.GetObject("upgraderemoveth2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderemoveth3 { + get { + object obj = ResourceManager.GetObject("upgraderemoveth3", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderemoveth4 { + get { + object obj = ResourceManager.GetObject("upgraderemoveth4", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderesize { + get { + object obj = ResourceManager.GetObject("upgraderesize", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderollupbutton { + get { + object obj = ResourceManager.GetObject("upgraderollupbutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgraderollupcommand { + get { + object obj = ResourceManager.GetObject("upgraderollupcommand", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradesecondssincemidnight { + get { + object obj = ResourceManager.GetObject("upgradesecondssincemidnight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradesgameconsoles { + get { + object obj = ResourceManager.GetObject("upgradesgameconsoles", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftapplauncher { + get { + object obj = ResourceManager.GetObject("upgradeshiftapplauncher", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftborders { + get { + object obj = ResourceManager.GetObject("upgradeshiftborders", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftbuttons { + get { + object obj = ResourceManager.GetObject("upgradeshiftbuttons", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftdesktop { + get { + object obj = ResourceManager.GetObject("upgradeshiftdesktop", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftdesktoppanel { + get { + object obj = ResourceManager.GetObject("upgradeshiftdesktoppanel", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshifter { + get { + object obj = ResourceManager.GetObject("upgradeshifter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftericon { + get { + object obj = ResourceManager.GetObject("upgradeshiftericon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftitems { + get { + object obj = ResourceManager.GetObject("upgradeshiftitems", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftoriumicon { + get { + object obj = ResourceManager.GetObject("upgradeshiftoriumicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftpanelbuttons { + get { + object obj = ResourceManager.GetObject("upgradeshiftpanelbuttons", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshiftpanelclock { + get { + object obj = ResourceManager.GetObject("upgradeshiftpanelclock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshifttitlebar { + get { + object obj = ResourceManager.GetObject("upgradeshifttitlebar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshifttitletext { + get { + object obj = ResourceManager.GetObject("upgradeshifttitletext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeshutdownicon { + get { + object obj = ResourceManager.GetObject("upgradeshutdownicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeskicarbrands { + get { + object obj = ResourceManager.GetObject("upgradeskicarbrands", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeskinning { + get { + object obj = ResourceManager.GetObject("upgradeskinning", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradesplitsecondaccuracy { + get { + object obj = ResourceManager.GetObject("upgradesplitsecondaccuracy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradesysinfo { + get { + object obj = ResourceManager.GetObject("upgradesysinfo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeterminalicon { + get { + object obj = ResourceManager.GetObject("upgradeterminalicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeterminalscrollbar { + get { + object obj = ResourceManager.GetObject("upgradeterminalscrollbar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetextpad { + get { + object obj = ResourceManager.GetObject("upgradetextpad", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetextpadicon { + get { + object obj = ResourceManager.GetObject("upgradetextpadicon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetextpadnew { + get { + object obj = ResourceManager.GetObject("upgradetextpadnew", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetextpadopen { + get { + object obj = ResourceManager.GetObject("upgradetextpadopen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetextpadsave { + get { + object obj = ResourceManager.GetObject("upgradetextpadsave", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetitlebar { + get { + object obj = ResourceManager.GetObject("upgradetitlebar", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetitletext { + get { + object obj = ResourceManager.GetObject("upgradetitletext", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradetrm { + get { + object obj = ResourceManager.GetObject("upgradetrm", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeunitymode { + get { + object obj = ResourceManager.GetObject("upgradeunitymode", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeusefulpanelbuttons { + get { + object obj = ResourceManager.GetObject("upgradeusefulpanelbuttons", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradevirusscanner { + get { + object obj = ResourceManager.GetObject("upgradevirusscanner", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradewindowborders { + get { + object obj = ResourceManager.GetObject("upgradewindowborders", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradewindowedterminal { + get { + object obj = ResourceManager.GetObject("upgradewindowedterminal", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradewindowsanywhere { + get { + object obj = ResourceManager.GetObject("upgradewindowsanywhere", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeyellow { + get { + object obj = ResourceManager.GetObject("upgradeyellow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeyellowcustom { + get { + object obj = ResourceManager.GetObject("upgradeyellowcustom", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeyellowshades { + get { + object obj = ResourceManager.GetObject("upgradeyellowshades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap upgradeyellowshadeset { + get { + object obj = ResourceManager.GetObject("upgradeyellowshadeset", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap webback { + get { + object obj = ResourceManager.GetObject("webback", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap webforward { + get { + object obj = ResourceManager.GetObject("webforward", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap webhome { + get { + object obj = ResourceManager.GetObject("webhome", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + internal static System.IO.UnmanagedMemoryStream writesound { + get { + return ResourceManager.GetStream("writesound", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap zoombutton { + get { + object obj = ResourceManager.GetObject("zoombutton", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap zoombuttonpressed { + get { + object obj = ResourceManager.GetObject("zoombuttonpressed", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/ShiftOS.Main/Properties/Resources.resx b/ShiftOS.Main/Properties/Resources.resx new file mode 100644 index 0000000..7d95cf4 --- /dev/null +++ b/ShiftOS.Main/Properties/Resources.resx @@ -0,0 +1,1117 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> + <data name="anycolourshade" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\anycolourshade.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="anycolourshade2" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\anycolourshade2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="anycolourshade3" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\anycolourshade3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="anycolourshade4" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\anycolourshade4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeaudioplayerbox" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeaudioplayerbox.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeaudioplayerprice" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeaudioplayerprice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeaudioplayerpricepressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeaudioplayerpricepressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapecalculator" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapecalculator.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapecalculatorprice" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapecalculatorprice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapecalculatorpricepressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapecalculatorpricepressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapedepositbitnotewalletscreenshot" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapedepositbitnotewalletscreenshot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapedepositinfo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapedepositinfo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapedepositnowbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapedepositnowbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapedownloadbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapedownloadbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfoaudioplayertext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfoaudioplayertext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfoaudioplayervisualpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfoaudioplayervisualpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfobackbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfobackbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfobutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfobutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfobuttonpressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfobuttonpressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfobuybutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfobuybutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfocalculatortext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfocalculatortext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfocalculatorvisualpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfocalculatorvisualpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfoorcwritetext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfoorcwritetext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfoorcwritevisualpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfoorcwritevisualpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfovideoplayertext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfovideoplayertext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfovideoplayervisualpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfovideoplayervisualpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfowebbrowsertext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfowebbrowsertext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeinfowebbrowservisualpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeinfowebbrowservisualpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapemoresoftware" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapemoresoftware.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeorcwrite" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeorcwrite.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapetitlebanner" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapetitlebanner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeundefinedprice" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeundefinedprice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapeundefinedpricepressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapeundefinedpricepressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapevideoplayer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapevideoplayer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapevideoplayerprice" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapevideoplayerprice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapevideoplayerpricepressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapevideoplayerpricepressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapewebbrowser" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapewebbrowser.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapewebbrowserprice" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapewebbrowserprice.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapewebbrowserpricepressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapewebbrowserpricepressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="appscapewelcometoappscape" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\appscapewelcometoappscape.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadcirclerubber" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadcirclerubber.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadcirclerubberselected" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadcirclerubberselected.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPaderacer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPaderacer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadfloodfill" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadfloodfill.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadlinetool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadlinetool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadmagnify" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadmagnify.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadnew" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadnew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadopen" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadopen.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadOval" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadOval.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadpaintbrush" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadpaintbrush.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadpencil" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadpencil.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadpixelplacer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadpixelplacer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadRectangle" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadRectangle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadredo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadredo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadsave" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadsave.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadsquarerubber" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadsquarerubber.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadsquarerubberselected" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadsquarerubberselected.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadtexttool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadtexttool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ArtPadundo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ArtPadundo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="AxInterop_WMPLib" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\AxInterop.WMPLib.dll;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="bitnotediggergradetable" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\bitnotediggergradetable.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="BitnotesAcceptedHereLogo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\BitnotesAcceptedHereLogo.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="bitnoteswebsidepnl" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\bitnoteswebsidepnl.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="bitnotewalletdownload" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\bitnotewalletdownload.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="bitnotewalletpreviewscreenshot" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\bitnotewalletpreviewscreenshot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="bitnotewebsitetitle" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\bitnotewebsitetitle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="CatalystGrammar" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\CatalystGrammar.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> + </data> + <data name="centrebutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\centrebutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="centrebuttonpressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\centrebuttonpressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="christmaseasteregg" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\christmaseasteregg.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="crash" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\crash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="crash_cheat" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\crash-cheat.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="crash_force" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\crash-force.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="crash_ofm" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\crash_ofm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="deletefile" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\deletefile.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="deletefolder" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\deletefolder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="DesktopPlusPlusAbout" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\DesktopPlusPlusAbout.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> + </data> + <data name="dial_up_modem_02" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\dial-up-modem-02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="dodge" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\dodge.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="downarrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\downarrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="downloadmanagericon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\downloadmanagericon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="DSC01042" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\DSC01042.JPG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="fileiconsaa" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\fileiconsaa.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="fileskimmericon_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\fileskimmericon.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="floodgateicn" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\floodgateicn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Gray_Shades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Gray Shades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconArtpad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconArtpad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconAudioPlayer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconAudioPlayer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconBitnoteDigger" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconBitnoteDigger.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconBitnoteWallet" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconBitnoteWallet.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconCalculator" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconCalculator.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconClock" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconClock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconColourPicker_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconColourPicker.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconDodge" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconDodge.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconDownloader" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconDownloader.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconFileOpener_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconFileOpener.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconFileSaver_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconFileSaver.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconFileSkimmer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconFileSkimmer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconfloodgate" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconfloodgate.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="icongraphicpicker" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\icongraphicpicker.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconIconManager" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconIconManager.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconInfoBox_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconInfoBox.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconKnowledgeInput" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconKnowledgeInput.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconmaze" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconmaze.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconNameChanger" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconNameChanger.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconorcwrite" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconorcwrite.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconPong" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconPong.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconShifter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconShifter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconShiftnet" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconShiftnet.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconShiftorium" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconShiftorium.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconshutdown" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconshutdown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconSkinLoader" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconSkinLoader.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconSkinShifter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconSkinShifter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconSnakey" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconSnakey.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconSysinfo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconSysinfo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconTerminal" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconTerminal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconTextPad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconTextPad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconunitytoggle" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconunitytoggle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconVideoPlayer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconVideoPlayer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconvirusscanner" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconvirusscanner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="iconWebBrowser" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\iconWebBrowser.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Industrial" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Industrial.skn;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="infobox" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\infobox.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="installericon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\installericon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Interop_WMPLib" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Interop.WMPLib.dll;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="Linux_Mint_7" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Linux Mint 7.skn;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="loadbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\loadbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Minimatchbackground" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Minimatchbackground.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="minimatchdodgepreviewimage" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\minimatchdodgepreviewimage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="minimatchlabyrinthpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\minimatchlabyrinthpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="newfolder" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\newfolder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="newicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\newicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="nextbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\nextbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="openicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\openicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="pausebutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\pausebutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="pixelsetter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\pixelsetter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="playbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\playbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="previousbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\previousbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Receive" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Receive.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ReceiveClicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ReceiveClicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="rolldown" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\rolldown.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="rollup" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\rollup.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="saveicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\saveicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Send" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Send.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="SendClicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\SendClicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizericonpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizericonpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizerindustrialskinpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizerindustrialskinpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizerlinuxmintskinpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizerlinuxmintskinpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizernamechangerpreview" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizernamechangerpreview.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizerskinshifterscreenshot" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizerskinshifterscreenshot.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizersliderleftarrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizersliderleftarrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="shiftomizersliderrightarrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\shiftomizersliderrightarrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="ShiftOS_License" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\ShiftOS License.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> + </data> + <data name="skindownarrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\skindownarrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="skinfile" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\skinfile.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="skinuparrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\skinuparrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="snakeyback" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\snakeyback.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="stopbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\stopbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="stretchbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\stretchbutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="stretchbuttonpressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\stretchbuttonpressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="Symbolinfo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\Symbolinfo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="test" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\test.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="textpad_fw" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\textpad.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="tilebutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\tilebutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="tilebuttonpressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\tilebuttonpressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="TotalBalanceClicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\TotalBalanceClicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="TotalBalanceUnclicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\TotalBalanceUnclicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="transactionsClicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\transactionsClicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="transactionsUnclicked" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\transactionsUnclicked.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="typesound" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\typesound.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="uparrow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\uparrow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="updatecustomcolourpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\updatecustomcolourpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealartpad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealartpad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealclock" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealclock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealfileskimmer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealfileskimmer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealpong" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealpong.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealshifter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealshifter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealshiftorium" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealshiftorium.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealtextpad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealtextpad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradealunitymode" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradealunitymode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeamandpm" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeamandpm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeapplaunchermenu" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeapplaunchermenu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeapplaunchershutdown" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeapplaunchershutdown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad128colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad128colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad16colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad16colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad32colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad32colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad4colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad4colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad64colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad64colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpad8colorpallets" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpad8colorpallets.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpaderaser" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpaderaser.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadfilltool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadfilltool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadlimitlesspixels" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadlimitlesspixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadlinetool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadlinetool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadload" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadload.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadnew" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadnew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadovaltool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadovaltool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpaintbrushtool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpaintbrushtool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpenciltool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpenciltool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit1024" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit1024.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit16" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit16384" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit16384.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit256" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit256.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit4" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit4096" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit4096.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit64" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit65536" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit65536.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixellimit8" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixellimit8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixelplacer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixelplacer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadpixelplacermovementmode" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadpixelplacermovementmode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadrectangletool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadrectangletool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadredo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadredo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadsave" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadsave.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadtexttool" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadtexttool.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeartpadundo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeartpadundo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeautoscrollterminal" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeautoscrollterminal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeblue" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeblue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradebluecustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradebluecustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeblueshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeblueshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeblueshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeblueshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradebrown" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradebrown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradebrowncustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradebrowncustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradebrownshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradebrownshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradebrownshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradebrownshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeclock" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeclock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeclockicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeclockicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeclosebutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeclosebutton.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradecolourpickericon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradecolourpickericon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradecustomusername" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradecustomusername.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradedesktoppanel" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradedesktoppanel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradedesktoppanelclock" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradedesktoppanelclock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradedraggablewindows" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradedraggablewindows.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradefileskimmer" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradefileskimmer.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradefileskimmerdelete" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradefileskimmerdelete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradefileskimmericon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradefileskimmericon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradefileskimmernew" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradefileskimmernew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegray" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegraycustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegraycustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegrayshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegrayshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegrayshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegrayshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegreen" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegreen.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegreencustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegreencustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegreenshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegreenshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradegreenshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradegreenshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradehoursssincemidnight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradehoursssincemidnight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeiconunitymode" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeiconunitymode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeinfoboxicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeinfoboxicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradekiaddons" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradekiaddons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradekielements" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradekielements.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeknowledgeinput" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeknowledgeinput.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeknowledgeinputicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeknowledgeinputicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademinimizebutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademinimizebutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademinimizecommand" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademinimizecommand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademinuteaccuracytime" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademinuteaccuracytime.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademinutesssincemidnight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademinutesssincemidnight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademoveablewindows" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademoveablewindows.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgrademultitasking" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgrademultitasking.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeorange" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeorange.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeorangecustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeorangecustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeorangeshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeorangeshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeorangeshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeorangeshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeosname" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeosname.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepanelbuttons" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepanelbuttons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepink" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepink.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepinkcustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepinkcustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepinkshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepinkshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepinkshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepinkshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepong" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepong.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepongicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepongicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepurple" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepurple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepurplecustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepurplecustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepurpleshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepurpleshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradepurpleshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradepurpleshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradered" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradered.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderedcustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderedcustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderedshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderedshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderedshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderedshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderemoveth1" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderemoveth1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderemoveth2" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderemoveth2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderemoveth3" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderemoveth3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderemoveth4" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderemoveth4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderesize" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderesize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderollupbutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderollupbutton.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgraderollupcommand" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgraderollupcommand.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradesecondssincemidnight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradesecondssincemidnight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradesgameconsoles" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradesgameconsoles.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftapplauncher" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftapplauncher.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftborders" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftborders.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftbuttons" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftbuttons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftdesktop" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftdesktop.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftdesktoppanel" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftdesktoppanel.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshifter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshifter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftericon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftericon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftitems" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftitems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftoriumicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftoriumicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftpanelbuttons" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftpanelbuttons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshiftpanelclock" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshiftpanelclock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshifttitlebar" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshifttitlebar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshifttitletext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshifttitletext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeshutdownicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeshutdownicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeskicarbrands" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeskicarbrands.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeskinning" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeskinning.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradesplitsecondaccuracy" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradesplitsecondaccuracy.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradesysinfo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradesysinfo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeterminalicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeterminalicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeterminalscrollbar" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeterminalscrollbar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetextpad" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetextpad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetextpadicon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetextpadicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetextpadnew" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetextpadnew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetextpadopen" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetextpadopen.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetextpadsave" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetextpadsave.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetitlebar" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetitlebar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetitletext" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetitletext.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradetrm" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradetrm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeunitymode" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeunitymode.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeusefulpanelbuttons" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeusefulpanelbuttons.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradevirusscanner" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradevirusscanner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradewindowborders" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradewindowborders.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradewindowedterminal" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradewindowedterminal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradewindowsanywhere" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradewindowsanywhere.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeyellow" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeyellow.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeyellowcustom" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeyellowcustom.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeyellowshades" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeyellowshades.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="upgradeyellowshadeset" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\upgradeyellowshadeset.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="webback" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\webback.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="webforward" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\webforward.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="webhome" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\webhome.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="writesound" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\writesound.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="zoombutton" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\zoombutton.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="zoombuttonpressed" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\zoombuttonpressed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="_3beepvirus" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\3beepvirus.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> +</root>
\ No newline at end of file diff --git a/ShiftOS.Main/Properties/Settings.Designer.cs b/ShiftOS.Main/Properties/Settings.Designer.cs new file mode 100644 index 0000000..fca3917 --- /dev/null +++ b/ShiftOS.Main/Properties/Settings.Designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// 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. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace ShiftOS.Main.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.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/ShiftOS.Main/Properties/Settings.settings b/ShiftOS.Main/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/ShiftOS.Main/Properties/Settings.settings @@ -0,0 +1,7 @@ +<?xml version='1.0' encoding='utf-8'?> +<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> + <Profiles> + <Profile Name="(Default)" /> + </Profiles> + <Settings /> +</SettingsFile> diff --git a/ShiftOS.Main/Resources/3beepvirus.wav b/ShiftOS.Main/Resources/3beepvirus.wav Binary files differnew file mode 100644 index 0000000..c1af078 --- /dev/null +++ b/ShiftOS.Main/Resources/3beepvirus.wav diff --git a/ShiftOS.Main/Resources/ArtPadOval.png b/ShiftOS.Main/Resources/ArtPadOval.png Binary files differnew file mode 100644 index 0000000..fceec4c --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadOval.png diff --git a/ShiftOS.Main/Resources/ArtPadRectangle.png b/ShiftOS.Main/Resources/ArtPadRectangle.png Binary files differnew file mode 100644 index 0000000..d9e2aa2 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadRectangle.png diff --git a/ShiftOS.Main/Resources/ArtPadcirclerubber.png b/ShiftOS.Main/Resources/ArtPadcirclerubber.png Binary files differnew file mode 100644 index 0000000..f7331e2 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadcirclerubber.png diff --git a/ShiftOS.Main/Resources/ArtPadcirclerubberselected.png b/ShiftOS.Main/Resources/ArtPadcirclerubberselected.png Binary files differnew file mode 100644 index 0000000..17f0416 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadcirclerubberselected.png diff --git a/ShiftOS.Main/Resources/ArtPaderacer.png b/ShiftOS.Main/Resources/ArtPaderacer.png Binary files differnew file mode 100644 index 0000000..051718c --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPaderacer.png diff --git a/ShiftOS.Main/Resources/ArtPadfloodfill.png b/ShiftOS.Main/Resources/ArtPadfloodfill.png Binary files differnew file mode 100644 index 0000000..487585c --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadfloodfill.png diff --git a/ShiftOS.Main/Resources/ArtPadlinetool.png b/ShiftOS.Main/Resources/ArtPadlinetool.png Binary files differnew file mode 100644 index 0000000..eb7329b --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadlinetool.png diff --git a/ShiftOS.Main/Resources/ArtPadmagnify.png b/ShiftOS.Main/Resources/ArtPadmagnify.png Binary files differnew file mode 100644 index 0000000..1310233 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadmagnify.png diff --git a/ShiftOS.Main/Resources/ArtPadnew.png b/ShiftOS.Main/Resources/ArtPadnew.png Binary files differnew file mode 100644 index 0000000..e1dc34f --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadnew.png diff --git a/ShiftOS.Main/Resources/ArtPadopen.png b/ShiftOS.Main/Resources/ArtPadopen.png Binary files differnew file mode 100644 index 0000000..9dc232b --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadopen.png diff --git a/ShiftOS.Main/Resources/ArtPadpaintbrush.png b/ShiftOS.Main/Resources/ArtPadpaintbrush.png Binary files differnew file mode 100644 index 0000000..c26ac3b --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadpaintbrush.png diff --git a/ShiftOS.Main/Resources/ArtPadpencil.png b/ShiftOS.Main/Resources/ArtPadpencil.png Binary files differnew file mode 100644 index 0000000..cf230e2 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadpencil.png diff --git a/ShiftOS.Main/Resources/ArtPadpixelplacer.png b/ShiftOS.Main/Resources/ArtPadpixelplacer.png Binary files differnew file mode 100644 index 0000000..4cc338b --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadpixelplacer.png diff --git a/ShiftOS.Main/Resources/ArtPadredo.png b/ShiftOS.Main/Resources/ArtPadredo.png Binary files differnew file mode 100644 index 0000000..ef42439 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadredo.png diff --git a/ShiftOS.Main/Resources/ArtPadsave.png b/ShiftOS.Main/Resources/ArtPadsave.png Binary files differnew file mode 100644 index 0000000..5a31d05 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadsave.png diff --git a/ShiftOS.Main/Resources/ArtPadsquarerubber.png b/ShiftOS.Main/Resources/ArtPadsquarerubber.png Binary files differnew file mode 100644 index 0000000..16391ef --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadsquarerubber.png diff --git a/ShiftOS.Main/Resources/ArtPadsquarerubberselected.png b/ShiftOS.Main/Resources/ArtPadsquarerubberselected.png Binary files differnew file mode 100644 index 0000000..5991242 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadsquarerubberselected.png diff --git a/ShiftOS.Main/Resources/ArtPadtexttool.png b/ShiftOS.Main/Resources/ArtPadtexttool.png Binary files differnew file mode 100644 index 0000000..a669a6d --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadtexttool.png diff --git a/ShiftOS.Main/Resources/ArtPadundo.png b/ShiftOS.Main/Resources/ArtPadundo.png Binary files differnew file mode 100644 index 0000000..6484122 --- /dev/null +++ b/ShiftOS.Main/Resources/ArtPadundo.png diff --git a/ShiftOS.Main/Resources/AxInterop.WMPLib.dll b/ShiftOS.Main/Resources/AxInterop.WMPLib.dll Binary files differnew file mode 100644 index 0000000..0d8a4ce --- /dev/null +++ b/ShiftOS.Main/Resources/AxInterop.WMPLib.dll diff --git a/ShiftOS.Main/Resources/BitnotesAcceptedHereLogo.bmp b/ShiftOS.Main/Resources/BitnotesAcceptedHereLogo.bmp Binary files differnew file mode 100644 index 0000000..100bfd1 --- /dev/null +++ b/ShiftOS.Main/Resources/BitnotesAcceptedHereLogo.bmp diff --git a/ShiftOS.Main/Resources/CatalystGrammar.xml b/ShiftOS.Main/Resources/CatalystGrammar.xml new file mode 100644 index 0000000..b082a0d --- /dev/null +++ b/ShiftOS.Main/Resources/CatalystGrammar.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<grammar version="1.0" xml:lang="en-US" + xmlns="http://www.w3.org/2001/06/grammar" + tag-format="semantics/1.0" root="Main"> + + <!-- Catalyst Grammar File + + This file gives Catalyst the ability to recognize + audio input and give a proper response. + + --> + + <rule id="Main"> + <item> + How much Code Points do I have? + </item> + <item>Can you run <ruleref uri="#programs"/>?</item> + <item>Can you minimize <ruleref uri="#programs"/>?</item> + <item>Can you close <ruleref uri="#programs"/>?</item> + </rule> + + <rule id="programs" scope="public"> + <one-of> + <item> Terminal</item> + <item> Knowledge Input</item> + <item> Pong</item> + <item> Shiftorium</item> + <item> Shifter</item> + <item> Labyrinth</item> + <item> Web Browser</item> + <item> Shiftnet</item> + <item> Skin Loader</item> + <item> Skin Shifter</item> + <item> Artpad</item> + <item> TextPad</item> + <item> OrcWrite</item> + <item> File Skimmer</item> + <item> Name Changer</item> + <item> Icon Manager</item> + </one-of> + </rule> +</grammar>
\ No newline at end of file diff --git a/ShiftOS.Main/Resources/DSC01042.JPG b/ShiftOS.Main/Resources/DSC01042.JPG Binary files differnew file mode 100644 index 0000000..bebf8a3 --- /dev/null +++ b/ShiftOS.Main/Resources/DSC01042.JPG diff --git a/ShiftOS.Main/Resources/DesktopPlusPlusAbout.txt b/ShiftOS.Main/Resources/DesktopPlusPlusAbout.txt new file mode 100644 index 0000000..cce539a --- /dev/null +++ b/ShiftOS.Main/Resources/DesktopPlusPlusAbout.txt @@ -0,0 +1,7 @@ +Desktop++ v1.0 + +Ever wanted to have a useful desktop with icons? Icons that can open files, websites or other content? Icons that can be dragged across the screen any way you like? Well, Desktop++ is for you. Desktop++ constantly scans 'C:/ShiftOS/Home/Desktop' and creates an icon for each file and folder within. + +Desktop++ also allows you to change between Icon and Tile view, where Tile view gives more information, and Icon View allows simplicity and draggability. It also allows you to dump a Text File containing the specs of your PC. The possibilities are endless. + +By using Desktop++, you agree that we send anonymous usability data directly to DevX. diff --git a/ShiftOS.Main/Resources/Gray Shades.png b/ShiftOS.Main/Resources/Gray Shades.png Binary files differnew file mode 100644 index 0000000..70945bc --- /dev/null +++ b/ShiftOS.Main/Resources/Gray Shades.png diff --git a/ShiftOS.Main/Resources/Industrial.skn b/ShiftOS.Main/Resources/Industrial.skn Binary files differnew file mode 100644 index 0000000..680f4e7 --- /dev/null +++ b/ShiftOS.Main/Resources/Industrial.skn diff --git a/ShiftOS.Main/Resources/Interop.WMPLib.dll b/ShiftOS.Main/Resources/Interop.WMPLib.dll Binary files differnew file mode 100644 index 0000000..d53b3b9 --- /dev/null +++ b/ShiftOS.Main/Resources/Interop.WMPLib.dll diff --git a/ShiftOS.Main/Resources/Linux Mint 7.skn b/ShiftOS.Main/Resources/Linux Mint 7.skn Binary files differnew file mode 100644 index 0000000..bc275d5 --- /dev/null +++ b/ShiftOS.Main/Resources/Linux Mint 7.skn diff --git a/ShiftOS.Main/Resources/Minimatchbackground.png b/ShiftOS.Main/Resources/Minimatchbackground.png Binary files differnew file mode 100644 index 0000000..ccb8569 --- /dev/null +++ b/ShiftOS.Main/Resources/Minimatchbackground.png diff --git a/ShiftOS.Main/Resources/Receive.png b/ShiftOS.Main/Resources/Receive.png Binary files differnew file mode 100644 index 0000000..ded20a0 --- /dev/null +++ b/ShiftOS.Main/Resources/Receive.png diff --git a/ShiftOS.Main/Resources/ReceiveClicked.png b/ShiftOS.Main/Resources/ReceiveClicked.png Binary files differnew file mode 100644 index 0000000..f5f968b --- /dev/null +++ b/ShiftOS.Main/Resources/ReceiveClicked.png diff --git a/ShiftOS.Main/Resources/Send.png b/ShiftOS.Main/Resources/Send.png Binary files differnew file mode 100644 index 0000000..f4e4302 --- /dev/null +++ b/ShiftOS.Main/Resources/Send.png diff --git a/ShiftOS.Main/Resources/SendClicked.png b/ShiftOS.Main/Resources/SendClicked.png Binary files differnew file mode 100644 index 0000000..807f785 --- /dev/null +++ b/ShiftOS.Main/Resources/SendClicked.png diff --git a/ShiftOS.Main/Resources/ShiftOS License.txt b/ShiftOS.Main/Resources/ShiftOS License.txt new file mode 100644 index 0000000..2ee227c --- /dev/null +++ b/ShiftOS.Main/Resources/ShiftOS License.txt @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2015 ShiftOS + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/ShiftOS.Main/Resources/Symbolinfo.png b/ShiftOS.Main/Resources/Symbolinfo.png Binary files differnew file mode 100644 index 0000000..659d9b3 --- /dev/null +++ b/ShiftOS.Main/Resources/Symbolinfo.png diff --git a/ShiftOS.Main/Resources/TotalBalanceClicked.png b/ShiftOS.Main/Resources/TotalBalanceClicked.png Binary files differnew file mode 100644 index 0000000..18ef996 --- /dev/null +++ b/ShiftOS.Main/Resources/TotalBalanceClicked.png diff --git a/ShiftOS.Main/Resources/TotalBalanceUnclicked.png b/ShiftOS.Main/Resources/TotalBalanceUnclicked.png Binary files differnew file mode 100644 index 0000000..0968413 --- /dev/null +++ b/ShiftOS.Main/Resources/TotalBalanceUnclicked.png diff --git a/ShiftOS.Main/Resources/anycolourshade.png b/ShiftOS.Main/Resources/anycolourshade.png Binary files differnew file mode 100644 index 0000000..70d12b7 --- /dev/null +++ b/ShiftOS.Main/Resources/anycolourshade.png diff --git a/ShiftOS.Main/Resources/anycolourshade2.png b/ShiftOS.Main/Resources/anycolourshade2.png Binary files differnew file mode 100644 index 0000000..9494e3a --- /dev/null +++ b/ShiftOS.Main/Resources/anycolourshade2.png diff --git a/ShiftOS.Main/Resources/anycolourshade3.png b/ShiftOS.Main/Resources/anycolourshade3.png Binary files differnew file mode 100644 index 0000000..a71abb0 --- /dev/null +++ b/ShiftOS.Main/Resources/anycolourshade3.png diff --git a/ShiftOS.Main/Resources/anycolourshade4.png b/ShiftOS.Main/Resources/anycolourshade4.png Binary files differnew file mode 100644 index 0000000..b33644b --- /dev/null +++ b/ShiftOS.Main/Resources/anycolourshade4.png diff --git a/ShiftOS.Main/Resources/appscapeaudioplayerbox.png b/ShiftOS.Main/Resources/appscapeaudioplayerbox.png Binary files differnew file mode 100644 index 0000000..1dd4096 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeaudioplayerbox.png diff --git a/ShiftOS.Main/Resources/appscapeaudioplayerprice.png b/ShiftOS.Main/Resources/appscapeaudioplayerprice.png Binary files differnew file mode 100644 index 0000000..5700c24 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeaudioplayerprice.png diff --git a/ShiftOS.Main/Resources/appscapeaudioplayerpricepressed.png b/ShiftOS.Main/Resources/appscapeaudioplayerpricepressed.png Binary files differnew file mode 100644 index 0000000..d79c687 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeaudioplayerpricepressed.png diff --git a/ShiftOS.Main/Resources/appscapecalculator.png b/ShiftOS.Main/Resources/appscapecalculator.png Binary files differnew file mode 100644 index 0000000..c08f92d --- /dev/null +++ b/ShiftOS.Main/Resources/appscapecalculator.png diff --git a/ShiftOS.Main/Resources/appscapecalculatorprice.png b/ShiftOS.Main/Resources/appscapecalculatorprice.png Binary files differnew file mode 100644 index 0000000..36402e4 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapecalculatorprice.png diff --git a/ShiftOS.Main/Resources/appscapecalculatorpricepressed.png b/ShiftOS.Main/Resources/appscapecalculatorpricepressed.png Binary files differnew file mode 100644 index 0000000..fc815b8 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapecalculatorpricepressed.png diff --git a/ShiftOS.Main/Resources/appscapedepositbitnotewalletscreenshot.png b/ShiftOS.Main/Resources/appscapedepositbitnotewalletscreenshot.png Binary files differnew file mode 100644 index 0000000..6a47f38 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapedepositbitnotewalletscreenshot.png diff --git a/ShiftOS.Main/Resources/appscapedepositinfo.png b/ShiftOS.Main/Resources/appscapedepositinfo.png Binary files differnew file mode 100644 index 0000000..8d5c7ca --- /dev/null +++ b/ShiftOS.Main/Resources/appscapedepositinfo.png diff --git a/ShiftOS.Main/Resources/appscapedepositnowbutton.png b/ShiftOS.Main/Resources/appscapedepositnowbutton.png Binary files differnew file mode 100644 index 0000000..fc99814 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapedepositnowbutton.png diff --git a/ShiftOS.Main/Resources/appscapedownloadbutton.png b/ShiftOS.Main/Resources/appscapedownloadbutton.png Binary files differnew file mode 100644 index 0000000..1ffaf7f --- /dev/null +++ b/ShiftOS.Main/Resources/appscapedownloadbutton.png diff --git a/ShiftOS.Main/Resources/appscapeinfoaudioplayertext.png b/ShiftOS.Main/Resources/appscapeinfoaudioplayertext.png Binary files differnew file mode 100644 index 0000000..4143b03 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfoaudioplayertext.png diff --git a/ShiftOS.Main/Resources/appscapeinfoaudioplayervisualpreview.png b/ShiftOS.Main/Resources/appscapeinfoaudioplayervisualpreview.png Binary files differnew file mode 100644 index 0000000..b3bbbed --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfoaudioplayervisualpreview.png diff --git a/ShiftOS.Main/Resources/appscapeinfobackbutton.png b/ShiftOS.Main/Resources/appscapeinfobackbutton.png Binary files differnew file mode 100644 index 0000000..6025099 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfobackbutton.png diff --git a/ShiftOS.Main/Resources/appscapeinfobutton.png b/ShiftOS.Main/Resources/appscapeinfobutton.png Binary files differnew file mode 100644 index 0000000..41d9331 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfobutton.png diff --git a/ShiftOS.Main/Resources/appscapeinfobuttonpressed.png b/ShiftOS.Main/Resources/appscapeinfobuttonpressed.png Binary files differnew file mode 100644 index 0000000..148958c --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfobuttonpressed.png diff --git a/ShiftOS.Main/Resources/appscapeinfobuybutton.png b/ShiftOS.Main/Resources/appscapeinfobuybutton.png Binary files differnew file mode 100644 index 0000000..cbbe4d3 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfobuybutton.png diff --git a/ShiftOS.Main/Resources/appscapeinfocalculatortext.png b/ShiftOS.Main/Resources/appscapeinfocalculatortext.png Binary files differnew file mode 100644 index 0000000..7833187 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfocalculatortext.png diff --git a/ShiftOS.Main/Resources/appscapeinfocalculatorvisualpreview.png b/ShiftOS.Main/Resources/appscapeinfocalculatorvisualpreview.png Binary files differnew file mode 100644 index 0000000..00ad970 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfocalculatorvisualpreview.png diff --git a/ShiftOS.Main/Resources/appscapeinfoorcwritetext.png b/ShiftOS.Main/Resources/appscapeinfoorcwritetext.png Binary files differnew file mode 100644 index 0000000..fe02672 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfoorcwritetext.png diff --git a/ShiftOS.Main/Resources/appscapeinfoorcwritevisualpreview.png b/ShiftOS.Main/Resources/appscapeinfoorcwritevisualpreview.png Binary files differnew file mode 100644 index 0000000..5e7fe03 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfoorcwritevisualpreview.png diff --git a/ShiftOS.Main/Resources/appscapeinfovideoplayertext.png b/ShiftOS.Main/Resources/appscapeinfovideoplayertext.png Binary files differnew file mode 100644 index 0000000..b73d5c9 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfovideoplayertext.png diff --git a/ShiftOS.Main/Resources/appscapeinfovideoplayervisualpreview.png b/ShiftOS.Main/Resources/appscapeinfovideoplayervisualpreview.png Binary files differnew file mode 100644 index 0000000..f22d6cc --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfovideoplayervisualpreview.png diff --git a/ShiftOS.Main/Resources/appscapeinfowebbrowsertext.png b/ShiftOS.Main/Resources/appscapeinfowebbrowsertext.png Binary files differnew file mode 100644 index 0000000..27155d4 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfowebbrowsertext.png diff --git a/ShiftOS.Main/Resources/appscapeinfowebbrowservisualpreview.png b/ShiftOS.Main/Resources/appscapeinfowebbrowservisualpreview.png Binary files differnew file mode 100644 index 0000000..008e11e --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeinfowebbrowservisualpreview.png diff --git a/ShiftOS.Main/Resources/appscapemoresoftware.png b/ShiftOS.Main/Resources/appscapemoresoftware.png Binary files differnew file mode 100644 index 0000000..915ef8c --- /dev/null +++ b/ShiftOS.Main/Resources/appscapemoresoftware.png diff --git a/ShiftOS.Main/Resources/appscapeorcwrite.png b/ShiftOS.Main/Resources/appscapeorcwrite.png Binary files differnew file mode 100644 index 0000000..0145ef7 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeorcwrite.png diff --git a/ShiftOS.Main/Resources/appscapetitlebanner.png b/ShiftOS.Main/Resources/appscapetitlebanner.png Binary files differnew file mode 100644 index 0000000..4ca5d5f --- /dev/null +++ b/ShiftOS.Main/Resources/appscapetitlebanner.png diff --git a/ShiftOS.Main/Resources/appscapeundefinedprice.png b/ShiftOS.Main/Resources/appscapeundefinedprice.png Binary files differnew file mode 100644 index 0000000..80573ef --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeundefinedprice.png diff --git a/ShiftOS.Main/Resources/appscapeundefinedpricepressed.png b/ShiftOS.Main/Resources/appscapeundefinedpricepressed.png Binary files differnew file mode 100644 index 0000000..deea443 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapeundefinedpricepressed.png diff --git a/ShiftOS.Main/Resources/appscapevideoplayer.png b/ShiftOS.Main/Resources/appscapevideoplayer.png Binary files differnew file mode 100644 index 0000000..4b07adc --- /dev/null +++ b/ShiftOS.Main/Resources/appscapevideoplayer.png diff --git a/ShiftOS.Main/Resources/appscapevideoplayerprice.png b/ShiftOS.Main/Resources/appscapevideoplayerprice.png Binary files differnew file mode 100644 index 0000000..ef9b139 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapevideoplayerprice.png diff --git a/ShiftOS.Main/Resources/appscapevideoplayerpricepressed.png b/ShiftOS.Main/Resources/appscapevideoplayerpricepressed.png Binary files differnew file mode 100644 index 0000000..4849f54 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapevideoplayerpricepressed.png diff --git a/ShiftOS.Main/Resources/appscapewebbrowser.png b/ShiftOS.Main/Resources/appscapewebbrowser.png Binary files differnew file mode 100644 index 0000000..b469924 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapewebbrowser.png diff --git a/ShiftOS.Main/Resources/appscapewebbrowserprice.png b/ShiftOS.Main/Resources/appscapewebbrowserprice.png Binary files differnew file mode 100644 index 0000000..a3cb24c --- /dev/null +++ b/ShiftOS.Main/Resources/appscapewebbrowserprice.png diff --git a/ShiftOS.Main/Resources/appscapewebbrowserpricepressed.png b/ShiftOS.Main/Resources/appscapewebbrowserpricepressed.png Binary files differnew file mode 100644 index 0000000..36ecfb1 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapewebbrowserpricepressed.png diff --git a/ShiftOS.Main/Resources/appscapewelcometoappscape.png b/ShiftOS.Main/Resources/appscapewelcometoappscape.png Binary files differnew file mode 100644 index 0000000..92e17c9 --- /dev/null +++ b/ShiftOS.Main/Resources/appscapewelcometoappscape.png diff --git a/ShiftOS.Main/Resources/bitnotediggergradetable.png b/ShiftOS.Main/Resources/bitnotediggergradetable.png Binary files differnew file mode 100644 index 0000000..54cbe21 --- /dev/null +++ b/ShiftOS.Main/Resources/bitnotediggergradetable.png diff --git a/ShiftOS.Main/Resources/bitnoteswebsidepnl.png b/ShiftOS.Main/Resources/bitnoteswebsidepnl.png Binary files differnew file mode 100644 index 0000000..2d6e17f --- /dev/null +++ b/ShiftOS.Main/Resources/bitnoteswebsidepnl.png diff --git a/ShiftOS.Main/Resources/bitnotewalletdownload.png b/ShiftOS.Main/Resources/bitnotewalletdownload.png Binary files differnew file mode 100644 index 0000000..71a1f2b --- /dev/null +++ b/ShiftOS.Main/Resources/bitnotewalletdownload.png diff --git a/ShiftOS.Main/Resources/bitnotewalletpreviewscreenshot.png b/ShiftOS.Main/Resources/bitnotewalletpreviewscreenshot.png Binary files differnew file mode 100644 index 0000000..bd8c483 --- /dev/null +++ b/ShiftOS.Main/Resources/bitnotewalletpreviewscreenshot.png diff --git a/ShiftOS.Main/Resources/bitnotewebsitetitle.png b/ShiftOS.Main/Resources/bitnotewebsitetitle.png Binary files differnew file mode 100644 index 0000000..7703382 --- /dev/null +++ b/ShiftOS.Main/Resources/bitnotewebsitetitle.png diff --git a/ShiftOS.Main/Resources/centrebutton.png b/ShiftOS.Main/Resources/centrebutton.png Binary files differnew file mode 100644 index 0000000..0578039 --- /dev/null +++ b/ShiftOS.Main/Resources/centrebutton.png diff --git a/ShiftOS.Main/Resources/centrebuttonpressed.png b/ShiftOS.Main/Resources/centrebuttonpressed.png Binary files differnew file mode 100644 index 0000000..52c2725 --- /dev/null +++ b/ShiftOS.Main/Resources/centrebuttonpressed.png diff --git a/ShiftOS.Main/Resources/christmaseasteregg.png b/ShiftOS.Main/Resources/christmaseasteregg.png Binary files differnew file mode 100644 index 0000000..b15feea --- /dev/null +++ b/ShiftOS.Main/Resources/christmaseasteregg.png diff --git a/ShiftOS.Main/Resources/crash-cheat.png b/ShiftOS.Main/Resources/crash-cheat.png Binary files differnew file mode 100644 index 0000000..5bc6e63 --- /dev/null +++ b/ShiftOS.Main/Resources/crash-cheat.png diff --git a/ShiftOS.Main/Resources/crash-force.png b/ShiftOS.Main/Resources/crash-force.png Binary files differnew file mode 100644 index 0000000..79c135d --- /dev/null +++ b/ShiftOS.Main/Resources/crash-force.png diff --git a/ShiftOS.Main/Resources/crash.png b/ShiftOS.Main/Resources/crash.png Binary files differnew file mode 100644 index 0000000..a90aa4a --- /dev/null +++ b/ShiftOS.Main/Resources/crash.png diff --git a/ShiftOS.Main/Resources/crash_ofm.png b/ShiftOS.Main/Resources/crash_ofm.png Binary files differnew file mode 100644 index 0000000..04f599a --- /dev/null +++ b/ShiftOS.Main/Resources/crash_ofm.png diff --git a/ShiftOS.Main/Resources/deletefile.png b/ShiftOS.Main/Resources/deletefile.png Binary files differnew file mode 100644 index 0000000..89bcc65 --- /dev/null +++ b/ShiftOS.Main/Resources/deletefile.png diff --git a/ShiftOS.Main/Resources/deletefolder.png b/ShiftOS.Main/Resources/deletefolder.png Binary files differnew file mode 100644 index 0000000..afcf19f --- /dev/null +++ b/ShiftOS.Main/Resources/deletefolder.png diff --git a/ShiftOS.Main/Resources/dial-up-modem-02.wav b/ShiftOS.Main/Resources/dial-up-modem-02.wav Binary files differnew file mode 100644 index 0000000..f6bb696 --- /dev/null +++ b/ShiftOS.Main/Resources/dial-up-modem-02.wav diff --git a/ShiftOS.Main/Resources/dodge.png b/ShiftOS.Main/Resources/dodge.png Binary files differnew file mode 100644 index 0000000..d741ad6 --- /dev/null +++ b/ShiftOS.Main/Resources/dodge.png diff --git a/ShiftOS.Main/Resources/downarrow.png b/ShiftOS.Main/Resources/downarrow.png Binary files differnew file mode 100644 index 0000000..15d3663 --- /dev/null +++ b/ShiftOS.Main/Resources/downarrow.png diff --git a/ShiftOS.Main/Resources/downloadmanagericon.png b/ShiftOS.Main/Resources/downloadmanagericon.png Binary files differnew file mode 100644 index 0000000..c4cc648 --- /dev/null +++ b/ShiftOS.Main/Resources/downloadmanagericon.png diff --git a/ShiftOS.Main/Resources/fileiconsaa.png b/ShiftOS.Main/Resources/fileiconsaa.png Binary files differnew file mode 100644 index 0000000..291770a --- /dev/null +++ b/ShiftOS.Main/Resources/fileiconsaa.png diff --git a/ShiftOS.Main/Resources/fileskimmericon.fw.png b/ShiftOS.Main/Resources/fileskimmericon.fw.png Binary files differnew file mode 100644 index 0000000..cb4262b --- /dev/null +++ b/ShiftOS.Main/Resources/fileskimmericon.fw.png diff --git a/ShiftOS.Main/Resources/floodgateicn.png b/ShiftOS.Main/Resources/floodgateicn.png Binary files differnew file mode 100644 index 0000000..c243c8c --- /dev/null +++ b/ShiftOS.Main/Resources/floodgateicn.png diff --git a/ShiftOS.Main/Resources/iconArtpad.png b/ShiftOS.Main/Resources/iconArtpad.png Binary files differnew file mode 100644 index 0000000..103eef8 --- /dev/null +++ b/ShiftOS.Main/Resources/iconArtpad.png diff --git a/ShiftOS.Main/Resources/iconAudioPlayer.png b/ShiftOS.Main/Resources/iconAudioPlayer.png Binary files differnew file mode 100644 index 0000000..a445af4 --- /dev/null +++ b/ShiftOS.Main/Resources/iconAudioPlayer.png diff --git a/ShiftOS.Main/Resources/iconBitnoteDigger.png b/ShiftOS.Main/Resources/iconBitnoteDigger.png Binary files differnew file mode 100644 index 0000000..42cbae3 --- /dev/null +++ b/ShiftOS.Main/Resources/iconBitnoteDigger.png diff --git a/ShiftOS.Main/Resources/iconBitnoteWallet.png b/ShiftOS.Main/Resources/iconBitnoteWallet.png Binary files differnew file mode 100644 index 0000000..1f06a17 --- /dev/null +++ b/ShiftOS.Main/Resources/iconBitnoteWallet.png diff --git a/ShiftOS.Main/Resources/iconCalculator.png b/ShiftOS.Main/Resources/iconCalculator.png Binary files differnew file mode 100644 index 0000000..4a15583 --- /dev/null +++ b/ShiftOS.Main/Resources/iconCalculator.png diff --git a/ShiftOS.Main/Resources/iconClock.png b/ShiftOS.Main/Resources/iconClock.png Binary files differnew file mode 100644 index 0000000..2bcd19a --- /dev/null +++ b/ShiftOS.Main/Resources/iconClock.png diff --git a/ShiftOS.Main/Resources/iconColourPicker.fw.png b/ShiftOS.Main/Resources/iconColourPicker.fw.png Binary files differnew file mode 100644 index 0000000..ece25ab --- /dev/null +++ b/ShiftOS.Main/Resources/iconColourPicker.fw.png diff --git a/ShiftOS.Main/Resources/iconDodge.png b/ShiftOS.Main/Resources/iconDodge.png Binary files differnew file mode 100644 index 0000000..9a23b57 --- /dev/null +++ b/ShiftOS.Main/Resources/iconDodge.png diff --git a/ShiftOS.Main/Resources/iconDownloader.png b/ShiftOS.Main/Resources/iconDownloader.png Binary files differnew file mode 100644 index 0000000..9a3ef2b --- /dev/null +++ b/ShiftOS.Main/Resources/iconDownloader.png diff --git a/ShiftOS.Main/Resources/iconFileOpener.fw.png b/ShiftOS.Main/Resources/iconFileOpener.fw.png Binary files differnew file mode 100644 index 0000000..578d499 --- /dev/null +++ b/ShiftOS.Main/Resources/iconFileOpener.fw.png diff --git a/ShiftOS.Main/Resources/iconFileSaver.fw.png b/ShiftOS.Main/Resources/iconFileSaver.fw.png Binary files differnew file mode 100644 index 0000000..351b5d4 --- /dev/null +++ b/ShiftOS.Main/Resources/iconFileSaver.fw.png diff --git a/ShiftOS.Main/Resources/iconFileSkimmer.png b/ShiftOS.Main/Resources/iconFileSkimmer.png Binary files differnew file mode 100644 index 0000000..cb4262b --- /dev/null +++ b/ShiftOS.Main/Resources/iconFileSkimmer.png diff --git a/ShiftOS.Main/Resources/iconIconManager.png b/ShiftOS.Main/Resources/iconIconManager.png Binary files differnew file mode 100644 index 0000000..99246e9 --- /dev/null +++ b/ShiftOS.Main/Resources/iconIconManager.png diff --git a/ShiftOS.Main/Resources/iconInfoBox.fw.png b/ShiftOS.Main/Resources/iconInfoBox.fw.png Binary files differnew file mode 100644 index 0000000..0c9ebbd --- /dev/null +++ b/ShiftOS.Main/Resources/iconInfoBox.fw.png diff --git a/ShiftOS.Main/Resources/iconKnowledgeInput.png b/ShiftOS.Main/Resources/iconKnowledgeInput.png Binary files differnew file mode 100644 index 0000000..b5e513f --- /dev/null +++ b/ShiftOS.Main/Resources/iconKnowledgeInput.png diff --git a/ShiftOS.Main/Resources/iconNameChanger.png b/ShiftOS.Main/Resources/iconNameChanger.png Binary files differnew file mode 100644 index 0000000..7d94b21 --- /dev/null +++ b/ShiftOS.Main/Resources/iconNameChanger.png diff --git a/ShiftOS.Main/Resources/iconPong.png b/ShiftOS.Main/Resources/iconPong.png Binary files differnew file mode 100644 index 0000000..c96cd58 --- /dev/null +++ b/ShiftOS.Main/Resources/iconPong.png diff --git a/ShiftOS.Main/Resources/iconShifter.png b/ShiftOS.Main/Resources/iconShifter.png Binary files differnew file mode 100644 index 0000000..07344bf --- /dev/null +++ b/ShiftOS.Main/Resources/iconShifter.png diff --git a/ShiftOS.Main/Resources/iconShiftnet.png b/ShiftOS.Main/Resources/iconShiftnet.png Binary files differnew file mode 100644 index 0000000..405662d --- /dev/null +++ b/ShiftOS.Main/Resources/iconShiftnet.png diff --git a/ShiftOS.Main/Resources/iconShiftorium.png b/ShiftOS.Main/Resources/iconShiftorium.png Binary files differnew file mode 100644 index 0000000..a72239e --- /dev/null +++ b/ShiftOS.Main/Resources/iconShiftorium.png diff --git a/ShiftOS.Main/Resources/iconSkinLoader.png b/ShiftOS.Main/Resources/iconSkinLoader.png Binary files differnew file mode 100644 index 0000000..1df8f53 --- /dev/null +++ b/ShiftOS.Main/Resources/iconSkinLoader.png diff --git a/ShiftOS.Main/Resources/iconSkinShifter.png b/ShiftOS.Main/Resources/iconSkinShifter.png Binary files differnew file mode 100644 index 0000000..cccc0d1 --- /dev/null +++ b/ShiftOS.Main/Resources/iconSkinShifter.png diff --git a/ShiftOS.Main/Resources/iconSnakey.png b/ShiftOS.Main/Resources/iconSnakey.png Binary files differnew file mode 100644 index 0000000..469367c --- /dev/null +++ b/ShiftOS.Main/Resources/iconSnakey.png diff --git a/ShiftOS.Main/Resources/iconSysinfo.png b/ShiftOS.Main/Resources/iconSysinfo.png Binary files differnew file mode 100644 index 0000000..0d1146b --- /dev/null +++ b/ShiftOS.Main/Resources/iconSysinfo.png diff --git a/ShiftOS.Main/Resources/iconTerminal.png b/ShiftOS.Main/Resources/iconTerminal.png Binary files differnew file mode 100644 index 0000000..df5e779 --- /dev/null +++ b/ShiftOS.Main/Resources/iconTerminal.png diff --git a/ShiftOS.Main/Resources/iconTextPad.png b/ShiftOS.Main/Resources/iconTextPad.png Binary files differnew file mode 100644 index 0000000..0d536ce --- /dev/null +++ b/ShiftOS.Main/Resources/iconTextPad.png diff --git a/ShiftOS.Main/Resources/iconVideoPlayer.png b/ShiftOS.Main/Resources/iconVideoPlayer.png Binary files differnew file mode 100644 index 0000000..17a9043 --- /dev/null +++ b/ShiftOS.Main/Resources/iconVideoPlayer.png diff --git a/ShiftOS.Main/Resources/iconWebBrowser.png b/ShiftOS.Main/Resources/iconWebBrowser.png Binary files differnew file mode 100644 index 0000000..e22117f --- /dev/null +++ b/ShiftOS.Main/Resources/iconWebBrowser.png diff --git a/ShiftOS.Main/Resources/iconfloodgate.png b/ShiftOS.Main/Resources/iconfloodgate.png Binary files differnew file mode 100644 index 0000000..2a7c483 --- /dev/null +++ b/ShiftOS.Main/Resources/iconfloodgate.png diff --git a/ShiftOS.Main/Resources/icongraphicpicker.png b/ShiftOS.Main/Resources/icongraphicpicker.png Binary files differnew file mode 100644 index 0000000..59ded9f --- /dev/null +++ b/ShiftOS.Main/Resources/icongraphicpicker.png diff --git a/ShiftOS.Main/Resources/iconmaze.png b/ShiftOS.Main/Resources/iconmaze.png Binary files differnew file mode 100644 index 0000000..18c3c3f --- /dev/null +++ b/ShiftOS.Main/Resources/iconmaze.png diff --git a/ShiftOS.Main/Resources/iconorcwrite.png b/ShiftOS.Main/Resources/iconorcwrite.png Binary files differnew file mode 100644 index 0000000..e1c2862 --- /dev/null +++ b/ShiftOS.Main/Resources/iconorcwrite.png diff --git a/ShiftOS.Main/Resources/iconshutdown.png b/ShiftOS.Main/Resources/iconshutdown.png Binary files differnew file mode 100644 index 0000000..d4959c2 --- /dev/null +++ b/ShiftOS.Main/Resources/iconshutdown.png diff --git a/ShiftOS.Main/Resources/iconunitytoggle.png b/ShiftOS.Main/Resources/iconunitytoggle.png Binary files differnew file mode 100644 index 0000000..450b092 --- /dev/null +++ b/ShiftOS.Main/Resources/iconunitytoggle.png diff --git a/ShiftOS.Main/Resources/iconvirusscanner.png b/ShiftOS.Main/Resources/iconvirusscanner.png Binary files differnew file mode 100644 index 0000000..5fcb50c --- /dev/null +++ b/ShiftOS.Main/Resources/iconvirusscanner.png diff --git a/ShiftOS.Main/Resources/infobox.wav b/ShiftOS.Main/Resources/infobox.wav Binary files differnew file mode 100644 index 0000000..3c6f3f2 --- /dev/null +++ b/ShiftOS.Main/Resources/infobox.wav diff --git a/ShiftOS.Main/Resources/installericon.png b/ShiftOS.Main/Resources/installericon.png Binary files differnew file mode 100644 index 0000000..9b567b7 --- /dev/null +++ b/ShiftOS.Main/Resources/installericon.png diff --git a/ShiftOS.Main/Resources/loadbutton.png b/ShiftOS.Main/Resources/loadbutton.png Binary files differnew file mode 100644 index 0000000..54ede1c --- /dev/null +++ b/ShiftOS.Main/Resources/loadbutton.png diff --git a/ShiftOS.Main/Resources/minimatchdodgepreviewimage.png b/ShiftOS.Main/Resources/minimatchdodgepreviewimage.png Binary files differnew file mode 100644 index 0000000..d156318 --- /dev/null +++ b/ShiftOS.Main/Resources/minimatchdodgepreviewimage.png diff --git a/ShiftOS.Main/Resources/minimatchlabyrinthpreview.png b/ShiftOS.Main/Resources/minimatchlabyrinthpreview.png Binary files differnew file mode 100644 index 0000000..3bc7a8b --- /dev/null +++ b/ShiftOS.Main/Resources/minimatchlabyrinthpreview.png diff --git a/ShiftOS.Main/Resources/newfolder.png b/ShiftOS.Main/Resources/newfolder.png Binary files differnew file mode 100644 index 0000000..61e3d80 --- /dev/null +++ b/ShiftOS.Main/Resources/newfolder.png diff --git a/ShiftOS.Main/Resources/newicon.png b/ShiftOS.Main/Resources/newicon.png Binary files differnew file mode 100644 index 0000000..0d6db34 --- /dev/null +++ b/ShiftOS.Main/Resources/newicon.png diff --git a/ShiftOS.Main/Resources/nextbutton.png b/ShiftOS.Main/Resources/nextbutton.png Binary files differnew file mode 100644 index 0000000..2fdb3ff --- /dev/null +++ b/ShiftOS.Main/Resources/nextbutton.png diff --git a/ShiftOS.Main/Resources/openicon.png b/ShiftOS.Main/Resources/openicon.png Binary files differnew file mode 100644 index 0000000..8239c2e --- /dev/null +++ b/ShiftOS.Main/Resources/openicon.png diff --git a/ShiftOS.Main/Resources/pausebutton.png b/ShiftOS.Main/Resources/pausebutton.png Binary files differnew file mode 100644 index 0000000..7119b30 --- /dev/null +++ b/ShiftOS.Main/Resources/pausebutton.png diff --git a/ShiftOS.Main/Resources/pixelsetter.png b/ShiftOS.Main/Resources/pixelsetter.png Binary files differnew file mode 100644 index 0000000..4dae604 --- /dev/null +++ b/ShiftOS.Main/Resources/pixelsetter.png diff --git a/ShiftOS.Main/Resources/playbutton.png b/ShiftOS.Main/Resources/playbutton.png Binary files differnew file mode 100644 index 0000000..4b701f4 --- /dev/null +++ b/ShiftOS.Main/Resources/playbutton.png diff --git a/ShiftOS.Main/Resources/previousbutton.png b/ShiftOS.Main/Resources/previousbutton.png Binary files differnew file mode 100644 index 0000000..69a1c93 --- /dev/null +++ b/ShiftOS.Main/Resources/previousbutton.png diff --git a/ShiftOS.Main/Resources/rolldown.wav b/ShiftOS.Main/Resources/rolldown.wav Binary files differnew file mode 100644 index 0000000..ede21d3 --- /dev/null +++ b/ShiftOS.Main/Resources/rolldown.wav diff --git a/ShiftOS.Main/Resources/rollup.wav b/ShiftOS.Main/Resources/rollup.wav Binary files differnew file mode 100644 index 0000000..3e44e72 --- /dev/null +++ b/ShiftOS.Main/Resources/rollup.wav diff --git a/ShiftOS.Main/Resources/saveicon.png b/ShiftOS.Main/Resources/saveicon.png Binary files differnew file mode 100644 index 0000000..6404b15 --- /dev/null +++ b/ShiftOS.Main/Resources/saveicon.png diff --git a/ShiftOS.Main/Resources/shiftomizericonpreview.png b/ShiftOS.Main/Resources/shiftomizericonpreview.png Binary files differnew file mode 100644 index 0000000..f26aa3d --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizericonpreview.png diff --git a/ShiftOS.Main/Resources/shiftomizerindustrialskinpreview.png b/ShiftOS.Main/Resources/shiftomizerindustrialskinpreview.png Binary files differnew file mode 100644 index 0000000..fb8d61e --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizerindustrialskinpreview.png diff --git a/ShiftOS.Main/Resources/shiftomizerlinuxmintskinpreview.png b/ShiftOS.Main/Resources/shiftomizerlinuxmintskinpreview.png Binary files differnew file mode 100644 index 0000000..8308328 --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizerlinuxmintskinpreview.png diff --git a/ShiftOS.Main/Resources/shiftomizernamechangerpreview.png b/ShiftOS.Main/Resources/shiftomizernamechangerpreview.png Binary files differnew file mode 100644 index 0000000..dfec30c --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizernamechangerpreview.png diff --git a/ShiftOS.Main/Resources/shiftomizerskinshifterscreenshot.png b/ShiftOS.Main/Resources/shiftomizerskinshifterscreenshot.png Binary files differnew file mode 100644 index 0000000..2474786 --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizerskinshifterscreenshot.png diff --git a/ShiftOS.Main/Resources/shiftomizersliderleftarrow.png b/ShiftOS.Main/Resources/shiftomizersliderleftarrow.png Binary files differnew file mode 100644 index 0000000..44eb41d --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizersliderleftarrow.png diff --git a/ShiftOS.Main/Resources/shiftomizersliderrightarrow.png b/ShiftOS.Main/Resources/shiftomizersliderrightarrow.png Binary files differnew file mode 100644 index 0000000..84b85f0 --- /dev/null +++ b/ShiftOS.Main/Resources/shiftomizersliderrightarrow.png diff --git a/ShiftOS.Main/Resources/skindownarrow.png b/ShiftOS.Main/Resources/skindownarrow.png Binary files differnew file mode 100644 index 0000000..2a568d0 --- /dev/null +++ b/ShiftOS.Main/Resources/skindownarrow.png diff --git a/ShiftOS.Main/Resources/skinfile.png b/ShiftOS.Main/Resources/skinfile.png Binary files differnew file mode 100644 index 0000000..11048fb --- /dev/null +++ b/ShiftOS.Main/Resources/skinfile.png diff --git a/ShiftOS.Main/Resources/skinuparrow.png b/ShiftOS.Main/Resources/skinuparrow.png Binary files differnew file mode 100644 index 0000000..753dab1 --- /dev/null +++ b/ShiftOS.Main/Resources/skinuparrow.png diff --git a/ShiftOS.Main/Resources/snakeyback.bmp b/ShiftOS.Main/Resources/snakeyback.bmp Binary files differnew file mode 100644 index 0000000..19a55e1 --- /dev/null +++ b/ShiftOS.Main/Resources/snakeyback.bmp diff --git a/ShiftOS.Main/Resources/stopbutton.png b/ShiftOS.Main/Resources/stopbutton.png Binary files differnew file mode 100644 index 0000000..b4df28d --- /dev/null +++ b/ShiftOS.Main/Resources/stopbutton.png diff --git a/ShiftOS.Main/Resources/stretchbutton.png b/ShiftOS.Main/Resources/stretchbutton.png Binary files differnew file mode 100644 index 0000000..7c1d3f3 --- /dev/null +++ b/ShiftOS.Main/Resources/stretchbutton.png diff --git a/ShiftOS.Main/Resources/stretchbuttonpressed.png b/ShiftOS.Main/Resources/stretchbuttonpressed.png Binary files differnew file mode 100644 index 0000000..63ae251 --- /dev/null +++ b/ShiftOS.Main/Resources/stretchbuttonpressed.png diff --git a/ShiftOS.Main/Resources/test.png b/ShiftOS.Main/Resources/test.png Binary files differnew file mode 100644 index 0000000..7a391e5 --- /dev/null +++ b/ShiftOS.Main/Resources/test.png diff --git a/ShiftOS.Main/Resources/textpad.fw.png b/ShiftOS.Main/Resources/textpad.fw.png Binary files differnew file mode 100644 index 0000000..0d536ce --- /dev/null +++ b/ShiftOS.Main/Resources/textpad.fw.png diff --git a/ShiftOS.Main/Resources/tilebutton.png b/ShiftOS.Main/Resources/tilebutton.png Binary files differnew file mode 100644 index 0000000..2504be2 --- /dev/null +++ b/ShiftOS.Main/Resources/tilebutton.png diff --git a/ShiftOS.Main/Resources/tilebuttonpressed.png b/ShiftOS.Main/Resources/tilebuttonpressed.png Binary files differnew file mode 100644 index 0000000..6621cb2 --- /dev/null +++ b/ShiftOS.Main/Resources/tilebuttonpressed.png diff --git a/ShiftOS.Main/Resources/transactionsClicked.png b/ShiftOS.Main/Resources/transactionsClicked.png Binary files differnew file mode 100644 index 0000000..cf78531 --- /dev/null +++ b/ShiftOS.Main/Resources/transactionsClicked.png diff --git a/ShiftOS.Main/Resources/transactionsUnclicked.png b/ShiftOS.Main/Resources/transactionsUnclicked.png Binary files differnew file mode 100644 index 0000000..0af55df --- /dev/null +++ b/ShiftOS.Main/Resources/transactionsUnclicked.png diff --git a/ShiftOS.Main/Resources/typesound.wav b/ShiftOS.Main/Resources/typesound.wav Binary files differnew file mode 100644 index 0000000..d3e381f --- /dev/null +++ b/ShiftOS.Main/Resources/typesound.wav diff --git a/ShiftOS.Main/Resources/uparrow.png b/ShiftOS.Main/Resources/uparrow.png Binary files differnew file mode 100644 index 0000000..55a1d61 --- /dev/null +++ b/ShiftOS.Main/Resources/uparrow.png diff --git a/ShiftOS.Main/Resources/updatecustomcolourpallets.png b/ShiftOS.Main/Resources/updatecustomcolourpallets.png Binary files differnew file mode 100644 index 0000000..61e7f90 --- /dev/null +++ b/ShiftOS.Main/Resources/updatecustomcolourpallets.png diff --git a/ShiftOS.Main/Resources/upgradealartpad.png b/ShiftOS.Main/Resources/upgradealartpad.png Binary files differnew file mode 100644 index 0000000..fa0e6ce --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealartpad.png diff --git a/ShiftOS.Main/Resources/upgradealclock.png b/ShiftOS.Main/Resources/upgradealclock.png Binary files differnew file mode 100644 index 0000000..af944a1 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealclock.png diff --git a/ShiftOS.Main/Resources/upgradealfileskimmer.png b/ShiftOS.Main/Resources/upgradealfileskimmer.png Binary files differnew file mode 100644 index 0000000..9cb4a99 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealfileskimmer.png diff --git a/ShiftOS.Main/Resources/upgradealpong.png b/ShiftOS.Main/Resources/upgradealpong.png Binary files differnew file mode 100644 index 0000000..0f60a2c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealpong.png diff --git a/ShiftOS.Main/Resources/upgradealshifter.png b/ShiftOS.Main/Resources/upgradealshifter.png Binary files differnew file mode 100644 index 0000000..a8a7728 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealshifter.png diff --git a/ShiftOS.Main/Resources/upgradealshiftorium.png b/ShiftOS.Main/Resources/upgradealshiftorium.png Binary files differnew file mode 100644 index 0000000..71fe105 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealshiftorium.png diff --git a/ShiftOS.Main/Resources/upgradealtextpad.png b/ShiftOS.Main/Resources/upgradealtextpad.png Binary files differnew file mode 100644 index 0000000..857139f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealtextpad.png diff --git a/ShiftOS.Main/Resources/upgradealunitymode.png b/ShiftOS.Main/Resources/upgradealunitymode.png Binary files differnew file mode 100644 index 0000000..871fb52 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradealunitymode.png diff --git a/ShiftOS.Main/Resources/upgradeamandpm.png b/ShiftOS.Main/Resources/upgradeamandpm.png Binary files differnew file mode 100644 index 0000000..dd6b35d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeamandpm.png diff --git a/ShiftOS.Main/Resources/upgradeapplaunchermenu.png b/ShiftOS.Main/Resources/upgradeapplaunchermenu.png Binary files differnew file mode 100644 index 0000000..ba82af9 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeapplaunchermenu.png diff --git a/ShiftOS.Main/Resources/upgradeapplaunchershutdown.png b/ShiftOS.Main/Resources/upgradeapplaunchershutdown.png Binary files differnew file mode 100644 index 0000000..ee5097b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeapplaunchershutdown.png diff --git a/ShiftOS.Main/Resources/upgradeartpad.png b/ShiftOS.Main/Resources/upgradeartpad.png Binary files differnew file mode 100644 index 0000000..ef66c2c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad.png diff --git a/ShiftOS.Main/Resources/upgradeartpad128colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad128colorpallets.png Binary files differnew file mode 100644 index 0000000..6fbaf99 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad128colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpad16colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad16colorpallets.png Binary files differnew file mode 100644 index 0000000..b4dfd50 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad16colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpad32colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad32colorpallets.png Binary files differnew file mode 100644 index 0000000..1a1eda4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad32colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpad4colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad4colorpallets.png Binary files differnew file mode 100644 index 0000000..d18758b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad4colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpad64colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad64colorpallets.png Binary files differnew file mode 100644 index 0000000..ba665ae --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad64colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpad8colorpallets.png b/ShiftOS.Main/Resources/upgradeartpad8colorpallets.png Binary files differnew file mode 100644 index 0000000..f4bf2bd --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpad8colorpallets.png diff --git a/ShiftOS.Main/Resources/upgradeartpaderaser.png b/ShiftOS.Main/Resources/upgradeartpaderaser.png Binary files differnew file mode 100644 index 0000000..ee6a37c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpaderaser.png diff --git a/ShiftOS.Main/Resources/upgradeartpadfilltool.png b/ShiftOS.Main/Resources/upgradeartpadfilltool.png Binary files differnew file mode 100644 index 0000000..6dcead2 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadfilltool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadicon.png b/ShiftOS.Main/Resources/upgradeartpadicon.png Binary files differnew file mode 100644 index 0000000..a499621 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadicon.png diff --git a/ShiftOS.Main/Resources/upgradeartpadlimitlesspixels.png b/ShiftOS.Main/Resources/upgradeartpadlimitlesspixels.png Binary files differnew file mode 100644 index 0000000..7163005 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadlimitlesspixels.png diff --git a/ShiftOS.Main/Resources/upgradeartpadlinetool.png b/ShiftOS.Main/Resources/upgradeartpadlinetool.png Binary files differnew file mode 100644 index 0000000..869b21d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadlinetool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadload.png b/ShiftOS.Main/Resources/upgradeartpadload.png Binary files differnew file mode 100644 index 0000000..2c5f061 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadload.png diff --git a/ShiftOS.Main/Resources/upgradeartpadnew.png b/ShiftOS.Main/Resources/upgradeartpadnew.png Binary files differnew file mode 100644 index 0000000..2672079 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadnew.png diff --git a/ShiftOS.Main/Resources/upgradeartpadovaltool.png b/ShiftOS.Main/Resources/upgradeartpadovaltool.png Binary files differnew file mode 100644 index 0000000..fa12d60 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadovaltool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpaintbrushtool.png b/ShiftOS.Main/Resources/upgradeartpadpaintbrushtool.png Binary files differnew file mode 100644 index 0000000..330ee32 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpaintbrushtool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpenciltool.png b/ShiftOS.Main/Resources/upgradeartpadpenciltool.png Binary files differnew file mode 100644 index 0000000..d8eae9c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpenciltool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit1024.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit1024.png Binary files differnew file mode 100644 index 0000000..c40557e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit1024.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit16.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit16.png Binary files differnew file mode 100644 index 0000000..7867b43 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit16.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit16384.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit16384.png Binary files differnew file mode 100644 index 0000000..9496f09 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit16384.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit256.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit256.png Binary files differnew file mode 100644 index 0000000..fb3b9d8 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit256.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit4.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit4.png Binary files differnew file mode 100644 index 0000000..ddce437 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit4.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit4096.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit4096.png Binary files differnew file mode 100644 index 0000000..6ff819f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit4096.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit64.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit64.png Binary files differnew file mode 100644 index 0000000..29eb05f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit64.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit65536.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit65536.png Binary files differnew file mode 100644 index 0000000..5cc23d4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit65536.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixellimit8.png b/ShiftOS.Main/Resources/upgradeartpadpixellimit8.png Binary files differnew file mode 100644 index 0000000..f21e03e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixellimit8.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixelplacer.png b/ShiftOS.Main/Resources/upgradeartpadpixelplacer.png Binary files differnew file mode 100644 index 0000000..88f1a9a --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixelplacer.png diff --git a/ShiftOS.Main/Resources/upgradeartpadpixelplacermovementmode.png b/ShiftOS.Main/Resources/upgradeartpadpixelplacermovementmode.png Binary files differnew file mode 100644 index 0000000..39097dc --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadpixelplacermovementmode.png diff --git a/ShiftOS.Main/Resources/upgradeartpadrectangletool.png b/ShiftOS.Main/Resources/upgradeartpadrectangletool.png Binary files differnew file mode 100644 index 0000000..0647fa7 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadrectangletool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadredo.png b/ShiftOS.Main/Resources/upgradeartpadredo.png Binary files differnew file mode 100644 index 0000000..c574abd --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadredo.png diff --git a/ShiftOS.Main/Resources/upgradeartpadsave.png b/ShiftOS.Main/Resources/upgradeartpadsave.png Binary files differnew file mode 100644 index 0000000..5d464a9 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadsave.png diff --git a/ShiftOS.Main/Resources/upgradeartpadtexttool.png b/ShiftOS.Main/Resources/upgradeartpadtexttool.png Binary files differnew file mode 100644 index 0000000..acf7d56 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadtexttool.png diff --git a/ShiftOS.Main/Resources/upgradeartpadundo.png b/ShiftOS.Main/Resources/upgradeartpadundo.png Binary files differnew file mode 100644 index 0000000..e60c686 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeartpadundo.png diff --git a/ShiftOS.Main/Resources/upgradeautoscrollterminal.png b/ShiftOS.Main/Resources/upgradeautoscrollterminal.png Binary files differnew file mode 100644 index 0000000..096377d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeautoscrollterminal.png diff --git a/ShiftOS.Main/Resources/upgradeblue.png b/ShiftOS.Main/Resources/upgradeblue.png Binary files differnew file mode 100644 index 0000000..d611fd7 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeblue.png diff --git a/ShiftOS.Main/Resources/upgradebluecustom.png b/ShiftOS.Main/Resources/upgradebluecustom.png Binary files differnew file mode 100644 index 0000000..15ff419 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradebluecustom.png diff --git a/ShiftOS.Main/Resources/upgradeblueshades.png b/ShiftOS.Main/Resources/upgradeblueshades.png Binary files differnew file mode 100644 index 0000000..e24073b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeblueshades.png diff --git a/ShiftOS.Main/Resources/upgradeblueshadeset.png b/ShiftOS.Main/Resources/upgradeblueshadeset.png Binary files differnew file mode 100644 index 0000000..d1df0a6 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeblueshadeset.png diff --git a/ShiftOS.Main/Resources/upgradebrown.png b/ShiftOS.Main/Resources/upgradebrown.png Binary files differnew file mode 100644 index 0000000..26946f1 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradebrown.png diff --git a/ShiftOS.Main/Resources/upgradebrowncustom.png b/ShiftOS.Main/Resources/upgradebrowncustom.png Binary files differnew file mode 100644 index 0000000..689da23 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradebrowncustom.png diff --git a/ShiftOS.Main/Resources/upgradebrownshades.png b/ShiftOS.Main/Resources/upgradebrownshades.png Binary files differnew file mode 100644 index 0000000..39da965 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradebrownshades.png diff --git a/ShiftOS.Main/Resources/upgradebrownshadeset.png b/ShiftOS.Main/Resources/upgradebrownshadeset.png Binary files differnew file mode 100644 index 0000000..dcaf86b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradebrownshadeset.png diff --git a/ShiftOS.Main/Resources/upgradeclock.png b/ShiftOS.Main/Resources/upgradeclock.png Binary files differnew file mode 100644 index 0000000..c89ffeb --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeclock.png diff --git a/ShiftOS.Main/Resources/upgradeclockicon.png b/ShiftOS.Main/Resources/upgradeclockicon.png Binary files differnew file mode 100644 index 0000000..d31ab31 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeclockicon.png diff --git a/ShiftOS.Main/Resources/upgradeclosebutton.gif b/ShiftOS.Main/Resources/upgradeclosebutton.gif Binary files differnew file mode 100644 index 0000000..eb45ea6 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeclosebutton.gif diff --git a/ShiftOS.Main/Resources/upgradecolourpickericon.png b/ShiftOS.Main/Resources/upgradecolourpickericon.png Binary files differnew file mode 100644 index 0000000..a9a1e2d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradecolourpickericon.png diff --git a/ShiftOS.Main/Resources/upgradecustomusername.png b/ShiftOS.Main/Resources/upgradecustomusername.png Binary files differnew file mode 100644 index 0000000..d2ee85c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradecustomusername.png diff --git a/ShiftOS.Main/Resources/upgradedesktoppanel.png b/ShiftOS.Main/Resources/upgradedesktoppanel.png Binary files differnew file mode 100644 index 0000000..db142d4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradedesktoppanel.png diff --git a/ShiftOS.Main/Resources/upgradedesktoppanelclock.png b/ShiftOS.Main/Resources/upgradedesktoppanelclock.png Binary files differnew file mode 100644 index 0000000..1d417ce --- /dev/null +++ b/ShiftOS.Main/Resources/upgradedesktoppanelclock.png diff --git a/ShiftOS.Main/Resources/upgradedraggablewindows.gif b/ShiftOS.Main/Resources/upgradedraggablewindows.gif Binary files differnew file mode 100644 index 0000000..c91bbd1 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradedraggablewindows.gif diff --git a/ShiftOS.Main/Resources/upgradefileskimmer.png b/ShiftOS.Main/Resources/upgradefileskimmer.png Binary files differnew file mode 100644 index 0000000..8559818 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradefileskimmer.png diff --git a/ShiftOS.Main/Resources/upgradefileskimmerdelete.png b/ShiftOS.Main/Resources/upgradefileskimmerdelete.png Binary files differnew file mode 100644 index 0000000..f0ec7d6 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradefileskimmerdelete.png diff --git a/ShiftOS.Main/Resources/upgradefileskimmericon.png b/ShiftOS.Main/Resources/upgradefileskimmericon.png Binary files differnew file mode 100644 index 0000000..5c3501e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradefileskimmericon.png diff --git a/ShiftOS.Main/Resources/upgradefileskimmernew.png b/ShiftOS.Main/Resources/upgradefileskimmernew.png Binary files differnew file mode 100644 index 0000000..0c519d6 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradefileskimmernew.png diff --git a/ShiftOS.Main/Resources/upgradegray.png b/ShiftOS.Main/Resources/upgradegray.png Binary files differnew file mode 100644 index 0000000..ffe4632 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegray.png diff --git a/ShiftOS.Main/Resources/upgradegraycustom.png b/ShiftOS.Main/Resources/upgradegraycustom.png Binary files differnew file mode 100644 index 0000000..adcc04c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegraycustom.png diff --git a/ShiftOS.Main/Resources/upgradegrayshades.png b/ShiftOS.Main/Resources/upgradegrayshades.png Binary files differnew file mode 100644 index 0000000..70945bc --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegrayshades.png diff --git a/ShiftOS.Main/Resources/upgradegrayshadeset.png b/ShiftOS.Main/Resources/upgradegrayshadeset.png Binary files differnew file mode 100644 index 0000000..8899401 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegrayshadeset.png diff --git a/ShiftOS.Main/Resources/upgradegreen.png b/ShiftOS.Main/Resources/upgradegreen.png Binary files differnew file mode 100644 index 0000000..775eb4d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegreen.png diff --git a/ShiftOS.Main/Resources/upgradegreencustom.png b/ShiftOS.Main/Resources/upgradegreencustom.png Binary files differnew file mode 100644 index 0000000..cca44c8 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegreencustom.png diff --git a/ShiftOS.Main/Resources/upgradegreenshades.png b/ShiftOS.Main/Resources/upgradegreenshades.png Binary files differnew file mode 100644 index 0000000..1e9c2ef --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegreenshades.png diff --git a/ShiftOS.Main/Resources/upgradegreenshadeset.png b/ShiftOS.Main/Resources/upgradegreenshadeset.png Binary files differnew file mode 100644 index 0000000..d52e8ee --- /dev/null +++ b/ShiftOS.Main/Resources/upgradegreenshadeset.png diff --git a/ShiftOS.Main/Resources/upgradehoursssincemidnight.png b/ShiftOS.Main/Resources/upgradehoursssincemidnight.png Binary files differnew file mode 100644 index 0000000..506d970 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradehoursssincemidnight.png diff --git a/ShiftOS.Main/Resources/upgradeiconunitymode.png b/ShiftOS.Main/Resources/upgradeiconunitymode.png Binary files differnew file mode 100644 index 0000000..ca61f46 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeiconunitymode.png diff --git a/ShiftOS.Main/Resources/upgradeinfoboxicon.png b/ShiftOS.Main/Resources/upgradeinfoboxicon.png Binary files differnew file mode 100644 index 0000000..22db5b2 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeinfoboxicon.png diff --git a/ShiftOS.Main/Resources/upgradekiaddons.png b/ShiftOS.Main/Resources/upgradekiaddons.png Binary files differnew file mode 100644 index 0000000..c7e618b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradekiaddons.png diff --git a/ShiftOS.Main/Resources/upgradekielements.png b/ShiftOS.Main/Resources/upgradekielements.png Binary files differnew file mode 100644 index 0000000..5c5b398 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradekielements.png diff --git a/ShiftOS.Main/Resources/upgradeknowledgeinput.png b/ShiftOS.Main/Resources/upgradeknowledgeinput.png Binary files differnew file mode 100644 index 0000000..74ec0d0 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeknowledgeinput.png diff --git a/ShiftOS.Main/Resources/upgradeknowledgeinputicon.png b/ShiftOS.Main/Resources/upgradeknowledgeinputicon.png Binary files differnew file mode 100644 index 0000000..d5b5b42 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeknowledgeinputicon.png diff --git a/ShiftOS.Main/Resources/upgrademinimizebutton.png b/ShiftOS.Main/Resources/upgrademinimizebutton.png Binary files differnew file mode 100644 index 0000000..4068564 --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademinimizebutton.png diff --git a/ShiftOS.Main/Resources/upgrademinimizecommand.png b/ShiftOS.Main/Resources/upgrademinimizecommand.png Binary files differnew file mode 100644 index 0000000..c268e68 --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademinimizecommand.png diff --git a/ShiftOS.Main/Resources/upgrademinuteaccuracytime.png b/ShiftOS.Main/Resources/upgrademinuteaccuracytime.png Binary files differnew file mode 100644 index 0000000..697a60b --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademinuteaccuracytime.png diff --git a/ShiftOS.Main/Resources/upgrademinutesssincemidnight.png b/ShiftOS.Main/Resources/upgrademinutesssincemidnight.png Binary files differnew file mode 100644 index 0000000..45b7889 --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademinutesssincemidnight.png diff --git a/ShiftOS.Main/Resources/upgrademoveablewindows.gif b/ShiftOS.Main/Resources/upgrademoveablewindows.gif Binary files differnew file mode 100644 index 0000000..3e657a8 --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademoveablewindows.gif diff --git a/ShiftOS.Main/Resources/upgrademultitasking.png b/ShiftOS.Main/Resources/upgrademultitasking.png Binary files differnew file mode 100644 index 0000000..536c40a --- /dev/null +++ b/ShiftOS.Main/Resources/upgrademultitasking.png diff --git a/ShiftOS.Main/Resources/upgradeorange.png b/ShiftOS.Main/Resources/upgradeorange.png Binary files differnew file mode 100644 index 0000000..b45f890 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeorange.png diff --git a/ShiftOS.Main/Resources/upgradeorangecustom.png b/ShiftOS.Main/Resources/upgradeorangecustom.png Binary files differnew file mode 100644 index 0000000..84bf020 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeorangecustom.png diff --git a/ShiftOS.Main/Resources/upgradeorangeshades.png b/ShiftOS.Main/Resources/upgradeorangeshades.png Binary files differnew file mode 100644 index 0000000..bfe5683 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeorangeshades.png diff --git a/ShiftOS.Main/Resources/upgradeorangeshadeset.png b/ShiftOS.Main/Resources/upgradeorangeshadeset.png Binary files differnew file mode 100644 index 0000000..e30a466 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeorangeshadeset.png diff --git a/ShiftOS.Main/Resources/upgradeosname.png b/ShiftOS.Main/Resources/upgradeosname.png Binary files differnew file mode 100644 index 0000000..bb0db4f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeosname.png diff --git a/ShiftOS.Main/Resources/upgradepanelbuttons.png b/ShiftOS.Main/Resources/upgradepanelbuttons.png Binary files differnew file mode 100644 index 0000000..451058a --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepanelbuttons.png diff --git a/ShiftOS.Main/Resources/upgradepink.png b/ShiftOS.Main/Resources/upgradepink.png Binary files differnew file mode 100644 index 0000000..6312fa1 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepink.png diff --git a/ShiftOS.Main/Resources/upgradepinkcustom.png b/ShiftOS.Main/Resources/upgradepinkcustom.png Binary files differnew file mode 100644 index 0000000..60ed53a --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepinkcustom.png diff --git a/ShiftOS.Main/Resources/upgradepinkshades.png b/ShiftOS.Main/Resources/upgradepinkshades.png Binary files differnew file mode 100644 index 0000000..cf715e4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepinkshades.png diff --git a/ShiftOS.Main/Resources/upgradepinkshadeset.png b/ShiftOS.Main/Resources/upgradepinkshadeset.png Binary files differnew file mode 100644 index 0000000..dc83681 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepinkshadeset.png diff --git a/ShiftOS.Main/Resources/upgradepong.png b/ShiftOS.Main/Resources/upgradepong.png Binary files differnew file mode 100644 index 0000000..d17c5c7 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepong.png diff --git a/ShiftOS.Main/Resources/upgradepongicon.png b/ShiftOS.Main/Resources/upgradepongicon.png Binary files differnew file mode 100644 index 0000000..61dffe3 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepongicon.png diff --git a/ShiftOS.Main/Resources/upgradepurple.png b/ShiftOS.Main/Resources/upgradepurple.png Binary files differnew file mode 100644 index 0000000..7ac8ce5 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepurple.png diff --git a/ShiftOS.Main/Resources/upgradepurplecustom.png b/ShiftOS.Main/Resources/upgradepurplecustom.png Binary files differnew file mode 100644 index 0000000..eae2523 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepurplecustom.png diff --git a/ShiftOS.Main/Resources/upgradepurpleshades.png b/ShiftOS.Main/Resources/upgradepurpleshades.png Binary files differnew file mode 100644 index 0000000..52323a6 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepurpleshades.png diff --git a/ShiftOS.Main/Resources/upgradepurpleshadeset.png b/ShiftOS.Main/Resources/upgradepurpleshadeset.png Binary files differnew file mode 100644 index 0000000..4e0fc5e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradepurpleshadeset.png diff --git a/ShiftOS.Main/Resources/upgradered.png b/ShiftOS.Main/Resources/upgradered.png Binary files differnew file mode 100644 index 0000000..0337b5e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradered.png diff --git a/ShiftOS.Main/Resources/upgraderedcustom.png b/ShiftOS.Main/Resources/upgraderedcustom.png Binary files differnew file mode 100644 index 0000000..e2e37b3 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderedcustom.png diff --git a/ShiftOS.Main/Resources/upgraderedshades.png b/ShiftOS.Main/Resources/upgraderedshades.png Binary files differnew file mode 100644 index 0000000..3f6afb3 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderedshades.png diff --git a/ShiftOS.Main/Resources/upgraderedshadeset.png b/ShiftOS.Main/Resources/upgraderedshadeset.png Binary files differnew file mode 100644 index 0000000..7ad2ffe --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderedshadeset.png diff --git a/ShiftOS.Main/Resources/upgraderemoveth1.png b/ShiftOS.Main/Resources/upgraderemoveth1.png Binary files differnew file mode 100644 index 0000000..0b63d2a --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderemoveth1.png diff --git a/ShiftOS.Main/Resources/upgraderemoveth2.png b/ShiftOS.Main/Resources/upgraderemoveth2.png Binary files differnew file mode 100644 index 0000000..c9f45e4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderemoveth2.png diff --git a/ShiftOS.Main/Resources/upgraderemoveth3.png b/ShiftOS.Main/Resources/upgraderemoveth3.png Binary files differnew file mode 100644 index 0000000..68c6e33 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderemoveth3.png diff --git a/ShiftOS.Main/Resources/upgraderemoveth4.png b/ShiftOS.Main/Resources/upgraderemoveth4.png Binary files differnew file mode 100644 index 0000000..ecedb19 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderemoveth4.png diff --git a/ShiftOS.Main/Resources/upgraderesize.png b/ShiftOS.Main/Resources/upgraderesize.png Binary files differnew file mode 100644 index 0000000..f57d4b4 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderesize.png diff --git a/ShiftOS.Main/Resources/upgraderollupbutton.gif b/ShiftOS.Main/Resources/upgraderollupbutton.gif Binary files differnew file mode 100644 index 0000000..4157203 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderollupbutton.gif diff --git a/ShiftOS.Main/Resources/upgraderollupcommand.png b/ShiftOS.Main/Resources/upgraderollupcommand.png Binary files differnew file mode 100644 index 0000000..330adb0 --- /dev/null +++ b/ShiftOS.Main/Resources/upgraderollupcommand.png diff --git a/ShiftOS.Main/Resources/upgradesecondssincemidnight.png b/ShiftOS.Main/Resources/upgradesecondssincemidnight.png Binary files differnew file mode 100644 index 0000000..0bd8ae0 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradesecondssincemidnight.png diff --git a/ShiftOS.Main/Resources/upgradesgameconsoles.png b/ShiftOS.Main/Resources/upgradesgameconsoles.png Binary files differnew file mode 100644 index 0000000..a52fffb --- /dev/null +++ b/ShiftOS.Main/Resources/upgradesgameconsoles.png diff --git a/ShiftOS.Main/Resources/upgradeshiftapplauncher.png b/ShiftOS.Main/Resources/upgradeshiftapplauncher.png Binary files differnew file mode 100644 index 0000000..db97f08 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftapplauncher.png diff --git a/ShiftOS.Main/Resources/upgradeshiftborders.png b/ShiftOS.Main/Resources/upgradeshiftborders.png Binary files differnew file mode 100644 index 0000000..58f00b3 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftborders.png diff --git a/ShiftOS.Main/Resources/upgradeshiftbuttons.png b/ShiftOS.Main/Resources/upgradeshiftbuttons.png Binary files differnew file mode 100644 index 0000000..a678d21 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftbuttons.png diff --git a/ShiftOS.Main/Resources/upgradeshiftdesktop.png b/ShiftOS.Main/Resources/upgradeshiftdesktop.png Binary files differnew file mode 100644 index 0000000..f48296f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftdesktop.png diff --git a/ShiftOS.Main/Resources/upgradeshiftdesktoppanel.png b/ShiftOS.Main/Resources/upgradeshiftdesktoppanel.png Binary files differnew file mode 100644 index 0000000..421bae5 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftdesktoppanel.png diff --git a/ShiftOS.Main/Resources/upgradeshifter.png b/ShiftOS.Main/Resources/upgradeshifter.png Binary files differnew file mode 100644 index 0000000..d1b507f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshifter.png diff --git a/ShiftOS.Main/Resources/upgradeshiftericon.png b/ShiftOS.Main/Resources/upgradeshiftericon.png Binary files differnew file mode 100644 index 0000000..4c04dc1 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftericon.png diff --git a/ShiftOS.Main/Resources/upgradeshiftitems.png b/ShiftOS.Main/Resources/upgradeshiftitems.png Binary files differnew file mode 100644 index 0000000..8528d3c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftitems.png diff --git a/ShiftOS.Main/Resources/upgradeshiftoriumicon.png b/ShiftOS.Main/Resources/upgradeshiftoriumicon.png Binary files differnew file mode 100644 index 0000000..61247df --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftoriumicon.png diff --git a/ShiftOS.Main/Resources/upgradeshiftpanelbuttons.png b/ShiftOS.Main/Resources/upgradeshiftpanelbuttons.png Binary files differnew file mode 100644 index 0000000..36fc82a --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftpanelbuttons.png diff --git a/ShiftOS.Main/Resources/upgradeshiftpanelclock.png b/ShiftOS.Main/Resources/upgradeshiftpanelclock.png Binary files differnew file mode 100644 index 0000000..cbe4cf8 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshiftpanelclock.png diff --git a/ShiftOS.Main/Resources/upgradeshifttitlebar.png b/ShiftOS.Main/Resources/upgradeshifttitlebar.png Binary files differnew file mode 100644 index 0000000..91c8090 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshifttitlebar.png diff --git a/ShiftOS.Main/Resources/upgradeshifttitletext.png b/ShiftOS.Main/Resources/upgradeshifttitletext.png Binary files differnew file mode 100644 index 0000000..9242d9a --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshifttitletext.png diff --git a/ShiftOS.Main/Resources/upgradeshutdownicon.png b/ShiftOS.Main/Resources/upgradeshutdownicon.png Binary files differnew file mode 100644 index 0000000..4ada5ca --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeshutdownicon.png diff --git a/ShiftOS.Main/Resources/upgradeskicarbrands.png b/ShiftOS.Main/Resources/upgradeskicarbrands.png Binary files differnew file mode 100644 index 0000000..a73d5cc --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeskicarbrands.png diff --git a/ShiftOS.Main/Resources/upgradeskinning.png b/ShiftOS.Main/Resources/upgradeskinning.png Binary files differnew file mode 100644 index 0000000..020de14 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeskinning.png diff --git a/ShiftOS.Main/Resources/upgradesplitsecondaccuracy.png b/ShiftOS.Main/Resources/upgradesplitsecondaccuracy.png Binary files differnew file mode 100644 index 0000000..eff89a5 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradesplitsecondaccuracy.png diff --git a/ShiftOS.Main/Resources/upgradesysinfo.png b/ShiftOS.Main/Resources/upgradesysinfo.png Binary files differnew file mode 100644 index 0000000..42c9c13 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradesysinfo.png diff --git a/ShiftOS.Main/Resources/upgradeterminalicon.png b/ShiftOS.Main/Resources/upgradeterminalicon.png Binary files differnew file mode 100644 index 0000000..5c65a13 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeterminalicon.png diff --git a/ShiftOS.Main/Resources/upgradeterminalscrollbar.png b/ShiftOS.Main/Resources/upgradeterminalscrollbar.png Binary files differnew file mode 100644 index 0000000..ffa3dea --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeterminalscrollbar.png diff --git a/ShiftOS.Main/Resources/upgradetextpad.png b/ShiftOS.Main/Resources/upgradetextpad.png Binary files differnew file mode 100644 index 0000000..03958e8 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetextpad.png diff --git a/ShiftOS.Main/Resources/upgradetextpadicon.png b/ShiftOS.Main/Resources/upgradetextpadicon.png Binary files differnew file mode 100644 index 0000000..f144a8b --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetextpadicon.png diff --git a/ShiftOS.Main/Resources/upgradetextpadnew.png b/ShiftOS.Main/Resources/upgradetextpadnew.png Binary files differnew file mode 100644 index 0000000..8dad0ce --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetextpadnew.png diff --git a/ShiftOS.Main/Resources/upgradetextpadopen.png b/ShiftOS.Main/Resources/upgradetextpadopen.png Binary files differnew file mode 100644 index 0000000..c29190c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetextpadopen.png diff --git a/ShiftOS.Main/Resources/upgradetextpadsave.png b/ShiftOS.Main/Resources/upgradetextpadsave.png Binary files differnew file mode 100644 index 0000000..d62d369 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetextpadsave.png diff --git a/ShiftOS.Main/Resources/upgradetitlebar.png b/ShiftOS.Main/Resources/upgradetitlebar.png Binary files differnew file mode 100644 index 0000000..722b60e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetitlebar.png diff --git a/ShiftOS.Main/Resources/upgradetitletext.png b/ShiftOS.Main/Resources/upgradetitletext.png Binary files differnew file mode 100644 index 0000000..e29d7d3 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetitletext.png diff --git a/ShiftOS.Main/Resources/upgradetrm.png b/ShiftOS.Main/Resources/upgradetrm.png Binary files differnew file mode 100644 index 0000000..bc6f02c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradetrm.png diff --git a/ShiftOS.Main/Resources/upgradeunitymode.png b/ShiftOS.Main/Resources/upgradeunitymode.png Binary files differnew file mode 100644 index 0000000..24fa057 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeunitymode.png diff --git a/ShiftOS.Main/Resources/upgradeusefulpanelbuttons.png b/ShiftOS.Main/Resources/upgradeusefulpanelbuttons.png Binary files differnew file mode 100644 index 0000000..6308051 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeusefulpanelbuttons.png diff --git a/ShiftOS.Main/Resources/upgradevirusscanner.png b/ShiftOS.Main/Resources/upgradevirusscanner.png Binary files differnew file mode 100644 index 0000000..37e548e --- /dev/null +++ b/ShiftOS.Main/Resources/upgradevirusscanner.png diff --git a/ShiftOS.Main/Resources/upgradewindowborders.png b/ShiftOS.Main/Resources/upgradewindowborders.png Binary files differnew file mode 100644 index 0000000..fb7e876 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradewindowborders.png diff --git a/ShiftOS.Main/Resources/upgradewindowedterminal.png b/ShiftOS.Main/Resources/upgradewindowedterminal.png Binary files differnew file mode 100644 index 0000000..2f87ce0 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradewindowedterminal.png diff --git a/ShiftOS.Main/Resources/upgradewindowsanywhere.png b/ShiftOS.Main/Resources/upgradewindowsanywhere.png Binary files differnew file mode 100644 index 0000000..9fa307c --- /dev/null +++ b/ShiftOS.Main/Resources/upgradewindowsanywhere.png diff --git a/ShiftOS.Main/Resources/upgradeyellow.png b/ShiftOS.Main/Resources/upgradeyellow.png Binary files differnew file mode 100644 index 0000000..1e4e13d --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeyellow.png diff --git a/ShiftOS.Main/Resources/upgradeyellowcustom.png b/ShiftOS.Main/Resources/upgradeyellowcustom.png Binary files differnew file mode 100644 index 0000000..641b40f --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeyellowcustom.png diff --git a/ShiftOS.Main/Resources/upgradeyellowshades.png b/ShiftOS.Main/Resources/upgradeyellowshades.png Binary files differnew file mode 100644 index 0000000..9052945 --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeyellowshades.png diff --git a/ShiftOS.Main/Resources/upgradeyellowshadeset.png b/ShiftOS.Main/Resources/upgradeyellowshadeset.png Binary files differnew file mode 100644 index 0000000..05c9ada --- /dev/null +++ b/ShiftOS.Main/Resources/upgradeyellowshadeset.png diff --git a/ShiftOS.Main/Resources/webback.png b/ShiftOS.Main/Resources/webback.png Binary files differnew file mode 100644 index 0000000..6e52ffc --- /dev/null +++ b/ShiftOS.Main/Resources/webback.png diff --git a/ShiftOS.Main/Resources/webforward.png b/ShiftOS.Main/Resources/webforward.png Binary files differnew file mode 100644 index 0000000..eea3e76 --- /dev/null +++ b/ShiftOS.Main/Resources/webforward.png diff --git a/ShiftOS.Main/Resources/webhome.png b/ShiftOS.Main/Resources/webhome.png Binary files differnew file mode 100644 index 0000000..5bb886f --- /dev/null +++ b/ShiftOS.Main/Resources/webhome.png diff --git a/ShiftOS.Main/Resources/writesound.wav b/ShiftOS.Main/Resources/writesound.wav Binary files differnew file mode 100644 index 0000000..84092d0 --- /dev/null +++ b/ShiftOS.Main/Resources/writesound.wav diff --git a/ShiftOS.Main/Resources/zoombutton.png b/ShiftOS.Main/Resources/zoombutton.png Binary files differnew file mode 100644 index 0000000..32e5da9 --- /dev/null +++ b/ShiftOS.Main/Resources/zoombutton.png diff --git a/ShiftOS.Main/Resources/zoombuttonpressed.png b/ShiftOS.Main/Resources/zoombuttonpressed.png Binary files differnew file mode 100644 index 0000000..d82d2be --- /dev/null +++ b/ShiftOS.Main/Resources/zoombuttonpressed.png diff --git a/ShiftOS.Main/ShiftOS.Main.csproj b/ShiftOS.Main/ShiftOS.Main.csproj new file mode 100644 index 0000000..0d41313 --- /dev/null +++ b/ShiftOS.Main/ShiftOS.Main.csproj @@ -0,0 +1,1074 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{61A6E932-3129-4D58-AC79-F69D6E0B3054}</ProjectGuid> + <OutputType>WinExe</OutputType> + <RootNamespace>ShiftOS.Main</RootNamespace> + <AssemblyName>ShiftOS.Main</AssemblyName> + <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Deployment" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="NewHijack.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="NewHijack.Designer.cs"> + <DependentUpon>NewHijack.cs</DependentUpon> + </Compile> + <Compile Include="Program.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + <EmbeddedResource Include="NewHijack.resx"> + <DependentUpon>NewHijack.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="Properties\Resources.resx"> + <Generator>ResXFileCodeGenerator</Generator> + <LastGenOutput>Resources.Designer.cs</LastGenOutput> + <SubType>Designer</SubType> + </EmbeddedResource> + <Compile Include="Properties\Resources.Designer.cs"> + <AutoGen>True</AutoGen> + <DependentUpon>Resources.resx</DependentUpon> + <DesignTime>True</DesignTime> + </Compile> + <None Include="Properties\Settings.settings"> + <Generator>SettingsSingleFileGenerator</Generator> + <LastGenOutput>Settings.Designer.cs</LastGenOutput> + </None> + <Compile Include="Properties\Settings.Designer.cs"> + <AutoGen>True</AutoGen> + <DependentUpon>Settings.settings</DependentUpon> + <DesignTimeSharedInput>True</DesignTimeSharedInput> + </Compile> + <None Include="Resources\Industrial.skn" /> + <None Include="Resources\Linux Mint 7.skn" /> + </ItemGroup> + <ItemGroup> + <None Include="App.config" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfoorcwritevisualpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfovideoplayertext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfovideoplayervisualpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfowebbrowsertext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfowebbrowservisualpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapemoresoftware.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeorcwrite.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapetitlebanner.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeundefinedprice.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeundefinedpricepressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapevideoplayer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapevideoplayerprice.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapevideoplayerpricepressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapewebbrowser.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapewebbrowserprice.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapewebbrowserpricepressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapewelcometoappscape.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadcirclerubber.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadcirclerubberselected.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPaderacer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadfloodfill.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadlinetool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadmagnify.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadnew.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadopen.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadOval.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadpaintbrush.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadpencil.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadpixelplacer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadRectangle.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadredo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadsave.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadsquarerubber.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadsquarerubberselected.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadtexttool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ArtPadundo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\AxInterop.WMPLib.dll" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\bitnotediggergradetable.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\BitnotesAcceptedHereLogo.bmp" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\bitnoteswebsidepnl.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\bitnotewalletdownload.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\bitnotewalletpreviewscreenshot.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\bitnotewebsitetitle.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\CatalystGrammar.xml" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\centrebutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\centrebuttonpressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\christmaseasteregg.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\crash.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\crash_ofm.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\crash-cheat.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\crash-force.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\deletefile.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\deletefolder.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\DesktopPlusPlusAbout.txt" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\dial-up-modem-02.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\dodge.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\downarrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\downloadmanagericon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\DSC01042.JPG" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\fileiconsaa.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\fileskimmericon.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\floodgateicn.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Gray Shades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconArtpad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconAudioPlayer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconBitnoteDigger.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconBitnoteWallet.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconCalculator.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconClock.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconColourPicker.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconDodge.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconDownloader.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconFileOpener.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconFileSaver.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconFileSkimmer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconfloodgate.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\icongraphicpicker.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconIconManager.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconInfoBox.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconKnowledgeInput.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconmaze.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconNameChanger.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconorcwrite.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconPong.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconShifter.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconShiftnet.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconShiftorium.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconshutdown.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconSkinLoader.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconSkinShifter.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconSnakey.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconSysinfo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconTerminal.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconTextPad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconunitytoggle.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconVideoPlayer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconvirusscanner.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\iconWebBrowser.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\infobox.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\installericon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Interop.WMPLib.dll" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\loadbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Minimatchbackground.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\minimatchdodgepreviewimage.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\minimatchlabyrinthpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\newfolder.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\newicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\nextbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\openicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\pausebutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\pixelsetter.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\playbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\previousbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Receive.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ReceiveClicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\rolldown.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\rollup.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\saveicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Send.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\SendClicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizericonpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizerindustrialskinpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizerlinuxmintskinpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizernamechangerpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizerskinshifterscreenshot.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizersliderleftarrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\shiftomizersliderrightarrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\ShiftOS License.txt" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\skindownarrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\skinfile.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\skinuparrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\snakeyback.bmp" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\stopbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\stretchbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\stretchbuttonpressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\Symbolinfo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\test.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\textpad.fw.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\tilebutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\tilebuttonpressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\TotalBalanceClicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\TotalBalanceUnclicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\transactionsClicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\transactionsUnclicked.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\typesound.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\uparrow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\updatecustomcolourpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealartpad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealclock.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealfileskimmer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealpong.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealshifter.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealshiftorium.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealtextpad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradealunitymode.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeamandpm.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeapplaunchermenu.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeapplaunchershutdown.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad4colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad8colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad16colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad32colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad64colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpad128colorpallets.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpaderaser.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadfilltool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadlimitlesspixels.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadlinetool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadload.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadnew.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadovaltool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpaintbrushtool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpenciltool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit4.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit8.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit16.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit64.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit256.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit1024.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit4096.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit16384.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixellimit65536.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixelplacer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadpixelplacermovementmode.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadrectangletool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadredo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadsave.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadtexttool.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeartpadundo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeautoscrollterminal.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeblue.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradebluecustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeblueshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeblueshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradebrown.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradebrowncustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradebrownshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradebrownshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeclock.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeclockicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeclosebutton.gif" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradecolourpickericon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradecustomusername.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradedesktoppanel.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradedesktoppanelclock.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradedraggablewindows.gif" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradefileskimmer.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradefileskimmerdelete.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradefileskimmericon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradefileskimmernew.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegray.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegraycustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegrayshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegrayshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegreen.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegreencustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegreenshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradegreenshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradehoursssincemidnight.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeiconunitymode.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeinfoboxicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradekiaddons.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradekielements.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeknowledgeinput.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeknowledgeinputicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademinimizebutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademinimizecommand.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademinuteaccuracytime.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademinutesssincemidnight.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademoveablewindows.gif" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgrademultitasking.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeorange.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeorangecustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeorangeshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeorangeshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeosname.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepanelbuttons.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepink.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepinkcustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepinkshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepinkshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepong.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepongicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepurple.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepurplecustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepurpleshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradepurpleshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradered.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderedcustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderedshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderedshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderemoveth1.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderemoveth2.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderemoveth3.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderemoveth4.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderesize.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderollupbutton.gif" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgraderollupcommand.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradesecondssincemidnight.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradesgameconsoles.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftapplauncher.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftborders.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftbuttons.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftdesktop.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftdesktoppanel.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshifter.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftericon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftitems.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftoriumicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftpanelbuttons.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshiftpanelclock.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshifttitlebar.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshifttitletext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeshutdownicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeskicarbrands.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeskinning.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradesplitsecondaccuracy.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradesysinfo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeterminalicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeterminalscrollbar.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetextpad.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetextpadicon.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetextpadnew.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetextpadopen.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetextpadsave.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetitlebar.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetitletext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradetrm.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeunitymode.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeusefulpanelbuttons.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradevirusscanner.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradewindowborders.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradewindowedterminal.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradewindowsanywhere.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeyellow.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeyellowcustom.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeyellowshades.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\upgradeyellowshadeset.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\webback.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\webforward.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\webhome.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\writesound.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\zoombutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\zoombuttonpressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\3beepvirus.wav" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\anycolourshade.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\anycolourshade2.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\anycolourshade3.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\anycolourshade4.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeaudioplayerbox.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeaudioplayerprice.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeaudioplayerpricepressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapecalculator.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapecalculatorprice.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapecalculatorpricepressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapedepositbitnotewalletscreenshot.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapedepositinfo.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapedepositnowbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapedownloadbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfoaudioplayertext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfoaudioplayervisualpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfobackbutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfobutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfobuttonpressed.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfobuybutton.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfocalculatortext.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfocalculatorvisualpreview.png" /> + </ItemGroup> + <ItemGroup> + <None Include="Resources\appscapeinfoorcwritetext.png" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> +</Project>
\ No newline at end of file |
