From da967f41e30de1d49161da3c3742f2e24aa9f16c Mon Sep 17 00:00:00 2001 From: alcexhim Date: Sat, 2 Aug 2014 09:04:19 -0400 Subject: [PATCH] Add Executable and Nintendo plugins --- .../Executable/ExecutableEditor.Designer.cs | 45 ++++++ .../Editors/Executable/ExecutableEditor.cs | 18 +++ .../Editors/Executable/ExecutableEditor.resx | 120 +++++++++++++++ .../Properties/AssemblyInfo.cs | 36 +++++ ...ecutable.UserInterface.WindowsForms.csproj | 60 ++++++++ .../Executable/Nintendo/SNES/SMCDataFormat.cs | 137 ++++++++++++++++++ .../Nintendo/SNES/SMCExtendedHeader.cs | 59 ++++++++ .../Nintendo/SNES/SMCSaveRAMSize.cs | 23 +++ .../Properties/AssemblyInfo.cs | 36 +++++ .../UniversalEditor.Plugins.Nintendo.csproj | 65 +++++++++ CSharp/UniversalEditor.WindowsForms.sln | 21 +++ 11 files changed, 620 insertions(+) create mode 100644 CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.Designer.cs create mode 100644 CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.cs create mode 100644 CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.resx create mode 100644 CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Properties/AssemblyInfo.cs create mode 100644 CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms.csproj create mode 100644 CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCDataFormat.cs create mode 100644 CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCExtendedHeader.cs create mode 100644 CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCSaveRAMSize.cs create mode 100644 CSharp/Plugins/UniversalEditor.Plugins.Nintendo/Properties/AssemblyInfo.cs create mode 100644 CSharp/Plugins/UniversalEditor.Plugins.Nintendo/UniversalEditor.Plugins.Nintendo.csproj diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.Designer.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.Designer.cs new file mode 100644 index 00000000..5a0eedda --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.Designer.cs @@ -0,0 +1,45 @@ +namespace UniversalEditor.Editors.Executable +{ + partial class ExecutableEditor + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // ExecutableEditor + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Name = "ExecutableEditor"; + this.Size = new System.Drawing.Size(502, 247); + this.ResumeLayout(false); + + } + + #endregion + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.cs new file mode 100644 index 00000000..41968dc1 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace UniversalEditor.Editors.Executable +{ + public partial class ExecutableEditor : UserControl + { + public ExecutableEditor() + { + InitializeComponent(); + } + } +} diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.resx b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.resx new file mode 100644 index 00000000..7080a7d1 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Editors/Executable/ExecutableEditor.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Properties/AssemblyInfo.cs b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..ac370c81 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/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("UniversalEditor.Plugins.Executable.UserInterface.WindowsForms")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("City of Orlando")] +[assembly: AssemblyProduct("UniversalEditor.Plugins.Executable.UserInterface.WindowsForms")] +[assembly: AssemblyCopyright("Copyright © City of Orlando 2013")] +[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("7c391036-c29b-497c-8154-e04234f0ff26")] + +// 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/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms.csproj b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms.csproj new file mode 100644 index 00000000..63bedd62 --- /dev/null +++ b/CSharp/Engines/WindowsForms/Plugins/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms/UniversalEditor.Plugins.Executable.UserInterface.WindowsForms.csproj @@ -0,0 +1,60 @@ + + + + + Debug + AnyCPU + {EE70D9BB-52FB-4BF5-A704-06F4881301CF} + Library + Properties + UniversalEditor + UniversalEditor.Plugins.Executable.UserInterface.WindowsForms + v3.5 + 512 + + + true + full + false + ..\..\..\..\Output\Debug\Plugins\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\..\..\Output\Release\Plugins\ + TRACE + prompt + 4 + + + + + + + + + + UserControl + + + ExecutableEditor.cs + + + + + + ExecutableEditor.cs + + + + + \ No newline at end of file diff --git a/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCDataFormat.cs b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCDataFormat.cs new file mode 100644 index 00000000..05b12a88 --- /dev/null +++ b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCDataFormat.cs @@ -0,0 +1,137 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using UniversalEditor.IO; +using UniversalEditor.ObjectModels.Executable; + +namespace UniversalEditor.DataFormats.Executable.Nintendo.SNES +{ + public class SMCDataFormat : DataFormat + { + private static DataFormatReference _dfr = null; + public override DataFormatReference MakeReference() + { + if (_dfr == null) + { + _dfr = base.MakeReference(); + _dfr.Capabilities.Add(typeof(ExecutableObjectModel), DataFormatCapabilities.All); + _dfr.Filters.Add("Nintendo SNES executable", new string[] { "*.smc", "*.sfc", "*.swc", "*.fig", "*.ufo", "*.?gm" }); + _dfr.Sources.Add("http://romhack.wikia.com/wiki/SNES_ROM_layout"); + _dfr.Sources.Add("http://romhack.wikia.com/wiki/SNES_header"); + _dfr.Sources.Add("http://romhack.wikia.com/wiki/SMC_header"); + } + return _dfr; + } + + private SMCExtendedHeader mvarExtendedHeader = new SMCExtendedHeader(); + public SMCExtendedHeader ExtendedHeader { get { return mvarExtendedHeader; } } + + protected override void LoadInternal(ref ObjectModel objectModel) + { + ExecutableObjectModel exe = (objectModel as ExecutableObjectModel); + if (exe == null) throw new ObjectModelNotSupportedException(); + + Reader reader = base.Accessor.Reader; + + mvarExtendedHeader.Enabled = (base.Accessor.Length % 1024 == 512); + if (mvarExtendedHeader.Enabled) + { + #region 00-02 The size of the ROM dump, in units of 8 kilobytes, as a little-endian integer. + { + mvarExtendedHeader.FileSize = reader.ReadInt16(); + mvarExtendedHeader.FileSize *= 8000; + } + #endregion + #region 02-03 Flags + byte flags = reader.ReadByte(); + mvarExtendedHeader.SplitFile = ((flags & 0x40) == 0x40); + mvarExtendedHeader.HiRomEnabled = ((flags & 0x30) == 0x30); + + if ((flags & 0x04) == 0x04) + { + mvarExtendedHeader.SaveRAMSize = SMCSaveRAMSize.SaveRAM8K; + } + else if ((flags & 0x08) == 0x08) + { + mvarExtendedHeader.SaveRAMSize = SMCSaveRAMSize.SaveRAM2K; + } + else if ((flags & 0x0C) == 0x0C) + { + mvarExtendedHeader.SaveRAMSize = SMCSaveRAMSize.SaveRAMNone; + } + + if ((flags & 0x80) == 0x80) + { + mvarExtendedHeader.ResetVectorOverride = 0x8000; + } + #endregion + #region 03-04 HiRom/LoRom (Pro Fighter specific) + byte hiRomLoRom = reader.ReadByte(); + if ((flags & 0x30) != 0x30) + { + // only set HiRom/LoRom from this field if not set in a flag + mvarExtendedHeader.HiRomEnabled = ((hiRomLoRom & 0x80) == 0x80); + } + #endregion + #region 04-06 DSP-1 settings (Pro Fighter specific) + mvarExtendedHeader.DSP1Settings = reader.ReadInt16(); + #endregion + #region 06-08 Unknown + ushort unknown1 = reader.ReadUInt16(); + #endregion + #region 08-16 SUPERUFO + string creator = reader.ReadFixedLengthString(8); // SUPERUFO + mvarExtendedHeader.Creator = creator; + #endregion + #region 16-24 Extra data + byte[] extradata = reader.ReadBytes(8); + #endregion + + if (mvarExtendedHeader.HiRomEnabled) + { + base.Accessor.Seek(0x101c0, SeekOrigin.Begin); + } + else + { + base.Accessor.Seek(0x81c0, SeekOrigin.Begin); + } + } + + #region SNES header + string gamename = reader.ReadFixedLengthString(21).Trim(); + byte romLayout = reader.ReadByte(); + if (romLayout == 0x20) + { + // LoROM + } + else if (romLayout == 0x21) + { + // HiROM + } + byte cartridgeType = reader.ReadByte(); + byte romsize = reader.ReadByte(); + byte ramsize = reader.ReadByte(); + + // Country code, which selects the video in the emulator. Values $00, $01, $0d use NTSC. + // Values in range $02..$0c use PAL. Other values are invalid. + byte countryCode = reader.ReadByte(); + + // Licensee code. If this value is $33, then the ROM has an extended header with ID at + // $ffb2..$ffb5. + byte licenseeCode = reader.ReadByte(); + + byte versionNumber = reader.ReadByte(); + #endregion + } + + protected override void SaveInternal(ObjectModel objectModel) + { + ExecutableObjectModel exe = (objectModel as ExecutableObjectModel); + if (exe == null) throw new ObjectModelNotSupportedException(); + + throw new NotImplementedException(); + } + } +} diff --git a/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCExtendedHeader.cs b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCExtendedHeader.cs new file mode 100644 index 00000000..d361e2c2 --- /dev/null +++ b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCExtendedHeader.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace UniversalEditor.DataFormats.Executable.Nintendo.SNES +{ + public class SMCExtendedHeader + { + private bool mvarEnabled = false; + public bool Enabled { get { return mvarEnabled; } set { mvarEnabled = value; } } + + private int mvarFileSize = 0; + public int FileSize { get { return mvarFileSize; } set { mvarFileSize = value; } } + + private bool mvarHiRomEnabled = false; + /// + /// Determines whether Hi-ROM is enabled. + /// + public bool HiRomEnabled { get { return mvarHiRomEnabled; } set { mvarHiRomEnabled = value; } } + + private SMCSaveRAMSize mvarSaveRAMSize = SMCSaveRAMSize.SaveRAM32K; + /// + /// Amount of space to allocate for save data. + /// + /// + /// Some headers set the save-RAM size to 32 kilobytes instead of the actual save-RAM + /// size. For example, Super Mario World uses 2 kilobytes, but the clean headered ROM of + /// SMW has byte $00 (meaning LoROM with 32 kilobytes of save-RAM) at offset 2. + /// + public SMCSaveRAMSize SaveRAMSize { get { return mvarSaveRAMSize; } set { mvarSaveRAMSize = value; } } + + private bool mvarSplitFile = false; + /// + /// True if this is a split file, but not the last image. + /// + public bool SplitFile { get { return mvarSplitFile; } set { mvarSplitFile = value; } } + + private int mvarResetVectorOverride = -1; + /// + /// If non-negative, determines the address to jump to in place of the reset vector. + /// + public int ResetVectorOverride { get { return mvarResetVectorOverride; } set { mvarResetVectorOverride = value; } } + + private short mvarDSP1Settings = 0; + public short DSP1Settings { get { return mvarDSP1Settings; } set { mvarDSP1Settings = value; } } + + private string mvarCreator = String.Empty; + public string Creator + { + get { return mvarCreator; } + set + { + if (value.Length > 8) throw new ArgumentOutOfRangeException("Value must be less than or equal to 8 characters in length"); + mvarCreator = value; + } + } + } +} diff --git a/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCSaveRAMSize.cs b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCSaveRAMSize.cs new file mode 100644 index 00000000..045ebb5e --- /dev/null +++ b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/DataFormats/Executable/Nintendo/SNES/SMCSaveRAMSize.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace UniversalEditor.DataFormats.Executable.Nintendo.SNES +{ + /// + /// Amount of space to allocate for save data. + /// + /// + /// Some headers set the save-RAM size to 32 kilobytes instead of the actual save-RAM + /// size. For example, Super Mario World uses 2 kilobytes, but the clean headered ROM of + /// SMW has byte $00 (meaning LoROM with 32 kilobytes of save-RAM) at offset 2. + /// + public enum SMCSaveRAMSize + { + SaveRAMNone = 0, + SaveRAM2K = 2, + SaveRAM8K = 8, + SaveRAM32K = 32 + } +} diff --git a/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/Properties/AssemblyInfo.cs b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..c17eef1e --- /dev/null +++ b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/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("UniversalEditor.Plugins.Nintendo")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("City of Orlando")] +[assembly: AssemblyProduct("UniversalEditor.Plugins.Nintendo")] +[assembly: AssemblyCopyright("Copyright © City of Orlando 2014")] +[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("c36be102-9363-4027-abf4-ad4628503de6")] + +// 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/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/UniversalEditor.Plugins.Nintendo.csproj b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/UniversalEditor.Plugins.Nintendo.csproj new file mode 100644 index 00000000..ba607263 --- /dev/null +++ b/CSharp/Plugins/UniversalEditor.Plugins.Nintendo/UniversalEditor.Plugins.Nintendo.csproj @@ -0,0 +1,65 @@ + + + + + Debug + AnyCPU + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39} + Library + Properties + UniversalEditor + UniversalEditor.Plugins.Nintendo + v3.5 + 512 + + + + true + full + false + ..\..\Output\Debug\Plugins\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\Output\Release\Plugins\ + TRACE + prompt + 4 + + + + + + + + + + + + + + {2d4737e6-6d95-408a-90db-8dff38147e85} + UniversalEditor.Core + + + {30467e5c-05bc-4856-aadc-13906ef4cadd} + UniversalEditor.Essential + + + {791a36f8-5d96-452b-89d2-78ba74596a1e} + UniversalEditor.Plugins.Executable + + + + + \ No newline at end of file diff --git a/CSharp/UniversalEditor.WindowsForms.sln b/CSharp/UniversalEditor.WindowsForms.sln index 6ab75366..f104d297 100644 --- a/CSharp/UniversalEditor.WindowsForms.sln +++ b/CSharp/UniversalEditor.WindowsForms.sln @@ -105,6 +105,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Content", "Content", "{BC68 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Content.PlatformIndependent", "Content\UniversalEditor.Content.PlatformIndependent\UniversalEditor.Content.PlatformIndependent.csproj", "{A5A14A71-5DB3-4495-92F6-8D27C98FF0F4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Nintendo", "Plugins\UniversalEditor.Plugins.Nintendo\UniversalEditor.Plugins.Nintendo.csproj", "{E0B0223C-3E44-4D2A-9FED-F1A319D84D39}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Executable", "Plugins\UniversalEditor.Plugins.Executable\UniversalEditor.Plugins.Executable.csproj", "{791A36F8-5D96-452B-89D2-78BA74596A1E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Executable.UserInterface.WindowsForms", "Engines\WindowsForms\Plugins\UniversalEditor.Plugins.Executable.UserInterface.WindowsForms\UniversalEditor.Plugins.Executable.UserInterface.WindowsForms.csproj", "{EE70D9BB-52FB-4BF5-A704-06F4881301CF}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -275,6 +281,18 @@ Global {A5A14A71-5DB3-4495-92F6-8D27C98FF0F4}.Debug|Any CPU.Build.0 = Debug|Any CPU {A5A14A71-5DB3-4495-92F6-8D27C98FF0F4}.Release|Any CPU.ActiveCfg = Release|Any CPU {A5A14A71-5DB3-4495-92F6-8D27C98FF0F4}.Release|Any CPU.Build.0 = Release|Any CPU + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39}.Release|Any CPU.Build.0 = Release|Any CPU + {791A36F8-5D96-452B-89D2-78BA74596A1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {791A36F8-5D96-452B-89D2-78BA74596A1E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {791A36F8-5D96-452B-89D2-78BA74596A1E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {791A36F8-5D96-452B-89D2-78BA74596A1E}.Release|Any CPU.Build.0 = Release|Any CPU + {EE70D9BB-52FB-4BF5-A704-06F4881301CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EE70D9BB-52FB-4BF5-A704-06F4881301CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EE70D9BB-52FB-4BF5-A704-06F4881301CF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EE70D9BB-52FB-4BF5-A704-06F4881301CF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -310,6 +328,8 @@ Global {9F1FDC26-5F1C-4C2A-BBBF-3A597A72802D} = {71CFF024-26F7-4626-A526-B435FDF8D64E} {E6C9A73D-4556-4220-9BC7-302A7EE64C1A} = {71CFF024-26F7-4626-A526-B435FDF8D64E} {DF96F24E-FED9-4BAC-8389-63590125DC61} = {71CFF024-26F7-4626-A526-B435FDF8D64E} + {E0B0223C-3E44-4D2A-9FED-F1A319D84D39} = {71CFF024-26F7-4626-A526-B435FDF8D64E} + {791A36F8-5D96-452B-89D2-78BA74596A1E} = {71CFF024-26F7-4626-A526-B435FDF8D64E} {FE016EA3-DC31-4A92-8B0A-8C746EC117E1} = {46041F27-7C1C-4209-B72B-251EDB5D4C61} {ED627DF7-3E78-4428-AB31-810BA1586E62} = {46041F27-7C1C-4209-B72B-251EDB5D4C61} {C1F34183-7A2F-41A6-9958-F6F329099654} = {A846CA33-9CAA-4237-B14F-8721DBA89442} @@ -324,6 +344,7 @@ Global {9B5ABDC3-ADF7-42B7-ADE9-8DC715310492} = {D3CE7A47-3989-4B6D-9867-0EA3C8DD7AB1} {4250B20B-2DC9-432F-B0C2-BD20B80B4970} = {D3CE7A47-3989-4B6D-9867-0EA3C8DD7AB1} {049A3447-14AF-4CAE-BE0E-1C42DD1AB1CB} = {D3CE7A47-3989-4B6D-9867-0EA3C8DD7AB1} + {EE70D9BB-52FB-4BF5-A704-06F4881301CF} = {D3CE7A47-3989-4B6D-9867-0EA3C8DD7AB1} {118E40C4-323E-4B4B-8EF4-38EED6CC5E83} = {54990D5E-CE09-459F-916E-AF13101765B4} {A5A14A71-5DB3-4495-92F6-8D27C98FF0F4} = {BC6859FB-B61C-471D-9F84-613E5C388C52} EndGlobalSection