diff --git a/.editorconfig b/.editorconfig index fab28f133..7632e41b2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,12 +1,12 @@ -# top-most EditorConfig file root = true [*] charset = utf-8 - end_of_line = lf insert_final_newline = true - -# 4 space indentation indent_style = space indent_size = 4 + +[*.xml] +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes index 1ff0c4230..70bc4029b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,7 +1,7 @@ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### -* text=auto +* text=lf ############################################################################### # Set default behavior for command prompt diff. diff --git a/.gitignore b/.gitignore index 7023fb37f..8d96d9403 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,10 @@ bld/ # Visual Studio 2015/2017 cache/options directory .vs/ + +# Visual Studio Code tasks +.vscode/ + # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ @@ -327,4 +331,4 @@ ASALocalRun/ *.nvuser # MFractors (Xamarin productivity tool) working folder -.mfractor/ \ No newline at end of file +.mfractor/ diff --git a/.gitmodules b/.gitmodules index 3832f9513..2262f5c70 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ -[submodule "lib/ImGuiScene"] - path = lib/ImGuiScene - url = https://github.com/ff-meli/ImGuiScene -[submodule "lib/Discord.Net"] - path = lib/Discord.Net - url = https://github.com/goaaats/Discord.Net.git -[submodule "lib/CoreHook"] - path = lib/CoreHook - url = https://github.com/unknownv2/CoreHook.git +[submodule "lib/ImGuiScene"] + path = lib/ImGuiScene + url = https://github.com/ff-meli/ImGuiScene +[submodule "lib/Discord.Net"] + path = lib/Discord.Net + url = https://github.com/goaaats/Discord.Net.git +[submodule "lib/CoreHook"] + path = lib/CoreHook + url = https://github.com/unknownv2/CoreHook.git diff --git a/Dalamud.Injector/Dalamud.Injector.csproj b/Dalamud.Injector/Dalamud.Injector.csproj index a5001e8e3..01d82ed18 100644 --- a/Dalamud.Injector/Dalamud.Injector.csproj +++ b/Dalamud.Injector/Dalamud.Injector.csproj @@ -1,15 +1,12 @@ - + + Exe netcoreapp3.1 8.0 - - Exe - $(SolutionDir)/bin - false - true - Portable - + + + diff --git a/Dalamud.Injector/DalamudLauncher.cs b/Dalamud.Injector/DalamudLauncher.cs new file mode 100644 index 000000000..b9e18d454 --- /dev/null +++ b/Dalamud.Injector/DalamudLauncher.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Dalamud.Injector +{ + public sealed class DalamudLauncher + { + private readonly DalamudLauncherOptions m_options; + + public DalamudLauncher(DalamudLauncherOptions options) + { + m_options = options; + } + + public void Launch(string exePath) + { + // + } + + public void Inject(uint pid) + { + + } + } +} diff --git a/Dalamud.Injector/DalamudLauncherOptions.cs b/Dalamud.Injector/DalamudLauncherOptions.cs new file mode 100644 index 000000000..834945b7f --- /dev/null +++ b/Dalamud.Injector/DalamudLauncherOptions.cs @@ -0,0 +1,24 @@ +using System; +using System.IO; + +namespace Dalamud.Injector +{ + public sealed class DalamudLauncherOptions + { + public static DalamudLauncherOptions Default => new DalamudLauncherOptions + { + RootDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Dalamud"), + BinaryDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Dalamud", "bin"), + }; + + /// + /// + /// + public string RootDirectory { get; set; } + + /// + /// + /// + public string BinaryDirectory { get; set; } + } +} diff --git a/Dalamud.Injector/FFI/Win32.cs b/Dalamud.Injector/FFI/Win32.cs new file mode 100644 index 000000000..8e5c7a3de --- /dev/null +++ b/Dalamud.Injector/FFI/Win32.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Dalamud.Injector.FFI +{ + internal static class Win32 + { + } +} diff --git a/Dalamud.Injector/OS/Process.cs b/Dalamud.Injector/OS/Process.cs new file mode 100644 index 000000000..ded8833a7 --- /dev/null +++ b/Dalamud.Injector/OS/Process.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Dalamud.Injector.OS +{ + internal sealed class Process + { + } +} diff --git a/Dalamud.Injector/Options.cs b/Dalamud.Injector/Options.cs new file mode 100644 index 000000000..005fd132a --- /dev/null +++ b/Dalamud.Injector/Options.cs @@ -0,0 +1,18 @@ +using System; +using CommandLine; + +namespace Dalamud.Injector +{ + [Verb("inject")] + internal sealed class InjectOptions + { + [Option('p', "pid", Required = true, HelpText = "A target process id to inject.")] + public uint Pid { get; set; } + + [Option("root", Required = true, HelpText = "")] + public string RootDirectory { get; set; } + + [Option("bin", Required = true, HelpText = "")] + public string BinaryDirectory { get; set; } + } +} diff --git a/Dalamud.Injector/Program.cs b/Dalamud.Injector/Program.cs index 3bbbcf69c..9b1ecfe3c 100644 --- a/Dalamud.Injector/Program.cs +++ b/Dalamud.Injector/Program.cs @@ -1,80 +1,17 @@ using System; +using CommandLine; -namespace Dalamud.Injector { - internal static class Program { - private static void Main(string[] args) { - var pid = int.Parse(args[0]); +namespace Dalamud.Injector +{ + internal static class Program + { + private static void Main(string[] args) + { + Parser.Default.ParseArguments(args) + .WithParsed(opt => + { - Process process = null; - - switch (pid) { - case -1: - process = Process.GetProcessesByName("ffxiv_dx11")[0]; - break; - case -2: - process = Process.Start( - "C:\\Program Files (x86)\\SquareEnix\\FINAL FANTASY XIV - A Realm Reborn\\game\\ffxiv_dx11.exe", - "DEV.TestSID=0 DEV.UseSqPack=1 DEV.DataPathType=1 DEV.LobbyHost01=127.0.0.1 DEV.LobbyPort01=54994 DEV.LobbyHost02=127.0.0.1 DEV.LobbyPort02=54994 DEV.LobbyHost03=127.0.0.1 DEV.LobbyPort03=54994 DEV.LobbyHost04=127.0.0.1 DEV.LobbyPort04=54994 DEV.LobbyHost05=127.0.0.1 DEV.LobbyPort05=54994 DEV.LobbyHost06=127.0.0.1 DEV.LobbyPort06=54994 DEV.LobbyHost07=127.0.0.1 DEV.LobbyPort07=54994 DEV.LobbyHost08=127.0.0.1 DEV.LobbyPort08=54994 SYS.Region=0 language=1 version=1.0.0.0 DEV.MaxEntitledExpansionID=2 DEV.GMServerHost=127.0.0.1 DEV.GameQuitMessageBox=0"); - Thread.Sleep(1000); - break; - default: - process = Process.GetProcessById(pid); - break; - } - - DalamudStartInfo startInfo; - if (args.Length == 1) { - startInfo = GetDefaultStartInfo(); - Console.WriteLine("\nA Dalamud start info was not found in the program arguments. One has been generated for you."); - Console.WriteLine("\nCopy the following contents into the program arguments:"); - } else { - startInfo = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(Convert.FromBase64String(args[1]))); - } - - startInfo.WorkingDirectory = Directory.GetCurrentDirectory(); - - // Seems to help with the STATUS_INTERNAL_ERROR condition - Thread.Sleep(1000); - - // Inject to process - Inject(process, startInfo); - } - - private static void Inject(Process process, DalamudStartInfo info) { - Console.WriteLine($"Injecting to {process.Id}"); - - // File check - var libPath = Path.GetFullPath("Dalamud.dll"); - if (!File.Exists(libPath)) { - Console.WriteLine($"Can't find a dll on {libPath}"); - return; - } - - Remote - RemoteHooking.Inject(process.Id, InjectionOptions.DoNotRequireStrongName, libPath, libPath, info); - - Console.WriteLine("Injected"); - } - - private static DalamudStartInfo GetDefaultStartInfo() { - var startInfo = new DalamudStartInfo { - WorkingDirectory = null, - ConfigurationPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + - @"\XIVLauncher\dalamudConfig.json", - PluginDirectory = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + - @"\XIVLauncher\plugins", - DefaultPluginDirectory = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + - @"\XIVLauncher\defaultplugins", - Language = ClientLanguage.English - }; - - Console.WriteLine("Creating a StartInfo with:\n" + - $"ConfigurationPath: {startInfo.ConfigurationPath}\n" + - $"PluginDirectory: {startInfo.PluginDirectory}\n" + - $"DefaultPluginDirectory: {startInfo.DefaultPluginDirectory}\n" + - $"Language: {startInfo.Language}"); - - return startInfo; + }); } } } diff --git a/Dalamud.sln b/Dalamud.sln index 92130824c..ddda912ab 100644 --- a/Dalamud.sln +++ b/Dalamud.sln @@ -1,244 +1,244 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.29215.179 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dalamud", "Dalamud\Dalamud.csproj", "{B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dalamud.Injector", "Dalamud.Injector\Dalamud.Injector.csproj", "{5B832F73-5F54-4ADC-870F-D0095EF72C9A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImGuiScene", "lib\ImGuiScene\ImGuiScene\ImGuiScene.csproj", "{C0E7E797-4FBF-4F46-BC57-463F3719BA7A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDL2-CS", "lib\ImGuiScene\deps\SDL2-CS\SDL2-CS.csproj", "{85480198-8711-4355-830E-72FD794AD3F6}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImGui.NET-472", "lib\ImGuiScene\deps\ImGui.NET\src\ImGui.NET-472\ImGui.NET-472.csproj", "{0483026E-C6CE-4B1A-AA68-46544C08140B}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Interface", "Interface", "{E15BDA6D-E881-4482-94BA-BE5527E917FF}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DiscordNet", "DiscordNet", "{E1F3D3F5-7820-4A62-A16A-53260375A781}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Rest", "lib\Discord.Net\src\Discord.Net.Rest\Discord.Net.Rest.csproj", "{10E4E5CB-F51E-42EC-B98C-FBCE839D4624}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Core", "lib\Discord.Net\src\Discord.Net.Core\Discord.Net.Core.csproj", "{B46F33B5-9702-434E-A92C-8DE5CF7164E3}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.WebSocket", "lib\Discord.Net\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj", "{AACDC15A-56F8-458F-9C73-DE89F60466AE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{E9868930-4223-4D57-8F31-84E580E4B24B}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CoreHook", "CoreHook", "{CE78D902-02B5-4C7B-A46A-D44BD2F4C622}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook", "lib\CoreHook\src\CoreHook\CoreHook.csproj", "{441EE8F0-AD8E-479B-9F68-12D157F080AF}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.BinaryInjection", "lib\CoreHook\src\CoreHook.BinaryInjection\CoreHook.BinaryInjection.csproj", "{91CB76FC-8E4B-4B4C-B5AD-D681866A2188}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.DependencyModel", "lib\CoreHook\src\CoreHook.DependencyModel\CoreHook.DependencyModel.csproj", "{1155DC7F-22F5-4217-A03C-D0E603C27698}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.CoreLoad", "lib\CoreHook\src\CoreHook.CoreLoad\CoreHook.CoreLoad.csproj", "{A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.IPC", "lib\CoreHook\src\CoreHook.IPC\CoreHook.IPC.csproj", "{B585D1B1-63D8-454E-B76E-F1E0D550DCE7}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.Memory", "lib\CoreHook\src\CoreHook.Memory\CoreHook.Memory.csproj", "{ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x64.ActiveCfg = Debug|x64 - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x64.Build.0 = Debug|x64 - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x86.ActiveCfg = Debug|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x86.Build.0 = Debug|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|Any CPU.Build.0 = Release|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x64.ActiveCfg = Release|x64 - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x64.Build.0 = Release|x64 - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x86.ActiveCfg = Release|Any CPU - {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x86.Build.0 = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x64.ActiveCfg = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x64.Build.0 = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x86.ActiveCfg = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x86.Build.0 = Debug|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|Any CPU.Build.0 = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x64.ActiveCfg = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x64.Build.0 = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x86.ActiveCfg = Release|Any CPU - {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x86.Build.0 = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x64.ActiveCfg = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x64.Build.0 = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x86.ActiveCfg = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x86.Build.0 = Debug|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|Any CPU.Build.0 = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x64.ActiveCfg = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x64.Build.0 = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x86.ActiveCfg = Release|Any CPU - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x86.Build.0 = Release|Any CPU - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x64.ActiveCfg = Debug|x64 - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x64.Build.0 = Debug|x64 - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x86.ActiveCfg = Debug|x86 - {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x86.Build.0 = Debug|x86 - {85480198-8711-4355-830E-72FD794AD3F6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {85480198-8711-4355-830E-72FD794AD3F6}.Release|Any CPU.Build.0 = Release|Any CPU - {85480198-8711-4355-830E-72FD794AD3F6}.Release|x64.ActiveCfg = Release|x64 - {85480198-8711-4355-830E-72FD794AD3F6}.Release|x64.Build.0 = Release|x64 - {85480198-8711-4355-830E-72FD794AD3F6}.Release|x86.ActiveCfg = Release|x86 - {85480198-8711-4355-830E-72FD794AD3F6}.Release|x86.Build.0 = Release|x86 - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x64.ActiveCfg = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x64.Build.0 = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x86.ActiveCfg = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x86.Build.0 = Debug|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|Any CPU.Build.0 = Release|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x64.ActiveCfg = Release|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x64.Build.0 = Release|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x86.ActiveCfg = Release|Any CPU - {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x86.Build.0 = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|Any CPU.Build.0 = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x64.ActiveCfg = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x64.Build.0 = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x86.ActiveCfg = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x86.Build.0 = Debug|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|Any CPU.ActiveCfg = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|Any CPU.Build.0 = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x64.ActiveCfg = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x64.Build.0 = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x86.ActiveCfg = Release|Any CPU - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x86.Build.0 = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x64.ActiveCfg = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x64.Build.0 = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x86.ActiveCfg = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x86.Build.0 = Debug|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|Any CPU.Build.0 = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x64.ActiveCfg = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x64.Build.0 = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x86.ActiveCfg = Release|Any CPU - {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x86.Build.0 = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x64.ActiveCfg = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x64.Build.0 = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x86.ActiveCfg = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x86.Build.0 = Debug|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|Any CPU.Build.0 = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x64.ActiveCfg = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x64.Build.0 = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x86.ActiveCfg = Release|Any CPU - {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x86.Build.0 = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x64.ActiveCfg = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x64.Build.0 = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x86.ActiveCfg = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x86.Build.0 = Debug|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|Any CPU.Build.0 = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x64.ActiveCfg = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x64.Build.0 = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x86.ActiveCfg = Release|Any CPU - {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x86.Build.0 = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|Any CPU.Build.0 = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x64.ActiveCfg = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x64.Build.0 = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x86.ActiveCfg = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x86.Build.0 = Debug|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|Any CPU.ActiveCfg = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|Any CPU.Build.0 = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x64.ActiveCfg = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x64.Build.0 = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x86.ActiveCfg = Release|Any CPU - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x86.Build.0 = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x64.ActiveCfg = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x64.Build.0 = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x86.ActiveCfg = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x86.Build.0 = Debug|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|Any CPU.Build.0 = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x64.ActiveCfg = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x64.Build.0 = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x86.ActiveCfg = Release|Any CPU - {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x86.Build.0 = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x64.ActiveCfg = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x64.Build.0 = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x86.ActiveCfg = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x86.Build.0 = Debug|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|Any CPU.Build.0 = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x64.ActiveCfg = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x64.Build.0 = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x86.ActiveCfg = Release|Any CPU - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x86.Build.0 = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x64.ActiveCfg = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x64.Build.0 = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x86.ActiveCfg = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x86.Build.0 = Debug|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|Any CPU.Build.0 = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x64.ActiveCfg = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x64.Build.0 = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x86.ActiveCfg = Release|Any CPU - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x86.Build.0 = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x64.ActiveCfg = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x64.Build.0 = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x86.ActiveCfg = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x86.Build.0 = Debug|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|Any CPU.Build.0 = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x64.ActiveCfg = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x64.Build.0 = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x86.ActiveCfg = Release|Any CPU - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {C0E7E797-4FBF-4F46-BC57-463F3719BA7A} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} - {85480198-8711-4355-830E-72FD794AD3F6} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} - {0483026E-C6CE-4B1A-AA68-46544C08140B} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} - {E15BDA6D-E881-4482-94BA-BE5527E917FF} = {E9868930-4223-4D57-8F31-84E580E4B24B} - {E1F3D3F5-7820-4A62-A16A-53260375A781} = {E9868930-4223-4D57-8F31-84E580E4B24B} - {10E4E5CB-F51E-42EC-B98C-FBCE839D4624} = {E1F3D3F5-7820-4A62-A16A-53260375A781} - {B46F33B5-9702-434E-A92C-8DE5CF7164E3} = {E1F3D3F5-7820-4A62-A16A-53260375A781} - {AACDC15A-56F8-458F-9C73-DE89F60466AE} = {E1F3D3F5-7820-4A62-A16A-53260375A781} - {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} = {E9868930-4223-4D57-8F31-84E580E4B24B} - {441EE8F0-AD8E-479B-9F68-12D157F080AF} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - {91CB76FC-8E4B-4B4C-B5AD-D681866A2188} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - {1155DC7F-22F5-4217-A03C-D0E603C27698} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - {B585D1B1-63D8-454E-B76E-F1E0D550DCE7} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {79B65AC9-C940-410E-AB61-7EA7E12C7599} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29215.179 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dalamud", "Dalamud\Dalamud.csproj", "{B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dalamud.Injector", "Dalamud.Injector\Dalamud.Injector.csproj", "{5B832F73-5F54-4ADC-870F-D0095EF72C9A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImGuiScene", "lib\ImGuiScene\ImGuiScene\ImGuiScene.csproj", "{C0E7E797-4FBF-4F46-BC57-463F3719BA7A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDL2-CS", "lib\ImGuiScene\deps\SDL2-CS\SDL2-CS.csproj", "{85480198-8711-4355-830E-72FD794AD3F6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImGui.NET-472", "lib\ImGuiScene\deps\ImGui.NET\src\ImGui.NET-472\ImGui.NET-472.csproj", "{0483026E-C6CE-4B1A-AA68-46544C08140B}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Interface", "Interface", "{E15BDA6D-E881-4482-94BA-BE5527E917FF}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DiscordNet", "DiscordNet", "{E1F3D3F5-7820-4A62-A16A-53260375A781}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Rest", "lib\Discord.Net\src\Discord.Net.Rest\Discord.Net.Rest.csproj", "{10E4E5CB-F51E-42EC-B98C-FBCE839D4624}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.Core", "lib\Discord.Net\src\Discord.Net.Core\Discord.Net.Core.csproj", "{B46F33B5-9702-434E-A92C-8DE5CF7164E3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discord.Net.WebSocket", "lib\Discord.Net\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj", "{AACDC15A-56F8-458F-9C73-DE89F60466AE}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{E9868930-4223-4D57-8F31-84E580E4B24B}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CoreHook", "CoreHook", "{CE78D902-02B5-4C7B-A46A-D44BD2F4C622}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook", "lib\CoreHook\src\CoreHook\CoreHook.csproj", "{441EE8F0-AD8E-479B-9F68-12D157F080AF}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.BinaryInjection", "lib\CoreHook\src\CoreHook.BinaryInjection\CoreHook.BinaryInjection.csproj", "{91CB76FC-8E4B-4B4C-B5AD-D681866A2188}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.DependencyModel", "lib\CoreHook\src\CoreHook.DependencyModel\CoreHook.DependencyModel.csproj", "{1155DC7F-22F5-4217-A03C-D0E603C27698}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.CoreLoad", "lib\CoreHook\src\CoreHook.CoreLoad\CoreHook.CoreLoad.csproj", "{A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.IPC", "lib\CoreHook\src\CoreHook.IPC\CoreHook.IPC.csproj", "{B585D1B1-63D8-454E-B76E-F1E0D550DCE7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreHook.Memory", "lib\CoreHook\src\CoreHook.Memory\CoreHook.Memory.csproj", "{ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x64.ActiveCfg = Debug|x64 + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x64.Build.0 = Debug|x64 + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x86.ActiveCfg = Debug|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Debug|x86.Build.0 = Debug|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|Any CPU.Build.0 = Release|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x64.ActiveCfg = Release|x64 + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x64.Build.0 = Release|x64 + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x86.ActiveCfg = Release|Any CPU + {B92DAB43-2279-4A2C-96E3-D9D5910EDBEA}.Release|x86.Build.0 = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x64.ActiveCfg = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x64.Build.0 = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x86.ActiveCfg = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Debug|x86.Build.0 = Debug|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|Any CPU.Build.0 = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x64.ActiveCfg = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x64.Build.0 = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x86.ActiveCfg = Release|Any CPU + {5B832F73-5F54-4ADC-870F-D0095EF72C9A}.Release|x86.Build.0 = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x64.ActiveCfg = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x64.Build.0 = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x86.ActiveCfg = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Debug|x86.Build.0 = Debug|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|Any CPU.Build.0 = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x64.ActiveCfg = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x64.Build.0 = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x86.ActiveCfg = Release|Any CPU + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A}.Release|x86.Build.0 = Release|Any CPU + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x64.ActiveCfg = Debug|x64 + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x64.Build.0 = Debug|x64 + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x86.ActiveCfg = Debug|x86 + {85480198-8711-4355-830E-72FD794AD3F6}.Debug|x86.Build.0 = Debug|x86 + {85480198-8711-4355-830E-72FD794AD3F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {85480198-8711-4355-830E-72FD794AD3F6}.Release|Any CPU.Build.0 = Release|Any CPU + {85480198-8711-4355-830E-72FD794AD3F6}.Release|x64.ActiveCfg = Release|x64 + {85480198-8711-4355-830E-72FD794AD3F6}.Release|x64.Build.0 = Release|x64 + {85480198-8711-4355-830E-72FD794AD3F6}.Release|x86.ActiveCfg = Release|x86 + {85480198-8711-4355-830E-72FD794AD3F6}.Release|x86.Build.0 = Release|x86 + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x64.ActiveCfg = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x64.Build.0 = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x86.ActiveCfg = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Debug|x86.Build.0 = Debug|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|Any CPU.Build.0 = Release|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x64.ActiveCfg = Release|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x64.Build.0 = Release|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x86.ActiveCfg = Release|Any CPU + {0483026E-C6CE-4B1A-AA68-46544C08140B}.Release|x86.Build.0 = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|Any CPU.Build.0 = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x64.ActiveCfg = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x64.Build.0 = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x86.ActiveCfg = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Debug|x86.Build.0 = Debug|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|Any CPU.ActiveCfg = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|Any CPU.Build.0 = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x64.ActiveCfg = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x64.Build.0 = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x86.ActiveCfg = Release|Any CPU + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624}.Release|x86.Build.0 = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x64.ActiveCfg = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x64.Build.0 = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x86.ActiveCfg = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Debug|x86.Build.0 = Debug|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|Any CPU.Build.0 = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x64.ActiveCfg = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x64.Build.0 = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x86.ActiveCfg = Release|Any CPU + {B46F33B5-9702-434E-A92C-8DE5CF7164E3}.Release|x86.Build.0 = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x64.ActiveCfg = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x64.Build.0 = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x86.ActiveCfg = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Debug|x86.Build.0 = Debug|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|Any CPU.Build.0 = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x64.ActiveCfg = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x64.Build.0 = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x86.ActiveCfg = Release|Any CPU + {AACDC15A-56F8-458F-9C73-DE89F60466AE}.Release|x86.Build.0 = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x64.ActiveCfg = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x64.Build.0 = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x86.ActiveCfg = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Debug|x86.Build.0 = Debug|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|Any CPU.Build.0 = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x64.ActiveCfg = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x64.Build.0 = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x86.ActiveCfg = Release|Any CPU + {441EE8F0-AD8E-479B-9F68-12D157F080AF}.Release|x86.Build.0 = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|Any CPU.Build.0 = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x64.ActiveCfg = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x64.Build.0 = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x86.ActiveCfg = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Debug|x86.Build.0 = Debug|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|Any CPU.ActiveCfg = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|Any CPU.Build.0 = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x64.ActiveCfg = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x64.Build.0 = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x86.ActiveCfg = Release|Any CPU + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188}.Release|x86.Build.0 = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x64.ActiveCfg = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x64.Build.0 = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x86.ActiveCfg = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Debug|x86.Build.0 = Debug|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|Any CPU.Build.0 = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x64.ActiveCfg = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x64.Build.0 = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x86.ActiveCfg = Release|Any CPU + {1155DC7F-22F5-4217-A03C-D0E603C27698}.Release|x86.Build.0 = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x64.ActiveCfg = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x64.Build.0 = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x86.ActiveCfg = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Debug|x86.Build.0 = Debug|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|Any CPU.Build.0 = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x64.ActiveCfg = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x64.Build.0 = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x86.ActiveCfg = Release|Any CPU + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8}.Release|x86.Build.0 = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x64.ActiveCfg = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x64.Build.0 = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x86.ActiveCfg = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Debug|x86.Build.0 = Debug|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|Any CPU.Build.0 = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x64.ActiveCfg = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x64.Build.0 = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x86.ActiveCfg = Release|Any CPU + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7}.Release|x86.Build.0 = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x64.ActiveCfg = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x64.Build.0 = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x86.ActiveCfg = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Debug|x86.Build.0 = Debug|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|Any CPU.Build.0 = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x64.ActiveCfg = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x64.Build.0 = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x86.ActiveCfg = Release|Any CPU + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {C0E7E797-4FBF-4F46-BC57-463F3719BA7A} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} + {85480198-8711-4355-830E-72FD794AD3F6} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} + {0483026E-C6CE-4B1A-AA68-46544C08140B} = {E15BDA6D-E881-4482-94BA-BE5527E917FF} + {E15BDA6D-E881-4482-94BA-BE5527E917FF} = {E9868930-4223-4D57-8F31-84E580E4B24B} + {E1F3D3F5-7820-4A62-A16A-53260375A781} = {E9868930-4223-4D57-8F31-84E580E4B24B} + {10E4E5CB-F51E-42EC-B98C-FBCE839D4624} = {E1F3D3F5-7820-4A62-A16A-53260375A781} + {B46F33B5-9702-434E-A92C-8DE5CF7164E3} = {E1F3D3F5-7820-4A62-A16A-53260375A781} + {AACDC15A-56F8-458F-9C73-DE89F60466AE} = {E1F3D3F5-7820-4A62-A16A-53260375A781} + {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} = {E9868930-4223-4D57-8F31-84E580E4B24B} + {441EE8F0-AD8E-479B-9F68-12D157F080AF} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + {91CB76FC-8E4B-4B4C-B5AD-D681866A2188} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + {1155DC7F-22F5-4217-A03C-D0E603C27698} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + {A1BC1DFD-AAE0-4221-A972-46CEBE4FCBF8} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + {B585D1B1-63D8-454E-B76E-F1E0D550DCE7} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + {ED4FFE13-5F83-42B9-8847-E7C4D7A988E8} = {CE78D902-02B5-4C7B-A46A-D44BD2F4C622} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {79B65AC9-C940-410E-AB61-7EA7E12C7599} + EndGlobalSection +EndGlobal diff --git a/Dalamud.sln.DotSettings b/Dalamud.sln.DotSettings deleted file mode 100644 index b9b47cb53..000000000 --- a/Dalamud.sln.DotSettings +++ /dev/null @@ -1,49 +0,0 @@ - - HINT - DO_NOT_SHOW - DO_NOT_SHOW - Built-in: Reformat Code - True - True - Field - END_OF_LINE - END_OF_LINE - True - True - True - True - True - True - True - True - True - END_OF_LINE - END_OF_LINE - TOGETHER_SAME_LINE - END_OF_LINE - END_OF_LINE - True - END_OF_LINE - NEVER - False - False - False - END_OF_LINE - True - True - Replace - Replace - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - True - True - True - True - True - True - True - True - True - True \ No newline at end of file diff --git a/api/.gitignore b/api/.gitignore deleted file mode 100644 index e8079a3be..000000000 --- a/api/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -############### -# temp file # -############### -*.yml -.manifest diff --git a/api/index.md b/api/index.md deleted file mode 100644 index 587bacfa3..000000000 --- a/api/index.md +++ /dev/null @@ -1,4 +0,0 @@ -# Dalamud Plugin API -This is the documentation for the publicly accessible Dalamud plugin API. See the [market board plugin](https://github.com/goaaats/Dalamud.MbPlugin) as an example. - -All plugins have to implement the [IDalamudPlugin interface](Dalamud.Plugin.IDalamudPlugin.yml) that gives them access to objects like the chat command manager and game client information. \ No newline at end of file diff --git a/docfx.json b/docfx.json deleted file mode 100644 index 379540031..000000000 --- a/docfx.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "metadata": [ - { - "src": [ - { - "files": [ - "Dalamud.sln" - ], - } - ], - "dest": "api", - "disableGitFeatures": false, - "disableDefaultFilter": false, - "filter": "filterConfig.yml" - } - ], - "build": { - "content": [ - { - "files": [ - "api/**.yml", - "api/index.md" - ] - }, - { - "files": [ - "articles/**.md", - "articles/**/toc.yml", - "toc.yml", - "*.md" - ] - } - ], - "resource": [ - { - "files": [ - "images/**" - ] - } - ], - "overwrite": [ - { - "files": [ - "apidoc/**.md" - ], - "exclude": [ - "obj/**", - "docs/**" - ] - } - ], - "dest": "docs", - "globalMetadataFiles": [], - "fileMetadataFiles": [], - "template": [ - "default" - ], - "postProcessors": [], - "markdownEngineName": "markdig", - "noLangKeyword": false, - "keepFileLink": false, - "cleanupCacheHistory": false, - "disableGitFeatures": false - } -} \ No newline at end of file diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index e69de29bb..000000000 diff --git a/docs/README.html b/docs/README.html deleted file mode 100644 index 81c1f0603..000000000 --- a/docs/README.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - Dalamud - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Configuration.IPluginConfiguration.html b/docs/api/Dalamud.Configuration.IPluginConfiguration.html deleted file mode 100644 index 2a62016b2..000000000 --- a/docs/api/Dalamud.Configuration.IPluginConfiguration.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Interface IPluginConfiguration - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Configuration.html b/docs/api/Dalamud.Configuration.html deleted file mode 100644 index c30bfc0c6..000000000 --- a/docs/api/Dalamud.Configuration.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - Namespace Dalamud.Configuration - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Data.DataManager.html b/docs/api/Dalamud.Data.DataManager.html deleted file mode 100644 index 27eecb8eb..000000000 --- a/docs/api/Dalamud.Data.DataManager.html +++ /dev/null @@ -1,481 +0,0 @@ - - - - - - - - Class DataManager - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html b/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html deleted file mode 100644 index b6910b638..000000000 --- a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html +++ /dev/null @@ -1,2625 +0,0 @@ - - - - - - - - Class ContentFinderCondition - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Data.TransientSheet.html b/docs/api/Dalamud.Data.TransientSheet.html deleted file mode 100644 index 380047db1..000000000 --- a/docs/api/Dalamud.Data.TransientSheet.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - Namespace Dalamud.Data.TransientSheet - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Data.html b/docs/api/Dalamud.Data.html deleted file mode 100644 index c076c8f9c..000000000 --- a/docs/api/Dalamud.Data.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace Dalamud.Data - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.EnumExtensions.html b/docs/api/Dalamud.Game.Chat.EnumExtensions.html deleted file mode 100644 index d321621d9..000000000 --- a/docs/api/Dalamud.Game.Chat.EnumExtensions.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - Class EnumExtensions - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html deleted file mode 100644 index 3b15cfba1..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum Payload.EmbeddedInfoType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html deleted file mode 100644 index 86f69a587..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum Payload.IntegerType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html deleted file mode 100644 index bad0e268a..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - Enum Payload.SeStringChunkType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html deleted file mode 100644 index 1985ba6c8..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html +++ /dev/null @@ -1,524 +0,0 @@ - - - - - - - - Class Payload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html deleted file mode 100644 index 3d9cc2a9d..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Enum PayloadType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html deleted file mode 100644 index f2f412d7b..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - Class ItemPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html deleted file mode 100644 index 12b7f62cc..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html +++ /dev/null @@ -1,470 +0,0 @@ - - - - - - - - Class PlayerPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html deleted file mode 100644 index 1c935aa37..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - - Class RawPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html deleted file mode 100644 index 71ead8d47..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - - - Class StatusPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html deleted file mode 100644 index 76e7e541d..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html +++ /dev/null @@ -1,438 +0,0 @@ - - - - - - - - Class TextPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.html deleted file mode 100644 index ba7ba8d35..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Chat.SeStringHandling.Payloads - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html deleted file mode 100644 index d017b3cb3..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - Class SeString - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.html deleted file mode 100644 index 923a59221..000000000 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Chat.SeStringHandling - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.XivChatEntry.html b/docs/api/Dalamud.Game.Chat.XivChatEntry.html deleted file mode 100644 index 750c2ed9e..000000000 --- a/docs/api/Dalamud.Game.Chat.XivChatEntry.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - Class XivChatEntry - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.XivChatType.html b/docs/api/Dalamud.Game.Chat.XivChatType.html deleted file mode 100644 index b83fe480d..000000000 --- a/docs/api/Dalamud.Game.Chat.XivChatType.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Enum XivChatType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html b/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html deleted file mode 100644 index e76ee3839..000000000 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - Class XivChatTypeExtensions - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html b/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html deleted file mode 100644 index a743a2be1..000000000 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - Class XivChatTypeInfoAttribute - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Chat.html b/docs/api/Dalamud.Game.Chat.html deleted file mode 100644 index 6d84ae150..000000000 --- a/docs/api/Dalamud.Game.Chat.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Chat - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ChatHandlers.html b/docs/api/Dalamud.Game.ChatHandlers.html deleted file mode 100644 index 4f14ad7c5..000000000 --- a/docs/api/Dalamud.Game.ChatHandlers.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - Class ChatHandlers - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html deleted file mode 100644 index 4e3486825..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html +++ /dev/null @@ -1,447 +0,0 @@ - - - - - - - - Class ActorTable - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html b/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html deleted file mode 100644 index 880ba5528..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Enum ObjectKind - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html deleted file mode 100644 index 6499cc286..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct Position3 - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html deleted file mode 100644 index 38cec3826..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class ClassJob - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html deleted file mode 100644 index 15cc7740e..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class World - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.html deleted file mode 100644 index d4c924122..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Actors.Resolvers - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html deleted file mode 100644 index 1a7b0398a..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Class Actor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html deleted file mode 100644 index 0bb296016..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - Class Chara - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html deleted file mode 100644 index 99e7c0ffd..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Class BattleNpc - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html deleted file mode 100644 index 3085278fd..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum BattleNpcSubKind - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html deleted file mode 100644 index 721ecae50..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - Class Npc - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html deleted file mode 100644 index 9c257f489..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Actors.Types.NonPlayer - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html deleted file mode 100644 index 923feb536..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - - - Class PlayerCharacter - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.html deleted file mode 100644 index 6d63dafd3..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Actors.Types - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Actors.html b/docs/api/Dalamud.Game.ClientState.Actors.html deleted file mode 100644 index 556353961..000000000 --- a/docs/api/Dalamud.Game.ClientState.Actors.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Actors - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.ClientState.html b/docs/api/Dalamud.Game.ClientState.ClientState.html deleted file mode 100644 index 0ce641358..000000000 --- a/docs/api/Dalamud.Game.ClientState.ClientState.html +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - - - Class ClientState - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.JobGauges.html b/docs/api/Dalamud.Game.ClientState.JobGauges.html deleted file mode 100644 index e3f44b1db..000000000 --- a/docs/api/Dalamud.Game.ClientState.JobGauges.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Class JobGauges - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html deleted file mode 100644 index 78b4fc790..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html +++ /dev/null @@ -1,584 +0,0 @@ - - - - - - - - Struct Actor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html deleted file mode 100644 index 14630e426..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - Struct ASTGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html deleted file mode 100644 index 68a71be18..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - Struct BLMGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html deleted file mode 100644 index 632ba2d38..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum BOTDState - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html deleted file mode 100644 index f07028336..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct BRDGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html deleted file mode 100644 index 72c605676..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum CardType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html deleted file mode 100644 index 71c2cee00..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum CurrentSong - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html deleted file mode 100644 index ee517d135..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - Struct DNCGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html deleted file mode 100644 index 9c71cb4e1..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct DRGGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html deleted file mode 100644 index ccea96a94..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - Struct DRKGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html deleted file mode 100644 index 60c89306f..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Enum DismissedFairy - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html deleted file mode 100644 index de28a558c..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct GNBGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html deleted file mode 100644 index 103d182c1..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - Struct MCHGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html deleted file mode 100644 index 404f06b03..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - Struct MNKGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html deleted file mode 100644 index 165999eee..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum Mudras - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html deleted file mode 100644 index fa0d6d3a7..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct NINGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html deleted file mode 100644 index bea3e79d7..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct PLDGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html deleted file mode 100644 index 2d944fd5d..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum PetGlam - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html deleted file mode 100644 index bd7b4496a..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct RDMGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html deleted file mode 100644 index 68db18aae..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SAMGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html deleted file mode 100644 index 5f6f39c88..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SCHGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html deleted file mode 100644 index d4f4356bc..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - Struct SMNGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html deleted file mode 100644 index e2276da22..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SealType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html deleted file mode 100644 index 1c829c230..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum Sen - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html deleted file mode 100644 index e442f09da..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SummonPet - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html deleted file mode 100644 index e7253492d..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct WARGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html deleted file mode 100644 index 7bdb3d81d..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct WHMGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.html deleted file mode 100644 index ee161d712..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Structs.JobGauge - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.Structs.html b/docs/api/Dalamud.Game.ClientState.Structs.html deleted file mode 100644 index 47c2ea95b..000000000 --- a/docs/api/Dalamud.Game.ClientState.Structs.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState.Structs - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.ClientState.html b/docs/api/Dalamud.Game.ClientState.html deleted file mode 100644 index c9042e295..000000000 --- a/docs/api/Dalamud.Game.ClientState.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.ClientState - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html b/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html deleted file mode 100644 index 6baad38e9..000000000 --- a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Delegate CommandInfo.HandlerDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.html b/docs/api/Dalamud.Game.Command.CommandInfo.html deleted file mode 100644 index df5903ff0..000000000 --- a/docs/api/Dalamud.Game.Command.CommandInfo.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - - Class CommandInfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Command.CommandManager.html b/docs/api/Dalamud.Game.Command.CommandManager.html deleted file mode 100644 index 2a8be0c6f..000000000 --- a/docs/api/Dalamud.Game.Command.CommandManager.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - Class CommandManager - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Command.html b/docs/api/Dalamud.Game.Command.html deleted file mode 100644 index e7376ca55..000000000 --- a/docs/api/Dalamud.Game.Command.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Command - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html deleted file mode 100644 index d88af7a04..000000000 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - Class SwapChainSigResolver - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html deleted file mode 100644 index 0b6a06370..000000000 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - Class SwapChainVtableResolver - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.DXGI.html b/docs/api/Dalamud.Game.Internal.DXGI.html deleted file mode 100644 index 0f0fd22c6..000000000 --- a/docs/api/Dalamud.Game.Internal.DXGI.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal.DXGI - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html b/docs/api/Dalamud.Game.Internal.File.ResourceManager.html deleted file mode 100644 index d25c1f1dc..000000000 --- a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - Class ResourceManager - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.File.html b/docs/api/Dalamud.Game.Internal.File.html deleted file mode 100644 index 612a6658f..000000000 --- a/docs/api/Dalamud.Game.Internal.File.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal.File - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html deleted file mode 100644 index e1693955d..000000000 --- a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate Framework.OnUpdateDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Framework.html b/docs/api/Dalamud.Game.Internal.Framework.html deleted file mode 100644 index 456e4159f..000000000 --- a/docs/api/Dalamud.Game.Internal.Framework.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - Class Framework - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html deleted file mode 100644 index b27694b1e..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate ChatGui.OnMessageDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html deleted file mode 100644 index 0d00d2adc..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate ChatGui.OnMessageRawDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html deleted file mode 100644 index 8e8010d15..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html +++ /dev/null @@ -1,493 +0,0 @@ - - - - - - - - Class ChatGui - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html deleted file mode 100644 index 3b2e66652..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Class GameGui - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html deleted file mode 100644 index 2aea01088..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate TargetManager.GetTargetDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html deleted file mode 100644 index 0228622d3..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - Class TargetManager - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Gui.html b/docs/api/Dalamud.Game.Internal.Gui.html deleted file mode 100644 index 4eec33965..000000000 --- a/docs/api/Dalamud.Game.Internal.Gui.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal.Gui - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html b/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html deleted file mode 100644 index d8f263737..000000000 --- a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - Class LibcFunction - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html b/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html deleted file mode 100644 index d7d2d638d..000000000 --- a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class OwnedStdString - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Libc.StdString.html b/docs/api/Dalamud.Game.Internal.Libc.StdString.html deleted file mode 100644 index caaa2d88a..000000000 --- a/docs/api/Dalamud.Game.Internal.Libc.StdString.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - Class StdString - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Libc.html b/docs/api/Dalamud.Game.Internal.Libc.html deleted file mode 100644 index f5346e0f0..000000000 --- a/docs/api/Dalamud.Game.Internal.Libc.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal.Libc - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnZonePacketDelegate.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnZonePacketDelegate.html deleted file mode 100644 index 45d7a00eb..000000000 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnZonePacketDelegate.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate GameNetwork.OnZonePacketDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html deleted file mode 100644 index b4e65ccb8..000000000 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - Class GameNetwork - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.Network.html b/docs/api/Dalamud.Game.Internal.Network.html deleted file mode 100644 index 67ec9a3c7..000000000 --- a/docs/api/Dalamud.Game.Internal.Network.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal.Network - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Internal.html b/docs/api/Dalamud.Game.Internal.html deleted file mode 100644 index e45403026..000000000 --- a/docs/api/Dalamud.Game.Internal.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Internal - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html deleted file mode 100644 index 88507d6c6..000000000 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate NetworkHandlers.CfPop - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.html deleted file mode 100644 index ab42b73be..000000000 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - Class NetworkHandlers - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html deleted file mode 100644 index 5e8be0228..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html deleted file mode 100644 index 3b7a28baa..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html +++ /dev/null @@ -1,649 +0,0 @@ - - - - - - - - Class MarketBoardCurrentOfferings.MarketBoardItemListing - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html deleted file mode 100644 index cd12af6c2..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - Class MarketBoardCurrentOfferings - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html deleted file mode 100644 index 0cc5c3631..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - Class MarketBoardHistory.MarketBoardHistoryListing - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html deleted file mode 100644 index de1647270..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - Class MarketBoardHistory - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html b/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html deleted file mode 100644 index 7b039e417..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html +++ /dev/null @@ -1,379 +0,0 @@ - - - - - - - - Class MarketTaxRates - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.Structures.html b/docs/api/Dalamud.Game.Network.Structures.html deleted file mode 100644 index 6e60a92c4..000000000 --- a/docs/api/Dalamud.Game.Network.Structures.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Network.Structures - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.Network.html b/docs/api/Dalamud.Game.Network.html deleted file mode 100644 index 67b3fc5b2..000000000 --- a/docs/api/Dalamud.Game.Network.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace Dalamud.Game.Network - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.SigScanner.html b/docs/api/Dalamud.Game.SigScanner.html deleted file mode 100644 index d0980542a..000000000 --- a/docs/api/Dalamud.Game.SigScanner.html +++ /dev/null @@ -1,794 +0,0 @@ - - - - - - - - Class SigScanner - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Game.html b/docs/api/Dalamud.Game.html deleted file mode 100644 index 1bfa56610..000000000 --- a/docs/api/Dalamud.Game.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace Dalamud.Game - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Interface.InterfaceManager.html b/docs/api/Dalamud.Interface.InterfaceManager.html deleted file mode 100644 index 4592c9c2b..000000000 --- a/docs/api/Dalamud.Interface.InterfaceManager.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - Class InterfaceManager - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Interface.MySinkExtensions.html b/docs/api/Dalamud.Interface.MySinkExtensions.html deleted file mode 100644 index 7bda34575..000000000 --- a/docs/api/Dalamud.Interface.MySinkExtensions.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class MySinkExtensions - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Interface.SerilogEventSink.html b/docs/api/Dalamud.Interface.SerilogEventSink.html deleted file mode 100644 index e4d3dfe03..000000000 --- a/docs/api/Dalamud.Interface.SerilogEventSink.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - Class SerilogEventSink - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Interface.UiBuilder.html b/docs/api/Dalamud.Interface.UiBuilder.html deleted file mode 100644 index 815f29942..000000000 --- a/docs/api/Dalamud.Interface.UiBuilder.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - Class UiBuilder - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Interface.html b/docs/api/Dalamud.Interface.html deleted file mode 100644 index 3ae9b2ba4..000000000 --- a/docs/api/Dalamud.Interface.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace Dalamud.Interface - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html deleted file mode 100644 index 50b4c896c..000000000 --- a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html +++ /dev/null @@ -1,595 +0,0 @@ - - - - - - - - Class DalamudPluginInterface - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Plugin.IDalamudPlugin.html b/docs/api/Dalamud.Plugin.IDalamudPlugin.html deleted file mode 100644 index df5c0f504..000000000 --- a/docs/api/Dalamud.Plugin.IDalamudPlugin.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - Interface IDalamudPlugin - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/Dalamud.Plugin.html b/docs/api/Dalamud.Plugin.html deleted file mode 100644 index 1ac91df8c..000000000 --- a/docs/api/Dalamud.Plugin.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace Dalamud.Plugin - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImColor.html b/docs/api/ImGuiNET.ImColor.html deleted file mode 100644 index de76e3ad8..000000000 --- a/docs/api/ImGuiNET.ImColor.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct ImColor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImColorPtr.html b/docs/api/ImGuiNET.ImColorPtr.html deleted file mode 100644 index 485fb76d3..000000000 --- a/docs/api/ImGuiNET.ImColorPtr.html +++ /dev/null @@ -1,642 +0,0 @@ - - - - - - - - Struct ImColorPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawChannel.html b/docs/api/ImGuiNET.ImDrawChannel.html deleted file mode 100644 index 1ca22089f..000000000 --- a/docs/api/ImGuiNET.ImDrawChannel.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct ImDrawChannel - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawChannelPtr.html b/docs/api/ImGuiNET.ImDrawChannelPtr.html deleted file mode 100644 index 0c51226f3..000000000 --- a/docs/api/ImGuiNET.ImDrawChannelPtr.html +++ /dev/null @@ -1,447 +0,0 @@ - - - - - - - - Struct ImDrawChannelPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawCmd.html b/docs/api/ImGuiNET.ImDrawCmd.html deleted file mode 100644 index 6ead25a6d..000000000 --- a/docs/api/ImGuiNET.ImDrawCmd.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Struct ImDrawCmd - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawCmdPtr.html b/docs/api/ImGuiNET.ImDrawCmdPtr.html deleted file mode 100644 index ad2d728d0..000000000 --- a/docs/api/ImGuiNET.ImDrawCmdPtr.html +++ /dev/null @@ -1,614 +0,0 @@ - - - - - - - - Struct ImDrawCmdPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawCornerFlags.html b/docs/api/ImGuiNET.ImDrawCornerFlags.html deleted file mode 100644 index 18575f0b7..000000000 --- a/docs/api/ImGuiNET.ImDrawCornerFlags.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum ImDrawCornerFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawData.html b/docs/api/ImGuiNET.ImDrawData.html deleted file mode 100644 index e671d4093..000000000 --- a/docs/api/ImGuiNET.ImDrawData.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Struct ImDrawData - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawDataPtr.html b/docs/api/ImGuiNET.ImDrawDataPtr.html deleted file mode 100644 index cb976e7c3..000000000 --- a/docs/api/ImGuiNET.ImDrawDataPtr.html +++ /dev/null @@ -1,736 +0,0 @@ - - - - - - - - Struct ImDrawDataPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawList.html b/docs/api/ImGuiNET.ImDrawList.html deleted file mode 100644 index 36a6c6603..000000000 --- a/docs/api/ImGuiNET.ImDrawList.html +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - Struct ImDrawList - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawListFlags.html b/docs/api/ImGuiNET.ImDrawListFlags.html deleted file mode 100644 index 5664ddfff..000000000 --- a/docs/api/ImGuiNET.ImDrawListFlags.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum ImDrawListFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawListPtr.html b/docs/api/ImGuiNET.ImDrawListPtr.html deleted file mode 100644 index 34403d1c0..000000000 --- a/docs/api/ImGuiNET.ImDrawListPtr.html +++ /dev/null @@ -1,4174 +0,0 @@ - - - - - - - - Struct ImDrawListPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawListSplitter.html b/docs/api/ImGuiNET.ImDrawListSplitter.html deleted file mode 100644 index 321bd9f4b..000000000 --- a/docs/api/ImGuiNET.ImDrawListSplitter.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct ImDrawListSplitter - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawListSplitterPtr.html b/docs/api/ImGuiNET.ImDrawListSplitterPtr.html deleted file mode 100644 index bf2dfac25..000000000 --- a/docs/api/ImGuiNET.ImDrawListSplitterPtr.html +++ /dev/null @@ -1,630 +0,0 @@ - - - - - - - - Struct ImDrawListSplitterPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawVert.html b/docs/api/ImGuiNET.ImDrawVert.html deleted file mode 100644 index 569746259..000000000 --- a/docs/api/ImGuiNET.ImDrawVert.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct ImDrawVert - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImDrawVertPtr.html b/docs/api/ImGuiNET.ImDrawVertPtr.html deleted file mode 100644 index 36a398bee..000000000 --- a/docs/api/ImGuiNET.ImDrawVertPtr.html +++ /dev/null @@ -1,477 +0,0 @@ - - - - - - - - Struct ImDrawVertPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFont.html b/docs/api/ImGuiNET.ImFont.html deleted file mode 100644 index db572d39b..000000000 --- a/docs/api/ImGuiNET.ImFont.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - - - Struct ImFont - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontAtlas.html b/docs/api/ImGuiNET.ImFontAtlas.html deleted file mode 100644 index 8bf3eb9bf..000000000 --- a/docs/api/ImGuiNET.ImFontAtlas.html +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - - - Struct ImFontAtlas - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontAtlasCustomRect.html b/docs/api/ImGuiNET.ImFontAtlasCustomRect.html deleted file mode 100644 index 193e6e728..000000000 --- a/docs/api/ImGuiNET.ImFontAtlasCustomRect.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Struct ImFontAtlasCustomRect - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontAtlasCustomRectPtr.html b/docs/api/ImGuiNET.ImFontAtlasCustomRectPtr.html deleted file mode 100644 index 0010f0b81..000000000 --- a/docs/api/ImGuiNET.ImFontAtlasCustomRectPtr.html +++ /dev/null @@ -1,674 +0,0 @@ - - - - - - - - Struct ImFontAtlasCustomRectPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontAtlasFlags.html b/docs/api/ImGuiNET.ImFontAtlasFlags.html deleted file mode 100644 index d01f7eaaf..000000000 --- a/docs/api/ImGuiNET.ImFontAtlasFlags.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Enum ImFontAtlasFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontAtlasPtr.html b/docs/api/ImGuiNET.ImFontAtlasPtr.html deleted file mode 100644 index 004271dcb..000000000 --- a/docs/api/ImGuiNET.ImFontAtlasPtr.html +++ /dev/null @@ -1,2792 +0,0 @@ - - - - - - - - Struct ImFontAtlasPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontConfig.html b/docs/api/ImGuiNET.ImFontConfig.html deleted file mode 100644 index ddfaae05b..000000000 --- a/docs/api/ImGuiNET.ImFontConfig.html +++ /dev/null @@ -1,670 +0,0 @@ - - - - - - - - Struct ImFontConfig - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontConfigPtr.html b/docs/api/ImGuiNET.ImFontConfigPtr.html deleted file mode 100644 index 25663569a..000000000 --- a/docs/api/ImGuiNET.ImFontConfigPtr.html +++ /dev/null @@ -1,944 +0,0 @@ - - - - - - - - Struct ImFontConfigPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontGlyph.html b/docs/api/ImGuiNET.ImFontGlyph.html deleted file mode 100644 index a15239dd1..000000000 --- a/docs/api/ImGuiNET.ImFontGlyph.html +++ /dev/null @@ -1,438 +0,0 @@ - - - - - - - - Struct ImFontGlyph - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontGlyphPtr.html b/docs/api/ImGuiNET.ImFontGlyphPtr.html deleted file mode 100644 index efab7f623..000000000 --- a/docs/api/ImGuiNET.ImFontGlyphPtr.html +++ /dev/null @@ -1,687 +0,0 @@ - - - - - - - - Struct ImFontGlyphPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontGlyphRangesBuilder.html b/docs/api/ImGuiNET.ImFontGlyphRangesBuilder.html deleted file mode 100644 index 7a9174248..000000000 --- a/docs/api/ImGuiNET.ImFontGlyphRangesBuilder.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct ImFontGlyphRangesBuilder - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontGlyphRangesBuilderPtr.html b/docs/api/ImGuiNET.ImFontGlyphRangesBuilderPtr.html deleted file mode 100644 index 39bd235aa..000000000 --- a/docs/api/ImGuiNET.ImFontGlyphRangesBuilderPtr.html +++ /dev/null @@ -1,656 +0,0 @@ - - - - - - - - Struct ImFontGlyphRangesBuilderPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImFontPtr.html b/docs/api/ImGuiNET.ImFontPtr.html deleted file mode 100644 index 4c3a471d7..000000000 --- a/docs/api/ImGuiNET.ImFontPtr.html +++ /dev/null @@ -1,1387 +0,0 @@ - - - - - - - - Struct ImFontPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGui.html b/docs/api/ImGuiNET.ImGui.html deleted file mode 100644 index 7ccdd065a..000000000 --- a/docs/api/ImGuiNET.ImGui.html +++ /dev/null @@ -1,27163 +0,0 @@ - - - - - - - - Class ImGui - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiBackendFlags.html b/docs/api/ImGuiNET.ImGuiBackendFlags.html deleted file mode 100644 index 6240a5672..000000000 --- a/docs/api/ImGuiNET.ImGuiBackendFlags.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum ImGuiBackendFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiCol.html b/docs/api/ImGuiNET.ImGuiCol.html deleted file mode 100644 index d4a347add..000000000 --- a/docs/api/ImGuiNET.ImGuiCol.html +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - - Enum ImGuiCol - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiColorEditFlags.html b/docs/api/ImGuiNET.ImGuiColorEditFlags.html deleted file mode 100644 index 41ac90ce6..000000000 --- a/docs/api/ImGuiNET.ImGuiColorEditFlags.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - Enum ImGuiColorEditFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiComboFlags.html b/docs/api/ImGuiNET.ImGuiComboFlags.html deleted file mode 100644 index b0c29516a..000000000 --- a/docs/api/ImGuiNET.ImGuiComboFlags.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum ImGuiComboFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiCond.html b/docs/api/ImGuiNET.ImGuiCond.html deleted file mode 100644 index 64887feef..000000000 --- a/docs/api/ImGuiNET.ImGuiCond.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum ImGuiCond - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiConfigFlags.html b/docs/api/ImGuiNET.ImGuiConfigFlags.html deleted file mode 100644 index 6d6de1079..000000000 --- a/docs/api/ImGuiNET.ImGuiConfigFlags.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum ImGuiConfigFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiDataType.html b/docs/api/ImGuiNET.ImGuiDataType.html deleted file mode 100644 index e425b7818..000000000 --- a/docs/api/ImGuiNET.ImGuiDataType.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - Enum ImGuiDataType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiDir.html b/docs/api/ImGuiNET.ImGuiDir.html deleted file mode 100644 index 81973b620..000000000 --- a/docs/api/ImGuiNET.ImGuiDir.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum ImGuiDir - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiDragDropFlags.html b/docs/api/ImGuiNET.ImGuiDragDropFlags.html deleted file mode 100644 index aff82915e..000000000 --- a/docs/api/ImGuiNET.ImGuiDragDropFlags.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Enum ImGuiDragDropFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiFocusedFlags.html b/docs/api/ImGuiNET.ImGuiFocusedFlags.html deleted file mode 100644 index ce0adb721..000000000 --- a/docs/api/ImGuiNET.ImGuiFocusedFlags.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum ImGuiFocusedFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiHoveredFlags.html b/docs/api/ImGuiNET.ImGuiHoveredFlags.html deleted file mode 100644 index fdd98c36b..000000000 --- a/docs/api/ImGuiNET.ImGuiHoveredFlags.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum ImGuiHoveredFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiIO.html b/docs/api/ImGuiNET.ImGuiIO.html deleted file mode 100644 index 16eba5c21..000000000 --- a/docs/api/ImGuiNET.ImGuiIO.html +++ /dev/null @@ -1,2584 +0,0 @@ - - - - - - - - Struct ImGuiIO - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiIOPtr.html b/docs/api/ImGuiNET.ImGuiIOPtr.html deleted file mode 100644 index 5d69246aa..000000000 --- a/docs/api/ImGuiNET.ImGuiIOPtr.html +++ /dev/null @@ -1,2763 +0,0 @@ - - - - - - - - Struct ImGuiIOPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiInputTextCallback.html b/docs/api/ImGuiNET.ImGuiInputTextCallback.html deleted file mode 100644 index 3a9a3be11..000000000 --- a/docs/api/ImGuiNET.ImGuiInputTextCallback.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate ImGuiInputTextCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiInputTextCallbackData.html b/docs/api/ImGuiNET.ImGuiInputTextCallbackData.html deleted file mode 100644 index 187cf1108..000000000 --- a/docs/api/ImGuiNET.ImGuiInputTextCallbackData.html +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - - - Struct ImGuiInputTextCallbackData - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiInputTextCallbackDataPtr.html b/docs/api/ImGuiNET.ImGuiInputTextCallbackDataPtr.html deleted file mode 100644 index 964194e35..000000000 --- a/docs/api/ImGuiNET.ImGuiInputTextCallbackDataPtr.html +++ /dev/null @@ -1,868 +0,0 @@ - - - - - - - - Struct ImGuiInputTextCallbackDataPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiInputTextFlags.html b/docs/api/ImGuiNET.ImGuiInputTextFlags.html deleted file mode 100644 index d0fdce8e1..000000000 --- a/docs/api/ImGuiNET.ImGuiInputTextFlags.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Enum ImGuiInputTextFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiKey.html b/docs/api/ImGuiNET.ImGuiKey.html deleted file mode 100644 index cbc471161..000000000 --- a/docs/api/ImGuiNET.ImGuiKey.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Enum ImGuiKey - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiListClipper.html b/docs/api/ImGuiNET.ImGuiListClipper.html deleted file mode 100644 index 00d7ddd72..000000000 --- a/docs/api/ImGuiNET.ImGuiListClipper.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct ImGuiListClipper - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiListClipperPtr.html b/docs/api/ImGuiNET.ImGuiListClipperPtr.html deleted file mode 100644 index f661daea0..000000000 --- a/docs/api/ImGuiNET.ImGuiListClipperPtr.html +++ /dev/null @@ -1,698 +0,0 @@ - - - - - - - - Struct ImGuiListClipperPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiMouseCursor.html b/docs/api/ImGuiNET.ImGuiMouseCursor.html deleted file mode 100644 index 40704f1b7..000000000 --- a/docs/api/ImGuiNET.ImGuiMouseCursor.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum ImGuiMouseCursor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiNative.html b/docs/api/ImGuiNET.ImGuiNative.html deleted file mode 100644 index b3b4fd1ae..000000000 --- a/docs/api/ImGuiNET.ImGuiNative.html +++ /dev/null @@ -1,20487 +0,0 @@ - - - - - - - - Class ImGuiNative - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiNavInput.html b/docs/api/ImGuiNET.ImGuiNavInput.html deleted file mode 100644 index 649e7b301..000000000 --- a/docs/api/ImGuiNET.ImGuiNavInput.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - Enum ImGuiNavInput - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiOnceUponAFrame.html b/docs/api/ImGuiNET.ImGuiOnceUponAFrame.html deleted file mode 100644 index 1e5553212..000000000 --- a/docs/api/ImGuiNET.ImGuiOnceUponAFrame.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct ImGuiOnceUponAFrame - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiOnceUponAFramePtr.html b/docs/api/ImGuiNET.ImGuiOnceUponAFramePtr.html deleted file mode 100644 index 5560a55dd..000000000 --- a/docs/api/ImGuiNET.ImGuiOnceUponAFramePtr.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - Struct ImGuiOnceUponAFramePtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiPayload.html b/docs/api/ImGuiNET.ImGuiPayload.html deleted file mode 100644 index 71cfe989c..000000000 --- a/docs/api/ImGuiNET.ImGuiPayload.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Struct ImGuiPayload - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiPayloadPtr.html b/docs/api/ImGuiNET.ImGuiPayloadPtr.html deleted file mode 100644 index 67e2b975a..000000000 --- a/docs/api/ImGuiNET.ImGuiPayloadPtr.html +++ /dev/null @@ -1,766 +0,0 @@ - - - - - - - - Struct ImGuiPayloadPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiSelectableFlags.html b/docs/api/ImGuiNET.ImGuiSelectableFlags.html deleted file mode 100644 index af02c7019..000000000 --- a/docs/api/ImGuiNET.ImGuiSelectableFlags.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum ImGuiSelectableFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiSizeCallback.html b/docs/api/ImGuiNET.ImGuiSizeCallback.html deleted file mode 100644 index 8e42e4218..000000000 --- a/docs/api/ImGuiNET.ImGuiSizeCallback.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate ImGuiSizeCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiSizeCallbackData.html b/docs/api/ImGuiNET.ImGuiSizeCallbackData.html deleted file mode 100644 index f8d37f173..000000000 --- a/docs/api/ImGuiNET.ImGuiSizeCallbackData.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct ImGuiSizeCallbackData - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiSizeCallbackDataPtr.html b/docs/api/ImGuiNET.ImGuiSizeCallbackDataPtr.html deleted file mode 100644 index ca2933526..000000000 --- a/docs/api/ImGuiNET.ImGuiSizeCallbackDataPtr.html +++ /dev/null @@ -1,507 +0,0 @@ - - - - - - - - Struct ImGuiSizeCallbackDataPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStorage.html b/docs/api/ImGuiNET.ImGuiStorage.html deleted file mode 100644 index 093c094b5..000000000 --- a/docs/api/ImGuiNET.ImGuiStorage.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct ImGuiStorage - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStoragePair.html b/docs/api/ImGuiNET.ImGuiStoragePair.html deleted file mode 100644 index a3640cdbb..000000000 --- a/docs/api/ImGuiNET.ImGuiStoragePair.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct ImGuiStoragePair - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStoragePairPtr.html b/docs/api/ImGuiNET.ImGuiStoragePairPtr.html deleted file mode 100644 index 559b856ba..000000000 --- a/docs/api/ImGuiNET.ImGuiStoragePairPtr.html +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - - - Struct ImGuiStoragePairPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStoragePtr.html b/docs/api/ImGuiNET.ImGuiStoragePtr.html deleted file mode 100644 index e0758e89f..000000000 --- a/docs/api/ImGuiNET.ImGuiStoragePtr.html +++ /dev/null @@ -1,1369 +0,0 @@ - - - - - - - - Struct ImGuiStoragePtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStyle.html b/docs/api/ImGuiNET.ImGuiStyle.html deleted file mode 100644 index a82a0ef83..000000000 --- a/docs/api/ImGuiNET.ImGuiStyle.html +++ /dev/null @@ -1,2526 +0,0 @@ - - - - - - - - Struct ImGuiStyle - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStylePtr.html b/docs/api/ImGuiNET.ImGuiStylePtr.html deleted file mode 100644 index 5e7c010cd..000000000 --- a/docs/api/ImGuiNET.ImGuiStylePtr.html +++ /dev/null @@ -1,1486 +0,0 @@ - - - - - - - - Struct ImGuiStylePtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiStyleVar.html b/docs/api/ImGuiNET.ImGuiStyleVar.html deleted file mode 100644 index 845c767b4..000000000 --- a/docs/api/ImGuiNET.ImGuiStyleVar.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - Enum ImGuiStyleVar - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTabBarFlags.html b/docs/api/ImGuiNET.ImGuiTabBarFlags.html deleted file mode 100644 index d71761aee..000000000 --- a/docs/api/ImGuiNET.ImGuiTabBarFlags.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Enum ImGuiTabBarFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTabItemFlags.html b/docs/api/ImGuiNET.ImGuiTabItemFlags.html deleted file mode 100644 index f67488cf1..000000000 --- a/docs/api/ImGuiNET.ImGuiTabItemFlags.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum ImGuiTabItemFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextBuffer.html b/docs/api/ImGuiNET.ImGuiTextBuffer.html deleted file mode 100644 index d63110919..000000000 --- a/docs/api/ImGuiNET.ImGuiTextBuffer.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct ImGuiTextBuffer - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextBufferPtr.html b/docs/api/ImGuiNET.ImGuiTextBufferPtr.html deleted file mode 100644 index d8a9d7abe..000000000 --- a/docs/api/ImGuiNET.ImGuiTextBufferPtr.html +++ /dev/null @@ -1,695 +0,0 @@ - - - - - - - - Struct ImGuiTextBufferPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextFilter.html b/docs/api/ImGuiNET.ImGuiTextFilter.html deleted file mode 100644 index 77414e7ae..000000000 --- a/docs/api/ImGuiNET.ImGuiTextFilter.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct ImGuiTextFilter - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextFilterPtr.html b/docs/api/ImGuiNET.ImGuiTextFilterPtr.html deleted file mode 100644 index 2289f8d87..000000000 --- a/docs/api/ImGuiNET.ImGuiTextFilterPtr.html +++ /dev/null @@ -1,730 +0,0 @@ - - - - - - - - Struct ImGuiTextFilterPtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextRange.html b/docs/api/ImGuiNET.ImGuiTextRange.html deleted file mode 100644 index ed6fc53e1..000000000 --- a/docs/api/ImGuiNET.ImGuiTextRange.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct ImGuiTextRange - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTextRangePtr.html b/docs/api/ImGuiNET.ImGuiTextRangePtr.html deleted file mode 100644 index 0e0b10ab9..000000000 --- a/docs/api/ImGuiNET.ImGuiTextRangePtr.html +++ /dev/null @@ -1,531 +0,0 @@ - - - - - - - - Struct ImGuiTextRangePtr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiTreeNodeFlags.html b/docs/api/ImGuiNET.ImGuiTreeNodeFlags.html deleted file mode 100644 index 1f57e9f89..000000000 --- a/docs/api/ImGuiNET.ImGuiTreeNodeFlags.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - Enum ImGuiTreeNodeFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImGuiWindowFlags.html b/docs/api/ImGuiNET.ImGuiWindowFlags.html deleted file mode 100644 index 483f4f024..000000000 --- a/docs/api/ImGuiNET.ImGuiWindowFlags.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Enum ImGuiWindowFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImPtrVector-1.html b/docs/api/ImGuiNET.ImPtrVector-1.html deleted file mode 100644 index de1b66c6e..000000000 --- a/docs/api/ImGuiNET.ImPtrVector-1.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - Struct ImPtrVector<T> - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImVector-1.html b/docs/api/ImGuiNET.ImVector-1.html deleted file mode 100644 index 3c42f0358..000000000 --- a/docs/api/ImGuiNET.ImVector-1.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - Struct ImVector<T> - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.ImVector.html b/docs/api/ImGuiNET.ImVector.html deleted file mode 100644 index 07c1ffeae..000000000 --- a/docs/api/ImGuiNET.ImVector.html +++ /dev/null @@ -1,361 +0,0 @@ - - - - - - - - Struct ImVector - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.NullTerminatedString.html b/docs/api/ImGuiNET.NullTerminatedString.html deleted file mode 100644 index fc0199d57..000000000 --- a/docs/api/ImGuiNET.NullTerminatedString.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - Struct NullTerminatedString - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.RangeAccessor-1.html b/docs/api/ImGuiNET.RangeAccessor-1.html deleted file mode 100644 index f38c70165..000000000 --- a/docs/api/ImGuiNET.RangeAccessor-1.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Struct RangeAccessor<T> - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.RangeAccessorExtensions.html b/docs/api/ImGuiNET.RangeAccessorExtensions.html deleted file mode 100644 index c4d4d7907..000000000 --- a/docs/api/ImGuiNET.RangeAccessorExtensions.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - Class RangeAccessorExtensions - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.RangePtrAccessor-1.html b/docs/api/ImGuiNET.RangePtrAccessor-1.html deleted file mode 100644 index 99645455e..000000000 --- a/docs/api/ImGuiNET.RangePtrAccessor-1.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Struct RangePtrAccessor<T> - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.UnionValue.html b/docs/api/ImGuiNET.UnionValue.html deleted file mode 100644 index 80588c46a..000000000 --- a/docs/api/ImGuiNET.UnionValue.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct UnionValue - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiNET.html b/docs/api/ImGuiNET.html deleted file mode 100644 index 21106a71a..000000000 --- a/docs/api/ImGuiNET.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Namespace ImGuiNET - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.FramerateLimit.LimitType.html b/docs/api/ImGuiScene.FramerateLimit.LimitType.html deleted file mode 100644 index 8f35364cd..000000000 --- a/docs/api/ImGuiScene.FramerateLimit.LimitType.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum FramerateLimit.LimitType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.FramerateLimit.html b/docs/api/ImGuiScene.FramerateLimit.html deleted file mode 100644 index b3a43f7c4..000000000 --- a/docs/api/ImGuiScene.FramerateLimit.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Class FramerateLimit - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.GLTextureWrap.html b/docs/api/ImGuiScene.GLTextureWrap.html deleted file mode 100644 index b33f7b330..000000000 --- a/docs/api/ImGuiScene.GLTextureWrap.html +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - - - Class GLTextureWrap - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.IImGuiInputHandler.html b/docs/api/ImGuiScene.IImGuiInputHandler.html deleted file mode 100644 index cbb8dedc2..000000000 --- a/docs/api/ImGuiScene.IImGuiInputHandler.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - Interface IImGuiInputHandler - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.IImGuiRenderer.html b/docs/api/ImGuiScene.IImGuiRenderer.html deleted file mode 100644 index 4a208e0ef..000000000 --- a/docs/api/ImGuiScene.IImGuiRenderer.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - Interface IImGuiRenderer - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.IRenderer.html b/docs/api/ImGuiScene.IRenderer.html deleted file mode 100644 index e0eff5058..000000000 --- a/docs/api/ImGuiScene.IRenderer.html +++ /dev/null @@ -1,477 +0,0 @@ - - - - - - - - Interface IRenderer - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.ImGui_Impl_DX11.html b/docs/api/ImGuiScene.ImGui_Impl_DX11.html deleted file mode 100644 index 3e8efdb54..000000000 --- a/docs/api/ImGuiScene.ImGui_Impl_DX11.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - Class ImGui_Impl_DX11 - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html b/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html deleted file mode 100644 index eda3caf18..000000000 --- a/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - Class ImGui_Impl_OpenGL3 - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.ImGui_Impl_SDL.html b/docs/api/ImGuiScene.ImGui_Impl_SDL.html deleted file mode 100644 index e91c7e9fa..000000000 --- a/docs/api/ImGuiScene.ImGui_Impl_SDL.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - Class ImGui_Impl_SDL - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html b/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html deleted file mode 100644 index b8fa66fe1..000000000 --- a/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Class ImGui_Input_Impl_Direct - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html b/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html deleted file mode 100644 index 013703b93..000000000 --- a/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Delegate RawDX11Scene.BuildUIDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.RawDX11Scene.html b/docs/api/ImGuiScene.RawDX11Scene.html deleted file mode 100644 index 56bf2b105..000000000 --- a/docs/api/ImGuiScene.RawDX11Scene.html +++ /dev/null @@ -1,515 +0,0 @@ - - - - - - - - Class RawDX11Scene - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.RendererFactory.RendererBackend.html b/docs/api/ImGuiScene.RendererFactory.RendererBackend.html deleted file mode 100644 index 06f2f2528..000000000 --- a/docs/api/ImGuiScene.RendererFactory.RendererBackend.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Enum RendererFactory.RendererBackend - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.RendererFactory.html b/docs/api/ImGuiScene.RendererFactory.html deleted file mode 100644 index b2a0ba0b1..000000000 --- a/docs/api/ImGuiScene.RendererFactory.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class RendererFactory - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SDLWindowGL.html b/docs/api/ImGuiScene.SDLWindowGL.html deleted file mode 100644 index 884df5616..000000000 --- a/docs/api/ImGuiScene.SDLWindowGL.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - Class SDLWindowGL - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleD3D.html b/docs/api/ImGuiScene.SimpleD3D.html deleted file mode 100644 index 82d1bc199..000000000 --- a/docs/api/ImGuiScene.SimpleD3D.html +++ /dev/null @@ -1,571 +0,0 @@ - - - - - - - - Class SimpleD3D - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html b/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html deleted file mode 100644 index 6bec8719e..000000000 --- a/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Delegate SimpleImGuiScene.BuildUIDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleImGuiScene.html b/docs/api/ImGuiScene.SimpleImGuiScene.html deleted file mode 100644 index ed35c9bee..000000000 --- a/docs/api/ImGuiScene.SimpleImGuiScene.html +++ /dev/null @@ -1,737 +0,0 @@ - - - - - - - - Class SimpleImGuiScene - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleOGL3.html b/docs/api/ImGuiScene.SimpleOGL3.html deleted file mode 100644 index b9e0b45c7..000000000 --- a/docs/api/ImGuiScene.SimpleOGL3.html +++ /dev/null @@ -1,622 +0,0 @@ - - - - - - - - Class SimpleOGL3 - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html b/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html deleted file mode 100644 index 90d23c11c..000000000 --- a/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate SimpleSDLWindow.ProcessEventDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.SimpleSDLWindow.html b/docs/api/ImGuiScene.SimpleSDLWindow.html deleted file mode 100644 index d6cec1f9c..000000000 --- a/docs/api/ImGuiScene.SimpleSDLWindow.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - Class SimpleSDLWindow - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.TextureWrap.html b/docs/api/ImGuiScene.TextureWrap.html deleted file mode 100644 index 351f07735..000000000 --- a/docs/api/ImGuiScene.TextureWrap.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - Interface TextureWrap - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.WindowCreateInfo.html b/docs/api/ImGuiScene.WindowCreateInfo.html deleted file mode 100644 index ff8438f2e..000000000 --- a/docs/api/ImGuiScene.WindowCreateInfo.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - Class WindowCreateInfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.WindowFactory.html b/docs/api/ImGuiScene.WindowFactory.html deleted file mode 100644 index 7d09cd143..000000000 --- a/docs/api/ImGuiScene.WindowFactory.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class WindowFactory - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/ImGuiScene.html b/docs/api/ImGuiScene.html deleted file mode 100644 index ab6c0b24e..000000000 --- a/docs/api/ImGuiScene.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - Namespace ImGuiScene - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_hat.html b/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_hat.html deleted file mode 100644 index 1ef128aa3..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_hat.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_GameControllerButtonBind_hat - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_union.html b/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_union.html deleted file mode 100644 index 52281d708..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_GameControllerButtonBind_union.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_GameControllerButtonBind_union - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_SysWMDriverUnion.html b/docs/api/SDL2.SDL.INTERNAL_SysWMDriverUnion.html deleted file mode 100644 index 88eefa8b6..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_SysWMDriverUnion.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_SysWMDriverUnion - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_android_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_android_wminfo.html deleted file mode 100644 index aa65cf681..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_android_wminfo.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_android_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_cocoa_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_cocoa_wminfo.html deleted file mode 100644 index e9fc14f2c..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_cocoa_wminfo.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_cocoa_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_directfb_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_directfb_wminfo.html deleted file mode 100644 index 873003f29..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_directfb_wminfo.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_directfb_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_mir_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_mir_wminfo.html deleted file mode 100644 index 252ec760b..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_mir_wminfo.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_mir_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_uikit_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_uikit_wminfo.html deleted file mode 100644 index 7753c138b..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_uikit_wminfo.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_uikit_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_wayland_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_wayland_wminfo.html deleted file mode 100644 index e60a9c4ea..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_wayland_wminfo.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_wayland_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_windows_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_windows_wminfo.html deleted file mode 100644 index 56e71ef7f..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_windows_wminfo.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_windows_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_winrt_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_winrt_wminfo.html deleted file mode 100644 index 8d4126217..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_winrt_wminfo.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_winrt_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.INTERNAL_x11_wminfo.html b/docs/api/SDL2.SDL.INTERNAL_x11_wminfo.html deleted file mode 100644 index a6f1aa051..000000000 --- a/docs/api/SDL2.SDL.INTERNAL_x11_wminfo.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.INTERNAL_x11_wminfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDLRWopsCloseCallback.html b/docs/api/SDL2.SDL.SDLRWopsCloseCallback.html deleted file mode 100644 index a8b20db64..000000000 --- a/docs/api/SDL2.SDL.SDLRWopsCloseCallback.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate SDL.SDLRWopsCloseCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDLRWopsReadCallback.html b/docs/api/SDL2.SDL.SDLRWopsReadCallback.html deleted file mode 100644 index 5eb7e8ebe..000000000 --- a/docs/api/SDL2.SDL.SDLRWopsReadCallback.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - Delegate SDL.SDLRWopsReadCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDLRWopsSeekCallback.html b/docs/api/SDL2.SDL.SDLRWopsSeekCallback.html deleted file mode 100644 index ae1747c22..000000000 --- a/docs/api/SDL2.SDL.SDLRWopsSeekCallback.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Delegate SDL.SDLRWopsSeekCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDLRWopsSizeCallback.html b/docs/api/SDL2.SDL.SDLRWopsSizeCallback.html deleted file mode 100644 index 1e3b9eefb..000000000 --- a/docs/api/SDL2.SDL.SDLRWopsSizeCallback.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate SDL.SDLRWopsSizeCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDLRWopsWriteCallback.html b/docs/api/SDL2.SDL.SDLRWopsWriteCallback.html deleted file mode 100644 index 73a36cf78..000000000 --- a/docs/api/SDL2.SDL.SDLRWopsWriteCallback.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - Delegate SDL.SDLRWopsWriteCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_AudioCallback.html b/docs/api/SDL2.SDL.SDL_AudioCallback.html deleted file mode 100644 index 19e75fe64..000000000 --- a/docs/api/SDL2.SDL.SDL_AudioCallback.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - Delegate SDL.SDL_AudioCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_AudioDeviceEvent.html b/docs/api/SDL2.SDL.SDL_AudioDeviceEvent.html deleted file mode 100644 index 6c7f1d700..000000000 --- a/docs/api/SDL2.SDL.SDL_AudioDeviceEvent.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_AudioDeviceEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_AudioSpec.html b/docs/api/SDL2.SDL.SDL_AudioSpec.html deleted file mode 100644 index 4eff748ac..000000000 --- a/docs/api/SDL2.SDL.SDL_AudioSpec.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Struct SDL.SDL_AudioSpec - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_AudioStatus.html b/docs/api/SDL2.SDL.SDL_AudioStatus.html deleted file mode 100644 index 02a262354..000000000 --- a/docs/api/SDL2.SDL.SDL_AudioStatus.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum SDL.SDL_AudioStatus - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_BlendFactor.html b/docs/api/SDL2.SDL.SDL_BlendFactor.html deleted file mode 100644 index 5fb5b9b9f..000000000 --- a/docs/api/SDL2.SDL.SDL_BlendFactor.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum SDL.SDL_BlendFactor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_BlendMode.html b/docs/api/SDL2.SDL.SDL_BlendMode.html deleted file mode 100644 index afb24b1cc..000000000 --- a/docs/api/SDL2.SDL.SDL_BlendMode.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum SDL.SDL_BlendMode - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_BlendOperation.html b/docs/api/SDL2.SDL.SDL_BlendOperation.html deleted file mode 100644 index d00de0fda..000000000 --- a/docs/api/SDL2.SDL.SDL_BlendOperation.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - Enum SDL.SDL_BlendOperation - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Color.html b/docs/api/SDL2.SDL.SDL_Color.html deleted file mode 100644 index 35b0eda82..000000000 --- a/docs/api/SDL2.SDL.SDL_Color.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_Color - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_ControllerAxisEvent.html b/docs/api/SDL2.SDL.SDL_ControllerAxisEvent.html deleted file mode 100644 index 085e3fb3c..000000000 --- a/docs/api/SDL2.SDL.SDL_ControllerAxisEvent.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_ControllerAxisEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_ControllerButtonEvent.html b/docs/api/SDL2.SDL.SDL_ControllerButtonEvent.html deleted file mode 100644 index adf2b68f0..000000000 --- a/docs/api/SDL2.SDL.SDL_ControllerButtonEvent.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_ControllerButtonEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_ControllerDeviceEvent.html b/docs/api/SDL2.SDL.SDL_ControllerDeviceEvent.html deleted file mode 100644 index 2d1c151dc..000000000 --- a/docs/api/SDL2.SDL.SDL_ControllerDeviceEvent.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_ControllerDeviceEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DisplayEvent.html b/docs/api/SDL2.SDL.SDL_DisplayEvent.html deleted file mode 100644 index aa50b2a92..000000000 --- a/docs/api/SDL2.SDL.SDL_DisplayEvent.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_DisplayEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DisplayEventID.html b/docs/api/SDL2.SDL.SDL_DisplayEventID.html deleted file mode 100644 index e8d5c01cb..000000000 --- a/docs/api/SDL2.SDL.SDL_DisplayEventID.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Enum SDL.SDL_DisplayEventID - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DisplayMode.html b/docs/api/SDL2.SDL.SDL_DisplayMode.html deleted file mode 100644 index 52664d48c..000000000 --- a/docs/api/SDL2.SDL.SDL_DisplayMode.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_DisplayMode - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DisplayOrientation.html b/docs/api/SDL2.SDL.SDL_DisplayOrientation.html deleted file mode 100644 index 35960cd32..000000000 --- a/docs/api/SDL2.SDL.SDL_DisplayOrientation.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - Enum SDL.SDL_DisplayOrientation - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DollarGestureEvent.html b/docs/api/SDL2.SDL.SDL_DollarGestureEvent.html deleted file mode 100644 index e224ad49c..000000000 --- a/docs/api/SDL2.SDL.SDL_DollarGestureEvent.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Struct SDL.SDL_DollarGestureEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_DropEvent.html b/docs/api/SDL2.SDL.SDL_DropEvent.html deleted file mode 100644 index b21a987f7..000000000 --- a/docs/api/SDL2.SDL.SDL_DropEvent.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_DropEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Event.html b/docs/api/SDL2.SDL.SDL_Event.html deleted file mode 100644 index 9a7b53b09..000000000 --- a/docs/api/SDL2.SDL.SDL_Event.html +++ /dev/null @@ -1,902 +0,0 @@ - - - - - - - - Struct SDL.SDL_Event - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_EventFilter.html b/docs/api/SDL2.SDL.SDL_EventFilter.html deleted file mode 100644 index d1d05bd00..000000000 --- a/docs/api/SDL2.SDL.SDL_EventFilter.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate SDL.SDL_EventFilter - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_EventType.html b/docs/api/SDL2.SDL.SDL_EventType.html deleted file mode 100644 index 8b8214afa..000000000 --- a/docs/api/SDL2.SDL.SDL_EventType.html +++ /dev/null @@ -1,345 +0,0 @@ - - - - - - - - Enum SDL.SDL_EventType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_FPoint.html b/docs/api/SDL2.SDL.SDL_FPoint.html deleted file mode 100644 index 36c294132..000000000 --- a/docs/api/SDL2.SDL.SDL_FPoint.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_FPoint - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_FRect.html b/docs/api/SDL2.SDL.SDL_FRect.html deleted file mode 100644 index b3537288e..000000000 --- a/docs/api/SDL2.SDL.SDL_FRect.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_FRect - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Finger.html b/docs/api/SDL2.SDL.SDL_Finger.html deleted file mode 100644 index c6fd43dc2..000000000 --- a/docs/api/SDL2.SDL.SDL_Finger.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_Finger - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GLattr.html b/docs/api/SDL2.SDL.SDL_GLattr.html deleted file mode 100644 index d7cd43326..000000000 --- a/docs/api/SDL2.SDL.SDL_GLattr.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Enum SDL.SDL_GLattr - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GLcontext.html b/docs/api/SDL2.SDL.SDL_GLcontext.html deleted file mode 100644 index babcd8c0a..000000000 --- a/docs/api/SDL2.SDL.SDL_GLcontext.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum SDL.SDL_GLcontext - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GLprofile.html b/docs/api/SDL2.SDL.SDL_GLprofile.html deleted file mode 100644 index 1ba8d37ff..000000000 --- a/docs/api/SDL2.SDL.SDL_GLprofile.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Enum SDL.SDL_GLprofile - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GameControllerAxis.html b/docs/api/SDL2.SDL.SDL_GameControllerAxis.html deleted file mode 100644 index 04a30967a..000000000 --- a/docs/api/SDL2.SDL.SDL_GameControllerAxis.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum SDL.SDL_GameControllerAxis - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GameControllerBindType.html b/docs/api/SDL2.SDL.SDL_GameControllerBindType.html deleted file mode 100644 index b65d49883..000000000 --- a/docs/api/SDL2.SDL.SDL_GameControllerBindType.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SDL.SDL_GameControllerBindType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GameControllerButton.html b/docs/api/SDL2.SDL.SDL_GameControllerButton.html deleted file mode 100644 index aa19845a4..000000000 --- a/docs/api/SDL2.SDL.SDL_GameControllerButton.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Enum SDL.SDL_GameControllerButton - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GameControllerButtonBind.html b/docs/api/SDL2.SDL.SDL_GameControllerButtonBind.html deleted file mode 100644 index db8070b04..000000000 --- a/docs/api/SDL2.SDL.SDL_GameControllerButtonBind.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_GameControllerButtonBind - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_GenericEvent.html b/docs/api/SDL2.SDL.SDL_GenericEvent.html deleted file mode 100644 index 711f6380a..000000000 --- a/docs/api/SDL2.SDL.SDL_GenericEvent.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_GenericEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticCondition.html b/docs/api/SDL2.SDL.SDL_HapticCondition.html deleted file mode 100644 index 7620bd141..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticCondition.html +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticCondition - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticConstant.html b/docs/api/SDL2.SDL.SDL_HapticConstant.html deleted file mode 100644 index 50b48394e..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticConstant.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticConstant - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticCustom.html b/docs/api/SDL2.SDL.SDL_HapticCustom.html deleted file mode 100644 index 8d9610249..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticCustom.html +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticCustom - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticDirection.html b/docs/api/SDL2.SDL.SDL_HapticDirection.html deleted file mode 100644 index 8a1d2f2d3..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticDirection.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticDirection - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticEffect.html b/docs/api/SDL2.SDL.SDL_HapticEffect.html deleted file mode 100644 index 824e42847..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticEffect.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticEffect - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticLeftRight.html b/docs/api/SDL2.SDL.SDL_HapticLeftRight.html deleted file mode 100644 index f8bdffd4b..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticLeftRight.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticLeftRight - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticPeriodic.html b/docs/api/SDL2.SDL.SDL_HapticPeriodic.html deleted file mode 100644 index 3215d23b0..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticPeriodic.html +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticPeriodic - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HapticRamp.html b/docs/api/SDL2.SDL.SDL_HapticRamp.html deleted file mode 100644 index 1e1e308ed..000000000 --- a/docs/api/SDL2.SDL.SDL_HapticRamp.html +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - - - Struct SDL.SDL_HapticRamp - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HintPriority.html b/docs/api/SDL2.SDL.SDL_HintPriority.html deleted file mode 100644 index a4afbf59a..000000000 --- a/docs/api/SDL2.SDL.SDL_HintPriority.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum SDL.SDL_HintPriority - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HitTest.html b/docs/api/SDL2.SDL.SDL_HitTest.html deleted file mode 100644 index 86f075327..000000000 --- a/docs/api/SDL2.SDL.SDL_HitTest.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Delegate SDL.SDL_HitTest - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_HitTestResult.html b/docs/api/SDL2.SDL.SDL_HitTestResult.html deleted file mode 100644 index f9396d2aa..000000000 --- a/docs/api/SDL2.SDL.SDL_HitTestResult.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum SDL.SDL_HitTestResult - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoyAxisEvent.html b/docs/api/SDL2.SDL.SDL_JoyAxisEvent.html deleted file mode 100644 index 1f3c1e150..000000000 --- a/docs/api/SDL2.SDL.SDL_JoyAxisEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_JoyAxisEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoyBallEvent.html b/docs/api/SDL2.SDL.SDL_JoyBallEvent.html deleted file mode 100644 index 0bd78f519..000000000 --- a/docs/api/SDL2.SDL.SDL_JoyBallEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_JoyBallEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoyButtonEvent.html b/docs/api/SDL2.SDL.SDL_JoyButtonEvent.html deleted file mode 100644 index 5d908378c..000000000 --- a/docs/api/SDL2.SDL.SDL_JoyButtonEvent.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_JoyButtonEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoyDeviceEvent.html b/docs/api/SDL2.SDL.SDL_JoyDeviceEvent.html deleted file mode 100644 index 6eed3b75e..000000000 --- a/docs/api/SDL2.SDL.SDL_JoyDeviceEvent.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_JoyDeviceEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoyHatEvent.html b/docs/api/SDL2.SDL.SDL_JoyHatEvent.html deleted file mode 100644 index 61f551a27..000000000 --- a/docs/api/SDL2.SDL.SDL_JoyHatEvent.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Struct SDL.SDL_JoyHatEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoystickPowerLevel.html b/docs/api/SDL2.SDL.SDL_JoystickPowerLevel.html deleted file mode 100644 index 6c0240bfc..000000000 --- a/docs/api/SDL2.SDL.SDL_JoystickPowerLevel.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum SDL.SDL_JoystickPowerLevel - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_JoystickType.html b/docs/api/SDL2.SDL.SDL_JoystickType.html deleted file mode 100644 index 6dea98c73..000000000 --- a/docs/api/SDL2.SDL.SDL_JoystickType.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum SDL.SDL_JoystickType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_KeyboardEvent.html b/docs/api/SDL2.SDL.SDL_KeyboardEvent.html deleted file mode 100644 index 88e455dd1..000000000 --- a/docs/api/SDL2.SDL.SDL_KeyboardEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_KeyboardEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Keycode.html b/docs/api/SDL2.SDL.SDL_Keycode.html deleted file mode 100644 index fb81ef746..000000000 --- a/docs/api/SDL2.SDL.SDL_Keycode.html +++ /dev/null @@ -1,1085 +0,0 @@ - - - - - - - - Enum SDL.SDL_Keycode - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Keymod.html b/docs/api/SDL2.SDL.SDL_Keymod.html deleted file mode 100644 index f32ce29f8..000000000 --- a/docs/api/SDL2.SDL.SDL_Keymod.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - Enum SDL.SDL_Keymod - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Keysym.html b/docs/api/SDL2.SDL.SDL_Keysym.html deleted file mode 100644 index abf72630d..000000000 --- a/docs/api/SDL2.SDL.SDL_Keysym.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_Keysym - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_LogOutputFunction.html b/docs/api/SDL2.SDL.SDL_LogOutputFunction.html deleted file mode 100644 index f04500197..000000000 --- a/docs/api/SDL2.SDL.SDL_LogOutputFunction.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate SDL.SDL_LogOutputFunction - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_LogPriority.html b/docs/api/SDL2.SDL.SDL_LogPriority.html deleted file mode 100644 index 3ddcddb1c..000000000 --- a/docs/api/SDL2.SDL.SDL_LogPriority.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum SDL.SDL_LogPriority - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxButtonData.html b/docs/api/SDL2.SDL.SDL_MessageBoxButtonData.html deleted file mode 100644 index 1b1a195b5..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxButtonData.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_MessageBoxButtonData - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxButtonFlags.html b/docs/api/SDL2.SDL.SDL_MessageBoxButtonFlags.html deleted file mode 100644 index f0db7ae03..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxButtonFlags.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Enum SDL.SDL_MessageBoxButtonFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxColor.html b/docs/api/SDL2.SDL.SDL_MessageBoxColor.html deleted file mode 100644 index 9c1edd32f..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxColor.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_MessageBoxColor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxColorScheme.html b/docs/api/SDL2.SDL.SDL_MessageBoxColorScheme.html deleted file mode 100644 index ad2b7398b..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxColorScheme.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Struct SDL.SDL_MessageBoxColorScheme - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxColorType.html b/docs/api/SDL2.SDL.SDL_MessageBoxColorType.html deleted file mode 100644 index 91176d875..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxColorType.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum SDL.SDL_MessageBoxColorType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxData.html b/docs/api/SDL2.SDL.SDL_MessageBoxData.html deleted file mode 100644 index da036670c..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxData.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Struct SDL.SDL_MessageBoxData - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MessageBoxFlags.html b/docs/api/SDL2.SDL.SDL_MessageBoxFlags.html deleted file mode 100644 index ce1eceebe..000000000 --- a/docs/api/SDL2.SDL.SDL_MessageBoxFlags.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Enum SDL.SDL_MessageBoxFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MouseButtonEvent.html b/docs/api/SDL2.SDL.SDL_MouseButtonEvent.html deleted file mode 100644 index 57265ecf8..000000000 --- a/docs/api/SDL2.SDL.SDL_MouseButtonEvent.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - Struct SDL.SDL_MouseButtonEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MouseMotionEvent.html b/docs/api/SDL2.SDL.SDL_MouseMotionEvent.html deleted file mode 100644 index a0f89ac62..000000000 --- a/docs/api/SDL2.SDL.SDL_MouseMotionEvent.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - Struct SDL.SDL_MouseMotionEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MouseWheelDirection.html b/docs/api/SDL2.SDL.SDL_MouseWheelDirection.html deleted file mode 100644 index 19f722e11..000000000 --- a/docs/api/SDL2.SDL.SDL_MouseWheelDirection.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Enum SDL.SDL_MouseWheelDirection - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MouseWheelEvent.html b/docs/api/SDL2.SDL.SDL_MouseWheelEvent.html deleted file mode 100644 index 47adb49f2..000000000 --- a/docs/api/SDL2.SDL.SDL_MouseWheelEvent.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Struct SDL.SDL_MouseWheelEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_MultiGestureEvent.html b/docs/api/SDL2.SDL.SDL_MultiGestureEvent.html deleted file mode 100644 index a208b9a77..000000000 --- a/docs/api/SDL2.SDL.SDL_MultiGestureEvent.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - Struct SDL.SDL_MultiGestureEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_PACKEDLAYOUT_ENUM.html b/docs/api/SDL2.SDL.SDL_PACKEDLAYOUT_ENUM.html deleted file mode 100644 index a97af3c0c..000000000 --- a/docs/api/SDL2.SDL.SDL_PACKEDLAYOUT_ENUM.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum SDL.SDL_PACKEDLAYOUT_ENUM - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_PIXELORDER_ENUM.html b/docs/api/SDL2.SDL.SDL_PIXELORDER_ENUM.html deleted file mode 100644 index bd7205c3a..000000000 --- a/docs/api/SDL2.SDL.SDL_PIXELORDER_ENUM.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Enum SDL.SDL_PIXELORDER_ENUM - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_PIXELTYPE_ENUM.html b/docs/api/SDL2.SDL.SDL_PIXELTYPE_ENUM.html deleted file mode 100644 index a3ed96073..000000000 --- a/docs/api/SDL2.SDL.SDL_PIXELTYPE_ENUM.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - Enum SDL.SDL_PIXELTYPE_ENUM - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Palette.html b/docs/api/SDL2.SDL.SDL_Palette.html deleted file mode 100644 index a923d6eed..000000000 --- a/docs/api/SDL2.SDL.SDL_Palette.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_Palette - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_PixelFormat.html b/docs/api/SDL2.SDL.SDL_PixelFormat.html deleted file mode 100644 index 6adc794ef..000000000 --- a/docs/api/SDL2.SDL.SDL_PixelFormat.html +++ /dev/null @@ -1,670 +0,0 @@ - - - - - - - - Struct SDL.SDL_PixelFormat - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Point.html b/docs/api/SDL2.SDL.SDL_Point.html deleted file mode 100644 index a78f6190e..000000000 --- a/docs/api/SDL2.SDL.SDL_Point.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_Point - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_PowerState.html b/docs/api/SDL2.SDL.SDL_PowerState.html deleted file mode 100644 index ece9ffc71..000000000 --- a/docs/api/SDL2.SDL.SDL_PowerState.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - Enum SDL.SDL_PowerState - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_QuitEvent.html b/docs/api/SDL2.SDL.SDL_QuitEvent.html deleted file mode 100644 index c4d7bbb3a..000000000 --- a/docs/api/SDL2.SDL.SDL_QuitEvent.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Struct SDL.SDL_QuitEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_RWops.html b/docs/api/SDL2.SDL.SDL_RWops.html deleted file mode 100644 index 66c242c49..000000000 --- a/docs/api/SDL2.SDL.SDL_RWops.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_RWops - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Rect.html b/docs/api/SDL2.SDL.SDL_Rect.html deleted file mode 100644 index 096d53db6..000000000 --- a/docs/api/SDL2.SDL.SDL_Rect.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_Rect - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_RendererFlags.html b/docs/api/SDL2.SDL.SDL_RendererFlags.html deleted file mode 100644 index 2fe6d8976..000000000 --- a/docs/api/SDL2.SDL.SDL_RendererFlags.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum SDL.SDL_RendererFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_RendererFlip.html b/docs/api/SDL2.SDL.SDL_RendererFlip.html deleted file mode 100644 index a06427341..000000000 --- a/docs/api/SDL2.SDL.SDL_RendererFlip.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Enum SDL.SDL_RendererFlip - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_RendererInfo.html b/docs/api/SDL2.SDL.SDL_RendererInfo.html deleted file mode 100644 index 514dba105..000000000 --- a/docs/api/SDL2.SDL.SDL_RendererInfo.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_RendererInfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SYSWM_TYPE.html b/docs/api/SDL2.SDL.SDL_SYSWM_TYPE.html deleted file mode 100644 index df76ebd5e..000000000 --- a/docs/api/SDL2.SDL.SDL_SYSWM_TYPE.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum SDL.SDL_SYSWM_TYPE - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Scancode.html b/docs/api/SDL2.SDL.SDL_Scancode.html deleted file mode 100644 index 0497aba67..000000000 --- a/docs/api/SDL2.SDL.SDL_Scancode.html +++ /dev/null @@ -1,1109 +0,0 @@ - - - - - - - - Enum SDL.SDL_Scancode - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SensorEvent.html b/docs/api/SDL2.SDL.SDL_SensorEvent.html deleted file mode 100644 index f94d24e49..000000000 --- a/docs/api/SDL2.SDL.SDL_SensorEvent.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_SensorEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SensorType.html b/docs/api/SDL2.SDL.SDL_SensorType.html deleted file mode 100644 index 423fb3dac..000000000 --- a/docs/api/SDL2.SDL.SDL_SensorType.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SDL.SDL_SensorType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_Surface.html b/docs/api/SDL2.SDL.SDL_Surface.html deleted file mode 100644 index 572989f62..000000000 --- a/docs/api/SDL2.SDL.SDL_Surface.html +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - - - Struct SDL.SDL_Surface - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SysWMEvent.html b/docs/api/SDL2.SDL.SDL_SysWMEvent.html deleted file mode 100644 index 336c9e2cc..000000000 --- a/docs/api/SDL2.SDL.SDL_SysWMEvent.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_SysWMEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SysWMinfo.html b/docs/api/SDL2.SDL.SDL_SysWMinfo.html deleted file mode 100644 index b9075af26..000000000 --- a/docs/api/SDL2.SDL.SDL_SysWMinfo.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_SysWMinfo - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_SystemCursor.html b/docs/api/SDL2.SDL.SDL_SystemCursor.html deleted file mode 100644 index a02446575..000000000 --- a/docs/api/SDL2.SDL.SDL_SystemCursor.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - Enum SDL.SDL_SystemCursor - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TextEditingEvent.html b/docs/api/SDL2.SDL.SDL_TextEditingEvent.html deleted file mode 100644 index 26c04b3b6..000000000 --- a/docs/api/SDL2.SDL.SDL_TextEditingEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_TextEditingEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TextInputEvent.html b/docs/api/SDL2.SDL.SDL_TextInputEvent.html deleted file mode 100644 index 4dd81bcae..000000000 --- a/docs/api/SDL2.SDL.SDL_TextInputEvent.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Struct SDL.SDL_TextInputEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TextureAccess.html b/docs/api/SDL2.SDL.SDL_TextureAccess.html deleted file mode 100644 index 4a9671a50..000000000 --- a/docs/api/SDL2.SDL.SDL_TextureAccess.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum SDL.SDL_TextureAccess - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TextureModulate.html b/docs/api/SDL2.SDL.SDL_TextureModulate.html deleted file mode 100644 index 93b7ab58d..000000000 --- a/docs/api/SDL2.SDL.SDL_TextureModulate.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Enum SDL.SDL_TextureModulate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TimerCallback.html b/docs/api/SDL2.SDL.SDL_TimerCallback.html deleted file mode 100644 index c677658f5..000000000 --- a/docs/api/SDL2.SDL.SDL_TimerCallback.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate SDL.SDL_TimerCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TouchDeviceType.html b/docs/api/SDL2.SDL.SDL_TouchDeviceType.html deleted file mode 100644 index a19afc401..000000000 --- a/docs/api/SDL2.SDL.SDL_TouchDeviceType.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SDL.SDL_TouchDeviceType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_TouchFingerEvent.html b/docs/api/SDL2.SDL.SDL_TouchFingerEvent.html deleted file mode 100644 index 30f7efa31..000000000 --- a/docs/api/SDL2.SDL.SDL_TouchFingerEvent.html +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - - Struct SDL.SDL_TouchFingerEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_UserEvent.html b/docs/api/SDL2.SDL.SDL_UserEvent.html deleted file mode 100644 index 9c16528f6..000000000 --- a/docs/api/SDL2.SDL.SDL_UserEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_UserEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_WinRT_DeviceFamily.html b/docs/api/SDL2.SDL.SDL_WinRT_DeviceFamily.html deleted file mode 100644 index fcf66f103..000000000 --- a/docs/api/SDL2.SDL.SDL_WinRT_DeviceFamily.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Enum SDL.SDL_WinRT_DeviceFamily - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_WindowEvent.html b/docs/api/SDL2.SDL.SDL_WindowEvent.html deleted file mode 100644 index 6b47f677f..000000000 --- a/docs/api/SDL2.SDL.SDL_WindowEvent.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Struct SDL.SDL_WindowEvent - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_WindowEventID.html b/docs/api/SDL2.SDL.SDL_WindowEventID.html deleted file mode 100644 index e181c6ba4..000000000 --- a/docs/api/SDL2.SDL.SDL_WindowEventID.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Enum SDL.SDL_WindowEventID - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_WindowFlags.html b/docs/api/SDL2.SDL.SDL_WindowFlags.html deleted file mode 100644 index fea59ed74..000000000 --- a/docs/api/SDL2.SDL.SDL_WindowFlags.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - Enum SDL.SDL_WindowFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_WindowsMessageHook.html b/docs/api/SDL2.SDL.SDL_WindowsMessageHook.html deleted file mode 100644 index 1aa7937aa..000000000 --- a/docs/api/SDL2.SDL.SDL_WindowsMessageHook.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Delegate SDL.SDL_WindowsMessageHook - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_bool.html b/docs/api/SDL2.SDL.SDL_bool.html deleted file mode 100644 index a5f670cfd..000000000 --- a/docs/api/SDL2.SDL.SDL_bool.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Enum SDL.SDL_bool - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_eventaction.html b/docs/api/SDL2.SDL.SDL_eventaction.html deleted file mode 100644 index ff0779e11..000000000 --- a/docs/api/SDL2.SDL.SDL_eventaction.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum SDL.SDL_eventaction - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_iPhoneAnimationCallback.html b/docs/api/SDL2.SDL.SDL_iPhoneAnimationCallback.html deleted file mode 100644 index 1d367fb7e..000000000 --- a/docs/api/SDL2.SDL.SDL_iPhoneAnimationCallback.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate SDL.SDL_iPhoneAnimationCallback - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_main_func.html b/docs/api/SDL2.SDL.SDL_main_func.html deleted file mode 100644 index 21df2c26c..000000000 --- a/docs/api/SDL2.SDL.SDL_main_func.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate SDL.SDL_main_func - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.SDL_version.html b/docs/api/SDL2.SDL.SDL_version.html deleted file mode 100644 index 55cf37521..000000000 --- a/docs/api/SDL2.SDL.SDL_version.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Struct SDL.SDL_version - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL.html b/docs/api/SDL2.SDL.html deleted file mode 100644 index 8f1cdbd8e..000000000 --- a/docs/api/SDL2.SDL.html +++ /dev/null @@ -1,32568 +0,0 @@ - - - - - - - - Class SDL - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_image.IMG_InitFlags.html b/docs/api/SDL2.SDL_image.IMG_InitFlags.html deleted file mode 100644 index a8bfd4285..000000000 --- a/docs/api/SDL2.SDL_image.IMG_InitFlags.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Enum SDL_image.IMG_InitFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_image.html b/docs/api/SDL2.SDL_image.html deleted file mode 100644 index 790e1d612..000000000 --- a/docs/api/SDL2.SDL_image.html +++ /dev/null @@ -1,936 +0,0 @@ - - - - - - - - Class SDL_image - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.ChannelFinishedDelegate.html b/docs/api/SDL2.SDL_mixer.ChannelFinishedDelegate.html deleted file mode 100644 index c8c459cb8..000000000 --- a/docs/api/SDL2.SDL_mixer.ChannelFinishedDelegate.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Delegate SDL_mixer.ChannelFinishedDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.MIX_InitFlags.html b/docs/api/SDL2.SDL_mixer.MIX_InitFlags.html deleted file mode 100644 index a286a3e66..000000000 --- a/docs/api/SDL2.SDL_mixer.MIX_InitFlags.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Enum SDL_mixer.MIX_InitFlags - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.MixFuncDelegate.html b/docs/api/SDL2.SDL_mixer.MixFuncDelegate.html deleted file mode 100644 index 52e01a83c..000000000 --- a/docs/api/SDL2.SDL_mixer.MixFuncDelegate.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - Delegate SDL_mixer.MixFuncDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.Mix_EffectDone_t.html b/docs/api/SDL2.SDL_mixer.Mix_EffectDone_t.html deleted file mode 100644 index 91c153c2e..000000000 --- a/docs/api/SDL2.SDL_mixer.Mix_EffectDone_t.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - Delegate SDL_mixer.Mix_EffectDone_t - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.Mix_EffectFunc_t.html b/docs/api/SDL2.SDL_mixer.Mix_EffectFunc_t.html deleted file mode 100644 index 751e0af70..000000000 --- a/docs/api/SDL2.SDL_mixer.Mix_EffectFunc_t.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Delegate SDL_mixer.Mix_EffectFunc_t - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.Mix_Fading.html b/docs/api/SDL2.SDL_mixer.Mix_Fading.html deleted file mode 100644 index c57a34a88..000000000 --- a/docs/api/SDL2.SDL_mixer.Mix_Fading.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Enum SDL_mixer.Mix_Fading - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.Mix_MusicType.html b/docs/api/SDL2.SDL_mixer.Mix_MusicType.html deleted file mode 100644 index 8b40684fd..000000000 --- a/docs/api/SDL2.SDL_mixer.Mix_MusicType.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum SDL_mixer.Mix_MusicType - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.MusicFinishedDelegate.html b/docs/api/SDL2.SDL_mixer.MusicFinishedDelegate.html deleted file mode 100644 index 0bdc7e121..000000000 --- a/docs/api/SDL2.SDL_mixer.MusicFinishedDelegate.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Delegate SDL_mixer.MusicFinishedDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.SoundFontDelegate.html b/docs/api/SDL2.SDL_mixer.SoundFontDelegate.html deleted file mode 100644 index ce32317fa..000000000 --- a/docs/api/SDL2.SDL_mixer.SoundFontDelegate.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Delegate SDL_mixer.SoundFontDelegate - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_mixer.html b/docs/api/SDL2.SDL_mixer.html deleted file mode 100644 index 52e14ecc7..000000000 --- a/docs/api/SDL2.SDL_mixer.html +++ /dev/null @@ -1,3360 +0,0 @@ - - - - - - - - Class SDL_mixer - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.SDL_ttf.html b/docs/api/SDL2.SDL_ttf.html deleted file mode 100644 index 852a6cc74..000000000 --- a/docs/api/SDL2.SDL_ttf.html +++ /dev/null @@ -1,2839 +0,0 @@ - - - - - - - - Class SDL_ttf - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/SDL2.html b/docs/api/SDL2.html deleted file mode 100644 index 0d1852a9d..000000000 --- a/docs/api/SDL2.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - Namespace SDL2 - - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/index.html b/docs/api/index.html deleted file mode 100644 index 68f94eb2b..000000000 --- a/docs/api/index.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - Dalamud Plugin API - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/toc.html b/docs/api/toc.html deleted file mode 100644 index 5d52b959b..000000000 --- a/docs/api/toc.html +++ /dev/null @@ -1,1238 +0,0 @@ - -
-
-
-
- - - -
-
-
-
- - -
-
-
-
\ No newline at end of file diff --git a/docs/favicon.ico b/docs/favicon.ico deleted file mode 100644 index 71570f61e..000000000 Binary files a/docs/favicon.ico and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.eot b/docs/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953f..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.svg b/docs/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490a..000000000 --- a/docs/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/fonts/glyphicons-halflings-regular.ttf b/docs/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc609..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff b/docs/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858f..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff2 b/docs/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54c..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 12d02da72..000000000 --- a/docs/index.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - Dalamud plugin API documentation - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/logo.svg b/docs/logo.svg deleted file mode 100644 index ccb2d7bc9..000000000 --- a/docs/logo.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - -Created by Docfx - - - - - - - diff --git a/docs/manifest.json b/docs/manifest.json deleted file mode 100644 index ba64ba438..000000000 --- a/docs/manifest.json +++ /dev/null @@ -1,4530 +0,0 @@ -{ - "homepages": [], - "source_base_path": "D:/Sapphire/recorder/Dalamud", - "xrefmap": "xrefmap.yml", - "files": [ - { - "type": "Conceptual", - "source_relative_path": "README.md", - "output": { - ".html": { - "relative_path": "README.html", - "hash": "NhK9M7RY7E1AZM8j+RSJ3A==" - } - }, - "is_incremental": true, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Configuration.IPluginConfiguration.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Configuration.IPluginConfiguration.html", - "hash": "5wEsJUDvHdKFvxFjZ4ZVzA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Configuration.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Configuration.html", - "hash": "uHHGD92ac8DoWxQhiTk1iw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.DataManager.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.DataManager.html", - "hash": "tZ1qrOxqbJIxCZMpzHyyFg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.TransientSheet.ContentFinderCondition.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.TransientSheet.ContentFinderCondition.html", - "hash": "RtL0vi77XmQTOhl8y61GRQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.TransientSheet.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.TransientSheet.html", - "hash": "iIESzuPIOrZTL25hr6YZgg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.html", - "hash": "FEj/tThpEk6vjWLKwrTZow==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.EnumExtensions.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.EnumExtensions.html", - "hash": "Sa/Tw+eFeTBdEDBXfrX2xw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html", - "hash": "JYJz2LJtzy4LxN24WBtwIg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html", - "hash": "JUGXwtQdLQTelPJpgnT7WA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html", - "hash": "dugQbgTeeYr3SjudxUe5Ew==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.html", - "hash": "DMheakjMXv95yAWMwe+Fig==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.PayloadType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html", - "hash": "6JxGwOnaNImjNP53k9ERsQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html", - "hash": "neZJZcemRXjVUmF5svubVg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html", - "hash": "pL913e0bWNukG0kRwpxrHQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html", - "hash": "FKWDH7uj8pssEToXWZm46Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html", - "hash": "5/uc9uWG7pZdGzupdwWE3Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html", - "hash": "c04eAEgUzb4RgbrsXp7hsw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.html", - "hash": "rFZQonOAijBCfa2KQy29Ow==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeString.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeString.html", - "hash": "2YMZ/1U8Ual/WhXaOivwSg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.SeStringHandling.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.html", - "hash": "2SZCPIorLO+gADvmE7ujbw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.XivChatEntry.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.XivChatEntry.html", - "hash": "GFBGzTkZNGAXjH9rrTdLeA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.XivChatType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.XivChatType.html", - "hash": "hlYMTDCSkGGWqVTLazeKWQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.XivChatTypeExtensions.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.XivChatTypeExtensions.html", - "hash": "FuxTyl6zdfRb/6w99BHb3w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html", - "hash": "XTFqZtvLRJhAUVfZQW03VQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Chat.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Chat.html", - "hash": "KY5+1Z70in/kGfrPEC2LaQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ChatHandlers.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ChatHandlers.html", - "hash": "hJ4/WSRaDuC+32VZs9LgVA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.html", - "hash": "i9FjHkkWr3g4bSEryljLSw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.ObjectKind.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.ObjectKind.html", - "hash": "OjmMttneBGQgp4WF2HiKKA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Position3.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Position3.html", - "hash": "BWEKqnUN0hQdjnn02SO7Pg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html", - "hash": "QDFdmOoAUmP+U0wnQ7nsAg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.World.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.World.html", - "hash": "Ki/795kuh9gtLNtGT+pmFQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.html", - "hash": "1pY5iw6Lyj1AiDQ2ncx5Ng==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Actor.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Actor.html", - "hash": "qpkXl60FLO7wB4OK8iHd4g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Chara.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Chara.html", - "hash": "XVyH1Ytr+2V183ELHbE8kw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html", - "hash": "YWye5/TbT0bJwvoys+xJPg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html", - "hash": "6l7oHdul1P9SJ+aBYtxUeA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html", - "hash": "KNG8xYhMv7dYI7+Aj56K4w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html", - "hash": "Js0xV0L5IFVNNyz3soJjWA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html", - "hash": "WWPaoerIk8NDM+oLC95Fpw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.Types.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.html", - "hash": "swvhO+AOQOgc/C14LGcFKw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Actors.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Actors.html", - "hash": "myhMjPpGGS3xYb3mVB/jrA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.ClientState.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.ClientState.html", - "hash": "aiAanpUz9paYB4pMFU2oGA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.JobGauges.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.JobGauges.html", - "hash": "87+WqQjcnhqIdFNacBTNwA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.html", - "hash": "IgL7W4EB0Qah5bqBbsnLjg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html", - "hash": "OCPPmdXtUfIBwyMNJffkxA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html", - "hash": "euD9Dj4v3/FZ4c+KChaFNw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html", - "hash": "I8ZBUzlNwCEKRNr1RSBNpQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html", - "hash": "fbGLIZfJVvazLNKzthF2cQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html", - "hash": "hPaqmXOmVWvS70OjBZ70GA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html", - "hash": "JTg6oe0RZR3dZB0eTkCvlw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html", - "hash": "bMDfa0jeeDFXUGcC9Id7TQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html", - "hash": "fAyUoDBt2g38ihaCrPUf9w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html", - "hash": "mUzg0xbJIPnVQSJBokltaQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html", - "hash": "rx9tj6XkNTNVRY+vta64aw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html", - "hash": "vELlhjFia1fbiIE2HUQUnw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html", - "hash": "5DFVV5yBSLL40E6cqTLuZg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html", - "hash": "KGB+lPrqyhvL6tzw2H+Qlw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html", - "hash": "YjwDh37ameK9t/Eq4zsxeg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html", - "hash": "gpWbcpkvRVLb5x9oCPOpdg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html", - "hash": "9zut9OfYAfthMt+pzqTyIw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html", - "hash": "UXtXNnBX8KFtTQjXO57m7g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html", - "hash": "tNawsu0UxWKjPl/xbJs01Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html", - "hash": "SJCtv3RRkkTEQg3IdAlFQg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html", - "hash": "PEvKUqN7AmPspVdjc+t3fw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html", - "hash": "y0j8Ip7k2/Cy6qs/4Z/zMg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html", - "hash": "9EIRIe1mbzJaE3vYjwD2Tw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html", - "hash": "l0nIoRmLK20qnbsY9L6Xkw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html", - "hash": "K750j7jTmLvqww40W8KdEw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html", - "hash": "Hh/pawXi4ja0Wr2ienalLQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html", - "hash": "LzK0m0CODE2S5FP485D9zg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.html", - "hash": "FTT9YFR7tePP3df8aUTJhw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.Structs.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.Structs.html", - "hash": "GmPAcXttwyoIZvns7kLKsA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.ClientState.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.ClientState.html", - "hash": "bMXBheKNEeLNo4CIMwz3EA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html", - "hash": "ROKJPNPlvfszHt0mzO1dcA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Command.CommandInfo.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Command.CommandInfo.html", - "hash": "MM1Pw6vNG+Ju/r9nAG2Xdg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Command.CommandManager.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Command.CommandManager.html", - "hash": "yMuaqvUwWY/ZMudpFQyfXA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Command.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Command.html", - "hash": "dhltcv47K37IBAGWBsiLNQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html", - "hash": "5a/WmYkDLX74R66xDH66Pg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html", - "hash": "6tIg0LCsYroOXm7g9+tMrg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.DXGI.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.DXGI.html", - "hash": "IENeye4rCv4w2ruIiD+Cmg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.File.ResourceManager.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.File.ResourceManager.html", - "hash": "gqOU0lJHhQoOGPD8wO47gQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.File.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.File.html", - "hash": "Bg+D7Zxu+bceA1bST3qgRQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html", - "hash": "WU8PXcwlmcONSAzIRQWBRw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Framework.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Framework.html", - "hash": "0/f6WEQeMpRQltuL43gYDg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html", - "hash": "bAjnZQD/hA31q7SG7tytlQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html", - "hash": "UkCeXkQSbXYxhQZV+pjxcg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.html", - "hash": "/c5QWDWMdBnF72QnRufrFA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.GameGui.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.GameGui.html", - "hash": "8x6uyYuGeeSTrc04hGCWGQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html", - "hash": "Fj9GqXIomH28nJ/ZqhqIHQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.html", - "hash": "XUgrwXDdAy7V3mgkgsgldw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Gui.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Gui.html", - "hash": "m80x6jKz7GimYvD1uOs64A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Libc.LibcFunction.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Libc.LibcFunction.html", - "hash": "jzjj+/4zA1ITCWY3UyJx9A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Libc.OwnedStdString.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Libc.OwnedStdString.html", - "hash": "t5ueariQtoljyp59JBYwig==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Libc.StdString.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Libc.StdString.html", - "hash": "gjTdw9vf3423G5N6vxPsXA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Libc.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Libc.html", - "hash": "YFnnzxCojVdco0yVFEkpzg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.OnZonePacketDelegate.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.OnZonePacketDelegate.html", - "hash": "oGLJ1ZZDyWiJYl9ORJQhEQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.html", - "hash": "mFZv4famcWJK4wp0V0cDIQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.Network.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.Network.html", - "hash": "Z6AULGl7gQ2srIhgUlXibQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Internal.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Internal.html", - "hash": "yYKSQqdLXtxP5fgvCLkFIA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.NetworkHandlers.CfPop.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.CfPop.html", - "hash": "y/s89MKDuTxpYStlpK3k+w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.NetworkHandlers.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.html", - "hash": "MdilaUH5wGCig3nIgwXgTQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html", - "hash": "Xfb43GOjZ64Pi/dl8MK9gg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html", - "hash": "7E/UrlzGM74iubTQ6hocow==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html", - "hash": "VJiCW6w8tqAU8s4cb+yAFg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html", - "hash": "TebUSH+KDte2u4RFzBJFCQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.html", - "hash": "y8jFPtnB/1iXMkJSUO8jfw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.MarketTaxRates.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.MarketTaxRates.html", - "hash": "enS4PqmMVbvw2C4AiiuPsA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.Structures.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.Structures.html", - "hash": "iIQD1IY660Ug6LR1Q3tMjQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Network.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Network.html", - "hash": "zeU0paOXSL0SLc3715In7A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.SigScanner.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.SigScanner.html", - "hash": "KnOjeFFkOF6pAJOIVKmdBw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.html", - "hash": "yOtMdJ51+NBm/RxQT0F43g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.InterfaceManager.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Interface.InterfaceManager.html", - "hash": "xAuET1ZQ7JnYTUeS1LYdpg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.MySinkExtensions.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Interface.MySinkExtensions.html", - "hash": "6CD6y0K9dDmYgJX5Z6A/sQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.SerilogEventSink.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Interface.SerilogEventSink.html", - "hash": "OR548wbEbLrskcVzRO0N4w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.UiBuilder.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Interface.UiBuilder.html", - "hash": "IzeQxJL9ZpMzY/4oXrlN2w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Interface.html", - "hash": "X9p3on2vILi8oK3E83yTww==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Plugin.DalamudPluginInterface.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Plugin.DalamudPluginInterface.html", - "hash": "W3UXnM08nCDlSMLn+SbOxQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Plugin.IDalamudPlugin.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Plugin.IDalamudPlugin.html", - "hash": "eK8MN2VBnsmaJ6HD9zTE7g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Plugin.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Plugin.html", - "hash": "A0zCX5VoCtkNN5KOIG5LUg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImColor.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImColor.html", - "hash": "vvyVoWylSYpN1MDmm8yFgw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImColorPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImColorPtr.html", - "hash": "y7terWsrrCF4okS7yM5Pew==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawChannel.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawChannel.html", - "hash": "kBQjR2GcOi2ybZgID1GMmw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawChannelPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawChannelPtr.html", - "hash": "MziE6EUXfB2Qbq4hBAS9XA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawCmd.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawCmd.html", - "hash": "MwmRpdFP/Y8HVppeMXbdAw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawCmdPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawCmdPtr.html", - "hash": "C9U5m+wyzMFHX/87T/kP7w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawCornerFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawCornerFlags.html", - "hash": "XGBQDoShtbGHyB0qRTrZoA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawData.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawData.html", - "hash": "apxMDOxxK57hhkRKPhYuWA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawDataPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawDataPtr.html", - "hash": "Z6V1G7OhbmxJsYXcQKFiCw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawList.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawList.html", - "hash": "/9QbqWo7b7YO9TkORrGhPA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawListFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawListFlags.html", - "hash": "W/YAEMgPZfc546eBTGvOFQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawListPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawListPtr.html", - "hash": "z+dONH/7eEE8UNuBZfVbvQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawListSplitter.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawListSplitter.html", - "hash": "wCRopdVVpRHt3QJcUaXLmA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawListSplitterPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawListSplitterPtr.html", - "hash": "SmubV8OW8yqXX2Ks2/giIA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawVert.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawVert.html", - "hash": "Lk544je82mi7iIFsXAN0Og==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImDrawVertPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImDrawVertPtr.html", - "hash": "5dfGrVKzu9gSVGCZcJN/fg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFont.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFont.html", - "hash": "TynF8LjAjrVTpXGyntnMlQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontAtlas.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontAtlas.html", - "hash": "XkWUKmg/ejcoiD4bGsbIkQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontAtlasCustomRect.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontAtlasCustomRect.html", - "hash": "+fyNL+ryZuFkdHbtxGU5RQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontAtlasCustomRectPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontAtlasCustomRectPtr.html", - "hash": "v/DXPkQktNaJZAPgzWm9gQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontAtlasFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontAtlasFlags.html", - "hash": "HTmjHrXoLTPEw7qXMh6oTg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontAtlasPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontAtlasPtr.html", - "hash": "7K7U9OpCh97vugl/ZvGKTA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontConfig.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontConfig.html", - "hash": "rqQXK8QSTt5Y7PgJ3t8JtA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontConfigPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontConfigPtr.html", - "hash": "oB2lINRjvWfj29L+Eegtag==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontGlyph.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontGlyph.html", - "hash": "SRE5UngixKSROg2oQxnFAg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontGlyphPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontGlyphPtr.html", - "hash": "sW0Tpevqc24s2i94h80uKA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontGlyphRangesBuilder.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontGlyphRangesBuilder.html", - "hash": "vX6Bqj6QcF76PoeWBQXxjA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontGlyphRangesBuilderPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontGlyphRangesBuilderPtr.html", - "hash": "T2/NzIwqtY9wTzvxAehwwg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImFontPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImFontPtr.html", - "hash": "xNtvhfiCphp70yVJsw9C0g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGui.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGui.html", - "hash": "HVDiVWbS8IlKpaGd0TEv2A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiBackendFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiBackendFlags.html", - "hash": "+vvm1ww9jkJ4K1joiIZSoA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiCol.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiCol.html", - "hash": "mzC+g10l8xQq20JiI1NEHg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiColorEditFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiColorEditFlags.html", - "hash": "EEC1r+0G1zGs8dLlRDTDng==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiComboFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiComboFlags.html", - "hash": "kQIZyrjfxr6bfWDZnb6mSg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiCond.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiCond.html", - "hash": "Erw7DY0u8dbsjCp3dY/P5w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiConfigFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiConfigFlags.html", - "hash": "Nlad5KIj5m7feURLNgplzg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiDataType.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiDataType.html", - "hash": "1I6Llkb6zDNyS3Df9gbJ9A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiDir.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiDir.html", - "hash": "td85ur0r0z+UD5wjPyD+vg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiDragDropFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiDragDropFlags.html", - "hash": "tzon9m5iA0fdXVI7LRBd7w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiFocusedFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiFocusedFlags.html", - "hash": "A0Xf/zJy163miKA71aWhRw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiHoveredFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiHoveredFlags.html", - "hash": "JMBUuiZC01gLg4i9jU+49A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiIO.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiIO.html", - "hash": "9s+BFD7L0OtBgjhkB9fZSA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiIOPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiIOPtr.html", - "hash": "RV7pshGsH6EeVq90kuFxtw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiInputTextCallback.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiInputTextCallback.html", - "hash": "xPKDutJKTyADZN1ImO+/vA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiInputTextCallbackData.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiInputTextCallbackData.html", - "hash": "JeSptkwwFnXpgBOez0zSGA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiInputTextCallbackDataPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiInputTextCallbackDataPtr.html", - "hash": "Keqpy4pny1ECK747eBbLAw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiInputTextFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiInputTextFlags.html", - "hash": "6H9/akYjf8qB9imghlVBTQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiKey.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiKey.html", - "hash": "3qGbFmmWOBAg2YllN93ycQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiListClipper.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiListClipper.html", - "hash": "XaHNvFptZ4Y0kL1ZCcPUfA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiListClipperPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiListClipperPtr.html", - "hash": "OMJ/K/qqCRv4/HWTEqLnDw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiMouseCursor.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiMouseCursor.html", - "hash": "q7wXxNWz4+erEOvEj1VAPw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiNative.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiNative.html", - "hash": "YQNhG4hp29wF+OIRTbV4NA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiNavInput.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiNavInput.html", - "hash": "Ihcqg2f55EEMJistKgpb8w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiOnceUponAFrame.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiOnceUponAFrame.html", - "hash": "U6/vMupgudj1P2Zw6NZTeg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiOnceUponAFramePtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiOnceUponAFramePtr.html", - "hash": "DUnZvJMHOh0OEjGRR9ysEw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiPayload.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiPayload.html", - "hash": "Im9GDJT5o1wnxfNCkHQJZw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiPayloadPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiPayloadPtr.html", - "hash": "BIlqBUkdfHX6hYZW3FJDhQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiSelectableFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiSelectableFlags.html", - "hash": "GrinAeb/CKRZzvhDCCk54g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiSizeCallback.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiSizeCallback.html", - "hash": "nNENZTKuT8UfzUW+1x+Ncg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiSizeCallbackData.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiSizeCallbackData.html", - "hash": "a1HnEZT3DzPExXfMzv4uQA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiSizeCallbackDataPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiSizeCallbackDataPtr.html", - "hash": "dbdKcxUht/MKI+0svynq8Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStorage.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStorage.html", - "hash": "HXIIQCxSbiFcdIDvYjsqdw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStoragePair.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStoragePair.html", - "hash": "QqebX/9cn/Ku4ERa7WPHVw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStoragePairPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStoragePairPtr.html", - "hash": "AqFqqrLqdWk/z1y/Mv4TmQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStoragePtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStoragePtr.html", - "hash": "MLpoVeb8AlM4lbBk3+buGg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStyle.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStyle.html", - "hash": "evVntNDTgA01JFFwq3yLqg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStylePtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStylePtr.html", - "hash": "qPqvCMTROW2dSUM21UeZ+A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiStyleVar.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiStyleVar.html", - "hash": "EMBTfSyiUiy5xQLboiyLPw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTabBarFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTabBarFlags.html", - "hash": "Ut+6kCyBZzAKYrWDxPJ2MQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTabItemFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTabItemFlags.html", - "hash": "nfkT24YVl/Hsnzma3MIbwQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextBuffer.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextBuffer.html", - "hash": "KOMSd/TvDXHSG4z4XPKPOg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextBufferPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextBufferPtr.html", - "hash": "QH/Zpylk68X3Q4edcnwfeA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextFilter.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextFilter.html", - "hash": "AMIShMPdd+7iv9+slgBA6Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextFilterPtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextFilterPtr.html", - "hash": "/yqsFzW0bNqkesXb6o4RJA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextRange.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextRange.html", - "hash": "vGZskB6h7nbc3PyJbZwjnQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTextRangePtr.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTextRangePtr.html", - "hash": "K/tZBE8K0PSP/T8mRKBn7Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiTreeNodeFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiTreeNodeFlags.html", - "hash": "coCEg6DAIKWCJWyRxXO4TQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImGuiWindowFlags.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImGuiWindowFlags.html", - "hash": "Cozmcb3NsRCfcB+/+k1tsA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImPtrVector-1.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImPtrVector-1.html", - "hash": "EvgfWp2erUM6N0B1w8UMzQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImVector-1.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImVector-1.html", - "hash": "vqF9NDHay6ImP3iyZ1lIAA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.ImVector.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.ImVector.html", - "hash": "5T1NxkmAofOG6LZjs5hZtA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.NullTerminatedString.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.NullTerminatedString.html", - "hash": "fsRwG6IIGqccAdUxwL6icQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.RangeAccessor-1.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.RangeAccessor-1.html", - "hash": "Kh0MYHMlyDYvkQtSlSll3Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.RangeAccessorExtensions.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.RangeAccessorExtensions.html", - "hash": "bmwq7ypm1rLGgFgzTF+fww==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.RangePtrAccessor-1.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.RangePtrAccessor-1.html", - "hash": "vTcVpOM+Bj+06V7IrpE0Kw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.UnionValue.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.UnionValue.html", - "hash": "FiuEqqTlx0sinVYW0a1cPQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiNET.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiNET.html", - "hash": "UUrAjBrcpudtscr5yjeI5Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.FramerateLimit.LimitType.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.FramerateLimit.LimitType.html", - "hash": "9LcHEwV4Dbb9+/lj9OLe7g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.FramerateLimit.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.FramerateLimit.html", - "hash": "cP6xmlo5traJDPOCxOBviQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.GLTextureWrap.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.GLTextureWrap.html", - "hash": "m70EnwYpdcTr4IFG/dY7pA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.IImGuiInputHandler.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.IImGuiInputHandler.html", - "hash": "0myJmmh7p8nmmlRvpfMG/g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.IImGuiRenderer.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.IImGuiRenderer.html", - "hash": "OFR+1IuJEFqpEVsYv3BmGA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.IRenderer.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.IRenderer.html", - "hash": "FiW8JCdFBiSKbSPUM15AjQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.ImGui_Impl_DX11.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.ImGui_Impl_DX11.html", - "hash": "21rrOfJhiQR1FpvCTrCQbg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.ImGui_Impl_OpenGL3.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.ImGui_Impl_OpenGL3.html", - "hash": "S/C5yjjEv6wxyeALOTPkdg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.ImGui_Impl_SDL.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.ImGui_Impl_SDL.html", - "hash": "hkn1tdXrcHgch+byxtufdQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.ImGui_Input_Impl_Direct.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.ImGui_Input_Impl_Direct.html", - "hash": "Al7grMkOdZEI9My4/pz28g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.RawDX11Scene.BuildUIDelegate.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html", - "hash": "LtjujOfen8kg0t3O3/2CZA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.RawDX11Scene.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.RawDX11Scene.html", - "hash": "D/MGhCZVMW6pEcnWwA9oGg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.RendererFactory.RendererBackend.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.RendererFactory.RendererBackend.html", - "hash": "ViopNWG6Ahn1/uaHqTkGLQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.RendererFactory.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.RendererFactory.html", - "hash": "6LdaX92bdSC98J3as/V4tA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SDLWindowGL.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SDLWindowGL.html", - "hash": "ZBOi1m9jaGP7kqrjsuyItg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleD3D.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleD3D.html", - "hash": "sVXWZwHmRSqXH/+qhVAU7w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html", - "hash": "R/fSGNKKKD3gyh2niCAfSA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleImGuiScene.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleImGuiScene.html", - "hash": "dVjVr8DioTKwvcuaAAvRNQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleOGL3.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleOGL3.html", - "hash": "SxPZHSdBaz1xUpZbH2gXqg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html", - "hash": "z0LSPbCm0JADS2mXG6Vkkg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.SimpleSDLWindow.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.SimpleSDLWindow.html", - "hash": "mwcp2LgADh72rwI5PEE0fA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.TextureWrap.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.TextureWrap.html", - "hash": "p/kS1K3H9Kbxh+SVLR78Vw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.WindowCreateInfo.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.WindowCreateInfo.html", - "hash": "/AN7k9CSBpzXYKeMrcdHQA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.WindowFactory.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.WindowFactory.html", - "hash": "AqzS4oIpe4R7BuAfYaigrw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/ImGuiScene.yml", - "output": { - ".html": { - "relative_path": "api/ImGuiScene.html", - "hash": "4w1gqwosFfVP6gco98SpIA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_GameControllerButtonBind_hat.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_GameControllerButtonBind_hat.html", - "hash": "mGWUn+2r4BbnG5Wc+QWDaA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_GameControllerButtonBind_union.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_GameControllerButtonBind_union.html", - "hash": "RqjOHdqVb6DTw5sSrQ//Bg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_SysWMDriverUnion.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_SysWMDriverUnion.html", - "hash": "JCtgRPpZj7yRqIrrlls4Bw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_android_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_android_wminfo.html", - "hash": "ABOTpyrJ1ldug/Cf1mlQ5Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_cocoa_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_cocoa_wminfo.html", - "hash": "e5VtvUjY7j0NMelp8/LyEw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_directfb_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_directfb_wminfo.html", - "hash": "/QNBzIaz5Nf8RUdKyhfytQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_mir_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_mir_wminfo.html", - "hash": "MNCyqTofT+0ltIwnex9T0Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_uikit_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_uikit_wminfo.html", - "hash": "5LBX9uVkaOOH2SS2SYn4hg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_wayland_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_wayland_wminfo.html", - "hash": "oxRYTfRNPM7fmymK1ZZJBg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_windows_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_windows_wminfo.html", - "hash": "l3hbakC0uTzxTa4n9e9wEA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_winrt_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_winrt_wminfo.html", - "hash": "4bS/a6Ud0RYw2TlaKLDBgg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.INTERNAL_x11_wminfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.INTERNAL_x11_wminfo.html", - "hash": "ZJDC/Kzutx0pnG9UTI9f6w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDLRWopsCloseCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDLRWopsCloseCallback.html", - "hash": "6kCX4Cl8itjJ4777cjwUZw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDLRWopsReadCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDLRWopsReadCallback.html", - "hash": "lFY67OjooSxtjPkjs5NxMg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDLRWopsSeekCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDLRWopsSeekCallback.html", - "hash": "J9eqT9zphZIW1U6iUYc/CA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDLRWopsSizeCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDLRWopsSizeCallback.html", - "hash": "RJXCBhPLq10gqNx6I2+NsQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDLRWopsWriteCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDLRWopsWriteCallback.html", - "hash": "jVHAGXTEVML1czsrKPOEwA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_AudioCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_AudioCallback.html", - "hash": "K+mm2lWUxAWG1xb1EUjQ8w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_AudioDeviceEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_AudioDeviceEvent.html", - "hash": "hWXrWSmvX32hz1YqugvW6A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_AudioSpec.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_AudioSpec.html", - "hash": "V6pnYY+4ZMbML6R/mS2C9w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_AudioStatus.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_AudioStatus.html", - "hash": "uAwu3c8FIU60gKUT4LD46w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_BlendFactor.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_BlendFactor.html", - "hash": "ilV1CrQdiERGXt7d1Hc7Nw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_BlendMode.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_BlendMode.html", - "hash": "DmKu2o9qZUWqmK2RR4HhBA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_BlendOperation.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_BlendOperation.html", - "hash": "oEmtwisrVTNZ/QJ+cGrdvg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Color.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Color.html", - "hash": "kcWnT+sNoRcZSxqxTQYI1Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_ControllerAxisEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_ControllerAxisEvent.html", - "hash": "PDV2A482wR0e6weDzEa/mA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_ControllerButtonEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_ControllerButtonEvent.html", - "hash": "TzZ+lHcmvuL6Ff+0BA4vBg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_ControllerDeviceEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_ControllerDeviceEvent.html", - "hash": "ZpAX+N1sNTg7xSVsI6cWJQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DisplayEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DisplayEvent.html", - "hash": "U49/LEChjL7k2SN77O/KBA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DisplayEventID.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DisplayEventID.html", - "hash": "XH9wHogF3YP6gqcS0LgDcA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DisplayMode.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DisplayMode.html", - "hash": "FsBPedXNWhTaavE5I2f6Ug==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DisplayOrientation.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DisplayOrientation.html", - "hash": "gbcn60HSO1t1ESvX6Lyckg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DollarGestureEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DollarGestureEvent.html", - "hash": "OcC+TxH/7GIVi90yhZQHjw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_DropEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_DropEvent.html", - "hash": "ymKsS296loGek7gXdjfVag==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Event.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Event.html", - "hash": "oqC/9pyVFFf/dbc5xxpCwg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_EventFilter.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_EventFilter.html", - "hash": "Rbj5Mw/Uxw2eSDu5cOTSrQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_EventType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_EventType.html", - "hash": "tOUWmarYn6Ucy6tixNFtXw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_FPoint.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_FPoint.html", - "hash": "S2+CtyrbPNDZ6veMpHM67w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_FRect.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_FRect.html", - "hash": "m6dCGDV6DA2xo3oIKXr+GA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Finger.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Finger.html", - "hash": "peF5Nw2/mC/OfMxrYY01Ig==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GLattr.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GLattr.html", - "hash": "7ePbxmtbrPGHJv3i2vadMQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GLcontext.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GLcontext.html", - "hash": "T0Eg+Pou6uMx00VaALWKWQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GLprofile.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GLprofile.html", - "hash": "TA6Jn0/8Hjd0RycIbm6LQg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GameControllerAxis.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GameControllerAxis.html", - "hash": "OCZv1KnnVeZ06St2zVHGbA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GameControllerBindType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GameControllerBindType.html", - "hash": "5RQKrbD+26Fnc8kXObylbA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GameControllerButton.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GameControllerButton.html", - "hash": "PQ5c8H8hMcwWu4fEkFTaUg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GameControllerButtonBind.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GameControllerButtonBind.html", - "hash": "eq0YY9vJG+zsRW1nVThyug==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_GenericEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_GenericEvent.html", - "hash": "Zjd4PAsR5NcHW//v5ThKZA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticCondition.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticCondition.html", - "hash": "6tmul44jX7uK4wYQIx195g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticConstant.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticConstant.html", - "hash": "aJGiG3244L2UiEdb+AXo3g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticCustom.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticCustom.html", - "hash": "gvhms0W7YeG8xmE3V1b05A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticDirection.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticDirection.html", - "hash": "f1H+2DTEuNXJfcEIeNPbsQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticEffect.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticEffect.html", - "hash": "dnqNmJ0rt5tM+YIGtHRzOg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticLeftRight.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticLeftRight.html", - "hash": "JPyYpvFWKZKBrNoj3komhQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticPeriodic.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticPeriodic.html", - "hash": "r1W79yOwDaL9glOaLKOdxw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HapticRamp.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HapticRamp.html", - "hash": "lgTDhP6xWcbVgj34/LA5cg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HintPriority.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HintPriority.html", - "hash": "ZV4aogQDxAQL+1Bif/aLfA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HitTest.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HitTest.html", - "hash": "t48QPYcPGN6/xXHrXPPrkw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_HitTestResult.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_HitTestResult.html", - "hash": "ECcNGPlqgUZKpS44wYNF1w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoyAxisEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoyAxisEvent.html", - "hash": "VBXjAthDVi0VFZLipweuog==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoyBallEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoyBallEvent.html", - "hash": "bbORiXtbMba0EvPK8q0uiA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoyButtonEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoyButtonEvent.html", - "hash": "g2lS2kk9DxWrc31SeVwYlA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoyDeviceEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoyDeviceEvent.html", - "hash": "ALq/A1MImZZjPC9BF9PNOw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoyHatEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoyHatEvent.html", - "hash": "L93IfBdyqrGLYa8mktQt6A==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoystickPowerLevel.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoystickPowerLevel.html", - "hash": "DdyNCZPcbmGgqyxEplkidQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_JoystickType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_JoystickType.html", - "hash": "UyQSj15eTsKzo4SBSIh9TQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_KeyboardEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_KeyboardEvent.html", - "hash": "6fbneTPB7T9Rg83BS+yLpg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Keycode.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Keycode.html", - "hash": "74+Zdh1ijL9n9p+Pjsp1+g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Keymod.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Keymod.html", - "hash": "Utk9+7FGSG6fczSh5jReGg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Keysym.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Keysym.html", - "hash": "160kgHxx10fcahCLdHnkzg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_LogOutputFunction.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_LogOutputFunction.html", - "hash": "B76AJMGrgFJJxObwLUOuzw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_LogPriority.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_LogPriority.html", - "hash": "8eQ5vT90xHgsVWEi6axgXA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxButtonData.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxButtonData.html", - "hash": "gIIGZxD5732TvK4tQ55tLg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxButtonFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxButtonFlags.html", - "hash": "sGL86aE/ELVm6wN1hOrqqg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxColor.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxColor.html", - "hash": "qtu7v6UKuCIz0ITktYCZ7Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxColorScheme.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxColorScheme.html", - "hash": "qumdOId0Y9QnRosaWCfKgg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxColorType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxColorType.html", - "hash": "ETbqFgMXHhEJTV8oWTYRqw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxData.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxData.html", - "hash": "7Su9LgDdCYIr45HSu726PQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MessageBoxFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MessageBoxFlags.html", - "hash": "sVjlUtJ3hAb3d8lqkQeNfQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MouseButtonEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MouseButtonEvent.html", - "hash": "s5PPCQOvzHsS1vwEuN7lsA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MouseMotionEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MouseMotionEvent.html", - "hash": "Q6zPzYGXeZRLbfM5vpJxzg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MouseWheelDirection.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MouseWheelDirection.html", - "hash": "HECEKBvWZoqxSJUUm9biCA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MouseWheelEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MouseWheelEvent.html", - "hash": "XX/t16y8WTC9JUfQDImSvA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_MultiGestureEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_MultiGestureEvent.html", - "hash": "fUXH2JgMU5LPG0f6eXGxag==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_PACKEDLAYOUT_ENUM.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_PACKEDLAYOUT_ENUM.html", - "hash": "PMNDRL88Ufxj/O4qhmJrLQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_PIXELORDER_ENUM.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_PIXELORDER_ENUM.html", - "hash": "VVZx4sijzuXv1P1vPE+sLg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_PIXELTYPE_ENUM.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_PIXELTYPE_ENUM.html", - "hash": "BLjFvc3s/sDIlYkr65fMFw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Palette.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Palette.html", - "hash": "LJ7JrPpNnfcJm+Deh6/iig==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_PixelFormat.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_PixelFormat.html", - "hash": "/K68VEVGmakdQQ1GbeZYGQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Point.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Point.html", - "hash": "ZNwkv5GyDueIBjbTPlQE9Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_PowerState.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_PowerState.html", - "hash": "ho1HpY2vZNuE8bftghGwfw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_QuitEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_QuitEvent.html", - "hash": "ruMEJwylXQHh+v1pyKR2Ew==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_RWops.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_RWops.html", - "hash": "VKYu8WGNvTtDbHWUIcWMhw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Rect.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Rect.html", - "hash": "1JGDePa9pW4LLhfqJZP7UA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_RendererFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_RendererFlags.html", - "hash": "5HXdjVNPoh7xx5gUNjrllQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_RendererFlip.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_RendererFlip.html", - "hash": "vZIIKvmoAnl/njfKrs0dtA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_RendererInfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_RendererInfo.html", - "hash": "wQ4F4cTluo5+KIezThwdPw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SYSWM_TYPE.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SYSWM_TYPE.html", - "hash": "dNUyWrW+Dj7jU7kI3NVDRA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Scancode.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Scancode.html", - "hash": "KS8u3C+7zL+hNYtN+aREPQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SensorEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SensorEvent.html", - "hash": "XmRq1uMI8pb0iyFZs99D7g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SensorType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SensorType.html", - "hash": "BkXUO+2inDoiq0S/4Wpe1Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_Surface.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_Surface.html", - "hash": "Mmkgd4x4YExAoS9mgcYW0w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SysWMEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SysWMEvent.html", - "hash": "L7tCquwzPc/y9FdYlzpCzw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SysWMinfo.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SysWMinfo.html", - "hash": "Id3jcLPiKuSECWWuwFv2hQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_SystemCursor.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_SystemCursor.html", - "hash": "IbyPUL0pKRS+gvyTowXyIg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TextEditingEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TextEditingEvent.html", - "hash": "xoybyD61Q7NI6BcUW0SeiA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TextInputEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TextInputEvent.html", - "hash": "KhGPWgRxwSgNa3swsaxypQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TextureAccess.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TextureAccess.html", - "hash": "3yTOHXzaks/VvFf+Yu1WjQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TextureModulate.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TextureModulate.html", - "hash": "IFdNPGddhcteOqcZIuetSg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TimerCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TimerCallback.html", - "hash": "8asYTJ0S/Da8KqiHJ/2I4w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TouchDeviceType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TouchDeviceType.html", - "hash": "WBJbWvjMgDXWFcIEoCQa7Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_TouchFingerEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_TouchFingerEvent.html", - "hash": "OnFz4jaMN8yRF2SWvtNfgQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_UserEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_UserEvent.html", - "hash": "GPZfeYFpZ2Pgu0FzPOB9iw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_WinRT_DeviceFamily.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_WinRT_DeviceFamily.html", - "hash": "XNfjobq1TifQ3/dN5IU4fw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_WindowEvent.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_WindowEvent.html", - "hash": "RdGqUDDpt8dL43Gyj+AvBQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_WindowEventID.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_WindowEventID.html", - "hash": "xd9jtWjjAuQOSoQaxQNUhA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_WindowFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_WindowFlags.html", - "hash": "kgJvb4r0eMBQt3goe8V70g==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_WindowsMessageHook.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_WindowsMessageHook.html", - "hash": "P12uwgxuxyBF293stqgbwQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_bool.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_bool.html", - "hash": "EtMpp3rmFZJmuzNC1HIK2Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_eventaction.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_eventaction.html", - "hash": "mQfoYalVvUdR57Jxmr9m7w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_iPhoneAnimationCallback.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_iPhoneAnimationCallback.html", - "hash": "MSj3AMUNPkvV3EpAvaDs3Q==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_main_func.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_main_func.html", - "hash": "4E9gKXJOSyE0L2MLK3kP8w==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.SDL_version.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.SDL_version.html", - "hash": "tjE6osszWTtqiz8iYOkGZQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL.html", - "hash": "5jQj5VktZWA2m/c9WPDrAw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_image.IMG_InitFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_image.IMG_InitFlags.html", - "hash": "jmyVMoaOs2Nx3yN4MVPxPw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_image.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_image.html", - "hash": "GuJRZilncU9r+CbquDXIPQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.ChannelFinishedDelegate.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.ChannelFinishedDelegate.html", - "hash": "6hq0yw8Y4cpdygivtHCebw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.MIX_InitFlags.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.MIX_InitFlags.html", - "hash": "ECNn4NzfrkDpHQkzVJvKSQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.MixFuncDelegate.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.MixFuncDelegate.html", - "hash": "CtVmKJ0pNZuf0cJQYcxGgQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.Mix_EffectDone_t.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.Mix_EffectDone_t.html", - "hash": "StYNa/p+ejDNnD3vUU4wxQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.Mix_EffectFunc_t.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.Mix_EffectFunc_t.html", - "hash": "SuhsPyCgbaiZPtuhQ3D3yg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.Mix_Fading.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.Mix_Fading.html", - "hash": "4OA/buMbpEBACHiUYpCEag==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.Mix_MusicType.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.Mix_MusicType.html", - "hash": "S85+M08X4gSYRPgqW21fAQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.MusicFinishedDelegate.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.MusicFinishedDelegate.html", - "hash": "fNfvXqnUNXvWmqmPIW0fuA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.SoundFontDelegate.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.SoundFontDelegate.html", - "hash": "rbvqYn1oVKayxf1mEnGkMA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_mixer.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_mixer.html", - "hash": "ouKfDLMeUJdQEnF/p8uRPg==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.SDL_ttf.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.SDL_ttf.html", - "hash": "Xa2TgjEQLGi7upSWkfCcoA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/SDL2.yml", - "output": { - ".html": { - "relative_path": "api/SDL2.html", - "hash": "Ttk1dQ7KE++yjQRTILCFfA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "api/index.md", - "output": { - ".html": { - "relative_path": "api/index.html", - "hash": "Y7W3npbJph/JcPu1DOK3aQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "api/toc.yml", - "output": { - ".html": { - "relative_path": "api/toc.html", - "hash": "lF0HYNcv4cej2z5iPXGaUA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "index.md", - "output": { - ".html": { - "relative_path": "index.html", - "hash": "s84u+FH+UKO4kliIcL2f7w==" - } - }, - "is_incremental": true, - "version": "" - } - ], - "incremental_info": [ - { - "status": { - "can_incremental": true, - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "processors": { - "TocDocumentProcessor": { - "can_incremental": false, - "details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "ConceptualDocumentProcessor": { - "can_incremental": true, - "incrementalPhase": "build", - "total_file_count": 3, - "skipped_file_count": 3 - }, - "ManagedReferenceDocumentProcessor": { - "can_incremental": true, - "incrementalPhase": "build", - "total_file_count": 369, - "skipped_file_count": 364 - } - } - }, - { - "status": { - "can_incremental": true, - "details": "Can support incremental post processing.", - "incrementalPhase": "postProcessing", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "processors": {} - } - ], - "version_info": {}, - "groups": [ - { - "xrefmap": "xrefmap.yml" - } - ] -} \ No newline at end of file diff --git a/docs/search-stopwords.json b/docs/search-stopwords.json deleted file mode 100644 index 0bdcc2c00..000000000 --- a/docs/search-stopwords.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - "a", - "able", - "about", - "across", - "after", - "all", - "almost", - "also", - "am", - "among", - "an", - "and", - "any", - "are", - "as", - "at", - "be", - "because", - "been", - "but", - "by", - "can", - "cannot", - "could", - "dear", - "did", - "do", - "does", - "either", - "else", - "ever", - "every", - "for", - "from", - "get", - "got", - "had", - "has", - "have", - "he", - "her", - "hers", - "him", - "his", - "how", - "however", - "i", - "if", - "in", - "into", - "is", - "it", - "its", - "just", - "least", - "let", - "like", - "likely", - "may", - "me", - "might", - "most", - "must", - "my", - "neither", - "no", - "nor", - "not", - "of", - "off", - "often", - "on", - "only", - "or", - "other", - "our", - "own", - "rather", - "said", - "say", - "says", - "she", - "should", - "since", - "so", - "some", - "than", - "that", - "the", - "their", - "them", - "then", - "there", - "these", - "they", - "this", - "tis", - "to", - "too", - "twas", - "us", - "wants", - "was", - "we", - "were", - "what", - "when", - "where", - "which", - "while", - "who", - "whom", - "why", - "will", - "with", - "would", - "yet", - "you", - "your" -] diff --git a/docs/styles/docfx.css b/docs/styles/docfx.css deleted file mode 100644 index dc00b0403..000000000 --- a/docs/styles/docfx.css +++ /dev/null @@ -1,962 +0,0 @@ -/* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */ -html, -body { - font-family: 'Segoe UI', Tahoma, Helvetica, sans-serif; - height: 100%; -} -button, -a { - color: #337ab7; - cursor: pointer; -} -button:hover, -button:focus, -a:hover, -a:focus { - color: #23527c; - text-decoration: none; -} -a.disable, -a.disable:hover { - text-decoration: none; - cursor: default; - color: #000000; -} - -h1, h2, h3, h4, h5, h6, .text-break { - word-wrap: break-word; - word-break: break-word; -} - -h1 mark, -h2 mark, -h3 mark, -h4 mark, -h5 mark, -h6 mark { - padding: 0; -} - -.inheritance .level0:before, -.inheritance .level1:before, -.inheritance .level2:before, -.inheritance .level3:before, -.inheritance .level4:before, -.inheritance .level5:before { - content: '↳'; - margin-right: 5px; -} - -.inheritance .level0 { - margin-left: 0em; -} - -.inheritance .level1 { - margin-left: 1em; -} - -.inheritance .level2 { - margin-left: 2em; -} - -.inheritance .level3 { - margin-left: 3em; -} - -.inheritance .level4 { - margin-left: 4em; -} - -.inheritance .level5 { - margin-left: 5em; -} - -span.parametername, -span.paramref, -span.typeparamref { - font-style: italic; -} -span.languagekeyword{ - font-weight: bold; -} - -svg:hover path { - fill: #ffffff; -} - -.hljs { - display: inline; - background-color: inherit; - padding: 0; -} -/* additional spacing fixes */ -.btn + .btn { - margin-left: 10px; -} -.btn.pull-right { - margin-left: 10px; - margin-top: 5px; -} -.table { - margin-bottom: 10px; -} -table p { - margin-bottom: 0; -} -table a { - display: inline-block; -} - -/* Make hidden attribute compatible with old browser.*/ -[hidden] { - display: none !important; -} - -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 15px; - margin-bottom: 10px; - font-weight: 400; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 5px; -} -.navbar { - margin-bottom: 0; -} -#wrapper { - min-height: 100%; - position: relative; -} -/* blends header footer and content together with gradient effect */ -.grad-top { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)); - /* Standard syntax */ - height: 5px; -} -.grad-bottom { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)); - /* Standard syntax */ - height: 5px; -} -.divider { - margin: 0 5px; - color: #cccccc; -} -hr { - border-color: #cccccc; -} -header { - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 1000; -} -header .navbar { - border-width: 0 0 1px; - border-radius: 0; -} -.navbar-brand { - font-size: inherit; - padding: 0; -} -.navbar-collapse { - margin: 0 -15px; -} -.subnav { - min-height: 40px; -} - -.inheritance h5, .inheritedMembers h5{ - padding-bottom: 5px; - border-bottom: 1px solid #ccc; -} - -article h1, article h2, article h3, article h4{ - margin-top: 25px; -} - -article h4{ - border-bottom: 1px solid #ccc; -} - -article span.small.pull-right{ - margin-top: 20px; -} - -article section { - margin-left: 1em; -} - -/*.expand-all { - padding: 10px 0; -}*/ -.breadcrumb { - margin: 0; - padding: 10px 0; - background-color: inherit; - white-space: nowrap; -} -.breadcrumb > li + li:before { - content: "\00a0/"; -} -#autocollapse.collapsed .navbar-header { - float: none; -} -#autocollapse.collapsed .navbar-toggle { - display: block; -} -#autocollapse.collapsed .navbar-collapse { - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -} -#autocollapse.collapsed .navbar-collapse.collapse { - display: none !important; -} -#autocollapse.collapsed .navbar-nav { - float: none !important; - margin: 7.5px -15px; -} -#autocollapse.collapsed .navbar-nav > li { - float: none; -} -#autocollapse.collapsed .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; -} -#autocollapse.collapsed .collapse.in, -#autocollapse.collapsed .collapsing { - display: block !important; -} -#autocollapse.collapsed .collapse.in .navbar-right, -#autocollapse.collapsed .collapsing .navbar-right { - float: none !important; -} -#autocollapse .form-group { - width: 100%; -} -#autocollapse .form-control { - width: 100%; -} -#autocollapse .navbar-header { - margin-left: 0; - margin-right: 0; -} -#autocollapse .navbar-brand { - margin-left: 0; -} -.collapse.in, -.collapsing { - text-align: center; -} -.collapsing .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.collapsed .collapse.in .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.navbar .navbar-nav { - display: inline-block; -} -.docs-search { - background: white; - vertical-align: middle; -} -.docs-search > .search-query { - font-size: 14px; - border: 0; - width: 120%; - color: #555; -} -.docs-search > .search-query:focus { - outline: 0; -} -.search-results-frame { - clear: both; - display: table; - width: 100%; -} -.search-results.ng-hide { - display: none; -} -.search-results-container { - padding-bottom: 1em; - border-top: 1px solid #111; - background: rgba(25, 25, 25, 0.5); -} -.search-results-container .search-results-group { - padding-top: 50px !important; - padding: 10px; -} -.search-results-group-heading { - font-family: "Open Sans"; - padding-left: 10px; - color: white; -} -.search-close { - position: absolute; - left: 50%; - margin-left: -100px; - color: white; - text-align: center; - padding: 5px; - background: #333; - border-top-right-radius: 5px; - border-top-left-radius: 5px; - width: 200px; - box-shadow: 0 0 10px #111; -} -#search { - display: none; -} - -/* Search results display*/ -#search-results { - max-width: 960px !important; - margin-top: 120px; - margin-bottom: 115px; - margin-left: auto; - margin-right: auto; - line-height: 1.8; - display: none; -} - -#search-results>.search-list { - text-align: center; - font-size: 2.5rem; - margin-bottom: 50px; -} - -#search-results p { - text-align: center; -} - -#search-results p .index-loading { - animation: index-loading 1.5s infinite linear; - -webkit-animation: index-loading 1.5s infinite linear; - -o-animation: index-loading 1.5s infinite linear; - font-size: 2.5rem; -} - -@keyframes index-loading { - from { transform: scale(1) rotate(0deg);} - to { transform: scale(1) rotate(360deg);} -} - -@-webkit-keyframes index-loading { - from { -webkit-transform: rotate(0deg);} - to { -webkit-transform: rotate(360deg);} -} - -@-o-keyframes index-loading { - from { -o-transform: rotate(0deg);} - to { -o-transform: rotate(360deg);} -} - -#search-results .sr-items { - font-size: 24px; -} - -.sr-item { - margin-bottom: 25px; -} - -.sr-item>.item-href { - font-size: 14px; - color: #093; -} - -.sr-item>.item-brief { - font-size: 13px; -} - -.pagination>li>a { - color: #47A7A0 -} - -.pagination>.active>a { - background-color: #47A7A0; - border-color: #47A7A0; -} - -.fixed_header { - position: fixed; - width: 100%; - padding-bottom: 10px; - padding-top: 10px; - margin: 0px; - top: 0; - z-index: 9999; - left: 0; -} - -.fixed_header+.toc{ - margin-top: 50px; - margin-left: 0; -} - -.sidenav, .fixed_header, .toc { - background-color: #f1f1f1; -} - -.sidetoc { - position: fixed; - width: 260px; - top: 150px; - bottom: 0; - overflow-x: hidden; - overflow-y: auto; - background-color: #f1f1f1; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} - -.sidetoc.shiftup { - bottom: 70px; -} - -body .toc{ - background-color: #f1f1f1; - overflow-x: hidden; -} - -.sidetoggle.ng-hide { - display: block !important; -} -.sidetoc-expand > .caret { - margin-left: 0px; - margin-top: -2px; -} -.sidetoc-expand > .caret-side { - border-left: 4px solid; - border-top: 4px solid transparent; - border-bottom: 4px solid transparent; - margin-left: 4px; - margin-top: -4px; -} -.sidetoc-heading { - font-weight: 500; -} - -.toc { - margin: 0px 0 0 10px; - padding: 0 10px; -} -.expand-stub { - position: absolute; - left: -10px; -} -.toc .nav > li > a.sidetoc-expand { - position: absolute; - top: 0; - left: 0; -} -.toc .nav > li > a { - color: #666666; - margin-left: 5px; - display: block; - padding: 0; -} -.toc .nav > li > a:hover, -.toc .nav > li > a:focus { - color: #000000; - background: none; - text-decoration: inherit; -} -.toc .nav > li.active > a { - color: #337ab7; -} -.toc .nav > li.active > a:hover, -.toc .nav > li.active > a:focus { - color: #23527c; -} - -.toc .nav > li> .expand-stub { - cursor: pointer; -} - -.toc .nav > li.active > .expand-stub::before, -.toc .nav > li.in > .expand-stub::before, -.toc .nav > li.in.active > .expand-stub::before, -.toc .nav > li.filtered > .expand-stub::before { - content: "-"; -} - -.toc .nav > li > .expand-stub::before, -.toc .nav > li.active > .expand-stub::before { - content: "+"; -} - -.toc .nav > li.filtered > ul, -.toc .nav > li.in > ul { - display: block; -} - -.toc .nav > li > ul { - display: none; -} - -.toc ul{ - font-size: 12px; - margin: 0 0 0 3px; -} - -.toc .level1 > li { - font-weight: bold; - margin-top: 10px; - position: relative; - font-size: 16px; -} -.toc .level2 { - font-weight: normal; - margin: 5px 0 0 15px; - font-size: 14px; -} -.toc-toggle { - display: none; - margin: 0 15px 0px 15px; -} -.sidefilter { - position: fixed; - top: 90px; - width: 260px; - background-color: #f1f1f1; - padding: 15px; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} -.toc-filter { - border-radius: 5px; - background: #fff; - color: #666666; - padding: 5px; - position: relative; - margin: 0 5px 0 5px; -} -.toc-filter > input { - border: 0; - color: #666666; - padding-left: 20px; - padding-right: 20px; - width: 100%; -} -.toc-filter > input:focus { - outline: 0; -} -.toc-filter > .filter-icon { - position: absolute; - top: 10px; - left: 5px; -} -.toc-filter > .clear-icon { - position: absolute; - top: 10px; - right: 5px; -} -.article { - margin-top: 120px; - margin-bottom: 115px; -} - -#_content>a{ - margin-top: 105px; -} - -.article.grid-right { - margin-left: 280px; -} - -.inheritance hr { - margin-top: 5px; - margin-bottom: 5px; -} -.article img { - max-width: 100%; -} -.sideaffix { - margin-top: 50px; - font-size: 12px; - max-height: 100%; - overflow: hidden; - top: 100px; - bottom: 10px; - position: fixed; -} -.sideaffix.shiftup { - bottom: 70px; -} -.affix { - position: relative; - height: 100%; -} -.sideaffix > div.contribution { - margin-bottom: 20px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link { - padding: 6px 10px; - font-weight: bold; - font-size: 14px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link:hover { - background-color: #ffffff; -} -.sideaffix ul.nav > li > a:focus { - background: none; -} -.affix h5 { - font-weight: bold; - text-transform: uppercase; - padding-left: 10px; - font-size: 12px; -} -.affix > ul.level1 { - overflow: hidden; - padding-bottom: 10px; - height: calc(100% - 100px); -} -.affix ul > li > a:before { - color: #cccccc; - position: absolute; -} -.affix ul > li > a:hover { - background: none; - color: #666666; -} -.affix ul > li.active > a, -.affix ul > li.active > a:before { - color: #337ab7; -} -.affix ul > li > a { - padding: 5px 12px; - color: #666666; -} -.affix > ul > li.active:last-child { - margin-bottom: 50px; -} -.affix > ul > li > a:before { - content: "|"; - font-size: 16px; - top: 1px; - left: 0; -} -.affix > ul > li.active > a, -.affix > ul > li.active > a:before { - color: #337ab7; - font-weight: bold; -} -.affix ul ul > li > a { - padding: 2px 15px; -} -.affix ul ul > li > a:before { - content: ">"; - font-size: 14px; - top: -1px; - left: 5px; -} -.affix ul > li > a:before, -.affix ul ul { - display: none; -} -.affix ul > li.active > ul, -.affix ul > li.active > a:before, -.affix ul > li > a:hover:before { - display: block; - white-space: nowrap; -} -.codewrapper { - position: relative; -} -.trydiv { - height: 0px; -} -.tryspan { - position: absolute; - top: 0px; - right: 0px; - border-style: solid; - border-radius: 0px 4px; - box-sizing: border-box; - border-width: 1px; - border-color: #cccccc; - text-align: center; - padding: 2px 8px; - background-color: white; - font-size: 12px; - cursor: pointer; - z-index: 100; - display: none; - color: #767676; -} -.tryspan:hover { - background-color: #3b8bd0; - color: white; - border-color: #3b8bd0; -} -.codewrapper:hover .tryspan { - display: block; -} -.sample-response .response-content{ - max-height: 200px; -} -footer { - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: 1000; -} -.footer { - border-top: 1px solid #e7e7e7; - background-color: #f8f8f8; - padding: 15px 0; -} -@media (min-width: 768px) { - #sidetoggle.collapse { - display: block; - } - .topnav .navbar-nav { - float: none; - white-space: nowrap; - } - .topnav .navbar-nav > li { - float: none; - display: inline-block; - } -} -@media only screen and (max-width: 768px) { - #mobile-indicator { - display: block; - } - /* TOC display for responsive */ - .article { - margin-top: 30px !important; - } - header { - position: static; - } - .topnav { - text-align: center; - } - .sidenav { - padding: 15px 0; - margin-left: -15px; - margin-right: -15px; - } - .sidefilter { - position: static; - width: auto; - float: none; - border: none; - } - .sidetoc { - position: static; - width: auto; - float: none; - padding-bottom: 0px; - border: none; - } - .toc .nav > li, .toc .nav > li >a { - display: inline-block; - } - .toc li:after { - margin-left: -3px; - margin-right: 5px; - content: ", "; - color: #666666; - } - .toc .level1 > li { - display: block; - } - - .toc .level1 > li:after { - display: none; - } - .article.grid-right { - margin-left: 0; - } - .grad-top, - .grad-bottom { - display: none; - } - .toc-toggle { - display: block; - } - .sidetoggle.ng-hide { - display: none !important; - } - /*.expand-all { - display: none; - }*/ - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .breadcrumb { - white-space: inherit; - } - - /* workaround for #hashtag url is no longer needed*/ - h1:before, - h2:before, - h3:before, - h4:before { - content: ''; - display: none; - } -} - -/* For toc iframe */ -@media (max-width: 260px) { - .toc .level2 > li { - display: block; - } - - .toc .level2 > li:after { - display: none; - } -} - -/* For code snippet line highlight */ -pre > code .line-highlight { - background-color: #ffffcc; -} - -/* Alerts */ -.alert h5 { - text-transform: uppercase; - font-weight: bold; - margin-top: 0; -} - -.alert h5:before { - position:relative; - top:1px; - display:inline-block; - font-family:'Glyphicons Halflings'; - line-height:1; - -webkit-font-smoothing:antialiased; - -moz-osx-font-smoothing:grayscale; - margin-right: 5px; - font-weight: normal; -} - -.alert-info h5:before { - content:"\e086" -} - -.alert-warning h5:before { - content:"\e127" -} - -.alert-danger h5:before { - content:"\e107" -} - -/* For Embedded Video */ -div.embeddedvideo { - padding-top: 56.25%; - position: relative; - width: 100%; -} - -div.embeddedvideo iframe { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - height: 100%; -} - -/* For printer */ -@media print{ - .article.grid-right { - margin-top: 0px; - margin-left: 0px; - } - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .footer { - display: none; - } -} - -/* For tabbed content */ - -.tabGroup { - margin-top: 1rem; } - .tabGroup ul[role="tablist"] { - margin: 0; - padding: 0; - list-style: none; } - .tabGroup ul[role="tablist"] > li { - list-style: none; - display: inline-block; } - .tabGroup a[role="tab"] { - color: #6e6e6e; - box-sizing: border-box; - display: inline-block; - padding: 5px 7.5px; - text-decoration: none; - border-bottom: 2px solid #fff; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus, .tabGroup a[role="tab"][aria-selected="true"] { - border-bottom: 2px solid #0050C5; } - .tabGroup a[role="tab"][aria-selected="true"] { - color: #222; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus { - color: #0050C5; } - .tabGroup a[role="tab"]:focus { - outline: 1px solid #0050C5; - outline-offset: -1px; } - @media (min-width: 768px) { - .tabGroup a[role="tab"] { - padding: 5px 15px; } } - .tabGroup section[role="tabpanel"] { - border: 1px solid #e0e0e0; - padding: 15px; - margin: 0; - overflow: hidden; } - .tabGroup section[role="tabpanel"] > .codeHeader, - .tabGroup section[role="tabpanel"] > pre { - margin-left: -16px; - margin-right: -16px; } - .tabGroup section[role="tabpanel"] > :first-child { - margin-top: 0; } - .tabGroup section[role="tabpanel"] > pre:last-child { - display: block; - margin-bottom: -16px; } - -.mainContainer[dir='rtl'] main ul[role="tablist"] { - margin: 0; } diff --git a/docs/styles/docfx.js b/docs/styles/docfx.js deleted file mode 100644 index 384396b3d..000000000 --- a/docs/styles/docfx.js +++ /dev/null @@ -1,1175 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. -$(function () { - var active = 'active'; - var expanded = 'in'; - var collapsed = 'collapsed'; - var filtered = 'filtered'; - var show = 'show'; - var hide = 'hide'; - var util = new utility(); - - workAroundFixedHeaderForAnchors(); - highlight(); - enableSearch(); - - renderTables(); - renderAlerts(); - renderLinks(); - renderNavbar(); - renderSidebar(); - renderAffix(); - renderFooter(); - renderLogo(); - - breakText(); - renderTabs(); - - window.refresh = function (article) { - // Update markup result - if (typeof article == 'undefined' || typeof article.content == 'undefined') - console.error("Null Argument"); - $("article.content").html(article.content); - - highlight(); - renderTables(); - renderAlerts(); - renderAffix(); - renderTabs(); - } - - // Add this event listener when needed - // window.addEventListener('content-update', contentUpdate); - - function breakText() { - $(".xref").addClass("text-break"); - var texts = $(".text-break"); - texts.each(function () { - $(this).breakWord(); - }); - } - - // Styling for tables in conceptual documents using Bootstrap. - // See http://getbootstrap.com/css/#tables - function renderTables() { - $('table').addClass('table table-bordered table-striped table-condensed').wrap('
'); - } - - // Styling for alerts. - function renderAlerts() { - $('.NOTE, .TIP').addClass('alert alert-info'); - $('.WARNING').addClass('alert alert-warning'); - $('.IMPORTANT, .CAUTION').addClass('alert alert-danger'); - } - - // Enable anchors for headings. - (function () { - anchors.options = { - placement: 'left', - visible: 'touch' - }; - anchors.add('article h2:not(.no-anchor), article h3:not(.no-anchor), article h4:not(.no-anchor)'); - })(); - - // Open links to different host in a new window. - function renderLinks() { - if ($("meta[property='docfx:newtab']").attr("content") === "true") { - $(document.links).filter(function () { - return this.hostname !== window.location.hostname; - }).attr('target', '_blank'); - } - } - - // Enable highlight.js - function highlight() { - $('pre code').each(function (i, block) { - hljs.highlightBlock(block); - }); - $('pre code[highlight-lines]').each(function (i, block) { - if (block.innerHTML === "") return; - var lines = block.innerHTML.split('\n'); - - queryString = block.getAttribute('highlight-lines'); - if (!queryString) return; - - var ranges = queryString.split(','); - for (var j = 0, range; range = ranges[j++];) { - var found = range.match(/^(\d+)\-(\d+)?$/); - if (found) { - // consider region as `{startlinenumber}-{endlinenumber}`, in which {endlinenumber} is optional - var start = +found[1]; - var end = +found[2]; - if (isNaN(end) || end > lines.length) { - end = lines.length; - } - } else { - // consider region as a sigine line number - if (isNaN(range)) continue; - var start = +range; - var end = start; - } - if (start <= 0 || end <= 0 || start > end || start > lines.length) { - // skip current region if invalid - continue; - } - lines[start - 1] = '' + lines[start - 1]; - lines[end - 1] = lines[end - 1] + ''; - } - - block.innerHTML = lines.join('\n'); - }); - } - - // Support full-text-search - function enableSearch() { - var query; - var relHref = $("meta[property='docfx\\:rel']").attr("content"); - if (typeof relHref === 'undefined') { - return; - } - try { - var worker = new Worker(relHref + 'styles/search-worker.js'); - if (!worker && !window.worker) { - localSearch(); - } else { - webWorkerSearch(); - } - - renderSearchBox(); - highlightKeywords(); - addSearchEvent(); - } catch (e) { - console.error(e); - } - - //Adjust the position of search box in navbar - function renderSearchBox() { - autoCollapse(); - $(window).on('resize', autoCollapse); - $(document).on('click', '.navbar-collapse.in', function (e) { - if ($(e.target).is('a')) { - $(this).collapse('hide'); - } - }); - - function autoCollapse() { - var navbar = $('#autocollapse'); - if (navbar.height() === null) { - setTimeout(autoCollapse, 300); - } - navbar.removeClass(collapsed); - if (navbar.height() > 60) { - navbar.addClass(collapsed); - } - } - } - - // Search factory - function localSearch() { - console.log("using local search"); - var lunrIndex = lunr(function () { - this.ref('href'); - this.field('title', { boost: 50 }); - this.field('keywords', { boost: 20 }); - }); - lunr.tokenizer.seperator = /[\s\-\.]+/; - var searchData = {}; - var searchDataRequest = new XMLHttpRequest(); - - var indexPath = relHref + "index.json"; - if (indexPath) { - searchDataRequest.open('GET', indexPath); - searchDataRequest.onload = function () { - if (this.status != 200) { - return; - } - searchData = JSON.parse(this.responseText); - for (var prop in searchData) { - if (searchData.hasOwnProperty(prop)) { - lunrIndex.add(searchData[prop]); - } - } - } - searchDataRequest.send(); - } - - $("body").bind("queryReady", function () { - var hits = lunrIndex.search(query); - var results = []; - hits.forEach(function (hit) { - var item = searchData[hit.ref]; - results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords }); - }); - handleSearchResults(results); - }); - } - - function webWorkerSearch() { - console.log("using Web Worker"); - var indexReady = $.Deferred(); - - worker.onmessage = function (oEvent) { - switch (oEvent.data.e) { - case 'index-ready': - indexReady.resolve(); - break; - case 'query-ready': - var hits = oEvent.data.d; - handleSearchResults(hits); - break; - } - } - - indexReady.promise().done(function () { - $("body").bind("queryReady", function () { - worker.postMessage({ q: query }); - }); - if (query && (query.length >= 3)) { - worker.postMessage({ q: query }); - } - }); - } - - // Highlight the searching keywords - function highlightKeywords() { - var q = url('?q'); - if (q !== null) { - var keywords = q.split("%20"); - keywords.forEach(function (keyword) { - if (keyword !== "") { - $('.data-searchable *').mark(keyword); - $('article *').mark(keyword); - } - }); - } - } - - function addSearchEvent() { - $('body').bind("searchEvent", function () { - $('#search-query').keypress(function (e) { - return e.which !== 13; - }); - - $('#search-query').keyup(function () { - query = $(this).val(); - if (query.length < 3) { - flipContents("show"); - } else { - flipContents("hide"); - $("body").trigger("queryReady"); - $('#search-results>.search-list').text('Search Results for "' + query + '"'); - } - }).off("keydown"); - }); - } - - function flipContents(action) { - if (action === "show") { - $('.hide-when-search').show(); - $('#search-results').hide(); - } else { - $('.hide-when-search').hide(); - $('#search-results').show(); - } - } - - function relativeUrlToAbsoluteUrl(currentUrl, relativeUrl) { - var currentItems = currentUrl.split(/\/+/); - var relativeItems = relativeUrl.split(/\/+/); - var depth = currentItems.length - 1; - var items = []; - for (var i = 0; i < relativeItems.length; i++) { - if (relativeItems[i] === '..') { - depth--; - } else if (relativeItems[i] !== '.') { - items.push(relativeItems[i]); - } - } - return currentItems.slice(0, depth).concat(items).join('/'); - } - - function extractContentBrief(content) { - var briefOffset = 512; - var words = query.split(/\s+/g); - var queryIndex = content.indexOf(words[0]); - var briefContent; - if (queryIndex > briefOffset) { - return "..." + content.slice(queryIndex - briefOffset, queryIndex + briefOffset) + "..."; - } else if (queryIndex <= briefOffset) { - return content.slice(0, queryIndex + briefOffset) + "..."; - } - } - - function handleSearchResults(hits) { - var numPerPage = 10; - $('#pagination').empty(); - $('#pagination').removeData("twbs-pagination"); - if (hits.length === 0) { - $('#search-results>.sr-items').html('

No results found

'); - } else { - $('#pagination').twbsPagination({ - totalPages: Math.ceil(hits.length / numPerPage), - visiblePages: 5, - onPageClick: function (event, page) { - var start = (page - 1) * numPerPage; - var curHits = hits.slice(start, start + numPerPage); - $('#search-results>.sr-items').empty().append( - curHits.map(function (hit) { - var currentUrl = window.location.href; - var itemRawHref = relativeUrlToAbsoluteUrl(currentUrl, relHref + hit.href); - var itemHref = relHref + hit.href + "?q=" + query; - var itemTitle = hit.title; - var itemBrief = extractContentBrief(hit.keywords); - - var itemNode = $('
').attr('class', 'sr-item'); - var itemTitleNode = $('
').attr('class', 'item-title').append($('').attr('href', itemHref).attr("target", "_blank").text(itemTitle)); - var itemHrefNode = $('
').attr('class', 'item-href').text(itemRawHref); - var itemBriefNode = $('
').attr('class', 'item-brief').text(itemBrief); - itemNode.append(itemTitleNode).append(itemHrefNode).append(itemBriefNode); - return itemNode; - }) - ); - query.split(/\s+/).forEach(function (word) { - if (word !== '') { - $('#search-results>.sr-items *').mark(word); - } - }); - } - }); - } - } - }; - - // Update href in navbar - function renderNavbar() { - var navbar = $('#navbar ul')[0]; - if (typeof (navbar) === 'undefined') { - loadNavbar(); - } else { - $('#navbar ul a.active').parents('li').addClass(active); - renderBreadcrumb(); - showSearch(); - } - - function showSearch() { - if ($('#search-results').length !== 0) { - $('#search').show(); - $('body').trigger("searchEvent"); - } - } - - function loadNavbar() { - var navbarPath = $("meta[property='docfx\\:navrel']").attr("content"); - if (!navbarPath) { - return; - } - navbarPath = navbarPath.replace(/\\/g, '/'); - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content") || ''; - if (tocPath) tocPath = tocPath.replace(/\\/g, '/'); - $.get(navbarPath, function (data) { - $(data).find("#toc>ul").appendTo("#navbar"); - showSearch(); - var index = navbarPath.lastIndexOf('/'); - var navrel = ''; - if (index > -1) { - navrel = navbarPath.substr(0, index + 1); - } - $('#navbar>ul').addClass('navbar-nav'); - var currentAbsPath = util.getAbsolutePath(window.location.pathname); - // set active item - $('#navbar').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = navrel + href; - $(e).attr("href", href); - - var isActive = false; - var originalHref = e.name; - if (originalHref) { - originalHref = navrel + originalHref; - if (util.getDirectory(util.getAbsolutePath(originalHref)) === util.getDirectory(util.getAbsolutePath(tocPath))) { - isActive = true; - } - } else { - if (util.getAbsolutePath(href) === currentAbsPath) { - var dropdown = $(e).attr('data-toggle') == "dropdown" - if (!dropdown) { - isActive = true; - } - } - } - if (isActive) { - $(e).addClass(active); - } - } - }); - renderNavbar(); - }); - } - } - - function renderSidebar() { - var sidetoc = $('#sidetoggle .sidetoc')[0]; - if (typeof (sidetoc) === 'undefined') { - loadToc(); - } else { - registerTocEvents(); - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - // Scroll to active item - var top = 0; - $('#toc a.active').parents('li').each(function (i, e) { - $(e).addClass(active).addClass(expanded); - $(e).children('a').addClass(active); - top += $(e).position().top; - }) - $('.sidetoc').scrollTop(top - 50); - - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - renderBreadcrumb(); - } - - function registerTocEvents() { - var tocFilterInput = $('#toc_filter_input'); - var tocFilterClearButton = $('#toc_filter_clear'); - - $('.toc .nav > li > .expand-stub').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - $('.toc .nav > li > .expand-stub + a:not([href])').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - tocFilterInput.on('input', function (e) { - var val = this.value; - //Save filter string to local session storage - if (typeof(Storage) !== "undefined") { - sessionStorage.filterString = val; - } - if (val === '') { - // Clear 'filtered' class - $('#toc li').removeClass(filtered).removeClass(hide); - tocFilterClearButton.fadeOut(); - return; - } - tocFilterClearButton.fadeIn(); - - // Get leaf nodes - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length === 0 - }).each(function (i, anchor) { - var text = $(anchor).attr('title'); - var parent = $(anchor).parent(); - var parentNodes = parent.parents('ul>li'); - for (var i = 0; i < parentNodes.length; i++) { - var parentText = $(parentNodes[i]).children('a').attr('title'); - if (parentText) text = parentText + '.' + text; - }; - if (filterNavItem(text, val)) { - parent.addClass(show); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - } - }); - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length > 0 - }).each(function (i, anchor) { - var parent = $(anchor).parent(); - if (parent.find('li.show').length > 0) { - parent.addClass(show); - parent.addClass(filtered); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - parent.removeClass(filtered); - } - }) - - function filterNavItem(name, text) { - if (!text) return true; - if (name && name.toLowerCase().indexOf(text.toLowerCase()) > -1) return true; - return false; - } - }); - - // toc filter clear button - tocFilterClearButton.hide(); - tocFilterClearButton.on("click", function(e){ - tocFilterInput.val(""); - tocFilterInput.trigger('input'); - if (typeof(Storage) !== "undefined") { - sessionStorage.filterString = ""; - } - }); - - //Set toc filter from local session storage on page load - if (typeof(Storage) !== "undefined") { - tocFilterInput.val(sessionStorage.filterString); - tocFilterInput.trigger('input'); - } - } - - function loadToc() { - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content"); - if (!tocPath) { - return; - } - tocPath = tocPath.replace(/\\/g, '/'); - $('#sidetoc').load(tocPath + " #sidetoggle > div", function () { - var index = tocPath.lastIndexOf('/'); - var tocrel = ''; - if (index > -1) { - tocrel = tocPath.substr(0, index + 1); - } - var currentHref = util.getAbsolutePath(window.location.pathname); - $('#sidetoc').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = tocrel + href; - $(e).attr("href", href); - } - - if (util.getAbsolutePath(e.href) === currentHref) { - $(e).addClass(active); - } - - $(e).breakWord(); - }); - - renderSidebar(); - }); - } - } - - function renderBreadcrumb() { - var breadcrumb = []; - $('#navbar a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - $('#toc a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - - var html = util.formList(breadcrumb, 'breadcrumb'); - $('#breadcrumb').html(html); - } - - //Setup Affix - function renderAffix() { - var hierarchy = getHierarchy(); - if (hierarchy && hierarchy.length > 0) { - var html = '
In This Article
' - html += util.formList(hierarchy, ['nav', 'bs-docs-sidenav']); - $("#affix").empty().append(html); - if ($('footer').is(':visible')) { - $(".sideaffix").css("bottom", "70px"); - } - $('#affix a').click(function(e) { - var scrollspy = $('[data-spy="scroll"]').data()['bs.scrollspy']; - var target = e.target.hash; - if (scrollspy && target) { - scrollspy.activate(target); - } - }); - } - - function getHierarchy() { - // supported headers are h1, h2, h3, and h4 - var $headers = $($.map(['h1', 'h2', 'h3', 'h4'], function (h) { return ".article article " + h; }).join(", ")); - - // a stack of hierarchy items that are currently being built - var stack = []; - $headers.each(function (i, e) { - if (!e.id) { - return; - } - - var item = { - name: htmlEncode($(e).text()), - href: "#" + e.id, - items: [] - }; - - if (!stack.length) { - stack.push({ type: e.tagName, siblings: [item] }); - return; - } - - var frame = stack[stack.length - 1]; - if (e.tagName === frame.type) { - frame.siblings.push(item); - } else if (e.tagName[1] > frame.type[1]) { - // we are looking at a child of the last element of frame.siblings. - // push a frame onto the stack. After we've finished building this item's children, - // we'll attach it as a child of the last element - stack.push({ type: e.tagName, siblings: [item] }); - } else { // e.tagName[1] < frame.type[1] - // we are looking at a sibling of an ancestor of the current item. - // pop frames from the stack, building items as we go, until we reach the correct level at which to attach this item. - while (e.tagName[1] < stack[stack.length - 1].type[1]) { - buildParent(); - } - if (e.tagName === stack[stack.length - 1].type) { - stack[stack.length - 1].siblings.push(item); - } else { - stack.push({ type: e.tagName, siblings: [item] }); - } - } - }); - while (stack.length > 1) { - buildParent(); - } - - function buildParent() { - var childrenToAttach = stack.pop(); - var parentFrame = stack[stack.length - 1]; - var parent = parentFrame.siblings[parentFrame.siblings.length - 1]; - $.each(childrenToAttach.siblings, function (i, child) { - parent.items.push(child); - }); - } - if (stack.length > 0) { - - var topLevel = stack.pop().siblings; - if (topLevel.length === 1) { // if there's only one topmost header, dump it - return topLevel[0].items; - } - return topLevel; - } - return undefined; - } - - function htmlEncode(str) { - if (!str) return str; - return str - .replace(/&/g, '&') - .replace(/"/g, '"') - .replace(/'/g, ''') - .replace(//g, '>'); - } - - function htmlDecode(value) { - if (!str) return str; - return value - .replace(/"/g, '"') - .replace(/'/g, "'") - .replace(/</g, '<') - .replace(/>/g, '>') - .replace(/&/g, '&'); - } - - function cssEscape(str) { - // see: http://stackoverflow.com/questions/2786538/need-to-escape-a-special-character-in-a-jquery-selector-string#answer-2837646 - if (!str) return str; - return str - .replace(/[!"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, "\\$&"); - } - } - - // Show footer - function renderFooter() { - initFooter(); - $(window).on("scroll", showFooterCore); - - function initFooter() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").show(); - } else { - resetBottomCss(); - $("footer").hide(); - } - } - - function showFooterCore() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").fadeIn(); - } else { - resetBottomCss(); - $("footer").fadeOut(); - } - } - - function needFooter() { - var scrollHeight = $(document).height(); - var scrollPosition = $(window).height() + $(window).scrollTop(); - return (scrollHeight - scrollPosition) < 1; - } - - function resetBottomCss() { - $(".sidetoc").removeClass("shiftup"); - $(".sideaffix").removeClass("shiftup"); - } - - function shiftUpBottomCss() { - $(".sidetoc").addClass("shiftup"); - $(".sideaffix").addClass("shiftup"); - } - } - - function renderLogo() { - // For LOGO SVG - // Replace SVG with inline SVG - // http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement - jQuery('img.svg').each(function () { - var $img = jQuery(this); - var imgID = $img.attr('id'); - var imgClass = $img.attr('class'); - var imgURL = $img.attr('src'); - - jQuery.get(imgURL, function (data) { - // Get the SVG tag, ignore the rest - var $svg = jQuery(data).find('svg'); - - // Add replaced image's ID to the new SVG - if (typeof imgID !== 'undefined') { - $svg = $svg.attr('id', imgID); - } - // Add replaced image's classes to the new SVG - if (typeof imgClass !== 'undefined') { - $svg = $svg.attr('class', imgClass + ' replaced-svg'); - } - - // Remove any invalid XML tags as per http://validator.w3.org - $svg = $svg.removeAttr('xmlns:a'); - - // Replace image with new SVG - $img.replaceWith($svg); - - }, 'xml'); - }); - } - - function renderTabs() { - var contentAttrs = { - id: 'data-bi-id', - name: 'data-bi-name', - type: 'data-bi-type' - }; - - var Tab = (function () { - function Tab(li, a, section) { - this.li = li; - this.a = a; - this.section = section; - } - Object.defineProperty(Tab.prototype, "tabIds", { - get: function () { return this.a.getAttribute('data-tab').split(' '); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "condition", { - get: function () { return this.a.getAttribute('data-condition'); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "visible", { - get: function () { return !this.li.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.li.removeAttribute('hidden'); - this.li.removeAttribute('aria-hidden'); - } - else { - this.li.setAttribute('hidden', 'hidden'); - this.li.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "selected", { - get: function () { return !this.section.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.a.setAttribute('aria-selected', 'true'); - this.a.tabIndex = 0; - this.section.removeAttribute('hidden'); - this.section.removeAttribute('aria-hidden'); - } - else { - this.a.setAttribute('aria-selected', 'false'); - this.a.tabIndex = -1; - this.section.setAttribute('hidden', 'hidden'); - this.section.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Tab.prototype.focus = function () { - this.a.focus(); - }; - return Tab; - }()); - - initTabs(document.body); - - function initTabs(container) { - var queryStringTabs = readTabsQueryStringParam(); - var elements = container.querySelectorAll('.tabGroup'); - var state = { groups: [], selectedTabs: [] }; - for (var i = 0; i < elements.length; i++) { - var group = initTabGroup(elements.item(i)); - if (!group.independent) { - updateVisibilityAndSelection(group, state); - state.groups.push(group); - } - } - container.addEventListener('click', function (event) { return handleClick(event, state); }); - if (state.groups.length === 0) { - return state; - } - selectTabs(queryStringTabs, container); - updateTabsQueryStringParam(state); - notifyContentUpdated(); - return state; - } - - function initTabGroup(element) { - var group = { - independent: element.hasAttribute('data-tab-group-independent'), - tabs: [] - }; - var li = element.firstElementChild.firstElementChild; - while (li) { - var a = li.firstElementChild; - a.setAttribute(contentAttrs.name, 'tab'); - var dataTab = a.getAttribute('data-tab').replace(/\+/g, ' '); - a.setAttribute('data-tab', dataTab); - var section = element.querySelector("[id=\"" + a.getAttribute('aria-controls') + "\"]"); - var tab = new Tab(li, a, section); - group.tabs.push(tab); - li = li.nextElementSibling; - } - element.setAttribute(contentAttrs.name, 'tab-group'); - element.tabGroup = group; - return group; - } - - function updateVisibilityAndSelection(group, state) { - var anySelected = false; - var firstVisibleTab; - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.visible = tab.condition === null || state.selectedTabs.indexOf(tab.condition) !== -1; - if (tab.visible) { - if (!firstVisibleTab) { - firstVisibleTab = tab; - } - } - tab.selected = tab.visible && arraysIntersect(state.selectedTabs, tab.tabIds); - anySelected = anySelected || tab.selected; - } - if (!anySelected) { - for (var _b = 0, _c = group.tabs; _b < _c.length; _b++) { - var tabIds = _c[_b].tabIds; - for (var _d = 0, tabIds_1 = tabIds; _d < tabIds_1.length; _d++) { - var tabId = tabIds_1[_d]; - var index = state.selectedTabs.indexOf(tabId); - if (index === -1) { - continue; - } - state.selectedTabs.splice(index, 1); - } - } - var tab = firstVisibleTab; - tab.selected = true; - state.selectedTabs.push(tab.tabIds[0]); - } - } - - function getTabInfoFromEvent(event) { - if (!(event.target instanceof HTMLElement)) { - return null; - } - var anchor = event.target.closest('a[data-tab]'); - if (anchor === null) { - return null; - } - var tabIds = anchor.getAttribute('data-tab').split(' '); - var group = anchor.parentElement.parentElement.parentElement.tabGroup; - if (group === undefined) { - return null; - } - return { tabIds: tabIds, group: group, anchor: anchor }; - } - - function handleClick(event, state) { - var info = getTabInfoFromEvent(event); - if (info === null) { - return; - } - event.preventDefault(); - info.anchor.href = 'javascript:'; - setTimeout(function () { return info.anchor.href = '#' + info.anchor.getAttribute('aria-controls'); }); - var tabIds = info.tabIds, group = info.group; - var originalTop = info.anchor.getBoundingClientRect().top; - if (group.independent) { - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.selected = arraysIntersect(tab.tabIds, tabIds); - } - } - else { - if (arraysIntersect(state.selectedTabs, tabIds)) { - return; - } - var previousTabId = group.tabs.filter(function (t) { return t.selected; })[0].tabIds[0]; - state.selectedTabs.splice(state.selectedTabs.indexOf(previousTabId), 1, tabIds[0]); - for (var _b = 0, _c = state.groups; _b < _c.length; _b++) { - var group_1 = _c[_b]; - updateVisibilityAndSelection(group_1, state); - } - updateTabsQueryStringParam(state); - } - notifyContentUpdated(); - var top = info.anchor.getBoundingClientRect().top; - if (top !== originalTop && event instanceof MouseEvent) { - window.scrollTo(0, window.pageYOffset + top - originalTop); - } - } - - function selectTabs(tabIds) { - for (var _i = 0, tabIds_1 = tabIds; _i < tabIds_1.length; _i++) { - var tabId = tabIds_1[_i]; - var a = document.querySelector(".tabGroup > ul > li > a[data-tab=\"" + tabId + "\"]:not([hidden])"); - if (a === null) { - return; - } - a.dispatchEvent(new CustomEvent('click', { bubbles: true })); - } - } - - function readTabsQueryStringParam() { - var qs = parseQueryString(); - var t = qs.tabs; - if (t === undefined || t === '') { - return []; - } - return t.split(','); - } - - function updateTabsQueryStringParam(state) { - var qs = parseQueryString(); - qs.tabs = state.selectedTabs.join(); - var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash; - if (location.href === url) { - return; - } - history.replaceState({}, document.title, url); - } - - function toQueryString(args) { - var parts = []; - for (var name_1 in args) { - if (args.hasOwnProperty(name_1) && args[name_1] !== '' && args[name_1] !== null && args[name_1] !== undefined) { - parts.push(encodeURIComponent(name_1) + '=' + encodeURIComponent(args[name_1])); - } - } - return parts.join('&'); - } - - function parseQueryString(queryString) { - var match; - var pl = /\+/g; - var search = /([^&=]+)=?([^&]*)/g; - var decode = function (s) { return decodeURIComponent(s.replace(pl, ' ')); }; - if (queryString === undefined) { - queryString = ''; - } - queryString = queryString.substring(1); - var urlParams = {}; - while (match = search.exec(queryString)) { - urlParams[decode(match[1])] = decode(match[2]); - } - return urlParams; - } - - function arraysIntersect(a, b) { - for (var _i = 0, a_1 = a; _i < a_1.length; _i++) { - var itemA = a_1[_i]; - for (var _a = 0, b_1 = b; _a < b_1.length; _a++) { - var itemB = b_1[_a]; - if (itemA === itemB) { - return true; - } - } - } - return false; - } - - function notifyContentUpdated() { - // Dispatch this event when needed - // window.dispatchEvent(new CustomEvent('content-update')); - } - } - - function utility() { - this.getAbsolutePath = getAbsolutePath; - this.isRelativePath = isRelativePath; - this.isAbsolutePath = isAbsolutePath; - this.getDirectory = getDirectory; - this.formList = formList; - - function getAbsolutePath(href) { - // Use anchor to normalize href - var anchor = $('
')[0]; - // Ignore protocal, remove search and query - return anchor.host + anchor.pathname; - } - - function isRelativePath(href) { - if (href === undefined || href === '' || href[0] === '/') { - return false; - } - return !isAbsolutePath(href); - } - - function isAbsolutePath(href) { - return (/^(?:[a-z]+:)?\/\//i).test(href); - } - - function getDirectory(href) { - if (!href) return ''; - var index = href.lastIndexOf('/'); - if (index == -1) return ''; - if (index > -1) { - return href.substr(0, index); - } - } - - function formList(item, classes) { - var level = 1; - var model = { - items: item - }; - var cls = [].concat(classes).join(" "); - return getList(model, cls); - - function getList(model, cls) { - if (!model || !model.items) return null; - var l = model.items.length; - if (l === 0) return null; - var html = '
    '; - level++; - for (var i = 0; i < l; i++) { - var item = model.items[i]; - var href = item.href; - var name = item.name; - if (!name) continue; - html += href ? '
  • ' + name + '' : '
  • ' + name; - html += getList(item, cls) || ''; - html += '
  • '; - } - html += '
'; - return html; - } - } - - /** - * Add into long word. - * @param {String} text - The word to break. It should be in plain text without HTML tags. - */ - function breakPlainText(text) { - if (!text) return text; - return text.replace(/([a-z])([A-Z])|(\.)(\w)/g, '$1$3$2$4') - } - - /** - * Add into long word. The jQuery element should contain no html tags. - * If the jQuery element contains tags, this function will not change the element. - */ - $.fn.breakWord = function () { - if (this.html() == this.text()) { - this.html(function (index, text) { - return breakPlainText(text); - }) - } - return this; - } - } - - // adjusted from https://stackoverflow.com/a/13067009/1523776 - function workAroundFixedHeaderForAnchors() { - var HISTORY_SUPPORT = !!(history && history.pushState); - var ANCHOR_REGEX = /^#[^ ]+$/; - - function getFixedOffset() { - return $('header').first().height(); - } - - /** - * If the provided href is an anchor which resolves to an element on the - * page, scroll to it. - * @param {String} href - * @return {Boolean} - Was the href an anchor. - */ - function scrollIfAnchor(href, pushToHistory) { - var match, rect, anchorOffset; - - if (!ANCHOR_REGEX.test(href)) { - return false; - } - - match = document.getElementById(href.slice(1)); - - if (match) { - rect = match.getBoundingClientRect(); - anchorOffset = window.pageYOffset + rect.top - getFixedOffset(); - window.scrollTo(window.pageXOffset, anchorOffset); - - // Add the state to history as-per normal anchor links - if (HISTORY_SUPPORT && pushToHistory) { - history.pushState({}, document.title, location.pathname + href); - } - } - - return !!match; - } - - /** - * Attempt to scroll to the current location's hash. - */ - function scrollToCurrent() { - scrollIfAnchor(window.location.hash); - } - - /** - * If the click event's target was an anchor, fix the scroll position. - */ - function delegateAnchors(e) { - var elem = e.target; - - if (scrollIfAnchor(elem.getAttribute('href'), true)) { - e.preventDefault(); - } - } - - $(window).on('hashchange', scrollToCurrent); - - $(window).load(function () { - // scroll to the anchor if present, offset by the header - scrollToCurrent(); - }); - - $(document).ready(function () { - // Exclude tabbed content case - $('a:not([data-tab])').click(function (e) { delegateAnchors(e); }); - }); - } -}); diff --git a/docs/styles/docfx.vendor.css b/docs/styles/docfx.vendor.css deleted file mode 100644 index 91bb610c8..000000000 --- a/docs/styles/docfx.vendor.css +++ /dev/null @@ -1,1464 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -.label,sub,sup{vertical-align:baseline} -hr,img{border:0} -body,figure{margin:0} -.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu{float:left} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px} -html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%} -article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block} -audio,canvas,progress,video{display:inline-block;vertical-align:baseline} -audio:not([controls]){display:none;height:0} -[hidden],template{display:none} -a{background-color:transparent} -a:active,a:hover{outline:0} -b,optgroup,strong{font-weight:700} -dfn{font-style:italic} -h1{margin:.67em 0} -mark{color:#000;background:#ff0} -sub,sup{position:relative;font-size:75%;line-height:0} -sup{top:-.5em} -sub{bottom:-.25em} -img{vertical-align:middle} -svg:not(:root){overflow:hidden} -hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} -pre,textarea{overflow:auto} -code,kbd,pre,samp{font-size:1em} -button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit} -.glyphicon,address{font-style:normal} -button{overflow:visible} -button,select{text-transform:none} -button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer} -button[disabled],html input[disabled]{cursor:default} -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0} -input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0} -input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto} -input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none} -table{border-spacing:0;border-collapse:collapse} -td,th{padding:0} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print{blockquote,img,pre,tr{page-break-inside:avoid} -*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important} -a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href) ")"} -abbr[title]:after{content:" (" attr(title) ")"} -a[href^="javascript:"]:after,a[href^="#"]:after{content:""} -blockquote,pre{border:1px solid #999} -thead{display:table-header-group} -img{max-width:100%!important} -h2,h3,p{orphans:3;widows:3} -h2,h3{page-break-after:avoid} -.navbar{display:none} -.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important} -.label{border:1px solid #000} -.table{border-collapse:collapse!important} -.table td,.table th{background-color:#fff!important} -.table-bordered td,.table-bordered th{border:1px solid #ddd!important} -} -.dropdown-menu,.modal-content{-webkit-background-clip:padding-box} -.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-warning{background-image:none} -.img-thumbnail,body{background-color:#fff} -@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')} -.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\002a"} -.glyphicon-plus:before{content:"\002b"} -.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"} -.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"} -.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:transparent} -body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333} -button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{color:#337ab7;text-decoration:none} -a:focus,a:hover{color:#23527c;text-decoration:underline} -a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:6px} -.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee} -.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role=button]{cursor:pointer} -.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777} -.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%} -.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px} -.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%} -.h1,h1{font-size:36px} -.h2,h2{font-size:30px} -.h3,h3{font-size:24px} -.h4,h4{font-size:18px} -.h5,h5{font-size:14px} -.h6,h6{font-size:12px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4} -dt,kbd kbd,label{font-weight:700} -address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143} -@media (min-width:768px){.lead{font-size:21px} -} -.small,small{font-size:85%} -.mark,mark{padding:.2em;background-color:#fcf8e3} -.list-inline,.list-unstyled{padding-left:0;list-style:none} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#777} -.text-primary{color:#337ab7} -a.text-primary:focus,a.text-primary:hover{color:#286090} -.text-success{color:#3c763d} -a.text-success:focus,a.text-success:hover{color:#2b542c} -.text-info{color:#31708f} -a.text-info:focus,a.text-info:hover{color:#245269} -.text-warning{color:#8a6d3b} -a.text-warning:focus,a.text-warning:hover{color:#66512c} -.text-danger{color:#a94442} -a.text-danger:focus,a.text-danger:hover{color:#843534} -.bg-primary{color:#fff;background-color:#337ab7} -a.bg-primary:focus,a.bg-primary:hover{background-color:#286090} -.bg-success{background-color:#dff0d8} -a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3} -.bg-info{background-color:#d9edf7} -a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee} -.bg-warning{background-color:#fcf8e3} -a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5} -.bg-danger{background-color:#f2dede} -a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9} -pre code,table{background-color:transparent} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee} -dl,ol,ul{margin-top:0} -blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0} -address,dl{margin-bottom:20px} -ol,ul{margin-bottom:10px} -.list-inline{margin-left:-5px} -.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px} -dd{margin-left:0} -@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap} -.dl-horizontal dd{margin-left:180px} -.container{width:750px} -} -abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee} -blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#777} -legend,pre{display:block;color:#333} -blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0} -code,kbd{padding:2px 4px;font-size:90%} -caption,th{text-align:left} -.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''} -.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'} -code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace} -code{color:#c7254e;background-color:#f9f2f4;border-radius:4px} -kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)} -kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none} -pre{padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px} -.container,.container-fluid{margin-right:auto;margin-left:auto} -pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0} -.container,.container-fluid{padding-right:15px;padding-left:15px} -.pre-scrollable{overflow-y:scroll} -@media (min-width:992px){.container{width:970px} -} -@media (min-width:1200px){.container{width:1170px} -} -.row{margin-right:-15px;margin-left:-15px} -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666667%} -.col-xs-10{width:83.33333333%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666667%} -.col-xs-7{width:58.33333333%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666667%} -.col-xs-4{width:33.33333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.66666667%} -.col-xs-1{width:8.33333333%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666667%} -.col-xs-pull-10{right:83.33333333%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666667%} -.col-xs-pull-7{right:58.33333333%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666667%} -.col-xs-pull-4{right:33.33333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.66666667%} -.col-xs-pull-1{right:8.33333333%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666667%} -.col-xs-push-10{left:83.33333333%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666667%} -.col-xs-push-7{left:58.33333333%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666667%} -.col-xs-push-4{left:33.33333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.66666667%} -.col-xs-push-1{left:8.33333333%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666667%} -.col-xs-offset-10{margin-left:83.33333333%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666667%} -.col-xs-offset-7{margin-left:58.33333333%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666667%} -.col-xs-offset-4{margin-left:33.33333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.66666667%} -.col-xs-offset-1{margin-left:8.33333333%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left} -.col-sm-12{width:100%} -.col-sm-11{width:91.66666667%} -.col-sm-10{width:83.33333333%} -.col-sm-9{width:75%} -.col-sm-8{width:66.66666667%} -.col-sm-7{width:58.33333333%} -.col-sm-6{width:50%} -.col-sm-5{width:41.66666667%} -.col-sm-4{width:33.33333333%} -.col-sm-3{width:25%} -.col-sm-2{width:16.66666667%} -.col-sm-1{width:8.33333333%} -.col-sm-pull-12{right:100%} -.col-sm-pull-11{right:91.66666667%} -.col-sm-pull-10{right:83.33333333%} -.col-sm-pull-9{right:75%} -.col-sm-pull-8{right:66.66666667%} -.col-sm-pull-7{right:58.33333333%} -.col-sm-pull-6{right:50%} -.col-sm-pull-5{right:41.66666667%} -.col-sm-pull-4{right:33.33333333%} -.col-sm-pull-3{right:25%} -.col-sm-pull-2{right:16.66666667%} -.col-sm-pull-1{right:8.33333333%} -.col-sm-pull-0{right:auto} -.col-sm-push-12{left:100%} -.col-sm-push-11{left:91.66666667%} -.col-sm-push-10{left:83.33333333%} -.col-sm-push-9{left:75%} -.col-sm-push-8{left:66.66666667%} -.col-sm-push-7{left:58.33333333%} -.col-sm-push-6{left:50%} -.col-sm-push-5{left:41.66666667%} -.col-sm-push-4{left:33.33333333%} -.col-sm-push-3{left:25%} -.col-sm-push-2{left:16.66666667%} -.col-sm-push-1{left:8.33333333%} -.col-sm-push-0{left:auto} -.col-sm-offset-12{margin-left:100%} -.col-sm-offset-11{margin-left:91.66666667%} -.col-sm-offset-10{margin-left:83.33333333%} -.col-sm-offset-9{margin-left:75%} -.col-sm-offset-8{margin-left:66.66666667%} -.col-sm-offset-7{margin-left:58.33333333%} -.col-sm-offset-6{margin-left:50%} -.col-sm-offset-5{margin-left:41.66666667%} -.col-sm-offset-4{margin-left:33.33333333%} -.col-sm-offset-3{margin-left:25%} -.col-sm-offset-2{margin-left:16.66666667%} -.col-sm-offset-1{margin-left:8.33333333%} -.col-sm-offset-0{margin-left:0} -} -@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left} -.col-md-12{width:100%} -.col-md-11{width:91.66666667%} -.col-md-10{width:83.33333333%} -.col-md-9{width:75%} -.col-md-8{width:66.66666667%} -.col-md-7{width:58.33333333%} -.col-md-6{width:50%} -.col-md-5{width:41.66666667%} -.col-md-4{width:33.33333333%} -.col-md-3{width:25%} -.col-md-2{width:16.66666667%} -.col-md-1{width:8.33333333%} -.col-md-pull-12{right:100%} -.col-md-pull-11{right:91.66666667%} -.col-md-pull-10{right:83.33333333%} -.col-md-pull-9{right:75%} -.col-md-pull-8{right:66.66666667%} -.col-md-pull-7{right:58.33333333%} -.col-md-pull-6{right:50%} -.col-md-pull-5{right:41.66666667%} -.col-md-pull-4{right:33.33333333%} -.col-md-pull-3{right:25%} -.col-md-pull-2{right:16.66666667%} -.col-md-pull-1{right:8.33333333%} -.col-md-pull-0{right:auto} -.col-md-push-12{left:100%} -.col-md-push-11{left:91.66666667%} -.col-md-push-10{left:83.33333333%} -.col-md-push-9{left:75%} -.col-md-push-8{left:66.66666667%} -.col-md-push-7{left:58.33333333%} -.col-md-push-6{left:50%} -.col-md-push-5{left:41.66666667%} -.col-md-push-4{left:33.33333333%} -.col-md-push-3{left:25%} -.col-md-push-2{left:16.66666667%} -.col-md-push-1{left:8.33333333%} -.col-md-push-0{left:auto} -.col-md-offset-12{margin-left:100%} -.col-md-offset-11{margin-left:91.66666667%} -.col-md-offset-10{margin-left:83.33333333%} -.col-md-offset-9{margin-left:75%} -.col-md-offset-8{margin-left:66.66666667%} -.col-md-offset-7{margin-left:58.33333333%} -.col-md-offset-6{margin-left:50%} -.col-md-offset-5{margin-left:41.66666667%} -.col-md-offset-4{margin-left:33.33333333%} -.col-md-offset-3{margin-left:25%} -.col-md-offset-2{margin-left:16.66666667%} -.col-md-offset-1{margin-left:8.33333333%} -.col-md-offset-0{margin-left:0} -} -@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left} -.col-lg-12{width:100%} -.col-lg-11{width:91.66666667%} -.col-lg-10{width:83.33333333%} -.col-lg-9{width:75%} -.col-lg-8{width:66.66666667%} -.col-lg-7{width:58.33333333%} -.col-lg-6{width:50%} -.col-lg-5{width:41.66666667%} -.col-lg-4{width:33.33333333%} -.col-lg-3{width:25%} -.col-lg-2{width:16.66666667%} -.col-lg-1{width:8.33333333%} -.col-lg-pull-12{right:100%} -.col-lg-pull-11{right:91.66666667%} -.col-lg-pull-10{right:83.33333333%} -.col-lg-pull-9{right:75%} -.col-lg-pull-8{right:66.66666667%} -.col-lg-pull-7{right:58.33333333%} -.col-lg-pull-6{right:50%} -.col-lg-pull-5{right:41.66666667%} -.col-lg-pull-4{right:33.33333333%} -.col-lg-pull-3{right:25%} -.col-lg-pull-2{right:16.66666667%} -.col-lg-pull-1{right:8.33333333%} -.col-lg-pull-0{right:auto} -.col-lg-push-12{left:100%} -.col-lg-push-11{left:91.66666667%} -.col-lg-push-10{left:83.33333333%} -.col-lg-push-9{left:75%} -.col-lg-push-8{left:66.66666667%} -.col-lg-push-7{left:58.33333333%} -.col-lg-push-6{left:50%} -.col-lg-push-5{left:41.66666667%} -.col-lg-push-4{left:33.33333333%} -.col-lg-push-3{left:25%} -.col-lg-push-2{left:16.66666667%} -.col-lg-push-1{left:8.33333333%} -.col-lg-push-0{left:auto} -.col-lg-offset-12{margin-left:100%} -.col-lg-offset-11{margin-left:91.66666667%} -.col-lg-offset-10{margin-left:83.33333333%} -.col-lg-offset-9{margin-left:75%} -.col-lg-offset-8{margin-left:66.66666667%} -.col-lg-offset-7{margin-left:58.33333333%} -.col-lg-offset-6{margin-left:50%} -.col-lg-offset-5{margin-left:41.66666667%} -.col-lg-offset-4{margin-left:33.33333333%} -.col-lg-offset-3{margin-left:25%} -.col-lg-offset-2{margin-left:16.66666667%} -.col-lg-offset-1{margin-left:8.33333333%} -.col-lg-offset-0{margin-left:0} -} -caption{padding-top:8px;padding-bottom:8px;color:#777} -.table{width:100%;max-width:100%;margin-bottom:20px} -.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd} -.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0} -.table>tbody+tbody{border-top:2px solid #ddd} -.table .table{background-color:#fff} -.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px} -.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd} -.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9} -.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5} -table col[class*=col-]{position:static;display:table-column;float:none} -table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none} -.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8} -.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8} -.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6} -.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7} -.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3} -.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3} -.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc} -.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede} -.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc} -.table-responsive{min-height:.01%;overflow-x:auto} -@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd} -.table-responsive>.table{margin-bottom:0} -.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap} -.table-responsive>.table-bordered{border:0} -.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -} -fieldset,legend{padding:0;border:0} -fieldset{min-width:0;margin:0} -legend{width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px} -input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none} -input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal} -.form-control,output{font-size:14px;line-height:1.42857143;color:#555;display:block} -input[type=file]{display:block} -input[type=range]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -output{padding-top:7px} -.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s} -.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)} -.form-control::-moz-placeholder{color:#999;opacity:1} -.form-control:-ms-input-placeholder{color:#999} -.form-control::-webkit-input-placeholder{color:#999} -.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d} -.form-control::-ms-expand{background-color:transparent;border:0} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1} -.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed} -textarea.form-control{height:auto} -@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px} -.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px} -.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px} -} -.form-group{margin-bottom:15px} -.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px} -.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer} -.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px} -.checkbox+.checkbox,.radio+.radio{margin-top:-5px} -.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer} -.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px} -.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed} -.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0} -.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0} -.form-group-sm .form-control,.input-sm{padding:5px 10px;border-radius:3px;font-size:12px} -.input-sm{height:30px;line-height:1.5} -select.input-sm{height:30px;line-height:30px} -select[multiple].input-sm,textarea.input-sm{height:auto} -.form-group-sm .form-control{height:30px;line-height:1.5} -.form-group-lg .form-control,.input-lg{border-radius:6px;padding:10px 16px;font-size:18px} -.form-group-sm select.form-control{height:30px;line-height:30px} -.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto} -.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5} -.input-lg{height:46px;line-height:1.3333333} -select.input-lg{height:46px;line-height:46px} -select[multiple].input-lg,textarea.input-lg{height:auto} -.form-group-lg .form-control{height:46px;line-height:1.3333333} -.form-group-lg select.form-control{height:46px;line-height:46px} -.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto} -.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333} -.has-feedback{position:relative} -.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.collapsing,.dropdown,.dropup{position:relative} -.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px} -.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168} -.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d} -.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b} -.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b} -.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b} -.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442} -.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483} -.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373} -@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block} -.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle} -.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} -.form-inline .input-group{display:inline-table;vertical-align:middle} -.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto} -.form-inline .input-group>.form-control{width:100%} -.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.form-inline .checkbox label,.form-inline .radio label{padding-left:0} -.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0} -.form-inline .has-feedback .form-control-feedback{top:0} -.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right} -} -.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0} -.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px} -.form-horizontal .form-group{margin-right:-15px;margin-left:-15px} -.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px} -.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px} -} -.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:4px} -.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none} -.btn.active,.btn:active{outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65} -a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none} -.btn-default{color:#333;background-color:#fff;border-color:#ccc} -.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c} -.btn-default.active,.btn-default:active,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad} -.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c} -.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc} -.btn-default .badge{color:#fff;background-color:#333} -.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4} -.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40} -.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74} -.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40} -.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4} -.btn-primary .badge{color:#337ab7;background-color:#fff} -.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c} -.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625} -.btn-success.active,.btn-success:active,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439} -.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625} -.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none} -.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c} -.btn-success .badge{color:#5cb85c;background-color:#fff} -.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da} -.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85} -.btn-info.active,.btn-info:active,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc} -.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85} -.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da} -.btn-info .badge{color:#5bc0de;background-color:#fff} -.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236} -.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d} -.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512} -.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d} -.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236} -.btn-warning .badge{color:#f0ad4e;background-color:#fff} -.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a} -.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19} -.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925} -.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19} -.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a} -.btn-danger .badge{color:#d9534f;background-color:#fff} -.btn-link{font-weight:400;color:#337ab7;border-radius:0} -.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent} -.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none} -.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear} -.fade.in{opacity:1} -.collapse{display:none} -.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)} -.dropdown-menu-right,.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.dropdown-menu>li>a{clear:both;font-weight:400;color:#333} -.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777} -.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-left{right:auto;left:0} -.dropdown-header{font-size:12px;color:#777} -.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990} -.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto} -.navbar-right .dropdown-menu-left{right:auto;left:0} -} -.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle} -.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left} -.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn .caret,.btn-group>.btn:first-child{margin-left:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn-lg .caret{border-width:5px 5px 0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate} -.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate} -.input-group[class*=col-]{float:none;padding-right:0;padding-left:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group .form-control:focus{z-index:3} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px} -select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto} -.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell} -.nav>li,.nav>li>a{display:block;position:relative} -.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px} -.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px} -.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap} -.input-group-btn>.btn{position:relative} -.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px} -.nav{padding-left:0;margin-bottom:0;list-style:none} -.nav>li>a{padding:10px 15px} -.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee} -.nav>li.disabled>a{color:#777} -.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent} -.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #ddd} -.nav-tabs>li{float:left;margin-bottom:-1px} -.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0} -.nav-tabs>li>a:hover{border-color:#eee #eee #ddd} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent} -.nav-tabs.nav-justified{width:100%;border-bottom:0} -.nav-tabs.nav-justified>li{float:none} -.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%} -.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff} -} -.nav-pills>li{float:left} -.nav-justified>li,.nav-stacked>li{float:none} -.nav-pills>li>a{border-radius:4px} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7} -.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%} -.nav-justified>li>a{margin-bottom:5px;text-align:center} -.nav-tabs-justified{border-bottom:0} -.nav-tabs-justified>li>a{margin-right:0;border-radius:4px} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%} -.nav-justified>li>a{margin-bottom:0} -.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff} -} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent} -.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)} -.navbar-collapse.in{overflow-y:auto} -@media (min-width:768px){.navbar{border-radius:4px} -.navbar-header{float:left} -.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important} -.navbar-collapse.in{overflow-y:visible} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0} -} -.embed-responsive,.modal,.modal-open,.progress{overflow:hidden} -@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} -} -.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px} -.navbar-static-top{z-index:1000;border-width:0 0 1px} -.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px} -.navbar-brand:focus,.navbar-brand:hover{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0} -.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0} -.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px} -} -.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px} -.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -.navbar-nav{margin:7.5px -15px} -.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px} -.navbar-nav .open .dropdown-menu>li>a{line-height:20px} -.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none} -} -.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -@media (min-width:768px){.navbar-toggle{display:none} -.navbar-nav{float:left;margin:0} -.navbar-nav>li{float:left} -.navbar-nav>li>a{padding-top:15px;padding-bottom:15px} -} -.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px} -@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block} -.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle} -.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} -.navbar-form .input-group{display:inline-table;vertical-align:middle} -.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto} -.navbar-form .input-group>.form-control{width:100%} -.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0} -.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0} -.navbar-form .has-feedback .form-control-feedback{top:0} -.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none} -} -.breadcrumb>li,.pagination{display:inline-block} -.btn .badge,.btn .label{top:-1px;position:relative} -@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px} -.navbar-form .form-group:last-child{margin-bottom:0} -} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0} -.navbar-btn{margin-top:8px;margin-bottom:8px} -.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px} -@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px} -.navbar-left{float:left!important} -.navbar-right{float:right!important;margin-right:-15px} -.navbar-right~.navbar-right{margin-right:0} -} -.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7} -.navbar-default .navbar-brand{color:#777} -.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent} -.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777} -.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent} -.navbar-default .navbar-toggle{border-color:#ddd} -.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7} -@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent} -} -.navbar-default .navbar-link{color:#777} -.navbar-default .navbar-link:hover{color:#333} -.navbar-default .btn-link{color:#777} -.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333} -.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808} -.navbar-inverse .navbar-brand{color:#9d9d9d} -.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d} -.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent} -.navbar-inverse .navbar-toggle{border-color:#333} -.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808} -@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent} -} -.navbar-inverse .navbar-link{color:#9d9d9d} -.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#9d9d9d} -.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff} -.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px} -.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"} -.breadcrumb>.active{color:#777} -.pagination{padding-left:0;margin:20px 0;border-radius:4px} -.pager li,.pagination>li{display:inline} -.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px} -.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd} -.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7} -.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5} -.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px} -.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none} -.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px} -.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff} -a.badge:focus,a.badge:hover,a.label:focus,a.label:hover{color:#fff;cursor:pointer;text-decoration:none} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em} -.label:empty{display:none} -.label-default{background-color:#777} -.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e} -.label-primary{background-color:#337ab7} -.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090} -.label-success{background-color:#5cb85c} -.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44} -.label-info{background-color:#5bc0de} -.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5} -.label-warning{background-color:#f0ad4e} -.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f} -.label-danger{background-color:#d9534f} -.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px} -.badge:empty{display:none} -.media-object,.thumbnail{display:block} -.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff} -.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.alert,.thumbnail{margin-bottom:20px} -.alert .alert-link,.close{font-weight:700} -.jumbotron>hr{border-top-color:#d5d5d5} -.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px} -.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px} -.jumbotron .h1,.jumbotron h1{font-size:63px} -} -.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out} -.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto} -a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7} -.thumbnail .caption{padding:9px;color:#333} -.alert{padding:15px;border:1px solid transparent;border-radius:4px} -.alert h4{margin-top:0;color:inherit} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px} -.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0} -.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.alert-success hr{border-top-color:#c9e2b3} -.alert-success .alert-link{color:#2b542c} -.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.alert-info hr{border-top-color:#a6e1ec} -.alert-info .alert-link{color:#245269} -.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.alert-warning hr{border-top-color:#f7e1b5} -.alert-warning .alert-link{color:#66512c} -.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.alert-danger hr{border-top-color:#e4b9c0} -.alert-danger .alert-link{color:#843534} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@-o-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)} -.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} -.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px} -.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} -.progress-bar-success{background-color:#5cb85c} -.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-striped .progress-bar-info,.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-info{background-color:#5bc0de} -.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-warning{background-color:#f0ad4e} -.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-danger{background-color:#d9534f} -.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.media{margin-top:15px} -.media:first-child{margin-top:0} -.media,.media-body{overflow:hidden;zoom:1} -.media-body{width:10000px} -.media-object.img-thumbnail{max-width:none} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-body,.media-left,.media-right{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{padding-left:0;margin-bottom:20px} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd} -.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px} -a.list-group-item,button.list-group-item{color:#555} -a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333} -a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5} -button.list-group-item{width:100%;text-align:left} -.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee} -.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777} -.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7} -.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef} -.list-group-item-success{color:#3c763d;background-color:#dff0d8} -a.list-group-item-success,button.list-group-item-success{color:#3c763d} -a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6} -a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d} -.list-group-item-info{color:#31708f;background-color:#d9edf7} -a.list-group-item-info,button.list-group-item-info{color:#31708f} -a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3} -a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f} -.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3} -a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b} -a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc} -a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b} -.list-group-item-danger{color:#a94442;background-color:#f2dede} -a.list-group-item-danger,button.list-group-item-danger{color:#a94442} -a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc} -a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442} -.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)} -.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px} -.panel-title{margin-top:0;font-size:16px} -.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0} -.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px} -.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px} -.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd} -.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0} -.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.panel>.table-responsive{margin-bottom:0;border:0} -.panel-group{margin-bottom:20px} -.panel-group .panel{margin-bottom:0;border-radius:4px} -.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd} -.panel-group .panel-footer{border-top:0} -.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd} -.panel-default{border-color:#ddd} -.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd} -.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd} -.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd} -.panel-primary{border-color:#337ab7} -.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7} -.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7} -.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7} -.panel-success{border-color:#d6e9c6} -.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6} -.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6} -.panel-info{border-color:#bce8f1} -.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1} -.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1} -.panel-warning{border-color:#faebcc} -.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc} -.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc} -.panel-danger{border-color:#ebccd1} -.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1} -.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1} -.embed-responsive{position:relative;display:block;height:0;padding:0} -.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)} -.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)} -.well-lg{padding:24px;border-radius:6px} -.well-sm{padding:9px;border-radius:3px} -.close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2} -.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;line-break:auto;text-decoration:none} -.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5} -button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0} -.modal{position:fixed;z-index:1050;display:none;-webkit-overflow-scrolling:touch;outline:0} -.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)} -.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)} -.modal-backdrop{position:fixed;z-index:1040;background-color:#000} -.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0} -.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5} -.modal-header{padding:15px;border-bottom:1px solid #e5e5e5} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.42857143} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5} -.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} -.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)} -.modal-sm{width:300px} -} -@media (min-width:992px){.modal-lg{width:900px} -} -.tooltip{position:absolute;z-index:1070;display:block;font-size:12px;text-align:left;text-align:start;filter:alpha(opacity=0);opacity:0} -.tooltip.in{filter:alpha(opacity=90);opacity:.9} -.tooltip.top{padding:5px 0;margin-top:-3px} -.tooltip.right{padding:0 5px;margin-left:3px} -.tooltip.bottom{padding:5px 0;margin-top:3px} -.tooltip.left{padding:0 5px;margin-left:-3px} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top .tooltip-arrow{left:50%;margin-left:-5px} -.tooltip.top-left .tooltip-arrow{right:5px;margin-bottom:-5px} -.tooltip.top-right .tooltip-arrow{left:5px;margin-bottom:-5px} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0} -.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px} -.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px} -.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-size:14px;text-align:left;text-align:start;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)} -.carousel-caption,.carousel-control{color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)} -.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0} -.popover-content{padding:9px 14px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.carousel,.carousel-inner{position:relative} -.popover>.arrow{border-width:11px} -.popover>.arrow:after{content:"";border-width:10px} -.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0} -.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0} -.popover.left>.arrow:after,.popover.right>.arrow:after{bottom:-10px;content:" "} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0} -.popover.right>.arrow:after{left:1px;border-right-color:#fff;border-left-width:0} -.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)} -.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)} -.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff} -.carousel-inner{width:100%;overflow:hidden} -.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left} -.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px} -.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)} -.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)} -.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)} -} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5} -.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x} -.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x} -.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9} -.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px} -.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1} -.carousel-control .icon-prev:before{content:'\2039'} -.carousel-control .icon-next:before{content:'\203a'} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none} -.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px} -.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff} -.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px} -.carousel-caption .btn,.text-hide{text-shadow:none} -@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px} -.carousel-caption{right:20%;left:20%;padding-bottom:30px} -.carousel-indicators{bottom:20px} -} -.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "} -.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both} -.center-block{display:block;margin-right:auto;margin-left:auto} -.pull-right{float:right!important} -.pull-left{float:left!important} -.hide{display:none!important} -.show{display:block!important} -.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0} -.affix{position:fixed} -@-ms-viewport{width:device-width} -@media (max-width:767px){.visible-xs{display:block!important} -table.visible-xs{display:table!important} -tr.visible-xs{display:table-row!important} -td.visible-xs,th.visible-xs{display:table-cell!important} -.visible-xs-block{display:block!important} -.visible-xs-inline{display:inline!important} -.visible-xs-inline-block{display:inline-block!important} -} -@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important} -table.visible-sm{display:table!important} -tr.visible-sm{display:table-row!important} -td.visible-sm,th.visible-sm{display:table-cell!important} -.visible-sm-block{display:block!important} -.visible-sm-inline{display:inline!important} -.visible-sm-inline-block{display:inline-block!important} -} -@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important} -table.visible-md{display:table!important} -tr.visible-md{display:table-row!important} -td.visible-md,th.visible-md{display:table-cell!important} -.visible-md-block{display:block!important} -.visible-md-inline{display:inline!important} -.visible-md-inline-block{display:inline-block!important} -} -@media (min-width:1200px){.visible-lg{display:block!important} -table.visible-lg{display:table!important} -tr.visible-lg{display:table-row!important} -td.visible-lg,th.visible-lg{display:table-cell!important} -.visible-lg-block{display:block!important} -.visible-lg-inline{display:inline!important} -.visible-lg-inline-block{display:inline-block!important} -.hidden-lg{display:none!important} -} -@media (max-width:767px){.hidden-xs{display:none!important} -} -@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important} -} -@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important} -} -.visible-print{display:none!important} -@media print{.visible-print{display:block!important} -table.visible-print{display:table!important} -tr.visible-print{display:table-row!important} -td.visible-print,th.visible-print{display:table-cell!important} -} -.visible-print-block{display:none!important} -@media print{.visible-print-block{display:block!important} -} -.visible-print-inline{display:none!important} -@media print{.visible-print-inline{display:inline!important} -} -.visible-print-inline-block{display:none!important} -@media print{.visible-print-inline-block{display:inline-block!important} -.hidden-print{display:none!important} -} -.hljs{display:block;background:#fff;padding:.5em;color:#333;overflow-x:auto} -.hljs-comment,.hljs-meta{color:#969896} -.hljs-emphasis,.hljs-quote,.hljs-string,.hljs-strong,.hljs-template-variable,.hljs-variable{color:#df5000} -.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d} -.hljs-attribute,.hljs-bullet,.hljs-literal,.hljs-symbol{color:#0086b3} -.hljs-name,.hljs-section{color:#63a35c} -.hljs-tag{color:#333} -.hljs-attr,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-title{color:#795da3} -.hljs-addition{color:#55a532;background-color:#eaffea} -.hljs-deletion{color:#bd2c00;background-color:#ffecec} -.hljs-link{text-decoration:underline} \ No newline at end of file diff --git a/docs/styles/docfx.vendor.js b/docs/styles/docfx.vendor.js deleted file mode 100644 index 81dab0914..000000000 --- a/docs/styles/docfx.vendor.js +++ /dev/null @@ -1,55 +0,0 @@ -/*! jQuery v2.1.4 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b="length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){ -return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,ba=/<([\w:]+)/,ca=/<|&#?\w+;/,da=/<(?:script|style|link)/i,ea=/checked\s*(?:[^=]|=\s*.checked.)/i,fa=/^$|\/(?:java|ecma)script/i,ga=/^true\/(.*)/,ha=/^\s*\s*$/g,ia={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ia.optgroup=ia.option,ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead,ia.th=ia.td;function ja(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function ka(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function la(a){var b=ga.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function ma(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function na(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function oa(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pa(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=oa(h),f=oa(a),d=0,e=f.length;e>d;d++)pa(f[d],g[d]);if(b)if(c)for(f=f||oa(a),g=g||oa(h),d=0,e=f.length;e>d;d++)na(f[d],g[d]);else na(a,h);return g=oa(h,"script"),g.length>0&&ma(g,!i&&oa(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(ca.test(e)){f=f||k.appendChild(b.createElement("div")),g=(ba.exec(e)||["",""])[1].toLowerCase(),h=ia[g]||ia._default,f.innerHTML=h[1]+e.replace(aa,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=oa(k.appendChild(e),"script"),i&&ma(f),c)){j=0;while(e=f[j++])fa.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(oa(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&ma(oa(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(oa(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!da.test(a)&&!ia[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(aa,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(oa(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(oa(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&ea.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(oa(c,"script"),ka),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,oa(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,la),j=0;g>j;j++)h=f[j],fa.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(ha,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qa,ra={};function sa(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function ta(a){var b=l,c=ra[a];return c||(c=sa(a,b),"none"!==c&&c||(qa=(qa||n("