From 09295d4e613464eabf6c54d859ae9ded0b976354 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 14 May 2020 21:50:04 +0200 Subject: [PATCH 1/3] feat: add plugin ipc --- Dalamud/Interface/DalamudDataWindow.cs | 31 ++++++++++++++++-- Dalamud/Plugin/DalamudPluginInterface.cs | 40 ++++++++++++++++++++++++ Dalamud/Plugin/PluginManager.cs | 4 +++ 3 files changed, 73 insertions(+), 2 deletions(-) diff --git a/Dalamud/Interface/DalamudDataWindow.cs b/Dalamud/Interface/DalamudDataWindow.cs index aefbe4e0b..3a1001418 100644 --- a/Dalamud/Interface/DalamudDataWindow.cs +++ b/Dalamud/Interface/DalamudDataWindow.cs @@ -1,11 +1,17 @@ using System; +using System.Dynamic; using System.Linq; +using System.Net.Mime; using System.Numerics; using Dalamud.Game.Chat; using Dalamud.Game.ClientState.Actors.Types; using Dalamud.Game.ClientState.Actors.Types.NonPlayer; +using Dalamud.Plugin; using ImGuiNET; +using JetBrains.Annotations; using Newtonsoft.Json; +using Serilog; +using SharpDX.Direct3D11; namespace Dalamud.Interface { @@ -51,8 +57,8 @@ namespace Dalamud.Interface ImGui.SameLine(); var copy = ImGui.Button("Copy all"); ImGui.SameLine(); - ImGui.Combo("Data kind", ref this.currentKind, new[] {"ServerOpCode", "ContentFinderCondition", "Actor Table", "Font Test", "Party List"}, - 5); + ImGui.Combo("Data kind", ref this.currentKind, new[] {"ServerOpCode", "ContentFinderCondition", "Actor Table", "Font Test", "Party List", "Plugin IPC"}, + 6); ImGui.BeginChild("scrolling", new Vector2(0, 0), false, ImGuiWindowFlags.HorizontalScrollbar); @@ -165,6 +171,27 @@ namespace Dalamud.Interface ImGui.TextUnformatted(partyString); } + break; + case 5: + var i1 = new DalamudPluginInterface(this.dalamud, "DalamudTestSub", null); + var i2 = new DalamudPluginInterface(this.dalamud, "DalamudTestPub", null); + + if (ImGui.Button("Add test sub")) i1.Subscribe("DalamudTestPub", o => { + dynamic msg = o; + Log.Debug(msg.Expand); + }); + + if (ImGui.Button("Remove test sub")) i1.Unsubscribe("DalamudTestPub"); + + if (ImGui.Button("Send test message")) { + dynamic testMsg = new ExpandoObject(); + testMsg.Expand = "dong"; + i2.SendMessage(testMsg); + } + + foreach (var sub in this.dalamud.PluginManager.IpcSubscriptions) { + ImGui.Text($"Source:{sub.SourcePluginName} Sub:{sub.SubPluginName}"); + } break; } else diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index c86989d1b..63b174f85 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Dynamic; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; @@ -115,6 +116,45 @@ namespace Dalamud.Plugin return this.configs.Load(this.pluginName); } + #region IPC + + /// + /// Subscribe to an IPC message by a plugin. + /// + /// The InternalName of the plugin to subscribe to. + /// The action to take when a message was received. + public void Subscribe(string pluginName, Action action) { + if (this.dalamud.PluginManager.IpcSubscriptions.Any(x => x.SourcePluginName == this.pluginName && x.SubPluginName == pluginName)) + throw new InvalidOperationException("Can't add multiple subscriptions for the same plugin."); + + this.dalamud.PluginManager.IpcSubscriptions.Add((this.pluginName, pluginName, action)); + } + + /// + /// Unsubscribe from messages from a plugin. + /// + /// The InternalName of the plugin to unsubscribe from. + public void Unsubscribe(string pluginName) { + var sub = this.dalamud.PluginManager.IpcSubscriptions.FirstOrDefault(x => x.SourcePluginName == this.pluginName && x.SubPluginName == pluginName); + if (sub.SubAction == null) + throw new InvalidOperationException("Wasn't subscribed to this plugin."); + + this.dalamud.PluginManager.IpcSubscriptions.Remove(sub); + } + + /// + /// Send a message to all subscribed plugins. + /// + /// The message to send. + public void SendMessage(ExpandoObject message) { + var subs = this.dalamud.PluginManager.IpcSubscriptions.Where(x => x.SubPluginName == this.pluginName); + foreach (var sub in subs.Select(x => x.SubAction)) { + sub.Invoke(message); + } + } + + #endregion + #region Logging /// diff --git a/Dalamud/Plugin/PluginManager.cs b/Dalamud/Plugin/PluginManager.cs index 2bf42e4f0..2b5de87b2 100644 --- a/Dalamud/Plugin/PluginManager.cs +++ b/Dalamud/Plugin/PluginManager.cs @@ -1,5 +1,7 @@ using System; +using System.Collections.Concurrent; using System.Collections.Generic; +using System.Dynamic; using System.IO; using System.Linq; using System.Reflection; @@ -20,6 +22,8 @@ namespace Dalamud.Plugin public readonly List<(IDalamudPlugin Plugin, PluginDefinition Definition, DalamudPluginInterface PluginInterface)> Plugins = new List<(IDalamudPlugin plugin, PluginDefinition def, DalamudPluginInterface PluginInterface)>(); + public List<(string SourcePluginName, string SubPluginName, Action SubAction)> IpcSubscriptions = new List<(string SourcePluginName, string SubPluginName, Action SubAction)>(); + public PluginManager(Dalamud dalamud, string pluginDirectory, string devPluginDirectory) { this.dalamud = dalamud; this.pluginDirectory = pluginDirectory; From beeb102359cdce7b75dc4e1138b6daafaa44c922 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 14 May 2020 22:41:25 +0200 Subject: [PATCH 2/3] docs: regenerate --- ...ud.Configuration.IPluginConfiguration.html | 8 +- ...ud.Configuration.PluginConfigurations.html | 20 +- docs/api/Dalamud.Data.DataManager.html | 52 +- ...ta.LuminaExtensions.TexFileExtensions.html | 8 +- ...alamud.Data.TransientSheet.Completion.html | 36 +- ...TransientSheet.ContentFinderCondition.html | 340 ++--- .../api/Dalamud.Data.TransientSheet.Item.html | 340 ++--- ...Dalamud.Data.TransientSheet.PetMirage.html | 268 ++-- .../api/Dalamud.Game.Chat.EnumExtensions.html | 8 +- docs/api/Dalamud.Game.Chat.SeIconChar.html | 4 +- ...ringHandling.Payload.EmbeddedInfoType.html | 4 +- ....SeStringHandling.Payload.IntegerType.html | 4 +- ...ingHandling.Payload.SeStringChunkType.html | 4 +- ...ud.Game.Chat.SeStringHandling.Payload.html | 68 +- ...ame.Chat.SeStringHandling.PayloadType.html | 4 +- ...andling.Payloads.AutoTranslatePayload.html | 28 +- ...ndling.Payloads.EmphasisItalicPayload.html | 36 +- ...SeStringHandling.Payloads.ItemPayload.html | 44 +- ...tringHandling.Payloads.MapLinkPayload.html | 72 +- ...StringHandling.Payloads.PlayerPayload.html | 36 +- ....SeStringHandling.Payloads.RawPayload.html | 32 +- ...StringHandling.Payloads.StatusPayload.html | 28 +- ...SeStringHandling.Payloads.TextPayload.html | 28 +- ...Handling.Payloads.UIForegroundPayload.html | 48 +- ...StringHandling.Payloads.UIGlowPayload.html | 48 +- ...d.Game.Chat.SeStringHandling.SeString.html | 40 +- ...e.Chat.SeStringHandling.SeStringUtils.html | 28 +- docs/api/Dalamud.Game.Chat.XivChatEntry.html | 24 +- docs/api/Dalamud.Game.Chat.XivChatType.html | 4 +- ...lamud.Game.Chat.XivChatTypeExtensions.html | 8 +- ...ud.Game.Chat.XivChatTypeInfoAttribute.html | 16 +- docs/api/Dalamud.Game.ChatHandlers.html | 12 +- ...ud.Game.ClientState.Actors.ActorTable.html | 44 +- ...ame.ClientState.Actors.CustomizeIndex.html | 4 +- ...ud.Game.ClientState.Actors.ObjectKind.html | 4 +- ...mud.Game.ClientState.Actors.Position3.html | 24 +- ...ntState.Actors.Resolvers.BaseResolver.html | 12 +- ...ClientState.Actors.Resolvers.ClassJob.html | 16 +- ...me.ClientState.Actors.Resolvers.World.html | 16 +- ...d.Game.ClientState.Actors.Types.Actor.html | 48 +- ...d.Game.ClientState.Actors.Types.Chara.html | 36 +- ...tate.Actors.Types.NonPlayer.BattleNpc.html | 16 +- ...tors.Types.NonPlayer.BattleNpcSubKind.html | 4 +- ...lientState.Actors.Types.NonPlayer.Npc.html | 16 +- ....ClientState.Actors.Types.PartyMember.html | 24 +- ...entState.Actors.Types.PlayerCharacter.html | 20 +- .../Dalamud.Game.ClientState.ClientState.html | 56 +- .../Dalamud.Game.ClientState.JobGauges.html | 12 +- .../Dalamud.Game.ClientState.KeyState.html | 16 +- .../Dalamud.Game.ClientState.PartyList.html | 52 +- ...alamud.Game.ClientState.Structs.Actor.html | 104 +- ...ClientState.Structs.JobGauge.ASTGauge.html | 12 +- ...ClientState.Structs.JobGauge.BLMGauge.html | 32 +- ...lientState.Structs.JobGauge.BOTDState.html | 4 +- ...ClientState.Structs.JobGauge.BRDGauge.html | 20 +- ...ClientState.Structs.JobGauge.CardType.html | 4 +- ...entState.Structs.JobGauge.CurrentSong.html | 4 +- ...ClientState.Structs.JobGauge.DNCGauge.html | 24 +- ...ClientState.Structs.JobGauge.DRGGauge.html | 16 +- ...ClientState.Structs.JobGauge.DRKGauge.html | 20 +- ...State.Structs.JobGauge.DismissedFairy.html | 4 +- ...ClientState.Structs.JobGauge.GNBGauge.html | 16 +- ...ClientState.Structs.JobGauge.MCHGauge.html | 32 +- ...ClientState.Structs.JobGauge.MNKGauge.html | 20 +- ...e.ClientState.Structs.JobGauge.Mudras.html | 4 +- ...ClientState.Structs.JobGauge.NINGauge.html | 20 +- ...ClientState.Structs.JobGauge.PLDGauge.html | 8 +- ....ClientState.Structs.JobGauge.PetGlam.html | 4 +- ...ClientState.Structs.JobGauge.RDMGauge.html | 12 +- ...ClientState.Structs.JobGauge.SAMGauge.html | 16 +- ...ClientState.Structs.JobGauge.SCHGauge.html | 20 +- ...ClientState.Structs.JobGauge.SMNGauge.html | 32 +- ...ClientState.Structs.JobGauge.SealType.html | 4 +- ...Game.ClientState.Structs.JobGauge.Sen.html | 4 +- ...lientState.Structs.JobGauge.SummonPet.html | 4 +- ...ClientState.Structs.JobGauge.WARGauge.html | 8 +- ...ClientState.Structs.JobGauge.WHMGauge.html | 16 +- ....Game.ClientState.Structs.PartyMember.html | 20 +- ...Game.ClientState.Structs.StatusEffect.html | 24 +- ...e.Command.CommandInfo.HandlerDelegate.html | 4 +- .../api/Dalamud.Game.Command.CommandInfo.html | 20 +- .../Dalamud.Game.Command.CommandManager.html | 28 +- ...me.Internal.DXGI.SwapChainSigResolver.html | 16 +- ...Internal.DXGI.SwapChainVtableResolver.html | 16 +- ...ud.Game.Internal.File.ResourceManager.html | 20 +- ...e.Internal.Framework.OnUpdateDelegate.html | 4 +- docs/api/Dalamud.Game.Internal.Framework.html | 36 +- ...ChatGui.OnCheckMessageHandledDelegate.html | 4 +- ...nternal.Gui.ChatGui.OnMessageDelegate.html | 4 +- ...rnal.Gui.ChatGui.OnMessageRawDelegate.html | 4 +- .../Dalamud.Game.Internal.Gui.ChatGui.html | 52 +- .../Dalamud.Game.Internal.Gui.GameGui.html | 44 +- ...l.Gui.TargetManager.GetTargetDelegate.html | 4 +- ...lamud.Game.Internal.Gui.TargetManager.html | 16 +- ...lamud.Game.Internal.Libc.LibcFunction.html | 12 +- ...mud.Game.Internal.Libc.OwnedStdString.html | 20 +- .../Dalamud.Game.Internal.Libc.StdString.html | 16 +- ....GameNetwork.OnNetworkMessageDelegate.html | 4 +- ...mud.Game.Internal.Network.GameNetwork.html | 24 +- ...ernal.Network.NetworkMessageDirection.html | 4 +- ...ud.Game.Network.NetworkHandlers.CfPop.html | 4 +- .../Dalamud.Game.Network.NetworkHandlers.html | 12 +- ...gs.MarketBoardItemListing.ItemMateria.html | 12 +- ...rrentOfferings.MarketBoardItemListing.html | 72 +- ...tructures.MarketBoardCurrentOfferings.html | 24 +- ...oardHistory.MarketBoardHistoryListing.html | 32 +- ...Network.Structures.MarketBoardHistory.html | 20 +- ...ame.Network.Structures.MarketTaxRates.html | 32 +- docs/api/Dalamud.Game.SigScanner.html | 76 +- ...lamud.Interface.FontAwesomeExtensions.html | 12 +- .../Dalamud.Interface.FontAwesomeIcon.html | 4 +- .../Dalamud.Interface.InterfaceManager.html | 52 +- .../Dalamud.Interface.MySinkExtensions.html | 8 +- .../Dalamud.Interface.SerilogEventSink.html | 20 +- docs/api/Dalamud.Interface.UiBuilder.html | 48 +- ...Dalamud.Plugin.DalamudPluginInterface.html | 164 ++- docs/api/Dalamud.Plugin.IDalamudPlugin.html | 12 +- docs/api/Dalamud.Plugin.PluginDefinition.html | 36 +- docs/api/Dalamud.Plugin.PluginLog.html | 16 +- ....PluginRepository.InitializationState.html | 4 +- docs/api/Dalamud.Plugin.PluginRepository.html | 24 +- docs/api/ImGuiNET.RangeAccessor-1.html | 1 + docs/api/ImGuiNET.RangePtrAccessor-1.html | 1 + docs/manifest.json | 1312 ++++++++--------- docs/xrefmap.yml | 42 + 125 files changed, 2586 insertions(+), 2434 deletions(-) diff --git a/docs/api/Dalamud.Configuration.IPluginConfiguration.html b/docs/api/Dalamud.Configuration.IPluginConfiguration.html index 2a62016b2..68ff66c8f 100644 --- a/docs/api/Dalamud.Configuration.IPluginConfiguration.html +++ b/docs/api/Dalamud.Configuration.IPluginConfiguration.html @@ -85,10 +85,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Configuration.PluginConfigurations.html b/docs/api/Dalamud.Configuration.PluginConfigurations.html index 519aa01bb..2a7aec545 100644 --- a/docs/api/Dalamud.Configuration.PluginConfigurations.html +++ b/docs/api/Dalamud.Configuration.PluginConfigurations.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginConfigurations(String)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Load(String)

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadForType<T>(String)

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Save(IPluginConfiguration, String)

@@ -301,10 +301,10 @@ diff --git a/docs/api/Dalamud.Data.DataManager.html b/docs/api/Dalamud.Data.DataManager.html index e68ba8d7a..8ea75d30a 100644 --- a/docs/api/Dalamud.Data.DataManager.html +++ b/docs/api/Dalamud.Data.DataManager.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataManager(ClientLanguage)

@@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientOpCodes

@@ -180,10 +180,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Excel

@@ -211,10 +211,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsDataReady

@@ -242,10 +242,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ServerOpCodes

@@ -275,10 +275,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetExcelSheet<T>()

@@ -324,10 +324,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetFile(String)

@@ -374,10 +374,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetFile<T>(String)

@@ -441,10 +441,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(ClientLanguage, Int32)

@@ -497,10 +497,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(Int32)

@@ -547,10 +547,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(String, Int32)

@@ -603,10 +603,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Initialize(String)

@@ -656,10 +656,10 @@ diff --git a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html index f0716c804..22de0b0e2 100644 --- a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html +++ b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetRgbaImageData(TexFile)

@@ -171,10 +171,10 @@ diff --git a/docs/api/Dalamud.Data.TransientSheet.Completion.html b/docs/api/Dalamud.Data.TransientSheet.Completion.html index 319dcf452..5b7941ede 100644 --- a/docs/api/Dalamud.Data.TransientSheet.Completion.html +++ b/docs/api/Dalamud.Data.TransientSheet.Completion.html @@ -119,10 +119,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -148,10 +148,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GroupTitle

@@ -177,10 +177,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Key

@@ -206,10 +206,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LookupTable

@@ -235,10 +235,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -266,10 +266,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -296,10 +296,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -328,10 +328,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -375,10 +375,10 @@ public class Completion : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html b/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html index d574848ed..ee0c27202 100644 --- a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html +++ b/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html @@ -119,10 +119,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AcceptClassJobCategory

@@ -148,10 +148,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllianceRoulette

@@ -177,10 +177,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobLevelRequired

@@ -206,10 +206,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobLevelSync

@@ -235,10 +235,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Content

@@ -264,10 +264,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentLinkType

@@ -293,10 +293,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentMemberType

@@ -322,10 +322,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentType

@@ -351,10 +351,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DailyFrontlineChallenge

@@ -380,10 +380,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ExpertRoulette

@@ -409,10 +409,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GuildHestRoulette

@@ -438,10 +438,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Icon

@@ -467,10 +467,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Image

@@ -496,10 +496,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemLevelRequired

@@ -525,10 +525,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemLevelSync

@@ -554,10 +554,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Level5060Roulette

@@ -583,10 +583,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Level70Roulette

@@ -612,10 +612,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelingRoulette

@@ -641,10 +641,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MentorRoulette

@@ -670,10 +670,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MSQRoulette

@@ -699,10 +699,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -728,10 +728,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

NormalRaidRoulette

@@ -757,10 +757,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ShortCode

@@ -786,10 +786,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SortKey

@@ -815,10 +815,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

@@ -844,10 +844,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Transient

@@ -873,10 +873,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TransientKey

@@ -902,10 +902,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TrialRoulette

@@ -931,10 +931,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown10

@@ -960,10 +960,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown11

@@ -989,10 +989,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown13

@@ -1018,10 +1018,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown15

@@ -1047,10 +1047,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown16

@@ -1076,10 +1076,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown17

@@ -1105,10 +1105,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown18

@@ -1134,10 +1134,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown19

@@ -1163,10 +1163,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1a

@@ -1192,10 +1192,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1b

@@ -1221,10 +1221,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1c

@@ -1250,10 +1250,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1d

@@ -1279,10 +1279,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1e

@@ -1308,10 +1308,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1f

@@ -1337,10 +1337,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown20

@@ -1366,10 +1366,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown21

@@ -1395,10 +1395,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown22

@@ -1424,10 +1424,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown23

@@ -1453,10 +1453,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown24

@@ -1482,10 +1482,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown25

@@ -1511,10 +1511,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown26

@@ -1540,10 +1540,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown27

@@ -1569,10 +1569,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown28

@@ -1598,10 +1598,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown29

@@ -1627,10 +1627,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2a

@@ -1656,10 +1656,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown30

@@ -1685,10 +1685,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown34

@@ -1714,10 +1714,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1743,10 +1743,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown55

@@ -1772,10 +1772,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1801,10 +1801,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown59

@@ -1830,10 +1830,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5a

@@ -1859,10 +1859,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5d

@@ -1888,10 +1888,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1917,10 +1917,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownd

@@ -1946,10 +1946,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowne

@@ -1975,10 +1975,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownf

@@ -2004,10 +2004,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

UnlockQuest

@@ -2035,10 +2035,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllowReplacement

@@ -2065,10 +2065,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllowUndersized

@@ -2095,10 +2095,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DutyRecorderAllowed

@@ -2125,10 +2125,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

HighEndDuty

@@ -2155,10 +2155,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PvP

@@ -2185,10 +2185,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -2215,10 +2215,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2245,10 +2245,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_10

@@ -2275,10 +2275,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_20

@@ -2305,10 +2305,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_40

@@ -2335,10 +2335,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_8

@@ -2365,10 +2365,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_1

@@ -2395,10 +2395,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_10

@@ -2425,10 +2425,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_2

@@ -2455,10 +2455,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_20

@@ -2485,10 +2485,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_4

@@ -2515,10 +2515,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_40

@@ -2547,10 +2547,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2594,10 +2594,10 @@ public class ContentFinderCondition : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.Item.html b/docs/api/Dalamud.Data.TransientSheet.Item.html index 81b2016c0..5de32850d 100644 --- a/docs/api/Dalamud.Data.TransientSheet.Item.html +++ b/docs/api/Dalamud.Data.TransientSheet.Item.html @@ -119,10 +119,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AdditionalData

@@ -148,10 +148,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Adjective

@@ -177,10 +177,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AetherialReduce

@@ -206,10 +206,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Article

@@ -235,10 +235,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

BaseParamModifier

@@ -264,10 +264,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Block

@@ -293,10 +293,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

BlockRate

@@ -322,10 +322,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobCategory

@@ -351,10 +351,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobRepair

@@ -380,10 +380,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobUse

@@ -409,10 +409,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Cooldowns

@@ -438,10 +438,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DamageMag

@@ -467,10 +467,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DamagePhys

@@ -496,10 +496,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DefenseMag

@@ -525,10 +525,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DefensePhys

@@ -554,10 +554,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Delayms

@@ -583,10 +583,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -612,10 +612,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

EquipRestriction

@@ -641,10 +641,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

EquipSlotCategory

@@ -670,10 +670,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

FilterGroup

@@ -699,10 +699,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GrandCompany

@@ -728,10 +728,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Icon

@@ -757,10 +757,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemAction

@@ -786,10 +786,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemGlamour

@@ -815,10 +815,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemRepair

@@ -844,10 +844,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSearchCategory

@@ -873,10 +873,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSeries

@@ -902,10 +902,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSpecialBonus

@@ -931,10 +931,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSpecialBonusParam

@@ -960,10 +960,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemUICategory

@@ -989,10 +989,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelEquip

@@ -1018,10 +1018,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelItem

@@ -1047,10 +1047,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MaterializeType

@@ -1076,10 +1076,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaSlotCount

@@ -1105,10 +1105,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ModelMain

@@ -1134,10 +1134,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ModelSub

@@ -1163,10 +1163,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -1192,10 +1192,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Plural

@@ -1221,10 +1221,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PossessivePronoun

@@ -1250,10 +1250,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PriceLow

@@ -1279,10 +1279,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PriceMid

@@ -1308,10 +1308,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Pronoun

@@ -1337,10 +1337,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Rarity

@@ -1366,10 +1366,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Salvage

@@ -1395,10 +1395,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Singular

@@ -1424,10 +1424,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

StackSize

@@ -1453,10 +1453,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

StartsWithVowel

@@ -1482,10 +1482,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown13

@@ -1511,10 +1511,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3c

@@ -1540,10 +1540,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3e

@@ -1569,10 +1569,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown40

@@ -1598,10 +1598,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown48

@@ -1627,10 +1627,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4a

@@ -1656,10 +1656,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1685,10 +1685,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4f

@@ -1714,10 +1714,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown56

@@ -1743,10 +1743,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown57

@@ -1772,10 +1772,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1801,10 +1801,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5b

@@ -1830,10 +1830,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5c

@@ -1859,10 +1859,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5d

@@ -1888,10 +1888,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1917,10 +1917,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown63

@@ -1946,10 +1946,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown64

@@ -1975,10 +1975,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown65

@@ -2004,10 +2004,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown68

@@ -2033,10 +2033,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown8c

@@ -2062,10 +2062,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown94

@@ -2091,10 +2091,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown9d

@@ -2122,10 +2122,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AlwaysCollectable

@@ -2152,10 +2152,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

CanBeHq

@@ -2182,10 +2182,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsAdvancedMeldingPermitted

@@ -2212,10 +2212,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsCollectable

@@ -2242,10 +2242,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsCrestWorthy

@@ -2272,10 +2272,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsDyeable

@@ -2302,10 +2302,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsGlamourous

@@ -2332,10 +2332,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsIndisposable

@@ -2362,10 +2362,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsPvP

@@ -2392,10 +2392,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsUnique

@@ -2422,10 +2422,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsUntradable

@@ -2452,10 +2452,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Lot

@@ -2482,10 +2482,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -2512,10 +2512,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2544,10 +2544,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2591,10 +2591,10 @@ public class Item : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.PetMirage.html b/docs/api/Dalamud.Data.TransientSheet.PetMirage.html index ffe994c5f..440d27246 100644 --- a/docs/api/Dalamud.Data.TransientSheet.PetMirage.html +++ b/docs/api/Dalamud.Data.TransientSheet.PetMirage.html @@ -119,10 +119,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -148,10 +148,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown10

@@ -177,10 +177,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown12

@@ -206,10 +206,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown14

@@ -235,10 +235,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown16

@@ -264,10 +264,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown18

@@ -293,10 +293,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1a

@@ -322,10 +322,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1c

@@ -351,10 +351,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1e

@@ -380,10 +380,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown20

@@ -409,10 +409,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown22

@@ -438,10 +438,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown24

@@ -467,10 +467,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown26

@@ -496,10 +496,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown28

@@ -525,10 +525,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2a

@@ -554,10 +554,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2c

@@ -583,10 +583,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2e

@@ -612,10 +612,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown30

@@ -641,10 +641,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown32

@@ -670,10 +670,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown34

@@ -699,10 +699,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown36

@@ -728,10 +728,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown38

@@ -757,10 +757,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3a

@@ -786,10 +786,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3c

@@ -815,10 +815,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3e

@@ -844,10 +844,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4

@@ -873,10 +873,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown40

@@ -902,10 +902,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown42

@@ -931,10 +931,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown44

@@ -960,10 +960,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown46

@@ -989,10 +989,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown48

@@ -1018,10 +1018,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4a

@@ -1047,10 +1047,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1076,10 +1076,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4e

@@ -1105,10 +1105,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown50

@@ -1134,10 +1134,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown52

@@ -1163,10 +1163,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown54

@@ -1192,10 +1192,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown56

@@ -1221,10 +1221,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1250,10 +1250,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5a

@@ -1279,10 +1279,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5c

@@ -1308,10 +1308,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5e

@@ -1337,10 +1337,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6

@@ -1366,10 +1366,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1395,10 +1395,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62

@@ -1424,10 +1424,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown64

@@ -1453,10 +1453,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown66

@@ -1482,10 +1482,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown68

@@ -1511,10 +1511,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6a

@@ -1540,10 +1540,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6c

@@ -1569,10 +1569,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6e

@@ -1598,10 +1598,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown70

@@ -1627,10 +1627,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown72

@@ -1656,10 +1656,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown74

@@ -1685,10 +1685,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown76

@@ -1714,10 +1714,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown78

@@ -1743,10 +1743,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown7a

@@ -1772,10 +1772,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown7c

@@ -1801,10 +1801,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown8

@@ -1830,10 +1830,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown80

@@ -1859,10 +1859,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowna

@@ -1888,10 +1888,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownc

@@ -1917,10 +1917,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowne

@@ -1948,10 +1948,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -1978,10 +1978,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2010,10 +2010,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2057,10 +2057,10 @@ public class PetMirage : IExcelRow diff --git a/docs/api/Dalamud.Game.Chat.EnumExtensions.html b/docs/api/Dalamud.Game.Chat.EnumExtensions.html index ecb678b5a..385d384df 100644 --- a/docs/api/Dalamud.Game.Chat.EnumExtensions.html +++ b/docs/api/Dalamud.Game.Chat.EnumExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetAttribute<TAttribute>(Enum)

@@ -183,10 +183,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeIconChar.html b/docs/api/Dalamud.Game.Chat.SeIconChar.html index 9b03e0663..a71aa1918 100644 --- a/docs/api/Dalamud.Game.Chat.SeIconChar.html +++ b/docs/api/Dalamud.Game.Chat.SeIconChar.html @@ -694,10 +694,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html index 061effaf2..21030c72e 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html @@ -125,10 +125,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html index aaeb15869..bbb42835f 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html @@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html index cdf0896f5..6e3d98a2b 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html @@ -125,10 +125,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html index 423b7a36b..5a9682653 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html @@ -125,10 +125,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Payload()

@@ -142,10 +142,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dataResolver

The Lumina instance to use for any necessary data lookups.

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

END_BYTE

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

START_BYTE

@@ -232,10 +232,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dirty

@@ -263,10 +263,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -296,10 +296,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Decode(BinaryReader)

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -386,10 +386,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Encode(Boolean)

@@ -436,10 +436,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -469,10 +469,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetInteger(BinaryReader)

@@ -516,10 +516,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -563,10 +563,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForPackedIntegerBytes(Byte[])

@@ -610,10 +610,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetPackedIntegers(BinaryReader)

@@ -657,10 +657,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

MakeInteger(UInt32, Boolean, Boolean)

@@ -714,10 +714,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

MakePackedInteger(UInt32, UInt32, Boolean)

@@ -777,10 +777,10 @@ handlers such as the chat log.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html index 83fd7be19..0a42db3fb 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html @@ -156,10 +156,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html index 173cb9507..a13442d6d 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AutoTranslatePayload(UInt32, UInt32)

@@ -195,10 +195,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -229,10 +229,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -263,10 +263,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -302,10 +302,10 @@ There is probably little use to create one of these, however.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -334,10 +334,10 @@ There is probably little use to create one of these, however.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -372,10 +372,10 @@ There is probably little use to create one of these, however.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html index 7d3647597..b401d3b81 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html @@ -153,10 +153,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

EmphasisItalicPayload(Boolean)

@@ -189,10 +189,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -220,10 +220,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

ItalicsOff

@@ -251,10 +251,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

ItalicsOn

@@ -282,10 +282,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -316,10 +316,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -355,10 +355,10 @@ text payloads.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -387,10 +387,10 @@ text payloads.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -425,10 +425,10 @@ text payloads.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html index 777fcfd55..7983b4840 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html @@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemPayload(UInt32, Boolean, String)

@@ -193,10 +193,10 @@ TextPayload that is a part of a full item link in chat.

| - Improve this Doc + Improve this Doc - View Source + View Source

DisplayName

@@ -225,10 +225,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

IsHQ

@@ -256,10 +256,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

Item

@@ -290,10 +290,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -324,10 +324,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -363,10 +363,10 @@ often the name is only present in a following text payload.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -395,10 +395,10 @@ often the name is only present in a following text payload.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -444,10 +444,10 @@ often the name is only present in a following text payload.

Payload.GetMarkerForIntegerBytes(Byte[])
| - Improve this Doc + Improve this Doc - View Source + View Source

MakeInteger(UInt32, Boolean, Boolean)

@@ -503,10 +503,10 @@ often the name is only present in a following text payload.

Payload.MakeInteger(UInt32, Boolean, Boolean)
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -541,10 +541,10 @@ often the name is only present in a following text payload.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html index 11bb649af..19b48a124 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MapLinkPayload(UInt32, UInt32, Int32, Int32)

@@ -198,10 +198,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MapLinkPayload(UInt32, UInt32, Single, Single, Single)

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CoordinateString

@@ -290,10 +290,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

DataString

@@ -321,10 +321,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

Map

@@ -355,10 +355,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlaceName

@@ -386,10 +386,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlaceNameRegion

@@ -417,10 +417,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawX

@@ -448,10 +448,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawY

@@ -479,10 +479,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

@@ -513,10 +513,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -545,10 +545,10 @@ but is an approximation and may be slightly off for some positions.

Payload.Type
| - Improve this Doc + Improve this Doc - View Source + View Source

XCoord

@@ -576,10 +576,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

YCoord

@@ -609,10 +609,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -648,10 +648,10 @@ but is an approximation and may be slightly off for some positions.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -680,10 +680,10 @@ but is an approximation and may be slightly off for some positions.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -729,10 +729,10 @@ but is an approximation and may be slightly off for some positions.

Payload.GetMarkerForIntegerBytes(Byte[])
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -767,10 +767,10 @@ but is an approximation and may be slightly off for some positions.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html index d977cc9f1..49d9cdec9 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerPayload(String, UInt32)

@@ -191,10 +191,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DisplayedName

@@ -223,10 +223,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlayerName

@@ -254,10 +254,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -286,10 +286,10 @@ The world name will always be present.

Payload.Type
| - Improve this Doc + Improve this Doc - View Source + View Source

World

@@ -322,10 +322,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -361,10 +361,10 @@ The world name will always be present.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -393,10 +393,10 @@ The world name will always be present.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -431,10 +431,10 @@ The world name will always be present.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html index 691a21dc6..514eb4c61 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html @@ -151,10 +151,10 @@ payloads without modification.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawPayload(Byte[])

@@ -185,10 +185,10 @@ payloads without modification.

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -217,10 +217,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

LinkTerminator

@@ -248,10 +248,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -282,10 +282,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -321,10 +321,10 @@ The returned data is a clone and modifications will not be persisted.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -353,10 +353,10 @@ The returned data is a clone and modifications will not be persisted.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -391,10 +391,10 @@ The returned data is a clone and modifications will not be persisted.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html index cf80449c3..a8ad844d3 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StatusPayload(UInt32)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Status

@@ -219,10 +219,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -253,10 +253,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -292,10 +292,10 @@
Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -324,10 +324,10 @@
Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -362,10 +362,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html index 3852b0891..145c59b18 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextPayload(String)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -217,10 +217,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -251,10 +251,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -290,10 +290,10 @@ This may contain SE's special unicode characters.

Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -322,10 +322,10 @@ This may contain SE's special unicode characters.

Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -360,10 +360,10 @@ This may contain SE's special unicode characters.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html index 29d39d793..4af9d6e65 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIForegroundPayload(UInt16)

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ColorKey

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RGB

@@ -274,10 +274,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -306,10 +306,10 @@
Payload.Type
| - Improve this Doc + Improve this Doc - View Source + View Source

UIColor

@@ -340,10 +340,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIForegroundOff

@@ -373,10 +373,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -412,10 +412,10 @@
Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -444,10 +444,10 @@
Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -493,10 +493,10 @@
Payload.GetMarkerForIntegerBytes(Byte[])
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -531,10 +531,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html index 2d7229736..e61988865 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIGlowPayload(UInt16)

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ColorKey

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RGB

@@ -274,10 +274,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -306,10 +306,10 @@
Payload.Type
| - Improve this Doc + Improve this Doc - View Source + View Source

UIColor

@@ -340,10 +340,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIGlowOff

@@ -373,10 +373,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -412,10 +412,10 @@
Payload.DecodeImpl(BinaryReader, Int64)
| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -444,10 +444,10 @@
Payload.EncodeImpl()
| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -493,10 +493,10 @@
Payload.GetMarkerForIntegerBytes(Byte[])
| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -531,10 +531,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html index 62d5b3d0a..9a1c1e2dc 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeString(Payload[])

@@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeString(List<Payload>)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Payloads

@@ -216,10 +216,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextValue

@@ -250,10 +250,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(Payload)

@@ -300,10 +300,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(SeString)

@@ -350,10 +350,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(List<Payload>)

@@ -400,10 +400,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Encode()

@@ -433,10 +433,10 @@ suitable for use by in-game handlers, such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

Parse(Byte[])

@@ -489,10 +489,10 @@ suitable for use by in-game handlers, such as the chat log.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html index 8c4761b6f..6432a77a3 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -239,10 +239,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -307,10 +307,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -369,10 +369,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -443,10 +443,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextArrowPayloads()

@@ -482,10 +482,10 @@ with the appropriate glow and coloring.

diff --git a/docs/api/Dalamud.Game.Chat.XivChatEntry.html b/docs/api/Dalamud.Game.Chat.XivChatEntry.html index 750c2ed9e..4a8956e40 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatEntry.html +++ b/docs/api/Dalamud.Game.Chat.XivChatEntry.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MessageBytes

@@ -144,10 +144,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Parameters

@@ -204,10 +204,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SenderId

@@ -234,10 +234,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -270,10 +270,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatType.html b/docs/api/Dalamud.Game.Chat.XivChatType.html index ab3df7058..2345e2509 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatType.html +++ b/docs/api/Dalamud.Game.Chat.XivChatType.html @@ -265,10 +265,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html b/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html index c7ef0ae03..5eb60acc3 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html +++ b/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetDetails(XivChatType)

@@ -167,10 +167,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html b/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html index 9d206e7b1..228d94190 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html +++ b/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html @@ -236,10 +236,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DefaultColor

@@ -266,10 +266,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

FancyName

@@ -296,10 +296,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Slug

@@ -336,10 +336,10 @@ diff --git a/docs/api/Dalamud.Game.ChatHandlers.html b/docs/api/Dalamud.Game.ChatHandlers.html index f168a5897..daafb8bc5 100644 --- a/docs/api/Dalamud.Game.ChatHandlers.html +++ b/docs/api/Dalamud.Game.ChatHandlers.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ChatHandlers(Dalamud)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -184,10 +184,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html index c3207b723..01f768e0e 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html @@ -122,10 +122,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorTable(Dalamud, ClientStateAddressResolver)

@@ -163,10 +163,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -214,10 +214,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

Length

@@ -247,10 +247,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -279,10 +279,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlyCollection<Actor>.Count

@@ -309,10 +309,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.CopyTo(Array, Int32)

@@ -346,10 +346,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.Count

@@ -376,10 +376,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.IsSynchronized

@@ -406,10 +406,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.SyncRoot

@@ -436,10 +436,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -485,10 +485,10 @@ public Actor this[int index] { get; } diff --git a/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html b/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html index cfb418177..34803141d 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html @@ -210,10 +210,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html b/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html index 880ba5528..002d18b67 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html @@ -178,10 +178,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html index 698bb36a2..e6aab9139 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

X

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Y

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Z

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Position3 to Vector3)

@@ -244,10 +244,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Position3 to Vector3)

@@ -299,10 +299,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html index 53ed16b5a..020510558 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html @@ -116,10 +116,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BaseResolver(Dalamud)

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dalamud

@@ -185,10 +185,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html index 5bc415459..2ea041a72 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob(Byte, Dalamud)

@@ -160,10 +160,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Id

ID of the ClassJob.

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameData

@@ -229,10 +229,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html index 9168038ef..b965f5266 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

World(Byte, Dalamud)

@@ -160,10 +160,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Id

ID of the world.

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameData

@@ -229,10 +229,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html index 41d756570..3b77502e5 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html @@ -116,10 +116,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actor(IntPtr, Actor, Dalamud)

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

actorStruct

The memory representation of the base actor.

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

The address of this actor in memory.

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dalamud

@@ -255,10 +255,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorId

@@ -286,10 +286,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -349,10 +349,10 @@ possible values.

| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -380,10 +380,10 @@ possible values.

| - Improve this Doc + Improve this Doc - View Source + View Source

Rotation

@@ -412,10 +412,10 @@ This ranges from -pi to pi radians.

| - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceX

@@ -443,10 +443,10 @@ This ranges from -pi to pi radians.

| - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceY

@@ -480,10 +480,10 @@ This ranges from -pi to pi radians.

diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html index 872373563..1a132a1b9 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html @@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Chara(IntPtr, Actor, Dalamud)

@@ -196,10 +196,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob

@@ -227,10 +227,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentHp

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMp

@@ -289,10 +289,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Customize

@@ -320,10 +320,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -351,10 +351,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxHp

@@ -382,10 +382,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxMp

@@ -419,10 +419,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html index 54687bd21..1c67d0b9a 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html @@ -175,10 +175,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BattleNpc(IntPtr, Actor, Dalamud)

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BattleNpcKind

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -291,10 +291,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html index 3085278fd..13331e6b5 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html index e3dd23a22..bd220abd2 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html @@ -169,10 +169,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Npc(IntPtr, Actor, Dalamud)

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataId

@@ -248,10 +248,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NameId

@@ -285,10 +285,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html index 75235401b..aa898b5af 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyMember(ActorTable, PartyMember)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actor

@@ -182,10 +182,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CharacterName

@@ -211,10 +211,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -240,10 +240,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

@@ -275,10 +275,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html index f0a648332..d0af829d5 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html @@ -168,10 +168,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerCharacter(IntPtr, Actor, Dalamud)

@@ -216,10 +216,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CompanyTag

@@ -247,10 +247,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentWorld

@@ -278,10 +278,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HomeWorld

@@ -315,10 +315,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.ClientState.html b/docs/api/Dalamud.Game.ClientState.ClientState.html index 60b42db2e..76533fe45 100644 --- a/docs/api/Dalamud.Game.ClientState.ClientState.html +++ b/docs/api/Dalamud.Game.ClientState.ClientState.html @@ -120,10 +120,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientState(Dalamud, DalamudStartInfo, SigScanner)

@@ -168,10 +168,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actors

The table of all present actors.

@@ -198,10 +198,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientLanguage

@@ -227,10 +227,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

JobGauges

The class facilitating Job Gauge data access

@@ -257,10 +257,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

KeyState

Provides access to the keypress state of keyboard keys in game.

@@ -287,10 +287,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyList

The class facilitating party list data access

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryChanged

Event that gets fired when the current Territory changes.

@@ -347,10 +347,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

The current Territory the player resides in.

@@ -379,10 +379,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LocalContentId

@@ -410,10 +410,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LocalPlayer

@@ -444,10 +444,10 @@ public PlayerCharacter LocalPlayer { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -459,10 +459,10 @@ public PlayerCharacter LocalPlayer { get; }
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -476,10 +476,10 @@ public PlayerCharacter LocalPlayer { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

PropertyChanged

@@ -518,10 +518,10 @@ public PlayerCharacter LocalPlayer { get; } diff --git a/docs/api/Dalamud.Game.ClientState.JobGauges.html b/docs/api/Dalamud.Game.ClientState.JobGauges.html index e3f44b1db..18bdf2b97 100644 --- a/docs/api/Dalamud.Game.ClientState.JobGauges.html +++ b/docs/api/Dalamud.Game.ClientState.JobGauges.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

JobGauges(ClientStateAddressResolver)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Get<T>()

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.KeyState.html b/docs/api/Dalamud.Game.ClientState.KeyState.html index 046d55d43..09558f7ec 100644 --- a/docs/api/Dalamud.Game.ClientState.KeyState.html +++ b/docs/api/Dalamud.Game.ClientState.KeyState.html @@ -116,10 +116,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

KeyState(ClientStateAddressResolver, IntPtr)

@@ -155,10 +155,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -207,10 +207,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

ClearAll()

@@ -229,10 +229,10 @@ all keyboard keys, indexed by virtual vkCode

diff --git a/docs/api/Dalamud.Game.ClientState.PartyList.html b/docs/api/Dalamud.Game.ClientState.PartyList.html index 423ca41aa..539c27d12 100644 --- a/docs/api/Dalamud.Game.ClientState.PartyList.html +++ b/docs/api/Dalamud.Game.ClientState.PartyList.html @@ -122,10 +122,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyList(Dalamud, ClientStateAddressResolver)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -191,10 +191,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsSynchronized

@@ -221,10 +221,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -268,10 +268,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Length

@@ -298,10 +298,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SyncRoot

@@ -330,10 +330,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CopyTo(Array, Int32)

@@ -367,10 +367,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -382,10 +382,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -397,10 +397,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -429,10 +429,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlyCollection<PartyMember>.Count

@@ -459,10 +459,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -511,10 +511,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html index 369427f1e..9a0525bfb 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html @@ -107,10 +107,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorId

@@ -136,10 +136,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob

@@ -165,10 +165,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CompanyTag

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentHp

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMp

@@ -252,10 +252,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentWorld

@@ -281,10 +281,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Customize

@@ -310,10 +310,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataId

@@ -339,10 +339,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HomeWorld

@@ -368,10 +368,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsFriendly

@@ -397,10 +397,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -426,10 +426,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxHp

@@ -455,10 +455,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxMp

@@ -484,10 +484,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -513,10 +513,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NameId

@@ -542,10 +542,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -571,10 +571,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -600,10 +600,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerTargetStatus

@@ -629,10 +629,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -658,10 +658,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Rotation

@@ -687,10 +687,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SubKind

@@ -716,10 +716,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetActorId

@@ -745,10 +745,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIStatusEffects

@@ -774,10 +774,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceFromPlayerX

@@ -803,10 +803,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceFromPlayerY

@@ -838,10 +838,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html index 14630e426..6254ad47e 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ContainsSeal(SealType)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DrawnCard()

@@ -189,10 +189,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html index 68a71be18..9806e4e0a 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ElementTimeRemaining

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumPolyglotStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumUmbralHearts

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TimeUntilNextPolyglot

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InAstralFire()

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InUmbralIce()

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnoActive()

@@ -320,10 +320,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html index 632ba2d38..4e84adb77 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html index 2fac720a5..8c43d8f62 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActiveSong

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumSongStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SongTimer

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SoulVoiceValue

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html index 72c605676..2cb1d3564 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html @@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html index 71c2cee00..600285514 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html index ee517d135..804bacd59 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Esprit

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumCompleteSteps

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumFeathers

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsDancing()

@@ -225,10 +225,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NextStep()

@@ -261,10 +261,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html index 9c71cb4e1..1885371e8 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BOTDState

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BOTDTimer

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EyeCount

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html index ccea96a94..5958c6e27 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Blood

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DarksideTimeRemaining

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ShadowTimeRemaining

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HasDarkArts()

@@ -231,10 +231,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html index 60c89306f..484b0f397 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html @@ -113,10 +113,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html index de28a558c..ba0a8452e 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AmmoComboStepNumber

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxTimerDuration

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumAmmo

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html index 103d182c1..6a2e8b779 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Battery

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Heat

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastRobotBatteryPower

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OverheatTimeRemaining

@@ -222,10 +222,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RobotTimeRemaining

@@ -253,10 +253,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsOverheated()

@@ -283,10 +283,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsRobotActive()

@@ -319,10 +319,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html index 404f06b03..607f05aec 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GLTimer

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumChakra

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumGLStacks

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsGLTimerFroze()

@@ -231,10 +231,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html index 165999eee..92c1e14e3 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html index fa0d6d3a7..8b02379c5 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HutonTimeLeft

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Ninki

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumHutonManualCasts

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TCJMudrasUsed

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html index bea3e79d7..722680555 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GaugeAmount

@@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html index 2d944fd5d..38d438dbd 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html index bd7b4496a..833e71a48 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BlackGauge

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

WhiteGauge

@@ -170,10 +170,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html index 8ce4cbb82..1aaa22a2c 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Kenki

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MeditationStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Sen

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html index 5f6f39c88..24358d393 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DismissedFairy

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

FairyGaugeAmount

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumAetherflowStacks

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeraphTimer

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html index d4f4356bc..292670af0 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumStacks

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReturnSummon

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReturnSummonGlam

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TimerRemaining

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HasAetherflowStacks()

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsBahamutReady()

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsPhoenixReady()

@@ -320,10 +320,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html index e2276da22..06f0a779e 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html index 1c829c230..0d155e579 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html @@ -122,10 +122,10 @@ public enum Sen : byte diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html index e442f09da..ee73e697c 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html index e7253492d..2a8a0901d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BeastGaugeAmount

@@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html index 7bdb3d81d..74c4eb117 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LilyTimer

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumBloodLily

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumLilies

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html b/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html index e40e70c51..eb3e7bae6 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

actorId

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

namePtr

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

objectKind

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

unknown

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html b/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html index 44ae6679d..6a0a275b8 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html @@ -107,10 +107,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Duration

@@ -136,10 +136,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EffectId

@@ -165,10 +165,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Param

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StackCount

@@ -258,10 +258,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html b/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html index 6baad38e9..18e114489 100644 --- a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html +++ b/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html @@ -114,10 +114,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.html b/docs/api/Dalamud.Game.Command.CommandInfo.html index df5903ff0..cf3b0b4c7 100644 --- a/docs/api/Dalamud.Game.Command.CommandInfo.html +++ b/docs/api/Dalamud.Game.Command.CommandInfo.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandInfo(CommandInfo.HandlerDelegate)

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Handler

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HelpMessage

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ShowInHelp

@@ -249,10 +249,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandManager.html b/docs/api/Dalamud.Game.Command.CommandManager.html index 0c45b2b44..17a7bd825 100644 --- a/docs/api/Dalamud.Game.Command.CommandManager.html +++ b/docs/api/Dalamud.Game.Command.CommandManager.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandManager(Dalamud, ClientLanguage)

@@ -154,10 +154,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Commands

@@ -187,10 +187,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AddHandler(String, CommandInfo)

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DispatchCommand(String, String, CommandInfo)

@@ -289,10 +289,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ProcessCommand(String)

@@ -339,10 +339,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RemoveHandler(String)

@@ -395,10 +395,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html index c16cae385..c188c3476 100644 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html +++ b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Present

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResizeBuffers

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Setup64Bit(SigScanner)

@@ -217,10 +217,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html index 23e19bf10..d49126db6 100644 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html +++ b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Present

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResizeBuffers

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Setup64Bit(SigScanner)

@@ -217,10 +217,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html b/docs/api/Dalamud.Game.Internal.File.ResourceManager.html index d25c1f1dc..d73bf481b 100644 --- a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html +++ b/docs/api/Dalamud.Game.Internal.File.ResourceManager.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResourceManager(Dalamud, SigScanner)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -168,10 +168,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -183,10 +183,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

FilePathHasInvalidChars(String)

@@ -236,10 +236,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html index e1693955d..74bda0973 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html @@ -106,10 +106,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Framework.html b/docs/api/Dalamud.Game.Internal.Framework.html index 5741a38f0..fd779c3be 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.html +++ b/docs/api/Dalamud.Game.Internal.Framework.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Framework(SigScanner, Dalamud)

@@ -158,10 +158,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -189,10 +189,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Gui

@@ -220,10 +220,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Libc

@@ -250,10 +250,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Network

@@ -283,10 +283,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -298,10 +298,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -315,10 +315,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdateEvent

Event that gets fired every time the game framework updates.

@@ -355,10 +355,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html index b5de5debe..078c37f2c 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html index 67b4a22a8..b398992e3 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html index 679715940..d510c76e6 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html index d8b25c814..5833cc3e9 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ChatGui(IntPtr, SigScanner, Dalamud)

@@ -162,10 +162,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastLinkedItemFlags

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastLinkedItemId

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -239,10 +239,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -254,10 +254,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Print(String)

@@ -286,10 +286,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PrintChat(XivChatEntry)

@@ -321,10 +321,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

PrintError(String)

@@ -353,10 +353,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateQueue(Framework)

@@ -388,10 +388,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnChatMessage

Event that will be fired when a chat message is sent to chat by the game.

@@ -418,10 +418,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnChatMessageRaw

Event that will be fired when a chat message is sent by the game, containing raw, unparsed data.

@@ -449,10 +449,10 @@ public event ChatGui.OnMessageRawDelegate OnChatMessageRaw | - Improve this Doc + Improve this Doc - View Source + View Source

OnCheckMessageHandled

Event that allows you to stop messages from appearing in chat by setting the isHandled parameter to true.

@@ -489,10 +489,10 @@ public event ChatGui.OnMessageRawDelegate OnChatMessageRaw diff --git a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html index 94217cf56..39775c305 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameGui(IntPtr, SigScanner, Dalamud)

@@ -162,10 +162,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Chat

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HoveredItem

@@ -224,10 +224,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

HoveredItemChanged

@@ -257,10 +257,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -272,10 +272,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -287,10 +287,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source @@ -337,10 +337,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

ScreenToWorld(Vector2, out Vector3, Single)

@@ -399,10 +399,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

SetBgm(UInt16)

@@ -431,10 +431,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

WorldToScreen(Vector3, out Vector2)

@@ -497,10 +497,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html index 2aea01088..582e112a5 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html index 0228622d3..1bc076eca 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html +++ b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetManager(Dalamud, SigScanner)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -168,10 +168,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -189,10 +189,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html b/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html index d8f263737..042739b6d 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html +++ b/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LibcFunction(SigScanner)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NewString(Byte[])

@@ -201,10 +201,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html b/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html index d7d2d638d..ad94ad2c0 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html +++ b/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -165,10 +165,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Finalize()

@@ -180,10 +180,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Read()

@@ -220,10 +220,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.StdString.html b/docs/api/Dalamud.Game.Internal.Libc.StdString.html index caaa2d88a..0567a9f83 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.StdString.html +++ b/docs/api/Dalamud.Game.Internal.Libc.StdString.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RawData

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReadFromPointer(IntPtr)

@@ -230,10 +230,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html index 9c77b70e5..8ae193e1f 100644 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html index a1ce97d00..1729976e6 100644 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html +++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameNetwork(SigScanner)

@@ -152,10 +152,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnNetworkMessage

Event that is called when a network message is sent/received.

@@ -184,10 +184,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -199,10 +199,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -214,10 +214,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateQueue(Framework)

@@ -257,10 +257,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html index 5695c0ef9..afad3d7f7 100644 --- a/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html +++ b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html @@ -113,10 +113,10 @@ diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html index df9fda653..294bb66fb 100644 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html +++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.html index e7e557b28..b45f974a8 100644 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.html +++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NetworkHandlers(Dalamud, Boolean)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ProcessCfPop

@@ -188,10 +188,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html index 5e8be0228..ecf3141aa 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Index

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaId

@@ -178,10 +178,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html index 3b7a28baa..92e1c3759 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ArtisanId

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHq

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemQuantity

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastReviewTime

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingId

@@ -288,10 +288,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Materia

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaCount

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnMannequin

@@ -375,10 +375,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerName

@@ -404,10 +404,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PricePerUnit

@@ -433,10 +433,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerCityId

@@ -462,10 +462,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerId

@@ -491,10 +491,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerName

@@ -520,10 +520,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerOwnerId

@@ -549,10 +549,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StainId

@@ -578,10 +578,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TotalTax

@@ -613,10 +613,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html index cd12af6c2..6df01803a 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemListings

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingIndexEnd

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingIndexStart

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RequestId

@@ -232,10 +232,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -285,10 +285,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html index 0cc5c3631..7753c2e78 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BuyerName

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHq

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnMannequin

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PurchaseTime

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Quantity

@@ -288,10 +288,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SalePrice

@@ -323,10 +323,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html index de1647270..9ecfc4e17 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId2

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HistoryListings

@@ -203,10 +203,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -256,10 +256,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html b/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html index 7b039e417..68acc7982 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CrystariumTax

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GridaniaTax

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IshgardTax

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

KuganeTax

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LimsaLominsaTax

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UldahTax

@@ -290,10 +290,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -343,10 +343,10 @@ diff --git a/docs/api/Dalamud.Game.SigScanner.html b/docs/api/Dalamud.Game.SigScanner.html index 78c39f09d..2fd7d192f 100644 --- a/docs/api/Dalamud.Game.SigScanner.html +++ b/docs/api/Dalamud.Game.SigScanner.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SigScanner(ProcessModule, Boolean)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionBase

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionOffset

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionSize

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Is32BitProcess

@@ -285,10 +285,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsCopy

@@ -316,10 +316,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Module

@@ -347,10 +347,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SearchBase

@@ -378,10 +378,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionBase

@@ -409,10 +409,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionOffset

@@ -440,10 +440,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionSize

@@ -473,10 +473,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -489,10 +489,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetStaticAddressFromSig(String, Int32)

@@ -547,10 +547,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ResolveRelativeAddress(IntPtr, Int32)

@@ -599,10 +599,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

Scan(IntPtr, Int32, String)

@@ -656,10 +656,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanData(String)

@@ -706,10 +706,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanModule(String)

@@ -756,10 +756,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanText(String)

@@ -816,10 +816,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< diff --git a/docs/api/Dalamud.Interface.FontAwesomeExtensions.html b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html index 6adc4104d..c4991c9f5 100644 --- a/docs/api/Dalamud.Interface.FontAwesomeExtensions.html +++ b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToIconChar(FontAwesomeIcon)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToIconString(FontAwesomeIcon)

@@ -214,10 +214,10 @@ diff --git a/docs/api/Dalamud.Interface.FontAwesomeIcon.html b/docs/api/Dalamud.Interface.FontAwesomeIcon.html index 604456b82..a59b96b70 100644 --- a/docs/api/Dalamud.Interface.FontAwesomeIcon.html +++ b/docs/api/Dalamud.Interface.FontAwesomeIcon.html @@ -5743,10 +5743,10 @@ diff --git a/docs/api/Dalamud.Interface.InterfaceManager.html b/docs/api/Dalamud.Interface.InterfaceManager.html index bdf5dcf9c..7563b5fc7 100644 --- a/docs/api/Dalamud.Interface.InterfaceManager.html +++ b/docs/api/Dalamud.Interface.InterfaceManager.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InterfaceManager(Dalamud, SigScanner)

@@ -157,10 +157,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastImGuiIoPtr

@@ -186,10 +186,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildFonts

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DefaultFont

@@ -247,10 +247,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IconFont

@@ -279,10 +279,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -294,10 +294,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -309,10 +309,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(Byte[])

@@ -356,10 +356,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(String)

@@ -403,10 +403,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImageRaw(Byte[], Int32, Int32, Int32)

@@ -465,10 +465,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RebuildFonts()

@@ -482,10 +482,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnDraw

This event gets called by a plugin UiBuilder when read

@@ -522,10 +522,10 @@ diff --git a/docs/api/Dalamud.Interface.MySinkExtensions.html b/docs/api/Dalamud.Interface.MySinkExtensions.html index 7bda34575..6917faf8c 100644 --- a/docs/api/Dalamud.Interface.MySinkExtensions.html +++ b/docs/api/Dalamud.Interface.MySinkExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EventSink(LoggerSinkConfiguration, IFormatProvider)

@@ -172,10 +172,10 @@ diff --git a/docs/api/Dalamud.Interface.SerilogEventSink.html b/docs/api/Dalamud.Interface.SerilogEventSink.html index e4d3dfe03..67d42dd65 100644 --- a/docs/api/Dalamud.Interface.SerilogEventSink.html +++ b/docs/api/Dalamud.Interface.SerilogEventSink.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SerilogEventSink(IFormatProvider)

@@ -152,10 +152,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Instance

@@ -183,10 +183,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Emit(LogEvent)

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnLogLine

@@ -256,10 +256,10 @@ diff --git a/docs/api/Dalamud.Interface.UiBuilder.html b/docs/api/Dalamud.Interface.UiBuilder.html index d5ab88dc9..509a09c33 100644 --- a/docs/api/Dalamud.Interface.UiBuilder.html +++ b/docs/api/Dalamud.Interface.UiBuilder.html @@ -120,10 +120,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

UiBuilder(InterfaceManager, String)

@@ -162,10 +162,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnOpenConfigUi

Event that is fired when the plugin should open its configuration interface.

@@ -194,10 +194,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultFont

@@ -225,10 +225,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

IconFont

@@ -256,10 +256,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildFonts

@@ -293,10 +293,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -309,10 +309,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(Byte[])

@@ -359,10 +359,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(String)

@@ -409,10 +409,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImageRaw(Byte[], Int32, Int32, Int32)

@@ -477,10 +477,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

RebuildFonts()

@@ -497,10 +497,10 @@ ready to be used on the next UI frame.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildUi

The delegate that gets called when Dalamud is ready to draw your windows or overlays. @@ -538,10 +538,10 @@ When it is called, you can use static ImGui calls.

diff --git a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html index b42d16b89..2651038a0 100644 --- a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html +++ b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DalamudPluginInterface(Dalamud, String, PluginConfigurations)

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientState

The ClientState object that allows you to access current client memory information like actors, territories, etc.

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandManager

The CommandManager object that allows you to add and remove custom chat commands.

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Data

A DataManager instance which allows you to access game data needed by the main dalamud features.

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Framework

The Framework object that allows you to interact with the client.

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetModuleScanner

A SigScanner instance targeting the main module of the FFXIV process.

@@ -314,10 +314,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UiBuilder

A UiBuilder instance which allows you to draw UI into the game via ImGui draw calls.

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -362,10 +362,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPluginConfig()

@@ -394,10 +394,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Log(String, Object[])

@@ -435,10 +435,10 @@ public void Log(string messageTemplate, params object[] values) | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(Exception, String, Object[])

@@ -482,10 +482,10 @@ public void LogError(Exception exception, string messageTemplate, params object[ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(String, Object[])

@@ -523,10 +523,10 @@ public void LogError(string messageTemplate, params object[] values) | - Improve this Doc + Improve this Doc - View Source + View Source

SavePluginConfig(IPluginConfiguration)

@@ -551,6 +551,114 @@ public void LogError(string messageTemplate, params object[] values)IPluginConfiguration currentConfig

The current configuration.

+ + + + + + | + Improve this Doc + + + View Source + + +

SendMessage(ExpandoObject)

+

Send a message to all subscribed plugins.

+
+
+
Declaration
+
+
public void SendMessage(ExpandoObject message)
+
+
Parameters
+ + + + + + + + + + + + + + + +
TypeNameDescription
System.Dynamic.ExpandoObjectmessage

The message to send.

+
+ + | + Improve this Doc + + + View Source + + +

Subscribe(String, Action<ExpandoObject>)

+

Subscribe to an IPC message by a plugin.

+
+
+
Declaration
+
+
public void Subscribe(string pluginName, Action<ExpandoObject> action)
+
+
Parameters
+ + + + + + + + + + + + + + + + + + + + +
TypeNameDescription
System.StringpluginName

The InternalName of the plugin to subscribe to.

+
System.Action<System.Dynamic.ExpandoObject>action

The action to take when a message was received.

+
+ + | + Improve this Doc + + + View Source + + +

Unsubscribe(String)

+

Unsubscribe from messages from a plugin.

+
+
+
Declaration
+
+
public void Unsubscribe(string pluginName)
+
+
Parameters
+ + + + + + + + + + + + + @@ -567,10 +675,10 @@ public void LogError(string messageTemplate, params object[] values) diff --git a/docs/api/Dalamud.Plugin.IDalamudPlugin.html b/docs/api/Dalamud.Plugin.IDalamudPlugin.html index df5c0f504..125458a1f 100644 --- a/docs/api/Dalamud.Plugin.IDalamudPlugin.html +++ b/docs/api/Dalamud.Plugin.IDalamudPlugin.html @@ -92,10 +92,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -125,10 +125,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Initialize(DalamudPluginInterface)

@@ -165,10 +165,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginDefinition.html b/docs/api/Dalamud.Plugin.PluginDefinition.html index 6a10ac7c7..e4360676a 100644 --- a/docs/api/Dalamud.Plugin.PluginDefinition.html +++ b/docs/api/Dalamud.Plugin.PluginDefinition.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ApplicableVersion

@@ -144,10 +144,10 @@
TypeNameDescription
System.StringpluginName

The InternalName of the plugin to unsubscribe from.

| - Improve this Doc + Improve this Doc - View Source + View Source

AssemblyVersion

@@ -174,10 +174,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Author

@@ -204,10 +204,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -234,10 +234,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InternalName

@@ -264,10 +264,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHide

@@ -294,10 +294,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -324,10 +324,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RepoUrl

@@ -360,10 +360,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginLog.html b/docs/api/Dalamud.Plugin.PluginLog.html index f9ef5573d..b56db0985 100644 --- a/docs/api/Dalamud.Plugin.PluginLog.html +++ b/docs/api/Dalamud.Plugin.PluginLog.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Log(String, Object[])

@@ -154,10 +154,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(Exception, String, Object[])

@@ -200,10 +200,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(String, Object[])

@@ -246,10 +246,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html b/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html index 265b9006b..480625c7f 100644 --- a/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html +++ b/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginRepository.html b/docs/api/Dalamud.Plugin.PluginRepository.html index 8f2b3b35a..53474a06a 100644 --- a/docs/api/Dalamud.Plugin.PluginRepository.html +++ b/docs/api/Dalamud.Plugin.PluginRepository.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginRepository(PluginManager, String, String)

@@ -158,10 +158,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginMaster

@@ -189,10 +189,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

State

@@ -221,10 +221,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InstallPlugin(PluginDefinition, Boolean)

@@ -273,10 +273,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UpdatePlugins(Boolean)

@@ -326,10 +326,10 @@ diff --git a/docs/api/ImGuiNET.RangeAccessor-1.html b/docs/api/ImGuiNET.RangeAccessor-1.html index 3bad91f9c..f38c70165 100644 --- a/docs/api/ImGuiNET.RangeAccessor-1.html +++ b/docs/api/ImGuiNET.RangeAccessor-1.html @@ -101,6 +101,7 @@
Syntax
public struct RangeAccessor<T>
+
     where T : struct
Type Parameters
diff --git a/docs/api/ImGuiNET.RangePtrAccessor-1.html b/docs/api/ImGuiNET.RangePtrAccessor-1.html index bfcac7e52..99645455e 100644 --- a/docs/api/ImGuiNET.RangePtrAccessor-1.html +++ b/docs/api/ImGuiNET.RangePtrAccessor-1.html @@ -101,6 +101,7 @@
Syntax
public struct RangePtrAccessor<T>
+
     where T : struct
Type Parameters
diff --git a/docs/manifest.json b/docs/manifest.json index ac5e9fc89..a8cf63e7c 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -21,7 +21,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.IPluginConfiguration.html", - "hash": "5wEsJUDvHdKFvxFjZ4ZVzA==" + "hash": "89B1xTzYhG08Q+mcaRgq2g==" } }, "is_incremental": false, @@ -33,7 +33,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.PluginConfigurations.html", - "hash": "sqtnVk300O46s4JrhCdnnQ==" + "hash": "+YbTjD35pMMEb8nbw+VJQg==" } }, "is_incremental": false, @@ -57,7 +57,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.DataManager.html", - "hash": "PFLedPNyoK+45na9BoTxHw==" + "hash": "t7LsfqEtlv8DT1O/5hFIPQ==" } }, "is_incremental": false, @@ -69,7 +69,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html", - "hash": "RZvq7DUAfTO0Ss8kKJeD8Q==" + "hash": "kpSOhYYvp0fPIY+L/dSGBw==" } }, "is_incremental": false, @@ -93,7 +93,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.Completion.html", - "hash": "RfXFSxHzCWFsmzQSCvAsvg==" + "hash": "O5PWSFhm2+F6K03pKNOexA==" } }, "is_incremental": false, @@ -105,7 +105,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.ContentFinderCondition.html", - "hash": "OpvxJvdThkatyvcINpn7kw==" + "hash": "V+N5SCyB+KiI91/DY7FWRg==" } }, "is_incremental": false, @@ -117,7 +117,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.Item.html", - "hash": "bbaTSCvVF5GdYhHeBVb0vg==" + "hash": "3KPUQ2RC99gbNuSnDHUwag==" } }, "is_incremental": false, @@ -129,7 +129,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.PetMirage.html", - "hash": "xO8ByaFzwoFhZZjiVcQIrA==" + "hash": "9ZavRKT7Fp4pBHPEZ41Eow==" } }, "is_incremental": false, @@ -165,7 +165,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.EnumExtensions.html", - "hash": "JYpFrzZX7p/ZZTr4r4ajfg==" + "hash": "ATkop79KJ3HaQlnIMgreig==" } }, "is_incremental": false, @@ -177,7 +177,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeIconChar.html", - "hash": "kzfJsEK0dpcBnDonWX+RrQ==" + "hash": "ml550CWA5vpKsr7uajoq6A==" } }, "is_incremental": false, @@ -189,7 +189,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html", - "hash": "78w5C9TIh6yPJT4sX1lpPQ==" + "hash": "qS73rQAIhVgT2n6X6Yup+w==" } }, "is_incremental": false, @@ -201,7 +201,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html", - "hash": "8WnW22cnFZJMXndVXxL9kg==" + "hash": "sQxMa7FHL+Ay9GpjvjP4ew==" } }, "is_incremental": false, @@ -213,7 +213,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html", - "hash": "HXZQtAmi2TuQc/hkLKNzYg==" + "hash": "EIU1Qp6yvfGDRwEKqu8Nyg==" } }, "is_incremental": false, @@ -225,7 +225,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.html", - "hash": "lyRjKY4JgXot5cwm+CWDEA==" + "hash": "GYJcgfZXc+TynMhyRuJRzQ==" } }, "is_incremental": false, @@ -237,7 +237,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html", - "hash": "jZYqJzHULP9337ZYXgUSTg==" + "hash": "v1r1OYbt8QxUS1nQiPXdcg==" } }, "is_incremental": false, @@ -249,7 +249,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html", - "hash": "g847jLfWpMC8urm7zvqRWw==" + "hash": "jobqiyi3L0cfz+czNHrIiw==" } }, "is_incremental": false, @@ -261,7 +261,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html", - "hash": "mlLBqcDKbHF4csnJIHCABQ==" + "hash": "w0nk9GF6gzncICfjwfm2Fw==" } }, "is_incremental": false, @@ -273,7 +273,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html", - "hash": "zEHZgi+hYsWdza85AyuByA==" + "hash": "pdd97g87aQBg/fbCE0gRaA==" } }, "is_incremental": false, @@ -285,7 +285,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html", - "hash": "rnoyemuG1GN1Uv1MXE/8+A==" + "hash": "TLWxuN9ALpbCNzO+RZmrtw==" } }, "is_incremental": false, @@ -297,7 +297,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html", - "hash": "xT9+X0VcsPYhdSzeJmegdg==" + "hash": "ha7PkPgPWJAAP/+c7yruMQ==" } }, "is_incremental": false, @@ -309,7 +309,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html", - "hash": "cxeizxz073Y4/lH79vxBkA==" + "hash": "ungEO3cBX7VIjEvkwAGByQ==" } }, "is_incremental": false, @@ -321,7 +321,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html", - "hash": "gvdrq9TtUkFvw+6DKfAZVQ==" + "hash": "xqV3Qaaq4B2eZkLjk3dD0A==" } }, "is_incremental": false, @@ -333,7 +333,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html", - "hash": "JRIyKE+quF8pv2ZDnx2TrA==" + "hash": "xb/E4oFHKJgdKhTlsqBjSQ==" } }, "is_incremental": false, @@ -345,7 +345,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html", - "hash": "qnZmKj8CJJfAVb2Sbop5KQ==" + "hash": "kUBLja8BiZwh5ItN/eBgKQ==" } }, "is_incremental": false, @@ -357,7 +357,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html", - "hash": "1y9C/3tcaWj0Ac7+wRbWJg==" + "hash": "gnHH/K55W43RPudRSjPTlA==" } }, "is_incremental": false, @@ -381,7 +381,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeString.html", - "hash": "qkURtV9APX+oIQMtvr0jBQ==" + "hash": "REJ/nGUN4ezV3QVArXLYmg==" } }, "is_incremental": false, @@ -393,7 +393,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html", - "hash": "/UaTvvBI3/Y9v6D72NaAsQ==" + "hash": "myc/VIF4j8uLtwUpdq29cQ==" } }, "is_incremental": false, @@ -417,7 +417,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatEntry.html", - "hash": "GFBGzTkZNGAXjH9rrTdLeA==" + "hash": "XTVAwcqHV0bDXQBeTTSmJQ==" } }, "is_incremental": false, @@ -429,7 +429,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatType.html", - "hash": "kcgTkurEohoF+7bw+q+Ydw==" + "hash": "JxiAEUsHNQaXxWiOQMj7iA==" } }, "is_incremental": false, @@ -441,7 +441,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatTypeExtensions.html", - "hash": "QFUj1uOre6Qir0Zd2eZ6NA==" + "hash": "88mI8rdO3pVvJ6HMM94ZZw==" } }, "is_incremental": false, @@ -453,7 +453,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html", - "hash": "wVItQ4r+yDT281IqZV3YGg==" + "hash": "GMLCHs4xJRRbEgxnGA6Nfg==" } }, "is_incremental": false, @@ -477,7 +477,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ChatHandlers.html", - "hash": "vRysh+wEuL/Lwq7lzUJrKg==" + "hash": "S/2W4YxkbrADwCMYca9PQg==" } }, "is_incremental": false, @@ -489,7 +489,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.html", - "hash": "1wHmo4hokQcmfbAJQaTk5Q==" + "hash": "SplX7ZVyK8X5Y+1gkn36UQ==" } }, "is_incremental": false, @@ -501,7 +501,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html", - "hash": "ttb43BJmgfAusdGiF19Www==" + "hash": "7cd61JTJ1w5uNZ6kkYV3GA==" } }, "is_incremental": false, @@ -513,7 +513,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.ObjectKind.html", - "hash": "OjmMttneBGQgp4WF2HiKKA==" + "hash": "ZZfYK66daQVtPXW4nqObEQ==" } }, "is_incremental": false, @@ -525,7 +525,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Position3.html", - "hash": "zVwghOGVQtHa9b5INMPemw==" + "hash": "e1bDZkrvOXxdTBdxJDYgLQ==" } }, "is_incremental": false, @@ -537,7 +537,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html", - "hash": "tZjM7L1lDRwpP4gbrMfcUg==" + "hash": "jSQ81VPfWgP3+kljwCzc+Q==" } }, "is_incremental": false, @@ -549,7 +549,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html", - "hash": "2oelvBlPIkr1HK+LQ8MOEg==" + "hash": "G0FU2SZ4VORW/OxepV5PUg==" } }, "is_incremental": false, @@ -561,7 +561,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.World.html", - "hash": "WnC71kxHWBPJEzX5H0vO1g==" + "hash": "GXIdqaTxyPK6GsBmWkJ0Uw==" } }, "is_incremental": false, @@ -585,7 +585,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Actor.html", - "hash": "VtuCC3wwIzuak9mzonsLkQ==" + "hash": "PvgzJ66yONtQ8jh4RC5e1A==" } }, "is_incremental": false, @@ -597,7 +597,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Chara.html", - "hash": "IDy9j1MLGbuMPXY8mh6ntw==" + "hash": "keIq5ATIVIHTl5Ok0mT/6g==" } }, "is_incremental": false, @@ -609,7 +609,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html", - "hash": "qLHLHJUys4jQHeZZDHPshA==" + "hash": "nYccfBdj3ODAt0Y/wZdpog==" } }, "is_incremental": false, @@ -621,7 +621,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html", - "hash": "6l7oHdul1P9SJ+aBYtxUeA==" + "hash": "hU5KrWhD+Qp1Yzg1oP4rmw==" } }, "is_incremental": false, @@ -633,7 +633,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html", - "hash": "RQD616Px0nkntQMzrcCctw==" + "hash": "Ym7WBf1VdzuRAg1xI6IaNg==" } }, "is_incremental": false, @@ -657,7 +657,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html", - "hash": "zeq1XNOCfCmAOBIoj9Fu9A==" + "hash": "WEbqohtV2UHSqcOYbCv4tw==" } }, "is_incremental": false, @@ -669,7 +669,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html", - "hash": "LbdvyetpPRpiQJl+zI035w==" + "hash": "fLWaAJMznbvrpUkzJGriFw==" } }, "is_incremental": false, @@ -705,7 +705,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.ClientState.html", - "hash": "jXRXK53yx5saFaRgkXSzfg==" + "hash": "m8nF9qO3XN4Vn6fPiDbc2w==" } }, "is_incremental": false, @@ -717,7 +717,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.JobGauges.html", - "hash": "87+WqQjcnhqIdFNacBTNwA==" + "hash": "M9fH3RfhxcCOmRs40k8f7g==" } }, "is_incremental": false, @@ -729,7 +729,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.KeyState.html", - "hash": "fEHbTrdQ6qYqYfh9yaBbHw==" + "hash": "2XaODhDr0zRS+F5hsvfgxQ==" } }, "is_incremental": false, @@ -741,7 +741,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.PartyList.html", - "hash": "6tL6k5KouR0X5JXycZMgnQ==" + "hash": "FcQLe1zEqt64/1t/Q/fSOA==" } }, "is_incremental": false, @@ -753,7 +753,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.html", - "hash": "VNGYlaaO9lW/A57XNbdjkg==" + "hash": "Wg6RnIfqscDuu5tBNtSK2w==" } }, "is_incremental": false, @@ -765,7 +765,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html", - "hash": "OCPPmdXtUfIBwyMNJffkxA==" + "hash": "tl+M1EeYQ2nvqdevCvQAwQ==" } }, "is_incremental": false, @@ -777,7 +777,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html", - "hash": "euD9Dj4v3/FZ4c+KChaFNw==" + "hash": "QpuM/vzyPJhaRjtFToG4wg==" } }, "is_incremental": false, @@ -789,7 +789,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html", - "hash": "I8ZBUzlNwCEKRNr1RSBNpQ==" + "hash": "Rm+WdQpXGSRqwxBUdEpQjg==" } }, "is_incremental": false, @@ -801,7 +801,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html", - "hash": "GEDC0+k2wsHdb1/cnfheRg==" + "hash": "0jMEZnHi3n7QJ1coICppiw==" } }, "is_incremental": false, @@ -813,7 +813,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html", - "hash": "hPaqmXOmVWvS70OjBZ70GA==" + "hash": "k2iUVE9yoasdYZFV5t/h2A==" } }, "is_incremental": false, @@ -825,7 +825,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html", - "hash": "JTg6oe0RZR3dZB0eTkCvlw==" + "hash": "z50yMr/vk+ZlTfTi/08tsQ==" } }, "is_incremental": false, @@ -837,7 +837,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html", - "hash": "bMDfa0jeeDFXUGcC9Id7TQ==" + "hash": "z7qTcCwwER5Cd1YnOIIH9g==" } }, "is_incremental": false, @@ -849,7 +849,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html", - "hash": "fAyUoDBt2g38ihaCrPUf9w==" + "hash": "qBnJKC2FUMiwnpLgIdreMQ==" } }, "is_incremental": false, @@ -861,7 +861,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html", - "hash": "mUzg0xbJIPnVQSJBokltaQ==" + "hash": "Y5j2YWG4s0sTAfTeqIY1Tg==" } }, "is_incremental": false, @@ -873,7 +873,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html", - "hash": "rx9tj6XkNTNVRY+vta64aw==" + "hash": "i7TYiauMvyvm5aieZ4GcQw==" } }, "is_incremental": false, @@ -885,7 +885,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html", - "hash": "vELlhjFia1fbiIE2HUQUnw==" + "hash": "4qiEeTiDlGE6e60qW+Is/A==" } }, "is_incremental": false, @@ -897,7 +897,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html", - "hash": "5DFVV5yBSLL40E6cqTLuZg==" + "hash": "r3YG0kuPVPSVr135sUMbKg==" } }, "is_incremental": false, @@ -909,7 +909,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html", - "hash": "KGB+lPrqyhvL6tzw2H+Qlw==" + "hash": "VUeW4k+G9iv8XZKVw5Sz4w==" } }, "is_incremental": false, @@ -921,7 +921,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html", - "hash": "YjwDh37ameK9t/Eq4zsxeg==" + "hash": "LZvYFhOopjI6iWiJQLPfFw==" } }, "is_incremental": false, @@ -933,7 +933,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html", - "hash": "gpWbcpkvRVLb5x9oCPOpdg==" + "hash": "gjo/yQn2BpR4qCm0rvJl3A==" } }, "is_incremental": false, @@ -945,7 +945,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html", - "hash": "9zut9OfYAfthMt+pzqTyIw==" + "hash": "HekQY546n0hm5MXGY/aABQ==" } }, "is_incremental": false, @@ -957,7 +957,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html", - "hash": "UXtXNnBX8KFtTQjXO57m7g==" + "hash": "Qec9HBTt9Vo7x/IIsmLXNg==" } }, "is_incremental": false, @@ -969,7 +969,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html", - "hash": "tNawsu0UxWKjPl/xbJs01Q==" + "hash": "E0NJU6LAyfcsBYVr7lcz4g==" } }, "is_incremental": false, @@ -981,7 +981,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html", - "hash": "oSXWkRYIdbfq94xq7+IDjg==" + "hash": "mYRvZB2HmKSWqHgTq/pEzA==" } }, "is_incremental": false, @@ -993,7 +993,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html", - "hash": "PEvKUqN7AmPspVdjc+t3fw==" + "hash": "F8n6Wd8ERl2uaoeGYcXwNA==" } }, "is_incremental": false, @@ -1005,7 +1005,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html", - "hash": "y0j8Ip7k2/Cy6qs/4Z/zMg==" + "hash": "DY2WMdYi28CEglYVcVWUPw==" } }, "is_incremental": false, @@ -1017,7 +1017,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html", - "hash": "9EIRIe1mbzJaE3vYjwD2Tw==" + "hash": "ZF7VAE4/9Ao2O2n/9+ZFmQ==" } }, "is_incremental": false, @@ -1029,7 +1029,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html", - "hash": "l0nIoRmLK20qnbsY9L6Xkw==" + "hash": "0VD4ZelVBxBJEZeJtPff4A==" } }, "is_incremental": false, @@ -1041,7 +1041,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html", - "hash": "K750j7jTmLvqww40W8KdEw==" + "hash": "nO0RA3tS2RyyOza5KGS29A==" } }, "is_incremental": false, @@ -1053,7 +1053,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html", - "hash": "Hh/pawXi4ja0Wr2ienalLQ==" + "hash": "KaxA/r7tJ0ovMiAGo+a4zg==" } }, "is_incremental": false, @@ -1065,7 +1065,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html", - "hash": "LzK0m0CODE2S5FP485D9zg==" + "hash": "MBMNWx+UoA0nMYC5VDHm2w==" } }, "is_incremental": false, @@ -1089,7 +1089,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.PartyMember.html", - "hash": "n12/zMHcabihri8NYLO7Tg==" + "hash": "3PUq3Xcfsr/AdU4E73P7Yw==" } }, "is_incremental": false, @@ -1101,7 +1101,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.StatusEffect.html", - "hash": "APuHshc1XAFvjXkUJFSPow==" + "hash": "SDgRBTXry9avpNKb5SxSsA==" } }, "is_incremental": false, @@ -1137,7 +1137,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html", - "hash": "ROKJPNPlvfszHt0mzO1dcA==" + "hash": "ivC8yastYVaJItCEYofSsQ==" } }, "is_incremental": false, @@ -1149,7 +1149,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandInfo.html", - "hash": "MM1Pw6vNG+Ju/r9nAG2Xdg==" + "hash": "ahSJh18G0bGpO+RXR5MG9Q==" } }, "is_incremental": false, @@ -1161,7 +1161,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandManager.html", - "hash": "6FkqJall18qmIHO/nO8gow==" + "hash": "a32Xb9fQzWlxO2mGuQcsCQ==" } }, "is_incremental": false, @@ -1185,7 +1185,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html", - "hash": "Bn5zAVPWRUukUEF+woOPJw==" + "hash": "eYVwi3V0VVWIm2EHrly2qw==" } }, "is_incremental": false, @@ -1197,7 +1197,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html", - "hash": "C7zPK6Llgve3yO4ZPSVqSQ==" + "hash": "zO5fYywQPouRIph2jAA/mg==" } }, "is_incremental": false, @@ -1221,7 +1221,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.File.ResourceManager.html", - "hash": "gqOU0lJHhQoOGPD8wO47gQ==" + "hash": "ryCCvxXI6yWdgMevS6m4Fw==" } }, "is_incremental": false, @@ -1245,7 +1245,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html", - "hash": "WU8PXcwlmcONSAzIRQWBRw==" + "hash": "fI/tKWv4jQlEqfeKjIEPAw==" } }, "is_incremental": false, @@ -1257,7 +1257,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.html", - "hash": "uHiwmYC2THfu8sEJ2r5nrA==" + "hash": "XFoOHg7vP3liguHhse/GRQ==" } }, "is_incremental": false, @@ -1269,7 +1269,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html", - "hash": "JPt2Bd8A+d29Z2x9v/nSiA==" + "hash": "4OTn4yhDh8kC6CXdtVK2cw==" } }, "is_incremental": false, @@ -1281,7 +1281,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html", - "hash": "F4jiMt3kMRVY4/6oh2yqbQ==" + "hash": "fAj59AUK+Utn0xft55SVRw==" } }, "is_incremental": false, @@ -1293,7 +1293,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html", - "hash": "9LlFgxRZ9TncDJGjEkoZNg==" + "hash": "+1c+Zi1/VE5ku3FN/ijWeg==" } }, "is_incremental": false, @@ -1305,7 +1305,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.html", - "hash": "zrmt5RzIL5hYIs8AgO4fyg==" + "hash": "1byHVzn94jGnVPpmAz+mlA==" } }, "is_incremental": false, @@ -1317,7 +1317,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.GameGui.html", - "hash": "4b6nORh1NVnstmoUjTWi0w==" + "hash": "sQKZhYUNX7S3Awp46v0p4g==" } }, "is_incremental": false, @@ -1329,7 +1329,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html", - "hash": "Fj9GqXIomH28nJ/ZqhqIHQ==" + "hash": "rLLlnBXOeqsPFIWLy7/xkQ==" } }, "is_incremental": false, @@ -1341,7 +1341,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.html", - "hash": "XUgrwXDdAy7V3mgkgsgldw==" + "hash": "9fbPhJ25wCVioM7pmYSc6A==" } }, "is_incremental": false, @@ -1365,7 +1365,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.LibcFunction.html", - "hash": "jzjj+/4zA1ITCWY3UyJx9A==" + "hash": "Yaza1U2NytsCLSU7YDtRfg==" } }, "is_incremental": false, @@ -1377,7 +1377,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.OwnedStdString.html", - "hash": "t5ueariQtoljyp59JBYwig==" + "hash": "hoj7gFDfA4zqD06cZoeEig==" } }, "is_incremental": false, @@ -1389,7 +1389,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.StdString.html", - "hash": "gjTdw9vf3423G5N6vxPsXA==" + "hash": "KKnWEXclyIWF4VHKjorkfQ==" } }, "is_incremental": false, @@ -1413,7 +1413,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html", - "hash": "HLVDg25AKEJfIvgD+8WAzA==" + "hash": "Ha99htr9HWLTwnsZr0Tzgw==" } }, "is_incremental": false, @@ -1425,7 +1425,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.html", - "hash": "bJAQvoOgO93k0w9NGF5Ejg==" + "hash": "0ZDNJa4Zs1T7O+8Yj3lf3g==" } }, "is_incremental": false, @@ -1437,7 +1437,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html", - "hash": "YtLiLVCpUD/TQZqTyejJZg==" + "hash": "LuXQuZY9gZtSGl3r7aU5wg==" } }, "is_incremental": false, @@ -1473,7 +1473,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.CfPop.html", - "hash": "R8pOJzghDB7JyaJcyTHrMw==" + "hash": "tTfm5Ngt9Ch7PcIo7m8KJw==" } }, "is_incremental": false, @@ -1485,7 +1485,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.html", - "hash": "AGmEM4G5bMSYk9bMtPA4ZA==" + "hash": "x15BoLl/q/lGp56V6Sc7GA==" } }, "is_incremental": false, @@ -1497,7 +1497,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html", - "hash": "Xfb43GOjZ64Pi/dl8MK9gg==" + "hash": "PeYlckY4AMXy0RbD6djezw==" } }, "is_incremental": false, @@ -1509,7 +1509,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html", - "hash": "7E/UrlzGM74iubTQ6hocow==" + "hash": "tCsF4rkQtAKKa1PU2vei+g==" } }, "is_incremental": false, @@ -1521,7 +1521,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html", - "hash": "VJiCW6w8tqAU8s4cb+yAFg==" + "hash": "llfBMAc69Pl52zT1QhLi9w==" } }, "is_incremental": false, @@ -1533,7 +1533,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html", - "hash": "TebUSH+KDte2u4RFzBJFCQ==" + "hash": "qZ8R+JKpc1zzDEN4e9WTiQ==" } }, "is_incremental": false, @@ -1545,7 +1545,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.html", - "hash": "y8jFPtnB/1iXMkJSUO8jfw==" + "hash": "IepIsgxG99p3pPYf0ms4JA==" } }, "is_incremental": false, @@ -1557,7 +1557,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketTaxRates.html", - "hash": "enS4PqmMVbvw2C4AiiuPsA==" + "hash": "6Ka/k0UhZROWG24GtyEl8w==" } }, "is_incremental": false, @@ -1593,7 +1593,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.SigScanner.html", - "hash": "Vl4sEXBOMPZ9fHg9wn+3mw==" + "hash": "t6iWQRIFhSue+MR3qAgtzQ==" } }, "is_incremental": false, @@ -1617,7 +1617,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.FontAwesomeExtensions.html", - "hash": "CqEDap8Qyr2KkWKozeToPQ==" + "hash": "lo1WdEgprbAhku3xMKfNNg==" } }, "is_incremental": false, @@ -1629,7 +1629,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.FontAwesomeIcon.html", - "hash": "gkZEYfCKr4qEdeCy4i2YMQ==" + "hash": "fUKk3CfxPIttO9lTvMK4mw==" } }, "is_incremental": false, @@ -1641,7 +1641,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.InterfaceManager.html", - "hash": "RH70RL/tuRjUwwqKLfQQlw==" + "hash": "8LK9etHKP4Fhc2E/SvwAmg==" } }, "is_incremental": false, @@ -1653,7 +1653,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.MySinkExtensions.html", - "hash": "6CD6y0K9dDmYgJX5Z6A/sQ==" + "hash": "CpvN5cf0eOeRJACeeeqpMw==" } }, "is_incremental": false, @@ -1665,7 +1665,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.SerilogEventSink.html", - "hash": "OR548wbEbLrskcVzRO0N4w==" + "hash": "oHiE2rggsbwerQlYHLaBhQ==" } }, "is_incremental": false, @@ -1677,7 +1677,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.UiBuilder.html", - "hash": "IwrausWlwAIZTIXiLrA6qQ==" + "hash": "+1oIwKZdgEwIk1G57ARzaw==" } }, "is_incremental": false, @@ -1701,7 +1701,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.DalamudPluginInterface.html", - "hash": "2e3kcVWyI6kGkR1VfgEcdg==" + "hash": "WCy1oUtlsh/dII/tX4JLDA==" } }, "is_incremental": false, @@ -1713,7 +1713,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.IDalamudPlugin.html", - "hash": "eK8MN2VBnsmaJ6HD9zTE7g==" + "hash": "NMGjFQhSFsgNtCCoO2xULQ==" } }, "is_incremental": false, @@ -1725,7 +1725,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginDefinition.html", - "hash": "XjCrKSwjPi9wUtDlN8rEoQ==" + "hash": "mKmSmLXfOX8m7RouGpO0rA==" } }, "is_incremental": false, @@ -1737,7 +1737,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginLog.html", - "hash": "vXAhG+3tG5i0BTcN4xHCXQ==" + "hash": "ckSUyRVv2Wt2ppjac64oiQ==" } }, "is_incremental": false, @@ -1749,7 +1749,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginRepository.InitializationState.html", - "hash": "Ouhfrt7/n+O3+W1aQTIBaA==" + "hash": "UygQo5paqLg8kUN+zKr7KA==" } }, "is_incremental": false, @@ -1761,7 +1761,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginRepository.html", - "hash": "LKHAm/izB1DlrMEvahqzQw==" + "hash": "icYz+WMQFKNmaUHHlZfc8g==" } }, "is_incremental": false, @@ -1788,7 +1788,7 @@ "hash": "Y1KVb7KI9HStMOy6/3RQpg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1800,7 +1800,7 @@ "hash": "5uNOiTG+Z+CjrkHiBdfezg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1812,7 +1812,7 @@ "hash": "eT9hMJrVlFBQMLFYJK0cHg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1824,7 +1824,7 @@ "hash": "j7ggk2fu0FYtckXnHe35zA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1836,7 +1836,7 @@ "hash": "UGwLxqCNf0gv6XsbsaCfuw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1848,7 +1848,7 @@ "hash": "4rK1Tt19zHr83jowXm81fA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1860,7 +1860,7 @@ "hash": "sxRrWQWD1yw6WBMUfoCW8Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1872,7 +1872,7 @@ "hash": "9JkVw+CCUrd/LlyTCcVzDA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1884,7 +1884,7 @@ "hash": "ofgHiraVQDSdnioBEzzdMg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1896,7 +1896,7 @@ "hash": "LcM0SsJoXQk1QVaJvGzdzg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1908,7 +1908,7 @@ "hash": "DXko/UAURnCoxS0FhuD5oA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1920,7 +1920,7 @@ "hash": "P4BZ7oTHkyAp3GG3PoWF6w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1932,7 +1932,7 @@ "hash": "0XOUBez778q4S9Estn8+sA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1944,7 +1944,7 @@ "hash": "5w8IlxT0MWb6yQVzpbbxuA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1956,7 +1956,7 @@ "hash": "xBiRKOEF9uCcJ2wQqTiOCA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1968,7 +1968,7 @@ "hash": "P3Zf8ovdwiPH85M4SloDYQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1980,7 +1980,7 @@ "hash": "XfRcCVxMcKMwTWlJgjSTLA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -1992,7 +1992,7 @@ "hash": "QvGkOs0MDDbocRc/8VkrSg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2004,7 +2004,7 @@ "hash": "G6aAV3t0IRh2fQI2crgWIg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2016,7 +2016,7 @@ "hash": "m5nPET+ckyE4HCRi+vgL5Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2028,7 +2028,7 @@ "hash": "ycL8In8v2YOATbgEQMDmCg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2040,7 +2040,7 @@ "hash": "dq2Q+IsQkJVxiN433O3TKw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2052,7 +2052,7 @@ "hash": "SZ/EbGQgO9Tmz1oZX/eukg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2064,7 +2064,7 @@ "hash": "5Nux2pi6O2xlrrRbHe71bA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2076,7 +2076,7 @@ "hash": "WBZnovzzdD9LRCaklVv1hA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2088,7 +2088,7 @@ "hash": "XjZhDQg7fZQ7+UjfGWp/3Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2100,7 +2100,7 @@ "hash": "8KSDFLna7oy3fEhWXCD2Sg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2112,7 +2112,7 @@ "hash": "L75S7jClcaLouqaYOf7sGw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2124,7 +2124,7 @@ "hash": "IaJv0UDjZw0t1OlBhBhO3Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2136,7 +2136,7 @@ "hash": "OYvEK/dcjcMdffZ/mD8dkw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2148,7 +2148,7 @@ "hash": "nV+qlGp/frQ5IuTH79W5iw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2160,7 +2160,7 @@ "hash": "oRi9ycSfj2lRo0C+QoR+Ug==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2172,7 +2172,7 @@ "hash": "JCqlWQGKGystHBHnSyeYcg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2184,7 +2184,7 @@ "hash": "9z5UC9vX6Lo7lp2ntNDlVQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2196,7 +2196,7 @@ "hash": "cv2kPhUmterY+MQxmNUXUA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2208,7 +2208,7 @@ "hash": "orrspc0BAkw7r2eTHzsaDA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2220,7 +2220,7 @@ "hash": "aqjlpRHCsI41y0PLPEeZMQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2232,7 +2232,7 @@ "hash": "jRNInPnDCO0suMUoJUuI9g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2244,7 +2244,7 @@ "hash": "NIltP1hlxk9NTSJSDYRhag==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2256,7 +2256,7 @@ "hash": "aMshjl7JkOF3ZDVY0wlZRg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2268,7 +2268,7 @@ "hash": "yKfAzHdXcXkiTqi6K6v5lA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2280,7 +2280,7 @@ "hash": "+ayMHwU9oX7BBy1km5tlqg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2292,7 +2292,7 @@ "hash": "JyJlUsy6zJjym2aZz0lAiw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2304,7 +2304,7 @@ "hash": "QPo87haaF5ZMi3pZV4EoJw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2316,7 +2316,7 @@ "hash": "Xw4OsNg0hsuircBYW4Oopw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2328,7 +2328,7 @@ "hash": "R10pycW6ZYI4Ss5nnVafcw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2340,7 +2340,7 @@ "hash": "+S1QsSo4/nHLY5r0XJl14Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2352,7 +2352,7 @@ "hash": "AIheBiLbeYiZvnhU6Mms4g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2364,7 +2364,7 @@ "hash": "YFoks4X9MmGbWLpIuNAskg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2376,7 +2376,7 @@ "hash": "yygYS8n4Vqp1IwQ74FD8Wg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2388,7 +2388,7 @@ "hash": "WmNnxxpRNjeFbOCwVWzr8A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2400,7 +2400,7 @@ "hash": "Q200JYRwAOICG8hppVUb9A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2412,7 +2412,7 @@ "hash": "Dlx5SZ9hGFY7flP/IZb/xg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2424,7 +2424,7 @@ "hash": "S2hwXnJsoQt1XsAJGvyMkA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2436,7 +2436,7 @@ "hash": "lLT3+nNchh91JqVLQCi3oA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2448,7 +2448,7 @@ "hash": "Kuj0tgyHa6vLFROB0PpOXQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2460,7 +2460,7 @@ "hash": "zg5ZWgbr8tra3PBGUx1Clw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2472,7 +2472,7 @@ "hash": "OF1jqxGr3nkrW0oitt/oEg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2484,7 +2484,7 @@ "hash": "EH1zOf+VEUzcFh1EqIFVqQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2496,7 +2496,7 @@ "hash": "dZRBWPlkeHm0sfGFaQbnxQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2508,7 +2508,7 @@ "hash": "0eC5YQhs4Eo++7gaM9I1vQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2520,7 +2520,7 @@ "hash": "oQWDgVmSBQPL6PFlvYoyVw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2532,7 +2532,7 @@ "hash": "rGbSXbZacRWYCS65Q1QN9A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2544,7 +2544,7 @@ "hash": "/aaMQeHGe15BB3G27brh3g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2556,7 +2556,7 @@ "hash": "i3F45XQ0CFPxXup4VPbP0A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2568,7 +2568,7 @@ "hash": "KJaO/qTL3V4MCzsJe0ZNSw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2580,7 +2580,7 @@ "hash": "+5vljyoZmGH7AOeBHsN8nA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2592,7 +2592,7 @@ "hash": "VjqwYt7h2/0l0oVJOXSdwA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2604,7 +2604,7 @@ "hash": "2Vuze40Z9Wjk/ESPvbXHgQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2616,7 +2616,7 @@ "hash": "zrf+U/ZZEqvIwvOjuR3NRw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2628,7 +2628,7 @@ "hash": "id4XH4KSiwCNy/0wrZXzig==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2640,7 +2640,7 @@ "hash": "hbeUHev0CeNjsX5KEoYHOw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2652,7 +2652,7 @@ "hash": "FpJr86uHrNYUZxnYbjB70g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2664,7 +2664,7 @@ "hash": "6tv2QLzQHVC4XANN199YEw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2676,7 +2676,7 @@ "hash": "iyxa4fenl1WMLPe4MdkwaQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2688,7 +2688,7 @@ "hash": "x2qq/HBrilOX3QWCQcRujA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2700,7 +2700,7 @@ "hash": "O87DIRyaiiUHa+XUJkJuNw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2712,7 +2712,7 @@ "hash": "GoVeq8NUPJ7BWvaMO/GKAQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2724,7 +2724,7 @@ "hash": "Nf8pIImvsv06jouL+IbWWA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2736,7 +2736,7 @@ "hash": "4Ncgmmp8M0gDuoDoI2xUMg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2748,7 +2748,7 @@ "hash": "12VdZenBrYD5kfRaWLOt/g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2760,7 +2760,7 @@ "hash": "0pOmSv4eWAhwq6OaL7mcMQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2772,7 +2772,7 @@ "hash": "/QeGfjoir3YNhkA4A8k1Yw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2784,7 +2784,7 @@ "hash": "31OuXaMbG8ChEFbdziN1FA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2796,7 +2796,7 @@ "hash": "czJZCFDH5ZD20xn0ylHseQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2808,7 +2808,7 @@ "hash": "XyN+EgQcWdLSp/93EIhafA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2820,7 +2820,7 @@ "hash": "zRc9hltIswOFO6H4HezZKg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2832,7 +2832,7 @@ "hash": "EfpoTkmGEompjptVk57DVA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2844,7 +2844,7 @@ "hash": "2FQ54uuL1z5d6COAMRZl5A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2856,7 +2856,7 @@ "hash": "P74IZNfxBadvBHgUix7psQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2868,7 +2868,7 @@ "hash": "5DrozzP2EQesZ4/yA3LSrg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2880,7 +2880,7 @@ "hash": "BuY7C6WILP/vwjmjMySxzA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2892,7 +2892,7 @@ "hash": "RwGelkmRQZfMsjeZj/z3/w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2904,7 +2904,7 @@ "hash": "oda4ElGCxXaN8r3EDFRZuA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2916,7 +2916,7 @@ "hash": "U8p6+02Z3j1BWY1DVe8Djg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2928,7 +2928,7 @@ "hash": "o78A043bGl7hBOMEO3LWyg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2940,7 +2940,7 @@ "hash": "e0os1oIA/gBe6nl5Frb6qw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2952,7 +2952,7 @@ "hash": "jtN3ezTOh/rsmszNPTpLmQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2964,7 +2964,7 @@ "hash": "ZcbhAnCdNhseDsUj2wMXnQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2976,7 +2976,7 @@ "hash": "87XiyyqbZnqGbok8keq6mg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -2988,7 +2988,7 @@ "hash": "QSrX/ffydzaZ5kMU5n3GsA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3000,7 +3000,7 @@ "hash": "riDCJnSLF6vxWNNeKU7YJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3012,7 +3012,7 @@ "hash": "z6FZvLV0Wu242LyalI3WaQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3024,7 +3024,7 @@ "hash": "GUsBidL6qscegz//7jgJ0w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3036,7 +3036,7 @@ "hash": "9MCInvIh557CeFSEidsiyA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3048,7 +3048,7 @@ "hash": "g1WG527fFphOEpoYkIc6ew==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3060,7 +3060,7 @@ "hash": "W0PWe0pF5NLYkJArflcbPg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3072,7 +3072,7 @@ "hash": "jz6+5Nzj7DeEWaugmZQZsA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3084,7 +3084,7 @@ "hash": "BHmXV7W3f7ev3i59rVqnFg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3096,7 +3096,7 @@ "hash": "iyNgIcBrTxj9gdUq5mhtwg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3108,7 +3108,7 @@ "hash": "V6qRlFAYboVqbnXNHbRrwg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3120,7 +3120,7 @@ "hash": "e5kHUYOEyUOsbQ7KMD6XJg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3132,7 +3132,7 @@ "hash": "PV/1VhogpU50QPyShsyj7w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3144,7 +3144,7 @@ "hash": "n4HtaPqXY7aybWYhKG8Xfg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3156,7 +3156,7 @@ "hash": "CceOeNGSTbdqlP8K8bO7NQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3168,7 +3168,7 @@ "hash": "LQqTkPEU3eMNKbEnsgBoYw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3180,7 +3180,7 @@ "hash": "vNfca0CRUss+SqveR6O8WQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3192,7 +3192,7 @@ "hash": "E6eDCeQPyLLYvJsXA2QoTw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3204,7 +3204,7 @@ "hash": "EVg0w3Ew62i+zT08eFPUJA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3216,7 +3216,7 @@ "hash": "SJvUCf1HsFMMXe1k+zYaSg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3228,7 +3228,7 @@ "hash": "j792Uj1Y+vEENyEZcTvJ8w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3240,7 +3240,7 @@ "hash": "WWp/MZPT/h5lSOXelkv4OA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3252,7 +3252,7 @@ "hash": "FFYi29KKosH12XpsDv/KJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3264,7 +3264,7 @@ "hash": "VTJDZgI8ETnOHCez1W3KzQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3276,7 +3276,7 @@ "hash": "tzDOmxkyct1EnHUT4VpOYw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3288,7 +3288,7 @@ "hash": "t0yYGoHn7DuQL3fCAihR8Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3300,7 +3300,7 @@ "hash": "+ppnInBrVxd92QtrhZGaAw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3312,7 +3312,7 @@ "hash": "Qx7TMSFfavVNo9N52Pgc7g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3324,7 +3324,7 @@ "hash": "mw+jeEXWMZS2cBt3jY/BWw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3336,7 +3336,7 @@ "hash": "07a5fyEAcwPMOOuB3OgTrA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3348,7 +3348,7 @@ "hash": "xzLYMkUuWmodggwZFvKSbg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3360,7 +3360,7 @@ "hash": "W+QyoRF4xTYd6d0rjRYoog==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3372,7 +3372,7 @@ "hash": "9T9Ic+TWtnJp2LmG3UWyJA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3384,7 +3384,7 @@ "hash": "D7/24hrJRWH9dMTvQb/DgA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3396,7 +3396,7 @@ "hash": "iYNwmCnS7iVJbv/PlNKbNA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3408,7 +3408,7 @@ "hash": "NwgWDj/1SWUA/cIyazphoQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3420,7 +3420,7 @@ "hash": "6RMWLvNPdc6hpKuayvoRDw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3432,7 +3432,7 @@ "hash": "QDROwuUmOuCDF+Wo8/HzBQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3444,7 +3444,7 @@ "hash": "RBG/OMpWezJ1jhnViJcC0A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3456,7 +3456,7 @@ "hash": "htmW/Gvv0gwI8psH3JquoQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3468,7 +3468,7 @@ "hash": "iibTnOVX3HEZwoOC27pYzw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3480,7 +3480,7 @@ "hash": "cpBUi8TxzfNHx6XF0PTmcw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3492,7 +3492,7 @@ "hash": "mWh27C4Dw6dl//LHGyFLpA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3504,7 +3504,7 @@ "hash": "XK8Pfr//Hv/Oj1yYkdcC1g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3516,7 +3516,7 @@ "hash": "IyuqGAoJt7A16rHnt8iarw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3528,7 +3528,7 @@ "hash": "fGtMJmTb2WSlUw3aF/gMMw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3540,7 +3540,7 @@ "hash": "NTtHsLWlMSbWIN8vvsDrrw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3552,7 +3552,7 @@ "hash": "1LjC4/qZgtALpobuPPlMMA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3564,7 +3564,7 @@ "hash": "p5Yh8Z4jsQx6UQV3yjme6w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3576,7 +3576,7 @@ "hash": "4NrGnr4fE3wOor0721yYLg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3588,7 +3588,7 @@ "hash": "pSXjTXa0qmWBGp8doBPdlg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3600,7 +3600,7 @@ "hash": "cnkfKy75zIDNd+UIYdJVfg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3612,7 +3612,7 @@ "hash": "T3FBCSQoWTEGur7Ddv8mqg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3624,7 +3624,7 @@ "hash": "hFDvpdQ59BTVEHyDjm2Deg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3636,7 +3636,7 @@ "hash": "DJj6oqUoNx6q8Pxg9q0PSg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3648,7 +3648,7 @@ "hash": "6QLkXUYFXyLyliaqX606Cw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3660,7 +3660,7 @@ "hash": "hKo5+txFNfhnvSGDLC+KFw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3672,7 +3672,7 @@ "hash": "/+Lj8iirVZ5Klo2MeHX4VA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3684,7 +3684,7 @@ "hash": "VR8Tp/wguFktweO1FeGgkQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3696,7 +3696,7 @@ "hash": "mh2hwj8Q6b83iQhtmIYPxA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3708,7 +3708,7 @@ "hash": "oRTIH2aoOiFEO3IPGlPLcg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3720,7 +3720,7 @@ "hash": "5B+k0IHJsPsyAQhGgKbykA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3732,7 +3732,7 @@ "hash": "EOr1IcYzry2ZpTcdJdgjEw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3744,7 +3744,7 @@ "hash": "HfFYB6rvIb2mSL0TQfma6Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3756,7 +3756,7 @@ "hash": "qeq8EaKiB8RSPlkBXNWOEQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3768,7 +3768,7 @@ "hash": "Rm5kW4jXLEaRBVHSQOjFkg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3780,7 +3780,7 @@ "hash": "x6Bx3vfcA6IeYXWjyXFSRQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3792,7 +3792,7 @@ "hash": "afxOuI2117XUfQusU/OWLw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3804,7 +3804,7 @@ "hash": "HID4rrC9wbMcE/b42r45ww==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3816,7 +3816,7 @@ "hash": "Gsqt0AWROGK+FQGecz5v1A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3828,7 +3828,7 @@ "hash": "oymN+9w/7WoYwElDIojrKg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3840,7 +3840,7 @@ "hash": "HJAA7J3ONygAaFcludV0MA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3852,7 +3852,7 @@ "hash": "/ameLm6osIVgwok+DkuYeg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3864,7 +3864,7 @@ "hash": "jDdSRao9m+ecx6/K0v5WCA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3876,7 +3876,7 @@ "hash": "TwCunf6mwaBFa+43QZ5e5Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3888,7 +3888,7 @@ "hash": "mPZ0lLHqx14X35im4/m90w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3900,7 +3900,7 @@ "hash": "jbevqHUeT9SMimtcUPPxWw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3912,7 +3912,7 @@ "hash": "U8fjUxFSvbkoeDflC4ce4w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3924,7 +3924,7 @@ "hash": "+8gfBVs5/Ddv6i+rsyXZ7Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3936,7 +3936,7 @@ "hash": "vMYCaVO11lYbhiecyg7aEQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3948,7 +3948,7 @@ "hash": "1G0gUOMM+lV2PB16XyJrrw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3960,7 +3960,7 @@ "hash": "5k9HxV2BXpXmxS5EbYtweA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3972,7 +3972,7 @@ "hash": "BP0v7jc32kxR8j7L9iK8Lw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3984,7 +3984,7 @@ "hash": "lAy6TETKV94uixzBIUjgjg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -3996,7 +3996,7 @@ "hash": "DLagSun+o46phJJV9zUbnA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4008,7 +4008,7 @@ "hash": "hAb0n0qvG3mnvxfyWGrGSw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4020,7 +4020,7 @@ "hash": "Ew6JcfmAz00/nX0nCnLk8Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4032,7 +4032,7 @@ "hash": "mB+Qns36fGAmdEgV8YvjtQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4044,7 +4044,7 @@ "hash": "l7TNJe8mwM8aDVn0eu6nfg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4056,7 +4056,7 @@ "hash": "feDT0ij00XDa8Y/vNyoccA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4068,7 +4068,7 @@ "hash": "Vjm9+wLZUkMzMg3K30gpuw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4080,7 +4080,7 @@ "hash": "RT0KFN3lj9TEIqXZyF9aGQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4092,7 +4092,7 @@ "hash": "O51nYMAiYBDSr3ZCi9PwOg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4104,7 +4104,7 @@ "hash": "bA8Kn6fsGL2x25zBapZdcQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4116,7 +4116,7 @@ "hash": "XyKcgrDvv/tIJTj0vmKK9Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4128,7 +4128,7 @@ "hash": "74UUl1JY0wrMdVi4jjmvVQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4140,7 +4140,7 @@ "hash": "PD46t5pYpPHLIyD5dRH72w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4152,7 +4152,7 @@ "hash": "WRFLmvmqFvIvg7/QRxMIpw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4164,7 +4164,7 @@ "hash": "VcwzpqwmC0YS8F7MzCdXXA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4176,7 +4176,7 @@ "hash": "b224zDWUdn/ryLnyFdCjLw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4188,7 +4188,7 @@ "hash": "cbfT2ImdoA9KMA61ZJMEvw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4200,7 +4200,7 @@ "hash": "Hf1X5uBYv4GtHDrXWek/xg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4212,7 +4212,7 @@ "hash": "4hZ3XlTLZlaZ3z4ilAZIng==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4224,7 +4224,7 @@ "hash": "jsVzHaDLKcJPmvZnS1yASQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4236,7 +4236,7 @@ "hash": "vbTnklC4R/pcypCzI8ypFw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4248,7 +4248,7 @@ "hash": "OUxaF8OeQtdhDJMl0gndhw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4260,7 +4260,7 @@ "hash": "3FtdjGwFysL50lTgd0s6Zg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4272,7 +4272,7 @@ "hash": "f34KdqeRvl4SZCgYVTgkOQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4284,7 +4284,7 @@ "hash": "dPCQzma4oS6ukE6qPOTG8w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4296,7 +4296,7 @@ "hash": "ZEzAbNf6ep+yGPD4W/ogLQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4308,7 +4308,7 @@ "hash": "lZA7Eq0ecWlIeBS92GB/1Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4320,7 +4320,7 @@ "hash": "qnATNFuL0VWS99M7jdoT7Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4332,7 +4332,7 @@ "hash": "ujyxUj9gu9hlcwb3qv2qdw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4344,7 +4344,7 @@ "hash": "w1mcG5LzXzRbqnoajQKmWQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4356,7 +4356,7 @@ "hash": "GZMDqY49Z/I/kJi+LCUHsA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4368,7 +4368,7 @@ "hash": "WkkVVqg4Z+m+ivohoZehQA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4380,7 +4380,7 @@ "hash": "WrZYSriRopYOwt6B3Bd2wg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4392,7 +4392,7 @@ "hash": "Ui5nSBhyAviL5laGI1sg2g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4404,7 +4404,7 @@ "hash": "FzbomxjWehTic7t9lRfzog==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4416,7 +4416,7 @@ "hash": "/fm/ugIrJnEgdgXHMxP/PA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4428,7 +4428,7 @@ "hash": "ggBtab3L86MMD+smnHPEMA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4440,7 +4440,7 @@ "hash": "9fxBISH7urmwgQSiOQAU2w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4452,7 +4452,7 @@ "hash": "uYxyUGM57g5wvP6nE2SrGg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4464,7 +4464,7 @@ "hash": "oPuGBKSSV/aHvj05Mqje9g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4476,7 +4476,7 @@ "hash": "JjuMXIlBHxGGfZRKuBdRoA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4488,7 +4488,7 @@ "hash": "vQH6yybZNyUT9bUVn7g0Pw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4500,7 +4500,7 @@ "hash": "l80+jwe9noyvhLAmWOofFA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4512,7 +4512,7 @@ "hash": "hwbNjuWRu7zAqbja4OcYiw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4524,7 +4524,7 @@ "hash": "ADRqxIulETEd3nF0P4SezQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4536,7 +4536,7 @@ "hash": "QWAcQpIEVwF3KOuebNpFrQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4548,7 +4548,7 @@ "hash": "gneBDeBB/qvYHXI9w6R7WQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4560,7 +4560,7 @@ "hash": "Mi9Jfg2SXIlVztV+j54tig==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4572,7 +4572,7 @@ "hash": "pRkMNZ5XnBbez6eGOLs7wg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4584,7 +4584,7 @@ "hash": "KIzDlJgCWfmt5qKMStIGVA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4596,7 +4596,7 @@ "hash": "BeDHlYtPe8I/Ca4YDcDEZg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4608,7 +4608,7 @@ "hash": "W9hXdT/TZUsDPzjoefLTHA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4620,7 +4620,7 @@ "hash": "BP1tYwIcg6MEj3qmr8K1Ng==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4632,7 +4632,7 @@ "hash": "Hbipnocnc0fk1bvuDVhVpQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4644,7 +4644,7 @@ "hash": "5xKOpjGl46/U9OEcapgKfQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4656,7 +4656,7 @@ "hash": "tOrphXVRktNLVxY+8jyP7A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4668,7 +4668,7 @@ "hash": "2Vzbm3kCB2l+mosuKgUpmg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4680,7 +4680,7 @@ "hash": "fdfp3w0zW2bbeLinQ8EoLg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4692,7 +4692,7 @@ "hash": "6pA94R/JuW5hI5sjpMU0AA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4704,7 +4704,7 @@ "hash": "zpNzOek+44D+9PWz2o5Uww==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4716,7 +4716,7 @@ "hash": "/mLka2rGUFGuKrHAiMQLFg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4728,7 +4728,7 @@ "hash": "r+vD1WhXI9llicAyx3ZUDA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4740,7 +4740,7 @@ "hash": "qKhPfKPvDunq/hw/mCLcRw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4752,7 +4752,7 @@ "hash": "dU6QS/OZSapb93Ku1N12VA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4764,7 +4764,7 @@ "hash": "dW/9kvmzGXubIK6aqLPyhQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4776,7 +4776,7 @@ "hash": "CXDLD2j/QABK4/9yi+zAfQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4788,7 +4788,7 @@ "hash": "XUmpz6RDxH36qdxKEh1Mdw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4800,7 +4800,7 @@ "hash": "nb9O2acYhRMexMptZk61+Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4812,7 +4812,7 @@ "hash": "vrtGwb8z9sAwSFGrRtZ4iA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4824,7 +4824,7 @@ "hash": "c9TNCUQbsjaRXXQHmKBCrA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4836,7 +4836,7 @@ "hash": "xBrgGNsMVJUQIt3t8ff0ww==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4848,7 +4848,7 @@ "hash": "7ogufBTymxnxgqC+CTbHWQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4860,7 +4860,7 @@ "hash": "Y+0V8ebZVRYztHWLX2We+A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4872,7 +4872,7 @@ "hash": "k8tkAk7AwDeLj5iaj5tuZQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4884,7 +4884,7 @@ "hash": "dKgteLq63nmRNbfYmWuOcw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4896,7 +4896,7 @@ "hash": "1rJTHBmRv4Tq4cmogZNjJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4908,7 +4908,7 @@ "hash": "+bjc/1NQasf+UrESJ5OACA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4920,7 +4920,7 @@ "hash": "7Vqr95fg4gAn+tI8600cOA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4932,7 +4932,7 @@ "hash": "EGeasL40bYHRs1Og+7J/QA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4944,7 +4944,7 @@ "hash": "cVwkvv/yK5AGK15ALcuuWw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4956,7 +4956,7 @@ "hash": "+YxVv9CTFpuclecYeWTZqA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4968,7 +4968,7 @@ "hash": "4siIK5I2tx9s78XOlm6UJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4980,7 +4980,7 @@ "hash": "H99ckDVEyaOH6LdGrW4emg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -4992,7 +4992,7 @@ "hash": "uaecVDZs3ihMABPwfGroqA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5004,7 +5004,7 @@ "hash": "+OimAcWmDImk6sfu0qT2CQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5016,7 +5016,7 @@ "hash": "W2+34EmiOueKHCiNWPoJBg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5028,7 +5028,7 @@ "hash": "1t+5Xnmy5uytxuPnwA9FDg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5040,7 +5040,7 @@ "hash": "QhK6A9nPd7awQxUbPJUE/g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5052,7 +5052,7 @@ "hash": "gkVxdxYDR31uWLphZXnfBA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5064,7 +5064,7 @@ "hash": "7pqP6vBs78NkutwVdkk1pQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5076,7 +5076,7 @@ "hash": "9/yuaYR5CnAI4itCnV6NYQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5088,7 +5088,7 @@ "hash": "5Lsfkmbo0ET0e++M1vZKZg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5100,7 +5100,7 @@ "hash": "eRW82FJJyG8n86zoOs9EJA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5112,7 +5112,7 @@ "hash": "5ZyxPpuHEmgOdDOUKIhUtg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5124,7 +5124,7 @@ "hash": "/6EsDmfzmqHOVyJnC8w+sg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5136,7 +5136,7 @@ "hash": "r0jz/P9ErV9AKe7ywPYfyA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5148,7 +5148,7 @@ "hash": "0uQTkhgn1f8d9kl1tM5gYA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5160,7 +5160,7 @@ "hash": "wSx8lxE01tvSM1vVTCBjGQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5172,7 +5172,7 @@ "hash": "UKWk/DPETpMfraZbrvYqrA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5184,7 +5184,7 @@ "hash": "vvyVoWylSYpN1MDmm8yFgw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5196,7 +5196,7 @@ "hash": "y7terWsrrCF4okS7yM5Pew==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5208,7 +5208,7 @@ "hash": "kBQjR2GcOi2ybZgID1GMmw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5220,7 +5220,7 @@ "hash": "MziE6EUXfB2Qbq4hBAS9XA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5232,7 +5232,7 @@ "hash": "MwmRpdFP/Y8HVppeMXbdAw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5244,7 +5244,7 @@ "hash": "C9U5m+wyzMFHX/87T/kP7w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5256,7 +5256,7 @@ "hash": "XGBQDoShtbGHyB0qRTrZoA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5268,7 +5268,7 @@ "hash": "apxMDOxxK57hhkRKPhYuWA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5280,7 +5280,7 @@ "hash": "Z6V1G7OhbmxJsYXcQKFiCw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5292,7 +5292,7 @@ "hash": "/9QbqWo7b7YO9TkORrGhPA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5304,7 +5304,7 @@ "hash": "W/YAEMgPZfc546eBTGvOFQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5316,7 +5316,7 @@ "hash": "z+dONH/7eEE8UNuBZfVbvQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5328,7 +5328,7 @@ "hash": "wCRopdVVpRHt3QJcUaXLmA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5340,7 +5340,7 @@ "hash": "SmubV8OW8yqXX2Ks2/giIA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5352,7 +5352,7 @@ "hash": "Lk544je82mi7iIFsXAN0Og==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5364,7 +5364,7 @@ "hash": "5dfGrVKzu9gSVGCZcJN/fg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5376,7 +5376,7 @@ "hash": "TynF8LjAjrVTpXGyntnMlQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5388,7 +5388,7 @@ "hash": "XkWUKmg/ejcoiD4bGsbIkQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5400,7 +5400,7 @@ "hash": "+fyNL+ryZuFkdHbtxGU5RQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5412,7 +5412,7 @@ "hash": "v/DXPkQktNaJZAPgzWm9gQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5424,7 +5424,7 @@ "hash": "HTmjHrXoLTPEw7qXMh6oTg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5436,7 +5436,7 @@ "hash": "7K7U9OpCh97vugl/ZvGKTA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5448,7 +5448,7 @@ "hash": "rqQXK8QSTt5Y7PgJ3t8JtA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5460,7 +5460,7 @@ "hash": "oB2lINRjvWfj29L+Eegtag==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5472,7 +5472,7 @@ "hash": "SRE5UngixKSROg2oQxnFAg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5484,7 +5484,7 @@ "hash": "sW0Tpevqc24s2i94h80uKA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5496,7 +5496,7 @@ "hash": "vX6Bqj6QcF76PoeWBQXxjA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5508,7 +5508,7 @@ "hash": "T2/NzIwqtY9wTzvxAehwwg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5520,7 +5520,7 @@ "hash": "xNtvhfiCphp70yVJsw9C0g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5532,7 +5532,7 @@ "hash": "HVDiVWbS8IlKpaGd0TEv2A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5544,7 +5544,7 @@ "hash": "+vvm1ww9jkJ4K1joiIZSoA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5556,7 +5556,7 @@ "hash": "mzC+g10l8xQq20JiI1NEHg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5568,7 +5568,7 @@ "hash": "EEC1r+0G1zGs8dLlRDTDng==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5580,7 +5580,7 @@ "hash": "kQIZyrjfxr6bfWDZnb6mSg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5592,7 +5592,7 @@ "hash": "Erw7DY0u8dbsjCp3dY/P5w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5604,7 +5604,7 @@ "hash": "Nlad5KIj5m7feURLNgplzg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5616,7 +5616,7 @@ "hash": "1I6Llkb6zDNyS3Df9gbJ9A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5628,7 +5628,7 @@ "hash": "td85ur0r0z+UD5wjPyD+vg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5640,7 +5640,7 @@ "hash": "tzon9m5iA0fdXVI7LRBd7w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5652,7 +5652,7 @@ "hash": "A0Xf/zJy163miKA71aWhRw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5664,7 +5664,7 @@ "hash": "JMBUuiZC01gLg4i9jU+49A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5676,7 +5676,7 @@ "hash": "9s+BFD7L0OtBgjhkB9fZSA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5688,7 +5688,7 @@ "hash": "RV7pshGsH6EeVq90kuFxtw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5700,7 +5700,7 @@ "hash": "xPKDutJKTyADZN1ImO+/vA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5712,7 +5712,7 @@ "hash": "JeSptkwwFnXpgBOez0zSGA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5724,7 +5724,7 @@ "hash": "Keqpy4pny1ECK747eBbLAw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5736,7 +5736,7 @@ "hash": "6H9/akYjf8qB9imghlVBTQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5748,7 +5748,7 @@ "hash": "3qGbFmmWOBAg2YllN93ycQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5760,7 +5760,7 @@ "hash": "XaHNvFptZ4Y0kL1ZCcPUfA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5772,7 +5772,7 @@ "hash": "OMJ/K/qqCRv4/HWTEqLnDw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5784,7 +5784,7 @@ "hash": "q7wXxNWz4+erEOvEj1VAPw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5796,7 +5796,7 @@ "hash": "YQNhG4hp29wF+OIRTbV4NA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5808,7 +5808,7 @@ "hash": "Ihcqg2f55EEMJistKgpb8w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5820,7 +5820,7 @@ "hash": "U6/vMupgudj1P2Zw6NZTeg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5832,7 +5832,7 @@ "hash": "DUnZvJMHOh0OEjGRR9ysEw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5844,7 +5844,7 @@ "hash": "Im9GDJT5o1wnxfNCkHQJZw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5856,7 +5856,7 @@ "hash": "BIlqBUkdfHX6hYZW3FJDhQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5868,7 +5868,7 @@ "hash": "GrinAeb/CKRZzvhDCCk54g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5880,7 +5880,7 @@ "hash": "nNENZTKuT8UfzUW+1x+Ncg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5892,7 +5892,7 @@ "hash": "a1HnEZT3DzPExXfMzv4uQA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5904,7 +5904,7 @@ "hash": "dbdKcxUht/MKI+0svynq8Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5916,7 +5916,7 @@ "hash": "HXIIQCxSbiFcdIDvYjsqdw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5928,7 +5928,7 @@ "hash": "QqebX/9cn/Ku4ERa7WPHVw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5940,7 +5940,7 @@ "hash": "AqFqqrLqdWk/z1y/Mv4TmQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5952,7 +5952,7 @@ "hash": "MLpoVeb8AlM4lbBk3+buGg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5964,7 +5964,7 @@ "hash": "evVntNDTgA01JFFwq3yLqg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5976,7 +5976,7 @@ "hash": "qPqvCMTROW2dSUM21UeZ+A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -5988,7 +5988,7 @@ "hash": "EMBTfSyiUiy5xQLboiyLPw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6000,7 +6000,7 @@ "hash": "Ut+6kCyBZzAKYrWDxPJ2MQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6012,7 +6012,7 @@ "hash": "nfkT24YVl/Hsnzma3MIbwQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6024,7 +6024,7 @@ "hash": "KOMSd/TvDXHSG4z4XPKPOg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6036,7 +6036,7 @@ "hash": "QH/Zpylk68X3Q4edcnwfeA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6048,7 +6048,7 @@ "hash": "AMIShMPdd+7iv9+slgBA6Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6060,7 +6060,7 @@ "hash": "/yqsFzW0bNqkesXb6o4RJA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6072,7 +6072,7 @@ "hash": "vGZskB6h7nbc3PyJbZwjnQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6084,7 +6084,7 @@ "hash": "K/tZBE8K0PSP/T8mRKBn7Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6096,7 +6096,7 @@ "hash": "coCEg6DAIKWCJWyRxXO4TQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6108,7 +6108,7 @@ "hash": "Cozmcb3NsRCfcB+/+k1tsA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6120,7 +6120,7 @@ "hash": "EvgfWp2erUM6N0B1w8UMzQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6132,7 +6132,7 @@ "hash": "vqF9NDHay6ImP3iyZ1lIAA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6144,7 +6144,7 @@ "hash": "5T1NxkmAofOG6LZjs5hZtA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6156,7 +6156,7 @@ "hash": "fsRwG6IIGqccAdUxwL6icQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6165,7 +6165,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangeAccessor-1.html", - "hash": "31V1mUauG5peFRm+w9OiuA==" + "hash": "Kh0MYHMlyDYvkQtSlSll3Q==" } }, "is_incremental": false, @@ -6180,7 +6180,7 @@ "hash": "bmwq7ypm1rLGgFgzTF+fww==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6189,7 +6189,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangePtrAccessor-1.html", - "hash": "8x4YQsZqkK/v4cZX0kKb+Q==" + "hash": "vTcVpOM+Bj+06V7IrpE0Kw==" } }, "is_incremental": false, @@ -6204,7 +6204,7 @@ "hash": "FiuEqqTlx0sinVYW0a1cPQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6228,7 +6228,7 @@ "hash": "qR92Hc24HE6h6FQELByT2Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6240,7 +6240,7 @@ "hash": "3b6ep7TnLRACLamB0eA3yQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6252,7 +6252,7 @@ "hash": "S/pfP6Rxbv/G1P7rwApyJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6264,7 +6264,7 @@ "hash": "yAJLNCnngpNcAQHC3phLGw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6276,7 +6276,7 @@ "hash": "ppG1ALWbXRFaWx45YYBJsg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6288,7 +6288,7 @@ "hash": "4BYRSXZWapGYWvu+THAo3Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6300,7 +6300,7 @@ "hash": "XBrVzizOZEcFuj+Yfx4N7A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6312,7 +6312,7 @@ "hash": "ZLacgFzjP4s7E9LOmSZJqg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6324,7 +6324,7 @@ "hash": "324lFTiQCMCsw/oxe5ua1g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6336,7 +6336,7 @@ "hash": "QpzvjPL/XyCAYX9HQjvhRQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6348,7 +6348,7 @@ "hash": "YdeavpLlGdk3q+HNLTfPnQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6360,7 +6360,7 @@ "hash": "pnj4y7J2ipz9mShypXBD4w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6372,7 +6372,7 @@ "hash": "kCrzzdu9kvuObw87ORybPQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6384,7 +6384,7 @@ "hash": "mNn6EykNC6+H4K88Ckv6yA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6396,7 +6396,7 @@ "hash": "Wz19MwFq0XoWIgJ7WBqgbg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6408,7 +6408,7 @@ "hash": "21YY09BPoQcZrcwk3b9wnA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6420,7 +6420,7 @@ "hash": "C2HsMLVFUISO8GRIfC+A3Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6432,7 +6432,7 @@ "hash": "w7q5GUx6WmrZEthsqCd6hA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6444,7 +6444,7 @@ "hash": "p6Z/qM59OaVF0gpiQdktHg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6456,7 +6456,7 @@ "hash": "SqCjdI1s00ZvrbSxBMBCJA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6468,7 +6468,7 @@ "hash": "901q3rlvbXWP6RI8TyGYGg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6480,7 +6480,7 @@ "hash": "mmXA+snJzxP660aTpfS3Bg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6492,7 +6492,7 @@ "hash": "6sVDBjlcd7xoyt/S5PbKeA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6504,7 +6504,7 @@ "hash": "y2c82fHAbmDv3mg7PbSKcA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6516,7 +6516,7 @@ "hash": "RJXUKnrIxy3Ef9J+HepDUw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6528,7 +6528,7 @@ "hash": "BS1au7LW+wXPGX56/uSL2w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6540,7 +6540,7 @@ "hash": "05HemJVfTpjHPGWweE+ChA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6552,7 +6552,7 @@ "hash": "mGWUn+2r4BbnG5Wc+QWDaA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6564,7 +6564,7 @@ "hash": "RqjOHdqVb6DTw5sSrQ//Bg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6576,7 +6576,7 @@ "hash": "JCtgRPpZj7yRqIrrlls4Bw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6588,7 +6588,7 @@ "hash": "ABOTpyrJ1ldug/Cf1mlQ5Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6600,7 +6600,7 @@ "hash": "e5VtvUjY7j0NMelp8/LyEw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6612,7 +6612,7 @@ "hash": "/QNBzIaz5Nf8RUdKyhfytQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6624,7 +6624,7 @@ "hash": "MNCyqTofT+0ltIwnex9T0Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6636,7 +6636,7 @@ "hash": "5LBX9uVkaOOH2SS2SYn4hg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6648,7 +6648,7 @@ "hash": "oxRYTfRNPM7fmymK1ZZJBg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6660,7 +6660,7 @@ "hash": "l3hbakC0uTzxTa4n9e9wEA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6672,7 +6672,7 @@ "hash": "4bS/a6Ud0RYw2TlaKLDBgg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6684,7 +6684,7 @@ "hash": "ZJDC/Kzutx0pnG9UTI9f6w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6696,7 +6696,7 @@ "hash": "6kCX4Cl8itjJ4777cjwUZw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6708,7 +6708,7 @@ "hash": "lFY67OjooSxtjPkjs5NxMg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6720,7 +6720,7 @@ "hash": "J9eqT9zphZIW1U6iUYc/CA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6732,7 +6732,7 @@ "hash": "RJXCBhPLq10gqNx6I2+NsQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6744,7 +6744,7 @@ "hash": "jVHAGXTEVML1czsrKPOEwA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6756,7 +6756,7 @@ "hash": "K+mm2lWUxAWG1xb1EUjQ8w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6768,7 +6768,7 @@ "hash": "hWXrWSmvX32hz1YqugvW6A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6780,7 +6780,7 @@ "hash": "V6pnYY+4ZMbML6R/mS2C9w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6792,7 +6792,7 @@ "hash": "uAwu3c8FIU60gKUT4LD46w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6804,7 +6804,7 @@ "hash": "ilV1CrQdiERGXt7d1Hc7Nw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6816,7 +6816,7 @@ "hash": "DmKu2o9qZUWqmK2RR4HhBA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6828,7 +6828,7 @@ "hash": "oEmtwisrVTNZ/QJ+cGrdvg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6840,7 +6840,7 @@ "hash": "kcWnT+sNoRcZSxqxTQYI1Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6852,7 +6852,7 @@ "hash": "PDV2A482wR0e6weDzEa/mA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6864,7 +6864,7 @@ "hash": "TzZ+lHcmvuL6Ff+0BA4vBg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6876,7 +6876,7 @@ "hash": "ZpAX+N1sNTg7xSVsI6cWJQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6888,7 +6888,7 @@ "hash": "U49/LEChjL7k2SN77O/KBA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6900,7 +6900,7 @@ "hash": "XH9wHogF3YP6gqcS0LgDcA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6912,7 +6912,7 @@ "hash": "FsBPedXNWhTaavE5I2f6Ug==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6924,7 +6924,7 @@ "hash": "gbcn60HSO1t1ESvX6Lyckg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6936,7 +6936,7 @@ "hash": "OcC+TxH/7GIVi90yhZQHjw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6948,7 +6948,7 @@ "hash": "ymKsS296loGek7gXdjfVag==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6960,7 +6960,7 @@ "hash": "oqC/9pyVFFf/dbc5xxpCwg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6972,7 +6972,7 @@ "hash": "Rbj5Mw/Uxw2eSDu5cOTSrQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6984,7 +6984,7 @@ "hash": "tOUWmarYn6Ucy6tixNFtXw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -6996,7 +6996,7 @@ "hash": "S2+CtyrbPNDZ6veMpHM67w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7008,7 +7008,7 @@ "hash": "m6dCGDV6DA2xo3oIKXr+GA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7020,7 +7020,7 @@ "hash": "peF5Nw2/mC/OfMxrYY01Ig==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7032,7 +7032,7 @@ "hash": "7ePbxmtbrPGHJv3i2vadMQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7044,7 +7044,7 @@ "hash": "T0Eg+Pou6uMx00VaALWKWQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7056,7 +7056,7 @@ "hash": "TA6Jn0/8Hjd0RycIbm6LQg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7068,7 +7068,7 @@ "hash": "OCZv1KnnVeZ06St2zVHGbA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7080,7 +7080,7 @@ "hash": "5RQKrbD+26Fnc8kXObylbA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7092,7 +7092,7 @@ "hash": "PQ5c8H8hMcwWu4fEkFTaUg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7104,7 +7104,7 @@ "hash": "eq0YY9vJG+zsRW1nVThyug==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7116,7 +7116,7 @@ "hash": "Zjd4PAsR5NcHW//v5ThKZA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7128,7 +7128,7 @@ "hash": "6tmul44jX7uK4wYQIx195g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7140,7 +7140,7 @@ "hash": "aJGiG3244L2UiEdb+AXo3g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7152,7 +7152,7 @@ "hash": "gvhms0W7YeG8xmE3V1b05A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7164,7 +7164,7 @@ "hash": "f1H+2DTEuNXJfcEIeNPbsQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7176,7 +7176,7 @@ "hash": "dnqNmJ0rt5tM+YIGtHRzOg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7188,7 +7188,7 @@ "hash": "JPyYpvFWKZKBrNoj3komhQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7200,7 +7200,7 @@ "hash": "r1W79yOwDaL9glOaLKOdxw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7212,7 +7212,7 @@ "hash": "lgTDhP6xWcbVgj34/LA5cg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7224,7 +7224,7 @@ "hash": "ZV4aogQDxAQL+1Bif/aLfA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7236,7 +7236,7 @@ "hash": "t48QPYcPGN6/xXHrXPPrkw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7248,7 +7248,7 @@ "hash": "ECcNGPlqgUZKpS44wYNF1w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7260,7 +7260,7 @@ "hash": "VBXjAthDVi0VFZLipweuog==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7272,7 +7272,7 @@ "hash": "bbORiXtbMba0EvPK8q0uiA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7284,7 +7284,7 @@ "hash": "g2lS2kk9DxWrc31SeVwYlA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7296,7 +7296,7 @@ "hash": "ALq/A1MImZZjPC9BF9PNOw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7308,7 +7308,7 @@ "hash": "L93IfBdyqrGLYa8mktQt6A==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7320,7 +7320,7 @@ "hash": "DdyNCZPcbmGgqyxEplkidQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7332,7 +7332,7 @@ "hash": "UyQSj15eTsKzo4SBSIh9TQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7344,7 +7344,7 @@ "hash": "6fbneTPB7T9Rg83BS+yLpg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7356,7 +7356,7 @@ "hash": "74+Zdh1ijL9n9p+Pjsp1+g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7368,7 +7368,7 @@ "hash": "Utk9+7FGSG6fczSh5jReGg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7380,7 +7380,7 @@ "hash": "160kgHxx10fcahCLdHnkzg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7392,7 +7392,7 @@ "hash": "B76AJMGrgFJJxObwLUOuzw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7404,7 +7404,7 @@ "hash": "8eQ5vT90xHgsVWEi6axgXA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7416,7 +7416,7 @@ "hash": "gIIGZxD5732TvK4tQ55tLg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7428,7 +7428,7 @@ "hash": "sGL86aE/ELVm6wN1hOrqqg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7440,7 +7440,7 @@ "hash": "qtu7v6UKuCIz0ITktYCZ7Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7452,7 +7452,7 @@ "hash": "qumdOId0Y9QnRosaWCfKgg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7464,7 +7464,7 @@ "hash": "ETbqFgMXHhEJTV8oWTYRqw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7476,7 +7476,7 @@ "hash": "7Su9LgDdCYIr45HSu726PQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7488,7 +7488,7 @@ "hash": "sVjlUtJ3hAb3d8lqkQeNfQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7500,7 +7500,7 @@ "hash": "s5PPCQOvzHsS1vwEuN7lsA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7512,7 +7512,7 @@ "hash": "Q6zPzYGXeZRLbfM5vpJxzg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7524,7 +7524,7 @@ "hash": "HECEKBvWZoqxSJUUm9biCA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7536,7 +7536,7 @@ "hash": "XX/t16y8WTC9JUfQDImSvA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7548,7 +7548,7 @@ "hash": "fUXH2JgMU5LPG0f6eXGxag==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7560,7 +7560,7 @@ "hash": "PMNDRL88Ufxj/O4qhmJrLQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7572,7 +7572,7 @@ "hash": "VVZx4sijzuXv1P1vPE+sLg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7584,7 +7584,7 @@ "hash": "BLjFvc3s/sDIlYkr65fMFw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7596,7 +7596,7 @@ "hash": "LJ7JrPpNnfcJm+Deh6/iig==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7608,7 +7608,7 @@ "hash": "/K68VEVGmakdQQ1GbeZYGQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7620,7 +7620,7 @@ "hash": "ZNwkv5GyDueIBjbTPlQE9Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7632,7 +7632,7 @@ "hash": "ho1HpY2vZNuE8bftghGwfw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7644,7 +7644,7 @@ "hash": "ruMEJwylXQHh+v1pyKR2Ew==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7656,7 +7656,7 @@ "hash": "VKYu8WGNvTtDbHWUIcWMhw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7668,7 +7668,7 @@ "hash": "1JGDePa9pW4LLhfqJZP7UA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7680,7 +7680,7 @@ "hash": "5HXdjVNPoh7xx5gUNjrllQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7692,7 +7692,7 @@ "hash": "vZIIKvmoAnl/njfKrs0dtA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7704,7 +7704,7 @@ "hash": "wQ4F4cTluo5+KIezThwdPw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7716,7 +7716,7 @@ "hash": "dNUyWrW+Dj7jU7kI3NVDRA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7728,7 +7728,7 @@ "hash": "KS8u3C+7zL+hNYtN+aREPQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7740,7 +7740,7 @@ "hash": "XmRq1uMI8pb0iyFZs99D7g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7752,7 +7752,7 @@ "hash": "BkXUO+2inDoiq0S/4Wpe1Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7764,7 +7764,7 @@ "hash": "Mmkgd4x4YExAoS9mgcYW0w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7776,7 +7776,7 @@ "hash": "L7tCquwzPc/y9FdYlzpCzw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7788,7 +7788,7 @@ "hash": "Id3jcLPiKuSECWWuwFv2hQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7800,7 +7800,7 @@ "hash": "IbyPUL0pKRS+gvyTowXyIg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7812,7 +7812,7 @@ "hash": "xoybyD61Q7NI6BcUW0SeiA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7824,7 +7824,7 @@ "hash": "KhGPWgRxwSgNa3swsaxypQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7836,7 +7836,7 @@ "hash": "3yTOHXzaks/VvFf+Yu1WjQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7848,7 +7848,7 @@ "hash": "IFdNPGddhcteOqcZIuetSg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7860,7 +7860,7 @@ "hash": "8asYTJ0S/Da8KqiHJ/2I4w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7872,7 +7872,7 @@ "hash": "WBJbWvjMgDXWFcIEoCQa7Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7884,7 +7884,7 @@ "hash": "OnFz4jaMN8yRF2SWvtNfgQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7896,7 +7896,7 @@ "hash": "GPZfeYFpZ2Pgu0FzPOB9iw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7908,7 +7908,7 @@ "hash": "XNfjobq1TifQ3/dN5IU4fw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7920,7 +7920,7 @@ "hash": "RdGqUDDpt8dL43Gyj+AvBQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7932,7 +7932,7 @@ "hash": "xd9jtWjjAuQOSoQaxQNUhA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7944,7 +7944,7 @@ "hash": "kgJvb4r0eMBQt3goe8V70g==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7956,7 +7956,7 @@ "hash": "P12uwgxuxyBF293stqgbwQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7968,7 +7968,7 @@ "hash": "EtMpp3rmFZJmuzNC1HIK2Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7980,7 +7980,7 @@ "hash": "mQfoYalVvUdR57Jxmr9m7w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -7992,7 +7992,7 @@ "hash": "MSj3AMUNPkvV3EpAvaDs3Q==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8004,7 +8004,7 @@ "hash": "4E9gKXJOSyE0L2MLK3kP8w==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8016,7 +8016,7 @@ "hash": "tjE6osszWTtqiz8iYOkGZQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8028,7 +8028,7 @@ "hash": "5jQj5VktZWA2m/c9WPDrAw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8040,7 +8040,7 @@ "hash": "jmyVMoaOs2Nx3yN4MVPxPw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8052,7 +8052,7 @@ "hash": "GuJRZilncU9r+CbquDXIPQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8064,7 +8064,7 @@ "hash": "6hq0yw8Y4cpdygivtHCebw==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8076,7 +8076,7 @@ "hash": "ECNn4NzfrkDpHQkzVJvKSQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8088,7 +8088,7 @@ "hash": "CtVmKJ0pNZuf0cJQYcxGgQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8100,7 +8100,7 @@ "hash": "StYNa/p+ejDNnD3vUU4wxQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8112,7 +8112,7 @@ "hash": "SuhsPyCgbaiZPtuhQ3D3yg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8124,7 +8124,7 @@ "hash": "4OA/buMbpEBACHiUYpCEag==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8136,7 +8136,7 @@ "hash": "S85+M08X4gSYRPgqW21fAQ==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8148,7 +8148,7 @@ "hash": "fNfvXqnUNXvWmqmPIW0fuA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8160,7 +8160,7 @@ "hash": "rbvqYn1oVKayxf1mEnGkMA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8172,7 +8172,7 @@ "hash": "ouKfDLMeUJdQEnF/p8uRPg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8184,7 +8184,7 @@ "hash": "Xa2TgjEQLGi7upSWkfCcoA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8196,7 +8196,7 @@ "hash": "Ttk1dQ7KE++yjQRTILCFfA==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" }, { @@ -8256,7 +8256,7 @@ "can_incremental": true, "incrementalPhase": "build", "total_file_count": 682, - "skipped_file_count": 601 + "skipped_file_count": 559 }, "ConceptualDocumentProcessor": { "can_incremental": true, diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index 92c26a515..0b8cb8af8 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -18268,6 +18268,35 @@ references: isSpec: "True" fullName: Dalamud.Plugin.DalamudPluginInterface.SavePluginConfig nameWithType: DalamudPluginInterface.SavePluginConfig +- uid: Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) + name: SendMessage(ExpandoObject) + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_SendMessage_System_Dynamic_ExpandoObject_ + commentId: M:Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) + fullName: Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) + nameWithType: DalamudPluginInterface.SendMessage(ExpandoObject) +- uid: Dalamud.Plugin.DalamudPluginInterface.SendMessage* + name: SendMessage + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_SendMessage_ + commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.SendMessage + isSpec: "True" + fullName: Dalamud.Plugin.DalamudPluginInterface.SendMessage + nameWithType: DalamudPluginInterface.SendMessage +- uid: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String,System.Action{System.Dynamic.ExpandoObject}) + name: Subscribe(String, Action) + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Subscribe_System_String_System_Action_System_Dynamic_ExpandoObject__ + commentId: M:Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String,System.Action{System.Dynamic.ExpandoObject}) + name.vb: Subscribe(String, Action(Of ExpandoObject)) + fullName: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String, System.Action) + fullName.vb: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String, System.Action(Of System.Dynamic.ExpandoObject)) + nameWithType: DalamudPluginInterface.Subscribe(String, Action) + nameWithType.vb: DalamudPluginInterface.Subscribe(String, Action(Of ExpandoObject)) +- uid: Dalamud.Plugin.DalamudPluginInterface.Subscribe* + name: Subscribe + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Subscribe_ + commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.Subscribe + isSpec: "True" + fullName: Dalamud.Plugin.DalamudPluginInterface.Subscribe + nameWithType: DalamudPluginInterface.Subscribe - uid: Dalamud.Plugin.DalamudPluginInterface.TargetModuleScanner name: TargetModuleScanner href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_TargetModuleScanner @@ -18280,6 +18309,19 @@ references: commentId: F:Dalamud.Plugin.DalamudPluginInterface.UiBuilder fullName: Dalamud.Plugin.DalamudPluginInterface.UiBuilder nameWithType: DalamudPluginInterface.UiBuilder +- uid: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) + name: Unsubscribe(String) + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Unsubscribe_System_String_ + commentId: M:Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) + fullName: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) + nameWithType: DalamudPluginInterface.Unsubscribe(String) +- uid: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe* + name: Unsubscribe + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Unsubscribe_ + commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.Unsubscribe + isSpec: "True" + fullName: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe + nameWithType: DalamudPluginInterface.Unsubscribe - uid: Dalamud.Plugin.IDalamudPlugin name: IDalamudPlugin href: api/Dalamud.Plugin.IDalamudPlugin.html From 8ab6382fea40b6de637d96a42f195d6daba10283 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 14 May 2020 22:42:44 +0200 Subject: [PATCH 3/3] Revert "docs: regenerate" This reverts commit beeb102359cdce7b75dc4e1138b6daafaa44c922. --- ...ud.Configuration.IPluginConfiguration.html | 8 +- ...ud.Configuration.PluginConfigurations.html | 20 +- docs/api/Dalamud.Data.DataManager.html | 52 +- ...ta.LuminaExtensions.TexFileExtensions.html | 8 +- ...alamud.Data.TransientSheet.Completion.html | 36 +- ...TransientSheet.ContentFinderCondition.html | 340 ++--- .../api/Dalamud.Data.TransientSheet.Item.html | 340 ++--- ...Dalamud.Data.TransientSheet.PetMirage.html | 268 ++-- .../api/Dalamud.Game.Chat.EnumExtensions.html | 8 +- docs/api/Dalamud.Game.Chat.SeIconChar.html | 4 +- ...ringHandling.Payload.EmbeddedInfoType.html | 4 +- ....SeStringHandling.Payload.IntegerType.html | 4 +- ...ingHandling.Payload.SeStringChunkType.html | 4 +- ...ud.Game.Chat.SeStringHandling.Payload.html | 68 +- ...ame.Chat.SeStringHandling.PayloadType.html | 4 +- ...andling.Payloads.AutoTranslatePayload.html | 28 +- ...ndling.Payloads.EmphasisItalicPayload.html | 36 +- ...SeStringHandling.Payloads.ItemPayload.html | 44 +- ...tringHandling.Payloads.MapLinkPayload.html | 72 +- ...StringHandling.Payloads.PlayerPayload.html | 36 +- ....SeStringHandling.Payloads.RawPayload.html | 32 +- ...StringHandling.Payloads.StatusPayload.html | 28 +- ...SeStringHandling.Payloads.TextPayload.html | 28 +- ...Handling.Payloads.UIForegroundPayload.html | 48 +- ...StringHandling.Payloads.UIGlowPayload.html | 48 +- ...d.Game.Chat.SeStringHandling.SeString.html | 40 +- ...e.Chat.SeStringHandling.SeStringUtils.html | 28 +- docs/api/Dalamud.Game.Chat.XivChatEntry.html | 24 +- docs/api/Dalamud.Game.Chat.XivChatType.html | 4 +- ...lamud.Game.Chat.XivChatTypeExtensions.html | 8 +- ...ud.Game.Chat.XivChatTypeInfoAttribute.html | 16 +- docs/api/Dalamud.Game.ChatHandlers.html | 12 +- ...ud.Game.ClientState.Actors.ActorTable.html | 44 +- ...ame.ClientState.Actors.CustomizeIndex.html | 4 +- ...ud.Game.ClientState.Actors.ObjectKind.html | 4 +- ...mud.Game.ClientState.Actors.Position3.html | 24 +- ...ntState.Actors.Resolvers.BaseResolver.html | 12 +- ...ClientState.Actors.Resolvers.ClassJob.html | 16 +- ...me.ClientState.Actors.Resolvers.World.html | 16 +- ...d.Game.ClientState.Actors.Types.Actor.html | 48 +- ...d.Game.ClientState.Actors.Types.Chara.html | 36 +- ...tate.Actors.Types.NonPlayer.BattleNpc.html | 16 +- ...tors.Types.NonPlayer.BattleNpcSubKind.html | 4 +- ...lientState.Actors.Types.NonPlayer.Npc.html | 16 +- ....ClientState.Actors.Types.PartyMember.html | 24 +- ...entState.Actors.Types.PlayerCharacter.html | 20 +- .../Dalamud.Game.ClientState.ClientState.html | 56 +- .../Dalamud.Game.ClientState.JobGauges.html | 12 +- .../Dalamud.Game.ClientState.KeyState.html | 16 +- .../Dalamud.Game.ClientState.PartyList.html | 52 +- ...alamud.Game.ClientState.Structs.Actor.html | 104 +- ...ClientState.Structs.JobGauge.ASTGauge.html | 12 +- ...ClientState.Structs.JobGauge.BLMGauge.html | 32 +- ...lientState.Structs.JobGauge.BOTDState.html | 4 +- ...ClientState.Structs.JobGauge.BRDGauge.html | 20 +- ...ClientState.Structs.JobGauge.CardType.html | 4 +- ...entState.Structs.JobGauge.CurrentSong.html | 4 +- ...ClientState.Structs.JobGauge.DNCGauge.html | 24 +- ...ClientState.Structs.JobGauge.DRGGauge.html | 16 +- ...ClientState.Structs.JobGauge.DRKGauge.html | 20 +- ...State.Structs.JobGauge.DismissedFairy.html | 4 +- ...ClientState.Structs.JobGauge.GNBGauge.html | 16 +- ...ClientState.Structs.JobGauge.MCHGauge.html | 32 +- ...ClientState.Structs.JobGauge.MNKGauge.html | 20 +- ...e.ClientState.Structs.JobGauge.Mudras.html | 4 +- ...ClientState.Structs.JobGauge.NINGauge.html | 20 +- ...ClientState.Structs.JobGauge.PLDGauge.html | 8 +- ....ClientState.Structs.JobGauge.PetGlam.html | 4 +- ...ClientState.Structs.JobGauge.RDMGauge.html | 12 +- ...ClientState.Structs.JobGauge.SAMGauge.html | 16 +- ...ClientState.Structs.JobGauge.SCHGauge.html | 20 +- ...ClientState.Structs.JobGauge.SMNGauge.html | 32 +- ...ClientState.Structs.JobGauge.SealType.html | 4 +- ...Game.ClientState.Structs.JobGauge.Sen.html | 4 +- ...lientState.Structs.JobGauge.SummonPet.html | 4 +- ...ClientState.Structs.JobGauge.WARGauge.html | 8 +- ...ClientState.Structs.JobGauge.WHMGauge.html | 16 +- ....Game.ClientState.Structs.PartyMember.html | 20 +- ...Game.ClientState.Structs.StatusEffect.html | 24 +- ...e.Command.CommandInfo.HandlerDelegate.html | 4 +- .../api/Dalamud.Game.Command.CommandInfo.html | 20 +- .../Dalamud.Game.Command.CommandManager.html | 28 +- ...me.Internal.DXGI.SwapChainSigResolver.html | 16 +- ...Internal.DXGI.SwapChainVtableResolver.html | 16 +- ...ud.Game.Internal.File.ResourceManager.html | 20 +- ...e.Internal.Framework.OnUpdateDelegate.html | 4 +- docs/api/Dalamud.Game.Internal.Framework.html | 36 +- ...ChatGui.OnCheckMessageHandledDelegate.html | 4 +- ...nternal.Gui.ChatGui.OnMessageDelegate.html | 4 +- ...rnal.Gui.ChatGui.OnMessageRawDelegate.html | 4 +- .../Dalamud.Game.Internal.Gui.ChatGui.html | 52 +- .../Dalamud.Game.Internal.Gui.GameGui.html | 44 +- ...l.Gui.TargetManager.GetTargetDelegate.html | 4 +- ...lamud.Game.Internal.Gui.TargetManager.html | 16 +- ...lamud.Game.Internal.Libc.LibcFunction.html | 12 +- ...mud.Game.Internal.Libc.OwnedStdString.html | 20 +- .../Dalamud.Game.Internal.Libc.StdString.html | 16 +- ....GameNetwork.OnNetworkMessageDelegate.html | 4 +- ...mud.Game.Internal.Network.GameNetwork.html | 24 +- ...ernal.Network.NetworkMessageDirection.html | 4 +- ...ud.Game.Network.NetworkHandlers.CfPop.html | 4 +- .../Dalamud.Game.Network.NetworkHandlers.html | 12 +- ...gs.MarketBoardItemListing.ItemMateria.html | 12 +- ...rrentOfferings.MarketBoardItemListing.html | 72 +- ...tructures.MarketBoardCurrentOfferings.html | 24 +- ...oardHistory.MarketBoardHistoryListing.html | 32 +- ...Network.Structures.MarketBoardHistory.html | 20 +- ...ame.Network.Structures.MarketTaxRates.html | 32 +- docs/api/Dalamud.Game.SigScanner.html | 76 +- ...lamud.Interface.FontAwesomeExtensions.html | 12 +- .../Dalamud.Interface.FontAwesomeIcon.html | 4 +- .../Dalamud.Interface.InterfaceManager.html | 52 +- .../Dalamud.Interface.MySinkExtensions.html | 8 +- .../Dalamud.Interface.SerilogEventSink.html | 20 +- docs/api/Dalamud.Interface.UiBuilder.html | 48 +- ...Dalamud.Plugin.DalamudPluginInterface.html | 164 +-- docs/api/Dalamud.Plugin.IDalamudPlugin.html | 12 +- docs/api/Dalamud.Plugin.PluginDefinition.html | 36 +- docs/api/Dalamud.Plugin.PluginLog.html | 16 +- ....PluginRepository.InitializationState.html | 4 +- docs/api/Dalamud.Plugin.PluginRepository.html | 24 +- docs/api/ImGuiNET.RangeAccessor-1.html | 1 - docs/api/ImGuiNET.RangePtrAccessor-1.html | 1 - docs/manifest.json | 1312 ++++++++--------- docs/xrefmap.yml | 42 - 125 files changed, 2434 insertions(+), 2586 deletions(-) diff --git a/docs/api/Dalamud.Configuration.IPluginConfiguration.html b/docs/api/Dalamud.Configuration.IPluginConfiguration.html index 68ff66c8f..2a62016b2 100644 --- a/docs/api/Dalamud.Configuration.IPluginConfiguration.html +++ b/docs/api/Dalamud.Configuration.IPluginConfiguration.html @@ -85,10 +85,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Version

@@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Configuration.PluginConfigurations.html b/docs/api/Dalamud.Configuration.PluginConfigurations.html index 2a7aec545..519aa01bb 100644 --- a/docs/api/Dalamud.Configuration.PluginConfigurations.html +++ b/docs/api/Dalamud.Configuration.PluginConfigurations.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginConfigurations(String)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Load(String)

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadForType<T>(String)

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Save(IPluginConfiguration, String)

@@ -301,10 +301,10 @@ diff --git a/docs/api/Dalamud.Data.DataManager.html b/docs/api/Dalamud.Data.DataManager.html index 8ea75d30a..e68ba8d7a 100644 --- a/docs/api/Dalamud.Data.DataManager.html +++ b/docs/api/Dalamud.Data.DataManager.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataManager(ClientLanguage)

@@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientOpCodes

@@ -180,10 +180,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Excel

@@ -211,10 +211,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsDataReady

@@ -242,10 +242,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ServerOpCodes

@@ -275,10 +275,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetExcelSheet<T>()

@@ -324,10 +324,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetFile(String)

@@ -374,10 +374,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetFile<T>(String)

@@ -441,10 +441,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(ClientLanguage, Int32)

@@ -497,10 +497,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(Int32)

@@ -547,10 +547,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetIcon(String, Int32)

@@ -603,10 +603,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Initialize(String)

@@ -656,10 +656,10 @@ diff --git a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html index 22de0b0e2..f0716c804 100644 --- a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html +++ b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetRgbaImageData(TexFile)

@@ -171,10 +171,10 @@ diff --git a/docs/api/Dalamud.Data.TransientSheet.Completion.html b/docs/api/Dalamud.Data.TransientSheet.Completion.html index 5b7941ede..319dcf452 100644 --- a/docs/api/Dalamud.Data.TransientSheet.Completion.html +++ b/docs/api/Dalamud.Data.TransientSheet.Completion.html @@ -119,10 +119,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Group

@@ -148,10 +148,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GroupTitle

@@ -177,10 +177,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Key

@@ -206,10 +206,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LookupTable

@@ -235,10 +235,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -266,10 +266,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -296,10 +296,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -328,10 +328,10 @@ public class Completion : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -375,10 +375,10 @@ public class Completion : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html b/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html index ee0c27202..d574848ed 100644 --- a/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html +++ b/docs/api/Dalamud.Data.TransientSheet.ContentFinderCondition.html @@ -119,10 +119,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AcceptClassJobCategory

@@ -148,10 +148,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllianceRoulette

@@ -177,10 +177,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobLevelRequired

@@ -206,10 +206,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobLevelSync

@@ -235,10 +235,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Content

@@ -264,10 +264,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentLinkType

@@ -293,10 +293,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentMemberType

@@ -322,10 +322,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ContentType

@@ -351,10 +351,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DailyFrontlineChallenge

@@ -380,10 +380,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ExpertRoulette

@@ -409,10 +409,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GuildHestRoulette

@@ -438,10 +438,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Icon

@@ -467,10 +467,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Image

@@ -496,10 +496,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemLevelRequired

@@ -525,10 +525,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemLevelSync

@@ -554,10 +554,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Level5060Roulette

@@ -583,10 +583,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Level70Roulette

@@ -612,10 +612,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelingRoulette

@@ -641,10 +641,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MentorRoulette

@@ -670,10 +670,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MSQRoulette

@@ -699,10 +699,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -728,10 +728,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

NormalRaidRoulette

@@ -757,10 +757,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ShortCode

@@ -786,10 +786,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SortKey

@@ -815,10 +815,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

@@ -844,10 +844,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Transient

@@ -873,10 +873,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TransientKey

@@ -902,10 +902,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

TrialRoulette

@@ -931,10 +931,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown10

@@ -960,10 +960,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown11

@@ -989,10 +989,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown13

@@ -1018,10 +1018,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown15

@@ -1047,10 +1047,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown16

@@ -1076,10 +1076,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown17

@@ -1105,10 +1105,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown18

@@ -1134,10 +1134,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown19

@@ -1163,10 +1163,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1a

@@ -1192,10 +1192,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1b

@@ -1221,10 +1221,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1c

@@ -1250,10 +1250,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1d

@@ -1279,10 +1279,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1e

@@ -1308,10 +1308,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1f

@@ -1337,10 +1337,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown20

@@ -1366,10 +1366,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown21

@@ -1395,10 +1395,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown22

@@ -1424,10 +1424,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown23

@@ -1453,10 +1453,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown24

@@ -1482,10 +1482,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown25

@@ -1511,10 +1511,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown26

@@ -1540,10 +1540,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown27

@@ -1569,10 +1569,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown28

@@ -1598,10 +1598,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown29

@@ -1627,10 +1627,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2a

@@ -1656,10 +1656,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown30

@@ -1685,10 +1685,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown34

@@ -1714,10 +1714,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1743,10 +1743,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown55

@@ -1772,10 +1772,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1801,10 +1801,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown59

@@ -1830,10 +1830,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5a

@@ -1859,10 +1859,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5d

@@ -1888,10 +1888,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1917,10 +1917,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownd

@@ -1946,10 +1946,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowne

@@ -1975,10 +1975,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownf

@@ -2004,10 +2004,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

UnlockQuest

@@ -2035,10 +2035,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllowReplacement

@@ -2065,10 +2065,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AllowUndersized

@@ -2095,10 +2095,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DutyRecorderAllowed

@@ -2125,10 +2125,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

HighEndDuty

@@ -2155,10 +2155,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PvP

@@ -2185,10 +2185,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -2215,10 +2215,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2245,10 +2245,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_10

@@ -2275,10 +2275,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_20

@@ -2305,10 +2305,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_40

@@ -2335,10 +2335,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown61_8

@@ -2365,10 +2365,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_1

@@ -2395,10 +2395,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_10

@@ -2425,10 +2425,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_2

@@ -2455,10 +2455,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_20

@@ -2485,10 +2485,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_4

@@ -2515,10 +2515,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62_40

@@ -2547,10 +2547,10 @@ public class ContentFinderCondition : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2594,10 +2594,10 @@ public class ContentFinderCondition : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.Item.html b/docs/api/Dalamud.Data.TransientSheet.Item.html index 5de32850d..81b2016c0 100644 --- a/docs/api/Dalamud.Data.TransientSheet.Item.html +++ b/docs/api/Dalamud.Data.TransientSheet.Item.html @@ -119,10 +119,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AdditionalData

@@ -148,10 +148,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Adjective

@@ -177,10 +177,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AetherialReduce

@@ -206,10 +206,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Article

@@ -235,10 +235,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

BaseParamModifier

@@ -264,10 +264,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Block

@@ -293,10 +293,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

BlockRate

@@ -322,10 +322,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobCategory

@@ -351,10 +351,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobRepair

@@ -380,10 +380,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJobUse

@@ -409,10 +409,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Cooldowns

@@ -438,10 +438,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DamageMag

@@ -467,10 +467,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DamagePhys

@@ -496,10 +496,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DefenseMag

@@ -525,10 +525,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

DefensePhys

@@ -554,10 +554,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Delayms

@@ -583,10 +583,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -612,10 +612,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

EquipRestriction

@@ -641,10 +641,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

EquipSlotCategory

@@ -670,10 +670,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

FilterGroup

@@ -699,10 +699,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

GrandCompany

@@ -728,10 +728,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Icon

@@ -757,10 +757,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemAction

@@ -786,10 +786,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemGlamour

@@ -815,10 +815,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemRepair

@@ -844,10 +844,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSearchCategory

@@ -873,10 +873,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSeries

@@ -902,10 +902,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSpecialBonus

@@ -931,10 +931,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemSpecialBonusParam

@@ -960,10 +960,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ItemUICategory

@@ -989,10 +989,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelEquip

@@ -1018,10 +1018,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

LevelItem

@@ -1047,10 +1047,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MaterializeType

@@ -1076,10 +1076,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaSlotCount

@@ -1105,10 +1105,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ModelMain

@@ -1134,10 +1134,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

ModelSub

@@ -1163,10 +1163,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -1192,10 +1192,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Plural

@@ -1221,10 +1221,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PossessivePronoun

@@ -1250,10 +1250,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PriceLow

@@ -1279,10 +1279,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PriceMid

@@ -1308,10 +1308,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Pronoun

@@ -1337,10 +1337,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Rarity

@@ -1366,10 +1366,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Salvage

@@ -1395,10 +1395,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Singular

@@ -1424,10 +1424,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

StackSize

@@ -1453,10 +1453,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

StartsWithVowel

@@ -1482,10 +1482,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown13

@@ -1511,10 +1511,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3c

@@ -1540,10 +1540,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3e

@@ -1569,10 +1569,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown40

@@ -1598,10 +1598,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown48

@@ -1627,10 +1627,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4a

@@ -1656,10 +1656,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1685,10 +1685,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4f

@@ -1714,10 +1714,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown56

@@ -1743,10 +1743,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown57

@@ -1772,10 +1772,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1801,10 +1801,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5b

@@ -1830,10 +1830,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5c

@@ -1859,10 +1859,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5d

@@ -1888,10 +1888,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1917,10 +1917,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown63

@@ -1946,10 +1946,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown64

@@ -1975,10 +1975,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown65

@@ -2004,10 +2004,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown68

@@ -2033,10 +2033,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown8c

@@ -2062,10 +2062,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown94

@@ -2091,10 +2091,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown9d

@@ -2122,10 +2122,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

AlwaysCollectable

@@ -2152,10 +2152,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

CanBeHq

@@ -2182,10 +2182,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsAdvancedMeldingPermitted

@@ -2212,10 +2212,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsCollectable

@@ -2242,10 +2242,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsCrestWorthy

@@ -2272,10 +2272,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsDyeable

@@ -2302,10 +2302,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsGlamourous

@@ -2332,10 +2332,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsIndisposable

@@ -2362,10 +2362,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsPvP

@@ -2392,10 +2392,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsUnique

@@ -2422,10 +2422,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

IsUntradable

@@ -2452,10 +2452,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Lot

@@ -2482,10 +2482,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -2512,10 +2512,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2544,10 +2544,10 @@ public class Item : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2591,10 +2591,10 @@ public class Item : IExcelRow diff --git a/docs/api/Dalamud.Data.TransientSheet.PetMirage.html b/docs/api/Dalamud.Data.TransientSheet.PetMirage.html index 440d27246..ffe994c5f 100644 --- a/docs/api/Dalamud.Data.TransientSheet.PetMirage.html +++ b/docs/api/Dalamud.Data.TransientSheet.PetMirage.html @@ -119,10 +119,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -148,10 +148,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown10

@@ -177,10 +177,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown12

@@ -206,10 +206,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown14

@@ -235,10 +235,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown16

@@ -264,10 +264,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown18

@@ -293,10 +293,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1a

@@ -322,10 +322,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1c

@@ -351,10 +351,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown1e

@@ -380,10 +380,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown20

@@ -409,10 +409,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown22

@@ -438,10 +438,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown24

@@ -467,10 +467,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown26

@@ -496,10 +496,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown28

@@ -525,10 +525,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2a

@@ -554,10 +554,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2c

@@ -583,10 +583,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown2e

@@ -612,10 +612,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown30

@@ -641,10 +641,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown32

@@ -670,10 +670,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown34

@@ -699,10 +699,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown36

@@ -728,10 +728,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown38

@@ -757,10 +757,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3a

@@ -786,10 +786,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3c

@@ -815,10 +815,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown3e

@@ -844,10 +844,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4

@@ -873,10 +873,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown40

@@ -902,10 +902,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown42

@@ -931,10 +931,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown44

@@ -960,10 +960,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown46

@@ -989,10 +989,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown48

@@ -1018,10 +1018,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4a

@@ -1047,10 +1047,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4c

@@ -1076,10 +1076,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown4e

@@ -1105,10 +1105,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown50

@@ -1134,10 +1134,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown52

@@ -1163,10 +1163,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown54

@@ -1192,10 +1192,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown56

@@ -1221,10 +1221,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown58

@@ -1250,10 +1250,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5a

@@ -1279,10 +1279,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5c

@@ -1308,10 +1308,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown5e

@@ -1337,10 +1337,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6

@@ -1366,10 +1366,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown60

@@ -1395,10 +1395,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown62

@@ -1424,10 +1424,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown64

@@ -1453,10 +1453,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown66

@@ -1482,10 +1482,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown68

@@ -1511,10 +1511,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6a

@@ -1540,10 +1540,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6c

@@ -1569,10 +1569,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown6e

@@ -1598,10 +1598,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown70

@@ -1627,10 +1627,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown72

@@ -1656,10 +1656,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown74

@@ -1685,10 +1685,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown76

@@ -1714,10 +1714,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown78

@@ -1743,10 +1743,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown7a

@@ -1772,10 +1772,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown7c

@@ -1801,10 +1801,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown8

@@ -1830,10 +1830,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknown80

@@ -1859,10 +1859,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowna

@@ -1888,10 +1888,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknownc

@@ -1917,10 +1917,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

unknowne

@@ -1948,10 +1948,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

RowId

@@ -1978,10 +1978,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

SubRowId

@@ -2010,10 +2010,10 @@ public class PetMirage : IExcelRow | - Improve this Doc + Improve this Doc - View Source + View Source

PopulateData(RowParser, Lumina)

@@ -2057,10 +2057,10 @@ public class PetMirage : IExcelRow diff --git a/docs/api/Dalamud.Game.Chat.EnumExtensions.html b/docs/api/Dalamud.Game.Chat.EnumExtensions.html index 385d384df..ecb678b5a 100644 --- a/docs/api/Dalamud.Game.Chat.EnumExtensions.html +++ b/docs/api/Dalamud.Game.Chat.EnumExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetAttribute<TAttribute>(Enum)

@@ -183,10 +183,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeIconChar.html b/docs/api/Dalamud.Game.Chat.SeIconChar.html index a71aa1918..9b03e0663 100644 --- a/docs/api/Dalamud.Game.Chat.SeIconChar.html +++ b/docs/api/Dalamud.Game.Chat.SeIconChar.html @@ -694,10 +694,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html index 21030c72e..061effaf2 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html @@ -125,10 +125,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html index bbb42835f..aaeb15869 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html @@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html index 6e3d98a2b..cdf0896f5 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html @@ -125,10 +125,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html index 5a9682653..423b7a36b 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payload.html @@ -125,10 +125,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Payload()

@@ -142,10 +142,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dataResolver

The Lumina instance to use for any necessary data lookups.

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

END_BYTE

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

START_BYTE

@@ -232,10 +232,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dirty

@@ -263,10 +263,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -296,10 +296,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Decode(BinaryReader)

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -386,10 +386,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Encode(Boolean)

@@ -436,10 +436,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -469,10 +469,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetInteger(BinaryReader)

@@ -516,10 +516,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -563,10 +563,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForPackedIntegerBytes(Byte[])

@@ -610,10 +610,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetPackedIntegers(BinaryReader)

@@ -657,10 +657,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

MakeInteger(UInt32, Boolean, Boolean)

@@ -714,10 +714,10 @@ handlers such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

MakePackedInteger(UInt32, UInt32, Boolean)

@@ -777,10 +777,10 @@ handlers such as the chat log.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html index 0a42db3fb..83fd7be19 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html @@ -156,10 +156,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html index a13442d6d..173cb9507 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AutoTranslatePayload(UInt32, UInt32)

@@ -195,10 +195,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -229,10 +229,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -263,10 +263,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -302,10 +302,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -334,10 +334,10 @@ There is probably little use to create one of these, however.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -372,10 +372,10 @@ There is probably little use to create one of these, however.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html index b401d3b81..7d3647597 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html @@ -153,10 +153,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

EmphasisItalicPayload(Boolean)

@@ -189,10 +189,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -220,10 +220,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

ItalicsOff

@@ -251,10 +251,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

ItalicsOn

@@ -282,10 +282,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -316,10 +316,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -355,10 +355,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -387,10 +387,10 @@ text payloads.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -425,10 +425,10 @@ text payloads.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html index 7983b4840..777fcfd55 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html @@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemPayload(UInt32, Boolean, String)

@@ -193,10 +193,10 @@ TextPayload that is a part of a full item link in chat.

| - Improve this Doc + Improve this Doc - View Source + View Source

DisplayName

@@ -225,10 +225,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

IsHQ

@@ -256,10 +256,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

Item

@@ -290,10 +290,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -324,10 +324,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -363,10 +363,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -395,10 +395,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -444,10 +444,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

MakeInteger(UInt32, Boolean, Boolean)

@@ -503,10 +503,10 @@ often the name is only present in a following text payload.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -541,10 +541,10 @@ often the name is only present in a following text payload.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html index 19b48a124..11bb649af 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MapLinkPayload(UInt32, UInt32, Int32, Int32)

@@ -198,10 +198,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MapLinkPayload(UInt32, UInt32, Single, Single, Single)

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CoordinateString

@@ -290,10 +290,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

DataString

@@ -321,10 +321,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

Map

@@ -355,10 +355,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlaceName

@@ -386,10 +386,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlaceNameRegion

@@ -417,10 +417,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawX

@@ -448,10 +448,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawY

@@ -479,10 +479,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

@@ -513,10 +513,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -545,10 +545,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

XCoord

@@ -576,10 +576,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

YCoord

@@ -609,10 +609,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -648,10 +648,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -680,10 +680,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -729,10 +729,10 @@ but is an approximation and may be slightly off for some positions.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -767,10 +767,10 @@ but is an approximation and may be slightly off for some positions.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html index 49d9cdec9..d977cc9f1 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerPayload(String, UInt32)

@@ -191,10 +191,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DisplayedName

@@ -223,10 +223,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

PlayerName

@@ -254,10 +254,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -286,10 +286,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

World

@@ -322,10 +322,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -361,10 +361,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -393,10 +393,10 @@ The world name will always be present.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -431,10 +431,10 @@ The world name will always be present.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html index 514eb4c61..691a21dc6 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html @@ -151,10 +151,10 @@ payloads without modification.

| - Improve this Doc + Improve this Doc - View Source + View Source

RawPayload(Byte[])

@@ -185,10 +185,10 @@ payloads without modification.

| - Improve this Doc + Improve this Doc - View Source + View Source

Data

@@ -217,10 +217,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

LinkTerminator

@@ -248,10 +248,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -282,10 +282,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -321,10 +321,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -353,10 +353,10 @@ The returned data is a clone and modifications will not be persisted.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -391,10 +391,10 @@ The returned data is a clone and modifications will not be persisted.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html index a8ad844d3..cf80449c3 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StatusPayload(UInt32)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Status

@@ -219,10 +219,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -253,10 +253,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -292,10 +292,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -324,10 +324,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -362,10 +362,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html index 145c59b18..3852b0891 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html @@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextPayload(String)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Text

@@ -217,10 +217,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -251,10 +251,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -290,10 +290,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -322,10 +322,10 @@ This may contain SE's special unicode characters.

| - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -360,10 +360,10 @@ This may contain SE's special unicode characters.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html index 4af9d6e65..29d39d793 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIForegroundPayload(UInt16)

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ColorKey

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RGB

@@ -274,10 +274,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -306,10 +306,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIColor

@@ -340,10 +340,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

UIForegroundOff

@@ -373,10 +373,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -412,10 +412,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -444,10 +444,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -493,10 +493,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -531,10 +531,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html index e61988865..2d7229736 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html @@ -146,10 +146,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIGlowPayload(UInt16)

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ColorKey

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnabled

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RGB

@@ -274,10 +274,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -306,10 +306,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIColor

@@ -340,10 +340,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

UIGlowOff

@@ -373,10 +373,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DecodeImpl(BinaryReader, Int64)

@@ -412,10 +412,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EncodeImpl()

@@ -444,10 +444,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetMarkerForIntegerBytes(Byte[])

@@ -493,10 +493,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToString()

@@ -531,10 +531,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html index 9a1c1e2dc..62d5b3d0a 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeString.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeString(Payload[])

@@ -149,10 +149,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeString(List<Payload>)

@@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Payloads

@@ -216,10 +216,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextValue

@@ -250,10 +250,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(Payload)

@@ -300,10 +300,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(SeString)

@@ -350,10 +350,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Append(List<Payload>)

@@ -400,10 +400,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Encode()

@@ -433,10 +433,10 @@ suitable for use by in-game handlers, such as the chat log.

| - Improve this Doc + Improve this Doc - View Source + View Source

Parse(Byte[])

@@ -489,10 +489,10 @@ suitable for use by in-game handlers, such as the chat log.

diff --git a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html index 6432a77a3..8c4761b6f 100644 --- a/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html +++ b/docs/api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -239,10 +239,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -307,10 +307,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -369,10 +369,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -443,10 +443,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextArrowPayloads()

@@ -482,10 +482,10 @@ with the appropriate glow and coloring.

diff --git a/docs/api/Dalamud.Game.Chat.XivChatEntry.html b/docs/api/Dalamud.Game.Chat.XivChatEntry.html index 4a8956e40..750c2ed9e 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatEntry.html +++ b/docs/api/Dalamud.Game.Chat.XivChatEntry.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MessageBytes

@@ -144,10 +144,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -174,10 +174,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Parameters

@@ -204,10 +204,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SenderId

@@ -234,10 +234,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Type

@@ -270,10 +270,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatType.html b/docs/api/Dalamud.Game.Chat.XivChatType.html index 2345e2509..ab3df7058 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatType.html +++ b/docs/api/Dalamud.Game.Chat.XivChatType.html @@ -265,10 +265,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html b/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html index 5eb60acc3..c7ef0ae03 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html +++ b/docs/api/Dalamud.Game.Chat.XivChatTypeExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GetDetails(XivChatType)

@@ -167,10 +167,10 @@ diff --git a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html b/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html index 228d94190..9d206e7b1 100644 --- a/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html +++ b/docs/api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html @@ -236,10 +236,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DefaultColor

@@ -266,10 +266,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

FancyName

@@ -296,10 +296,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Slug

@@ -336,10 +336,10 @@ diff --git a/docs/api/Dalamud.Game.ChatHandlers.html b/docs/api/Dalamud.Game.ChatHandlers.html index daafb8bc5..f168a5897 100644 --- a/docs/api/Dalamud.Game.ChatHandlers.html +++ b/docs/api/Dalamud.Game.ChatHandlers.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ChatHandlers(Dalamud)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source @@ -184,10 +184,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html index 01f768e0e..c3207b723 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html @@ -122,10 +122,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorTable(Dalamud, ClientStateAddressResolver)

@@ -163,10 +163,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -214,10 +214,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

Length

@@ -247,10 +247,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -279,10 +279,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlyCollection<Actor>.Count

@@ -309,10 +309,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.CopyTo(Array, Int32)

@@ -346,10 +346,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.Count

@@ -376,10 +376,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.IsSynchronized

@@ -406,10 +406,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

ICollection.SyncRoot

@@ -436,10 +436,10 @@ public Actor this[int index] { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -485,10 +485,10 @@ public Actor this[int index] { get; } diff --git a/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html b/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html index 34803141d..cfb418177 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html @@ -210,10 +210,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html b/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html index 002d18b67..880ba5528 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.ObjectKind.html @@ -178,10 +178,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html index e6aab9139..698bb36a2 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

X

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Y

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Z

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Position3 to Vector3)

@@ -244,10 +244,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Implicit(Position3 to Vector3)

@@ -299,10 +299,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html index 020510558..53ed16b5a 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html @@ -116,10 +116,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BaseResolver(Dalamud)

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dalamud

@@ -185,10 +185,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html index 2ea041a72..5bc415459 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob(Byte, Dalamud)

@@ -160,10 +160,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Id

ID of the ClassJob.

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameData

@@ -229,10 +229,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html index b965f5266..9168038ef 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

World(Byte, Dalamud)

@@ -160,10 +160,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Id

ID of the world.

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameData

@@ -229,10 +229,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html index 3b77502e5..41d756570 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html @@ -116,10 +116,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actor(IntPtr, Actor, Dalamud)

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

actorStruct

The memory representation of the base actor.

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

The address of this actor in memory.

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

dalamud

@@ -255,10 +255,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorId

@@ -286,10 +286,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -349,10 +349,10 @@ possible values.

| - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -380,10 +380,10 @@ possible values.

| - Improve this Doc + Improve this Doc - View Source + View Source

Rotation

@@ -412,10 +412,10 @@ This ranges from -pi to pi radians.

| - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceX

@@ -443,10 +443,10 @@ This ranges from -pi to pi radians.

| - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceY

@@ -480,10 +480,10 @@ This ranges from -pi to pi radians.

diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html index 1a132a1b9..872373563 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html @@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Chara(IntPtr, Actor, Dalamud)

@@ -196,10 +196,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob

@@ -227,10 +227,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentHp

@@ -258,10 +258,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMp

@@ -289,10 +289,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Customize

@@ -320,10 +320,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -351,10 +351,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxHp

@@ -382,10 +382,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxMp

@@ -419,10 +419,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html index 1c67d0b9a..54687bd21 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html @@ -175,10 +175,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BattleNpc(IntPtr, Actor, Dalamud)

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BattleNpcKind

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -291,10 +291,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html index 13331e6b5..3085278fd 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html index bd220abd2..e3dd23a22 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html @@ -169,10 +169,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Npc(IntPtr, Actor, Dalamud)

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataId

@@ -248,10 +248,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NameId

@@ -285,10 +285,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html index aa898b5af..75235401b 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyMember(ActorTable, PartyMember)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actor

@@ -182,10 +182,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CharacterName

@@ -211,10 +211,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -240,10 +240,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Unknown

@@ -275,10 +275,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html index d0af829d5..f0a648332 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html @@ -168,10 +168,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerCharacter(IntPtr, Actor, Dalamud)

@@ -216,10 +216,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CompanyTag

@@ -247,10 +247,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentWorld

@@ -278,10 +278,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HomeWorld

@@ -315,10 +315,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.ClientState.html b/docs/api/Dalamud.Game.ClientState.ClientState.html index 76533fe45..60b42db2e 100644 --- a/docs/api/Dalamud.Game.ClientState.ClientState.html +++ b/docs/api/Dalamud.Game.ClientState.ClientState.html @@ -120,10 +120,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientState(Dalamud, DalamudStartInfo, SigScanner)

@@ -168,10 +168,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Actors

The table of all present actors.

@@ -198,10 +198,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientLanguage

@@ -227,10 +227,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

JobGauges

The class facilitating Job Gauge data access

@@ -257,10 +257,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

KeyState

Provides access to the keypress state of keyboard keys in game.

@@ -287,10 +287,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyList

The class facilitating party list data access

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryChanged

Event that gets fired when the current Territory changes.

@@ -347,10 +347,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TerritoryType

The current Territory the player resides in.

@@ -379,10 +379,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LocalContentId

@@ -410,10 +410,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LocalPlayer

@@ -444,10 +444,10 @@ public PlayerCharacter LocalPlayer { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -459,10 +459,10 @@ public PlayerCharacter LocalPlayer { get; }
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -476,10 +476,10 @@ public PlayerCharacter LocalPlayer { get; } | - Improve this Doc + Improve this Doc - View Source + View Source

PropertyChanged

@@ -518,10 +518,10 @@ public PlayerCharacter LocalPlayer { get; } diff --git a/docs/api/Dalamud.Game.ClientState.JobGauges.html b/docs/api/Dalamud.Game.ClientState.JobGauges.html index 18bdf2b97..e3f44b1db 100644 --- a/docs/api/Dalamud.Game.ClientState.JobGauges.html +++ b/docs/api/Dalamud.Game.ClientState.JobGauges.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

JobGauges(ClientStateAddressResolver)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Get<T>()

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.KeyState.html b/docs/api/Dalamud.Game.ClientState.KeyState.html index 09558f7ec..046d55d43 100644 --- a/docs/api/Dalamud.Game.ClientState.KeyState.html +++ b/docs/api/Dalamud.Game.ClientState.KeyState.html @@ -116,10 +116,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

KeyState(ClientStateAddressResolver, IntPtr)

@@ -155,10 +155,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -207,10 +207,10 @@ all keyboard keys, indexed by virtual vkCode

| - Improve this Doc + Improve this Doc - View Source + View Source

ClearAll()

@@ -229,10 +229,10 @@ all keyboard keys, indexed by virtual vkCode

diff --git a/docs/api/Dalamud.Game.ClientState.PartyList.html b/docs/api/Dalamud.Game.ClientState.PartyList.html index 539c27d12..423ca41aa 100644 --- a/docs/api/Dalamud.Game.ClientState.PartyList.html +++ b/docs/api/Dalamud.Game.ClientState.PartyList.html @@ -122,10 +122,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PartyList(Dalamud, ClientStateAddressResolver)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Count

@@ -191,10 +191,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsSynchronized

@@ -221,10 +221,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Item[Int32]

@@ -268,10 +268,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Length

@@ -298,10 +298,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SyncRoot

@@ -330,10 +330,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CopyTo(Array, Int32)

@@ -367,10 +367,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -382,10 +382,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -397,10 +397,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetEnumerator()

@@ -429,10 +429,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IReadOnlyCollection<PartyMember>.Count

@@ -459,10 +459,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IEnumerable.GetEnumerator()

@@ -511,10 +511,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html index 9a0525bfb..369427f1e 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html @@ -107,10 +107,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActorId

@@ -136,10 +136,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClassJob

@@ -165,10 +165,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CompanyTag

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentHp

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentMp

@@ -252,10 +252,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CurrentWorld

@@ -281,10 +281,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Customize

@@ -310,10 +310,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataId

@@ -339,10 +339,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HomeWorld

@@ -368,10 +368,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsFriendly

@@ -397,10 +397,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Level

@@ -426,10 +426,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxHp

@@ -455,10 +455,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxMp

@@ -484,10 +484,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -513,10 +513,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NameId

@@ -542,10 +542,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ObjectKind

@@ -571,10 +571,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -600,10 +600,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerTargetStatus

@@ -629,10 +629,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Position

@@ -658,10 +658,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Rotation

@@ -687,10 +687,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SubKind

@@ -716,10 +716,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetActorId

@@ -745,10 +745,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UIStatusEffects

@@ -774,10 +774,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceFromPlayerX

@@ -803,10 +803,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

YalmDistanceFromPlayerY

@@ -838,10 +838,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html index 6254ad47e..14630e426 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ContainsSeal(SealType)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DrawnCard()

@@ -189,10 +189,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html index 9806e4e0a..68a71be18 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ElementTimeRemaining

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumPolyglotStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumUmbralHearts

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TimeUntilNextPolyglot

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InAstralFire()

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InUmbralIce()

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsEnoActive()

@@ -320,10 +320,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html index 4e84adb77..632ba2d38 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html index 8c43d8f62..2fac720a5 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ActiveSong

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumSongStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SongTimer

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SoulVoiceValue

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html index 2cb1d3564..72c605676 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html @@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html index 600285514..71c2cee00 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html index 804bacd59..ee517d135 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Esprit

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumCompleteSteps

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumFeathers

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsDancing()

@@ -225,10 +225,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NextStep()

@@ -261,10 +261,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html index 1885371e8..9c71cb4e1 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BOTDState

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BOTDTimer

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EyeCount

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html index 5958c6e27..ccea96a94 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Blood

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DarksideTimeRemaining

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ShadowTimeRemaining

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HasDarkArts()

@@ -231,10 +231,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html index 484b0f397..60c89306f 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html @@ -113,10 +113,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html index ba0a8452e..de28a558c 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AmmoComboStepNumber

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MaxTimerDuration

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumAmmo

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html index 6a2e8b779..103d182c1 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Battery

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Heat

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastRobotBatteryPower

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OverheatTimeRemaining

@@ -222,10 +222,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RobotTimeRemaining

@@ -253,10 +253,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsOverheated()

@@ -283,10 +283,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsRobotActive()

@@ -319,10 +319,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html index 607f05aec..404f06b03 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GLTimer

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumChakra

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumGLStacks

@@ -195,10 +195,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsGLTimerFroze()

@@ -231,10 +231,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html index 92c1e14e3..165999eee 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html @@ -117,10 +117,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html index 8b02379c5..fa0d6d3a7 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HutonTimeLeft

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Ninki

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumHutonManualCasts

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TCJMudrasUsed

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html index 722680555..bea3e79d7 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GaugeAmount

@@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html index 38d438dbd..2d944fd5d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html index 833e71a48..bd7b4496a 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BlackGauge

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

WhiteGauge

@@ -170,10 +170,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html index 1aaa22a2c..8ce4cbb82 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Kenki

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MeditationStacks

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Sen

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html index 24358d393..5f6f39c88 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DismissedFairy

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

FairyGaugeAmount

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumAetherflowStacks

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SeraphTimer

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html index 292670af0..d4f4356bc 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumStacks

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReturnSummon

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReturnSummonGlam

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TimerRemaining

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HasAetherflowStacks()

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsBahamutReady()

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsPhoenixReady()

@@ -320,10 +320,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html index 06f0a779e..e2276da22 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html index 0d155e579..1c829c230 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html @@ -122,10 +122,10 @@ public enum Sen : byte diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html index ee73e697c..e442f09da 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html index 2a8a0901d..e7253492d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BeastGaugeAmount

@@ -141,10 +141,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html index 74c4eb117..7bdb3d81d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LilyTimer

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumBloodLily

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NumLilies

@@ -199,10 +199,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html b/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html index eb3e7bae6..e40e70c51 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.PartyMember.html @@ -106,10 +106,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

actorId

@@ -135,10 +135,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

namePtr

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

objectKind

@@ -193,10 +193,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

unknown

@@ -228,10 +228,10 @@ diff --git a/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html b/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html index 6a0a275b8..44ae6679d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.StatusEffect.html @@ -107,10 +107,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Duration

@@ -136,10 +136,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EffectId

@@ -165,10 +165,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OwnerId

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Param

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StackCount

@@ -258,10 +258,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html b/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html index 18e114489..6baad38e9 100644 --- a/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html +++ b/docs/api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html @@ -114,10 +114,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandInfo.html b/docs/api/Dalamud.Game.Command.CommandInfo.html index cf3b0b4c7..df5903ff0 100644 --- a/docs/api/Dalamud.Game.Command.CommandInfo.html +++ b/docs/api/Dalamud.Game.Command.CommandInfo.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandInfo(CommandInfo.HandlerDelegate)

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Handler

@@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HelpMessage

@@ -212,10 +212,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ShowInHelp

@@ -249,10 +249,10 @@ diff --git a/docs/api/Dalamud.Game.Command.CommandManager.html b/docs/api/Dalamud.Game.Command.CommandManager.html index 17a7bd825..0c45b2b44 100644 --- a/docs/api/Dalamud.Game.Command.CommandManager.html +++ b/docs/api/Dalamud.Game.Command.CommandManager.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandManager(Dalamud, ClientLanguage)

@@ -154,10 +154,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Commands

@@ -187,10 +187,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

AddHandler(String, CommandInfo)

@@ -243,10 +243,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DispatchCommand(String, String, CommandInfo)

@@ -289,10 +289,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ProcessCommand(String)

@@ -339,10 +339,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RemoveHandler(String)

@@ -395,10 +395,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html index c188c3476..c16cae385 100644 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html +++ b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Present

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResizeBuffers

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Setup64Bit(SigScanner)

@@ -217,10 +217,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html index d49126db6..23e19bf10 100644 --- a/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html +++ b/docs/api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Present

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResizeBuffers

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Setup64Bit(SigScanner)

@@ -217,10 +217,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html b/docs/api/Dalamud.Game.Internal.File.ResourceManager.html index d73bf481b..d25c1f1dc 100644 --- a/docs/api/Dalamud.Game.Internal.File.ResourceManager.html +++ b/docs/api/Dalamud.Game.Internal.File.ResourceManager.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ResourceManager(Dalamud, SigScanner)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -168,10 +168,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -183,10 +183,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

FilePathHasInvalidChars(String)

@@ -236,10 +236,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html index 74bda0973..e1693955d 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html @@ -106,10 +106,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Framework.html b/docs/api/Dalamud.Game.Internal.Framework.html index fd779c3be..5741a38f0 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.html +++ b/docs/api/Dalamud.Game.Internal.Framework.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Framework(SigScanner, Dalamud)

@@ -158,10 +158,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -189,10 +189,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Gui

@@ -220,10 +220,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Libc

@@ -250,10 +250,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Network

@@ -283,10 +283,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -298,10 +298,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -315,10 +315,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnUpdateEvent

Event that gets fired every time the game framework updates.

@@ -355,10 +355,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html index 078c37f2c..b5de5debe 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html index b398992e3..67b4a22a8 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html index d510c76e6..679715940 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html index 5833cc3e9..d8b25c814 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ChatGui(IntPtr, SigScanner, Dalamud)

@@ -162,10 +162,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastLinkedItemFlags

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastLinkedItemId

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -239,10 +239,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -254,10 +254,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Print(String)

@@ -286,10 +286,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PrintChat(XivChatEntry)

@@ -321,10 +321,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

PrintError(String)

@@ -353,10 +353,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateQueue(Framework)

@@ -388,10 +388,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnChatMessage

Event that will be fired when a chat message is sent to chat by the game.

@@ -418,10 +418,10 @@ later to be processed when UpdateQueue() is called.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnChatMessageRaw

Event that will be fired when a chat message is sent by the game, containing raw, unparsed data.

@@ -449,10 +449,10 @@ public event ChatGui.OnMessageRawDelegate OnChatMessageRaw | - Improve this Doc + Improve this Doc - View Source + View Source

OnCheckMessageHandled

Event that allows you to stop messages from appearing in chat by setting the isHandled parameter to true.

@@ -489,10 +489,10 @@ public event ChatGui.OnMessageRawDelegate OnChatMessageRaw diff --git a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html index 39775c305..94217cf56 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameGui(IntPtr, SigScanner, Dalamud)

@@ -162,10 +162,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Chat

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HoveredItem

@@ -224,10 +224,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

HoveredItemChanged

@@ -257,10 +257,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -272,10 +272,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -287,10 +287,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source @@ -337,10 +337,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

ScreenToWorld(Vector2, out Vector3, Single)

@@ -399,10 +399,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

SetBgm(UInt16)

@@ -431,10 +431,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

| - Improve this Doc + Improve this Doc - View Source + View Source

WorldToScreen(Vector3, out Vector2)

@@ -497,10 +497,10 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html index 582e112a5..2aea01088 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html index 1bc076eca..0228622d3 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html +++ b/docs/api/Dalamud.Game.Internal.Gui.TargetManager.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetManager(Dalamud, SigScanner)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -168,10 +168,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -189,10 +189,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html b/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html index 042739b6d..d8f263737 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html +++ b/docs/api/Dalamud.Game.Internal.Libc.LibcFunction.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LibcFunction(SigScanner)

@@ -148,10 +148,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NewString(Byte[])

@@ -201,10 +201,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html b/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html index ad94ad2c0..d7d2d638d 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html +++ b/docs/api/Dalamud.Game.Internal.Libc.OwnedStdString.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Address

@@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -165,10 +165,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Finalize()

@@ -180,10 +180,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Read()

@@ -220,10 +220,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Libc.StdString.html b/docs/api/Dalamud.Game.Internal.Libc.StdString.html index 0567a9f83..caaa2d88a 100644 --- a/docs/api/Dalamud.Game.Internal.Libc.StdString.html +++ b/docs/api/Dalamud.Game.Internal.Libc.StdString.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RawData

@@ -145,10 +145,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Value

@@ -177,10 +177,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ReadFromPointer(IntPtr)

@@ -230,10 +230,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html index 8ae193e1f..9c77b70e5 100644 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html @@ -126,10 +126,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html index 1729976e6..a1ce97d00 100644 --- a/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html +++ b/docs/api/Dalamud.Game.Internal.Network.GameNetwork.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GameNetwork(SigScanner)

@@ -152,10 +152,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnNetworkMessage

Event that is called when a network message is sent/received.

@@ -184,10 +184,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -199,10 +199,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -214,10 +214,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

UpdateQueue(Framework)

@@ -257,10 +257,10 @@ diff --git a/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html index afad3d7f7..5695c0ef9 100644 --- a/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html +++ b/docs/api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html @@ -113,10 +113,10 @@ diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html index 294bb66fb..df9fda653 100644 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html +++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.CfPop.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.html index b45f974a8..e7e557b28 100644 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.html +++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

NetworkHandlers(Dalamud, Boolean)

@@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ProcessCfPop

@@ -188,10 +188,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html index ecf3141aa..5e8be0228 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Index

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaId

@@ -178,10 +178,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html index 92e1c3759..3b7a28baa 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ArtisanId

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHq

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemQuantity

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastReviewTime

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingId

@@ -288,10 +288,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Materia

@@ -317,10 +317,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

MateriaCount

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnMannequin

@@ -375,10 +375,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PlayerName

@@ -404,10 +404,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PricePerUnit

@@ -433,10 +433,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerCityId

@@ -462,10 +462,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerId

@@ -491,10 +491,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerName

@@ -520,10 +520,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RetainerOwnerId

@@ -549,10 +549,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

StainId

@@ -578,10 +578,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TotalTax

@@ -613,10 +613,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html index 6df01803a..cd12af6c2 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ItemListings

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingIndexEnd

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ListingIndexStart

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RequestId

@@ -232,10 +232,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -285,10 +285,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html index 7753c2e78..0cc5c3631 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

BuyerName

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHq

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnMannequin

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PurchaseTime

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Quantity

@@ -288,10 +288,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SalePrice

@@ -323,10 +323,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html index 9ecfc4e17..de1647270 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketBoardHistory.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CatalogId2

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

HistoryListings

@@ -203,10 +203,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -256,10 +256,10 @@ diff --git a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html b/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html index 68acc7982..7b039e417 100644 --- a/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html +++ b/docs/api/Dalamud.Game.Network.Structures.MarketTaxRates.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CrystariumTax

@@ -143,10 +143,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

GridaniaTax

@@ -172,10 +172,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IshgardTax

@@ -201,10 +201,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

KuganeTax

@@ -230,10 +230,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LimsaLominsaTax

@@ -259,10 +259,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UldahTax

@@ -290,10 +290,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Read(IntPtr)

@@ -343,10 +343,10 @@ diff --git a/docs/api/Dalamud.Game.SigScanner.html b/docs/api/Dalamud.Game.SigScanner.html index 2fd7d192f..78c39f09d 100644 --- a/docs/api/Dalamud.Game.SigScanner.html +++ b/docs/api/Dalamud.Game.SigScanner.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SigScanner(ProcessModule, Boolean)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionBase

@@ -192,10 +192,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionOffset

@@ -223,10 +223,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DataSectionSize

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Is32BitProcess

@@ -285,10 +285,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsCopy

@@ -316,10 +316,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Module

@@ -347,10 +347,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SearchBase

@@ -378,10 +378,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionBase

@@ -409,10 +409,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionOffset

@@ -440,10 +440,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TextSectionSize

@@ -473,10 +473,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -489,10 +489,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetStaticAddressFromSig(String, Int32)

@@ -547,10 +547,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ResolveRelativeAddress(IntPtr, Int32)

@@ -599,10 +599,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

Scan(IntPtr, Int32, String)

@@ -656,10 +656,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanData(String)

@@ -706,10 +706,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanModule(String)

@@ -756,10 +756,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< | - Improve this Doc + Improve this Doc - View Source + View Source

ScanText(String)

@@ -816,10 +816,10 @@ Place your cursor on the line calling a static address, and create and IDA sig.< diff --git a/docs/api/Dalamud.Interface.FontAwesomeExtensions.html b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html index c4991c9f5..6adc4104d 100644 --- a/docs/api/Dalamud.Interface.FontAwesomeExtensions.html +++ b/docs/api/Dalamud.Interface.FontAwesomeExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToIconChar(FontAwesomeIcon)

@@ -161,10 +161,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ToIconString(FontAwesomeIcon)

@@ -214,10 +214,10 @@ diff --git a/docs/api/Dalamud.Interface.FontAwesomeIcon.html b/docs/api/Dalamud.Interface.FontAwesomeIcon.html index a59b96b70..604456b82 100644 --- a/docs/api/Dalamud.Interface.FontAwesomeIcon.html +++ b/docs/api/Dalamud.Interface.FontAwesomeIcon.html @@ -5743,10 +5743,10 @@ diff --git a/docs/api/Dalamud.Interface.InterfaceManager.html b/docs/api/Dalamud.Interface.InterfaceManager.html index 7563b5fc7..bdf5dcf9c 100644 --- a/docs/api/Dalamud.Interface.InterfaceManager.html +++ b/docs/api/Dalamud.Interface.InterfaceManager.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InterfaceManager(Dalamud, SigScanner)

@@ -157,10 +157,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LastImGuiIoPtr

@@ -186,10 +186,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildFonts

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DefaultFont

@@ -247,10 +247,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IconFont

@@ -279,10 +279,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -294,10 +294,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Enable()

@@ -309,10 +309,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(Byte[])

@@ -356,10 +356,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(String)

@@ -403,10 +403,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LoadImageRaw(Byte[], Int32, Int32, Int32)

@@ -465,10 +465,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RebuildFonts()

@@ -482,10 +482,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnDraw

This event gets called by a plugin UiBuilder when read

@@ -522,10 +522,10 @@ diff --git a/docs/api/Dalamud.Interface.MySinkExtensions.html b/docs/api/Dalamud.Interface.MySinkExtensions.html index 6917faf8c..7bda34575 100644 --- a/docs/api/Dalamud.Interface.MySinkExtensions.html +++ b/docs/api/Dalamud.Interface.MySinkExtensions.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

EventSink(LoggerSinkConfiguration, IFormatProvider)

@@ -172,10 +172,10 @@ diff --git a/docs/api/Dalamud.Interface.SerilogEventSink.html b/docs/api/Dalamud.Interface.SerilogEventSink.html index 67d42dd65..e4d3dfe03 100644 --- a/docs/api/Dalamud.Interface.SerilogEventSink.html +++ b/docs/api/Dalamud.Interface.SerilogEventSink.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

SerilogEventSink(IFormatProvider)

@@ -152,10 +152,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Instance

@@ -183,10 +183,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Emit(LogEvent)

@@ -217,10 +217,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

OnLogLine

@@ -256,10 +256,10 @@ diff --git a/docs/api/Dalamud.Interface.UiBuilder.html b/docs/api/Dalamud.Interface.UiBuilder.html index 509a09c33..d5ab88dc9 100644 --- a/docs/api/Dalamud.Interface.UiBuilder.html +++ b/docs/api/Dalamud.Interface.UiBuilder.html @@ -120,10 +120,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

UiBuilder(InterfaceManager, String)

@@ -162,10 +162,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnOpenConfigUi

Event that is fired when the plugin should open its configuration interface.

@@ -194,10 +194,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

DefaultFont

@@ -225,10 +225,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

IconFont

@@ -256,10 +256,10 @@ It can be used to draw custom windows and overlays.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildFonts

@@ -293,10 +293,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -309,10 +309,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(Byte[])

@@ -359,10 +359,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImage(String)

@@ -409,10 +409,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

LoadImageRaw(Byte[], Int32, Int32, Int32)

@@ -477,10 +477,10 @@ pointers inside this handler.
| - Improve this Doc + Improve this Doc - View Source + View Source

RebuildFonts()

@@ -497,10 +497,10 @@ ready to be used on the next UI frame.

| - Improve this Doc + Improve this Doc - View Source + View Source

OnBuildUi

The delegate that gets called when Dalamud is ready to draw your windows or overlays. @@ -538,10 +538,10 @@ When it is called, you can use static ImGui calls.

diff --git a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html index 2651038a0..b42d16b89 100644 --- a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html +++ b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

DalamudPluginInterface(Dalamud, String, PluginConfigurations)

@@ -164,10 +164,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ClientState

The ClientState object that allows you to access current client memory information like actors, territories, etc.

@@ -194,10 +194,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

CommandManager

The CommandManager object that allows you to add and remove custom chat commands.

@@ -224,10 +224,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Data

A DataManager instance which allows you to access game data needed by the main dalamud features.

@@ -254,10 +254,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Framework

The Framework object that allows you to interact with the client.

@@ -284,10 +284,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

TargetModuleScanner

A SigScanner instance targeting the main module of the FFXIV process.

@@ -314,10 +314,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UiBuilder

A UiBuilder instance which allows you to draw UI into the game via ImGui draw calls.

@@ -346,10 +346,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Dispose()

@@ -362,10 +362,10 @@
| - Improve this Doc + Improve this Doc - View Source + View Source

GetPluginConfig()

@@ -394,10 +394,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Log(String, Object[])

@@ -435,10 +435,10 @@ public void Log(string messageTemplate, params object[] values) | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(Exception, String, Object[])

@@ -482,10 +482,10 @@ public void LogError(Exception exception, string messageTemplate, params object[ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(String, Object[])

@@ -523,10 +523,10 @@ public void LogError(string messageTemplate, params object[] values) | - Improve this Doc + Improve this Doc - View Source + View Source

SavePluginConfig(IPluginConfiguration)

@@ -551,114 +551,6 @@ public void LogError(string messageTemplate, params object[] values)IPluginConfiguration currentConfig

The current configuration.

- - - - - - | - Improve this Doc - - - View Source - - -

SendMessage(ExpandoObject)

-

Send a message to all subscribed plugins.

-
-
-
Declaration
-
-
public void SendMessage(ExpandoObject message)
-
-
Parameters
- - - - - - - - - - - - - - - -
TypeNameDescription
System.Dynamic.ExpandoObjectmessage

The message to send.

-
- - | - Improve this Doc - - - View Source - - -

Subscribe(String, Action<ExpandoObject>)

-

Subscribe to an IPC message by a plugin.

-
-
-
Declaration
-
-
public void Subscribe(string pluginName, Action<ExpandoObject> action)
-
-
Parameters
- - - - - - - - - - - - - - - - - - - - -
TypeNameDescription
System.StringpluginName

The InternalName of the plugin to subscribe to.

-
System.Action<System.Dynamic.ExpandoObject>action

The action to take when a message was received.

-
- - | - Improve this Doc - - - View Source - - -

Unsubscribe(String)

-

Unsubscribe from messages from a plugin.

-
-
-
Declaration
-
-
public void Unsubscribe(string pluginName)
-
-
Parameters
- - - - - - - - - - - - - @@ -675,10 +567,10 @@ public void LogError(string messageTemplate, params object[] values) diff --git a/docs/api/Dalamud.Plugin.IDalamudPlugin.html b/docs/api/Dalamud.Plugin.IDalamudPlugin.html index 125458a1f..df5c0f504 100644 --- a/docs/api/Dalamud.Plugin.IDalamudPlugin.html +++ b/docs/api/Dalamud.Plugin.IDalamudPlugin.html @@ -92,10 +92,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -125,10 +125,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Initialize(DalamudPluginInterface)

@@ -165,10 +165,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginDefinition.html b/docs/api/Dalamud.Plugin.PluginDefinition.html index e4360676a..6a10ac7c7 100644 --- a/docs/api/Dalamud.Plugin.PluginDefinition.html +++ b/docs/api/Dalamud.Plugin.PluginDefinition.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

ApplicableVersion

@@ -144,10 +144,10 @@
TypeNameDescription
System.StringpluginName

The InternalName of the plugin to unsubscribe from.

| - Improve this Doc + Improve this Doc - View Source + View Source

AssemblyVersion

@@ -174,10 +174,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Author

@@ -204,10 +204,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Description

@@ -234,10 +234,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InternalName

@@ -264,10 +264,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

IsHide

@@ -294,10 +294,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Name

@@ -324,10 +324,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

RepoUrl

@@ -360,10 +360,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginLog.html b/docs/api/Dalamud.Plugin.PluginLog.html index b56db0985..f9ef5573d 100644 --- a/docs/api/Dalamud.Plugin.PluginLog.html +++ b/docs/api/Dalamud.Plugin.PluginLog.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

Log(String, Object[])

@@ -154,10 +154,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(Exception, String, Object[])

@@ -200,10 +200,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

LogError(String, Object[])

@@ -246,10 +246,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html b/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html index 480625c7f..265b9006b 100644 --- a/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html +++ b/docs/api/Dalamud.Plugin.PluginRepository.InitializationState.html @@ -121,10 +121,10 @@ diff --git a/docs/api/Dalamud.Plugin.PluginRepository.html b/docs/api/Dalamud.Plugin.PluginRepository.html index 53474a06a..8f2b3b35a 100644 --- a/docs/api/Dalamud.Plugin.PluginRepository.html +++ b/docs/api/Dalamud.Plugin.PluginRepository.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginRepository(PluginManager, String, String)

@@ -158,10 +158,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

PluginMaster

@@ -189,10 +189,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

State

@@ -221,10 +221,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

InstallPlugin(PluginDefinition, Boolean)

@@ -273,10 +273,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

UpdatePlugins(Boolean)

@@ -326,10 +326,10 @@ diff --git a/docs/api/ImGuiNET.RangeAccessor-1.html b/docs/api/ImGuiNET.RangeAccessor-1.html index f38c70165..3bad91f9c 100644 --- a/docs/api/ImGuiNET.RangeAccessor-1.html +++ b/docs/api/ImGuiNET.RangeAccessor-1.html @@ -101,7 +101,6 @@
Syntax
public struct RangeAccessor<T>
-
     where T : struct
Type Parameters
diff --git a/docs/api/ImGuiNET.RangePtrAccessor-1.html b/docs/api/ImGuiNET.RangePtrAccessor-1.html index 99645455e..bfcac7e52 100644 --- a/docs/api/ImGuiNET.RangePtrAccessor-1.html +++ b/docs/api/ImGuiNET.RangePtrAccessor-1.html @@ -101,7 +101,6 @@
Syntax
public struct RangePtrAccessor<T>
-
     where T : struct
Type Parameters
diff --git a/docs/manifest.json b/docs/manifest.json index a8cf63e7c..ac5e9fc89 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -21,7 +21,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.IPluginConfiguration.html", - "hash": "89B1xTzYhG08Q+mcaRgq2g==" + "hash": "5wEsJUDvHdKFvxFjZ4ZVzA==" } }, "is_incremental": false, @@ -33,7 +33,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.PluginConfigurations.html", - "hash": "+YbTjD35pMMEb8nbw+VJQg==" + "hash": "sqtnVk300O46s4JrhCdnnQ==" } }, "is_incremental": false, @@ -57,7 +57,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.DataManager.html", - "hash": "t7LsfqEtlv8DT1O/5hFIPQ==" + "hash": "PFLedPNyoK+45na9BoTxHw==" } }, "is_incremental": false, @@ -69,7 +69,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html", - "hash": "kpSOhYYvp0fPIY+L/dSGBw==" + "hash": "RZvq7DUAfTO0Ss8kKJeD8Q==" } }, "is_incremental": false, @@ -93,7 +93,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.Completion.html", - "hash": "O5PWSFhm2+F6K03pKNOexA==" + "hash": "RfXFSxHzCWFsmzQSCvAsvg==" } }, "is_incremental": false, @@ -105,7 +105,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.ContentFinderCondition.html", - "hash": "V+N5SCyB+KiI91/DY7FWRg==" + "hash": "OpvxJvdThkatyvcINpn7kw==" } }, "is_incremental": false, @@ -117,7 +117,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.Item.html", - "hash": "3KPUQ2RC99gbNuSnDHUwag==" + "hash": "bbaTSCvVF5GdYhHeBVb0vg==" } }, "is_incremental": false, @@ -129,7 +129,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.TransientSheet.PetMirage.html", - "hash": "9ZavRKT7Fp4pBHPEZ41Eow==" + "hash": "xO8ByaFzwoFhZZjiVcQIrA==" } }, "is_incremental": false, @@ -165,7 +165,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.EnumExtensions.html", - "hash": "ATkop79KJ3HaQlnIMgreig==" + "hash": "JYpFrzZX7p/ZZTr4r4ajfg==" } }, "is_incremental": false, @@ -177,7 +177,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeIconChar.html", - "hash": "ml550CWA5vpKsr7uajoq6A==" + "hash": "kzfJsEK0dpcBnDonWX+RrQ==" } }, "is_incremental": false, @@ -189,7 +189,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.EmbeddedInfoType.html", - "hash": "qS73rQAIhVgT2n6X6Yup+w==" + "hash": "78w5C9TIh6yPJT4sX1lpPQ==" } }, "is_incremental": false, @@ -201,7 +201,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.IntegerType.html", - "hash": "sQxMa7FHL+Ay9GpjvjP4ew==" + "hash": "8WnW22cnFZJMXndVXxL9kg==" } }, "is_incremental": false, @@ -213,7 +213,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.SeStringChunkType.html", - "hash": "EIU1Qp6yvfGDRwEKqu8Nyg==" + "hash": "HXZQtAmi2TuQc/hkLKNzYg==" } }, "is_incremental": false, @@ -225,7 +225,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payload.html", - "hash": "GYJcgfZXc+TynMhyRuJRzQ==" + "hash": "lyRjKY4JgXot5cwm+CWDEA==" } }, "is_incremental": false, @@ -237,7 +237,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.PayloadType.html", - "hash": "v1r1OYbt8QxUS1nQiPXdcg==" + "hash": "jZYqJzHULP9337ZYXgUSTg==" } }, "is_incremental": false, @@ -249,7 +249,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.AutoTranslatePayload.html", - "hash": "jobqiyi3L0cfz+czNHrIiw==" + "hash": "g847jLfWpMC8urm7zvqRWw==" } }, "is_incremental": false, @@ -261,7 +261,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.EmphasisItalicPayload.html", - "hash": "w0nk9GF6gzncICfjwfm2Fw==" + "hash": "mlLBqcDKbHF4csnJIHCABQ==" } }, "is_incremental": false, @@ -273,7 +273,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.ItemPayload.html", - "hash": "pdd97g87aQBg/fbCE0gRaA==" + "hash": "zEHZgi+hYsWdza85AyuByA==" } }, "is_incremental": false, @@ -285,7 +285,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.MapLinkPayload.html", - "hash": "TLWxuN9ALpbCNzO+RZmrtw==" + "hash": "rnoyemuG1GN1Uv1MXE/8+A==" } }, "is_incremental": false, @@ -297,7 +297,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.PlayerPayload.html", - "hash": "ha7PkPgPWJAAP/+c7yruMQ==" + "hash": "xT9+X0VcsPYhdSzeJmegdg==" } }, "is_incremental": false, @@ -309,7 +309,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.RawPayload.html", - "hash": "ungEO3cBX7VIjEvkwAGByQ==" + "hash": "cxeizxz073Y4/lH79vxBkA==" } }, "is_incremental": false, @@ -321,7 +321,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.StatusPayload.html", - "hash": "xqV3Qaaq4B2eZkLjk3dD0A==" + "hash": "gvdrq9TtUkFvw+6DKfAZVQ==" } }, "is_incremental": false, @@ -333,7 +333,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.TextPayload.html", - "hash": "xb/E4oFHKJgdKhTlsqBjSQ==" + "hash": "JRIyKE+quF8pv2ZDnx2TrA==" } }, "is_incremental": false, @@ -345,7 +345,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIForegroundPayload.html", - "hash": "kUBLja8BiZwh5ItN/eBgKQ==" + "hash": "qnZmKj8CJJfAVb2Sbop5KQ==" } }, "is_incremental": false, @@ -357,7 +357,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.Payloads.UIGlowPayload.html", - "hash": "gnHH/K55W43RPudRSjPTlA==" + "hash": "1y9C/3tcaWj0Ac7+wRbWJg==" } }, "is_incremental": false, @@ -381,7 +381,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeString.html", - "hash": "REJ/nGUN4ezV3QVArXLYmg==" + "hash": "qkURtV9APX+oIQMtvr0jBQ==" } }, "is_incremental": false, @@ -393,7 +393,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.SeStringHandling.SeStringUtils.html", - "hash": "myc/VIF4j8uLtwUpdq29cQ==" + "hash": "/UaTvvBI3/Y9v6D72NaAsQ==" } }, "is_incremental": false, @@ -417,7 +417,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatEntry.html", - "hash": "XTVAwcqHV0bDXQBeTTSmJQ==" + "hash": "GFBGzTkZNGAXjH9rrTdLeA==" } }, "is_incremental": false, @@ -429,7 +429,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatType.html", - "hash": "JxiAEUsHNQaXxWiOQMj7iA==" + "hash": "kcgTkurEohoF+7bw+q+Ydw==" } }, "is_incremental": false, @@ -441,7 +441,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatTypeExtensions.html", - "hash": "88mI8rdO3pVvJ6HMM94ZZw==" + "hash": "QFUj1uOre6Qir0Zd2eZ6NA==" } }, "is_incremental": false, @@ -453,7 +453,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Chat.XivChatTypeInfoAttribute.html", - "hash": "GMLCHs4xJRRbEgxnGA6Nfg==" + "hash": "wVItQ4r+yDT281IqZV3YGg==" } }, "is_incremental": false, @@ -477,7 +477,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ChatHandlers.html", - "hash": "S/2W4YxkbrADwCMYca9PQg==" + "hash": "vRysh+wEuL/Lwq7lzUJrKg==" } }, "is_incremental": false, @@ -489,7 +489,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.html", - "hash": "SplX7ZVyK8X5Y+1gkn36UQ==" + "hash": "1wHmo4hokQcmfbAJQaTk5Q==" } }, "is_incremental": false, @@ -501,7 +501,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.CustomizeIndex.html", - "hash": "7cd61JTJ1w5uNZ6kkYV3GA==" + "hash": "ttb43BJmgfAusdGiF19Www==" } }, "is_incremental": false, @@ -513,7 +513,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.ObjectKind.html", - "hash": "ZZfYK66daQVtPXW4nqObEQ==" + "hash": "OjmMttneBGQgp4WF2HiKKA==" } }, "is_incremental": false, @@ -525,7 +525,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Position3.html", - "hash": "e1bDZkrvOXxdTBdxJDYgLQ==" + "hash": "zVwghOGVQtHa9b5INMPemw==" } }, "is_incremental": false, @@ -537,7 +537,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.BaseResolver.html", - "hash": "jSQ81VPfWgP3+kljwCzc+Q==" + "hash": "tZjM7L1lDRwpP4gbrMfcUg==" } }, "is_incremental": false, @@ -549,7 +549,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html", - "hash": "G0FU2SZ4VORW/OxepV5PUg==" + "hash": "2oelvBlPIkr1HK+LQ8MOEg==" } }, "is_incremental": false, @@ -561,7 +561,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.World.html", - "hash": "GXIdqaTxyPK6GsBmWkJ0Uw==" + "hash": "WnC71kxHWBPJEzX5H0vO1g==" } }, "is_incremental": false, @@ -585,7 +585,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Actor.html", - "hash": "PvgzJ66yONtQ8jh4RC5e1A==" + "hash": "VtuCC3wwIzuak9mzonsLkQ==" } }, "is_incremental": false, @@ -597,7 +597,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Chara.html", - "hash": "keIq5ATIVIHTl5Ok0mT/6g==" + "hash": "IDy9j1MLGbuMPXY8mh6ntw==" } }, "is_incremental": false, @@ -609,7 +609,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html", - "hash": "nYccfBdj3ODAt0Y/wZdpog==" + "hash": "qLHLHJUys4jQHeZZDHPshA==" } }, "is_incremental": false, @@ -621,7 +621,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html", - "hash": "hU5KrWhD+Qp1Yzg1oP4rmw==" + "hash": "6l7oHdul1P9SJ+aBYtxUeA==" } }, "is_incremental": false, @@ -633,7 +633,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html", - "hash": "Ym7WBf1VdzuRAg1xI6IaNg==" + "hash": "RQD616Px0nkntQMzrcCctw==" } }, "is_incremental": false, @@ -657,7 +657,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html", - "hash": "WEbqohtV2UHSqcOYbCv4tw==" + "hash": "zeq1XNOCfCmAOBIoj9Fu9A==" } }, "is_incremental": false, @@ -669,7 +669,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html", - "hash": "fLWaAJMznbvrpUkzJGriFw==" + "hash": "LbdvyetpPRpiQJl+zI035w==" } }, "is_incremental": false, @@ -705,7 +705,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.ClientState.html", - "hash": "m8nF9qO3XN4Vn6fPiDbc2w==" + "hash": "jXRXK53yx5saFaRgkXSzfg==" } }, "is_incremental": false, @@ -717,7 +717,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.JobGauges.html", - "hash": "M9fH3RfhxcCOmRs40k8f7g==" + "hash": "87+WqQjcnhqIdFNacBTNwA==" } }, "is_incremental": false, @@ -729,7 +729,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.KeyState.html", - "hash": "2XaODhDr0zRS+F5hsvfgxQ==" + "hash": "fEHbTrdQ6qYqYfh9yaBbHw==" } }, "is_incremental": false, @@ -741,7 +741,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.PartyList.html", - "hash": "FcQLe1zEqt64/1t/Q/fSOA==" + "hash": "6tL6k5KouR0X5JXycZMgnQ==" } }, "is_incremental": false, @@ -753,7 +753,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.html", - "hash": "Wg6RnIfqscDuu5tBNtSK2w==" + "hash": "VNGYlaaO9lW/A57XNbdjkg==" } }, "is_incremental": false, @@ -765,7 +765,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.ASTGauge.html", - "hash": "tl+M1EeYQ2nvqdevCvQAwQ==" + "hash": "OCPPmdXtUfIBwyMNJffkxA==" } }, "is_incremental": false, @@ -777,7 +777,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BLMGauge.html", - "hash": "QpuM/vzyPJhaRjtFToG4wg==" + "hash": "euD9Dj4v3/FZ4c+KChaFNw==" } }, "is_incremental": false, @@ -789,7 +789,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BOTDState.html", - "hash": "Rm+WdQpXGSRqwxBUdEpQjg==" + "hash": "I8ZBUzlNwCEKRNr1RSBNpQ==" } }, "is_incremental": false, @@ -801,7 +801,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.BRDGauge.html", - "hash": "0jMEZnHi3n7QJ1coICppiw==" + "hash": "GEDC0+k2wsHdb1/cnfheRg==" } }, "is_incremental": false, @@ -813,7 +813,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CardType.html", - "hash": "k2iUVE9yoasdYZFV5t/h2A==" + "hash": "hPaqmXOmVWvS70OjBZ70GA==" } }, "is_incremental": false, @@ -825,7 +825,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.CurrentSong.html", - "hash": "z50yMr/vk+ZlTfTi/08tsQ==" + "hash": "JTg6oe0RZR3dZB0eTkCvlw==" } }, "is_incremental": false, @@ -837,7 +837,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DNCGauge.html", - "hash": "z7qTcCwwER5Cd1YnOIIH9g==" + "hash": "bMDfa0jeeDFXUGcC9Id7TQ==" } }, "is_incremental": false, @@ -849,7 +849,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRGGauge.html", - "hash": "qBnJKC2FUMiwnpLgIdreMQ==" + "hash": "fAyUoDBt2g38ihaCrPUf9w==" } }, "is_incremental": false, @@ -861,7 +861,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DRKGauge.html", - "hash": "Y5j2YWG4s0sTAfTeqIY1Tg==" + "hash": "mUzg0xbJIPnVQSJBokltaQ==" } }, "is_incremental": false, @@ -873,7 +873,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.DismissedFairy.html", - "hash": "i7TYiauMvyvm5aieZ4GcQw==" + "hash": "rx9tj6XkNTNVRY+vta64aw==" } }, "is_incremental": false, @@ -885,7 +885,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.GNBGauge.html", - "hash": "4qiEeTiDlGE6e60qW+Is/A==" + "hash": "vELlhjFia1fbiIE2HUQUnw==" } }, "is_incremental": false, @@ -897,7 +897,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MCHGauge.html", - "hash": "r3YG0kuPVPSVr135sUMbKg==" + "hash": "5DFVV5yBSLL40E6cqTLuZg==" } }, "is_incremental": false, @@ -909,7 +909,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html", - "hash": "VUeW4k+G9iv8XZKVw5Sz4w==" + "hash": "KGB+lPrqyhvL6tzw2H+Qlw==" } }, "is_incremental": false, @@ -921,7 +921,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Mudras.html", - "hash": "LZvYFhOopjI6iWiJQLPfFw==" + "hash": "YjwDh37ameK9t/Eq4zsxeg==" } }, "is_incremental": false, @@ -933,7 +933,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html", - "hash": "gjo/yQn2BpR4qCm0rvJl3A==" + "hash": "gpWbcpkvRVLb5x9oCPOpdg==" } }, "is_incremental": false, @@ -945,7 +945,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PLDGauge.html", - "hash": "HekQY546n0hm5MXGY/aABQ==" + "hash": "9zut9OfYAfthMt+pzqTyIw==" } }, "is_incremental": false, @@ -957,7 +957,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.PetGlam.html", - "hash": "Qec9HBTt9Vo7x/IIsmLXNg==" + "hash": "UXtXNnBX8KFtTQjXO57m7g==" } }, "is_incremental": false, @@ -969,7 +969,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.RDMGauge.html", - "hash": "E0NJU6LAyfcsBYVr7lcz4g==" + "hash": "tNawsu0UxWKjPl/xbJs01Q==" } }, "is_incremental": false, @@ -981,7 +981,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SAMGauge.html", - "hash": "mYRvZB2HmKSWqHgTq/pEzA==" + "hash": "oSXWkRYIdbfq94xq7+IDjg==" } }, "is_incremental": false, @@ -993,7 +993,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SCHGauge.html", - "hash": "F8n6Wd8ERl2uaoeGYcXwNA==" + "hash": "PEvKUqN7AmPspVdjc+t3fw==" } }, "is_incremental": false, @@ -1005,7 +1005,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SMNGauge.html", - "hash": "DY2WMdYi28CEglYVcVWUPw==" + "hash": "y0j8Ip7k2/Cy6qs/4Z/zMg==" } }, "is_incremental": false, @@ -1017,7 +1017,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SealType.html", - "hash": "ZF7VAE4/9Ao2O2n/9+ZFmQ==" + "hash": "9EIRIe1mbzJaE3vYjwD2Tw==" } }, "is_incremental": false, @@ -1029,7 +1029,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.Sen.html", - "hash": "0VD4ZelVBxBJEZeJtPff4A==" + "hash": "l0nIoRmLK20qnbsY9L6Xkw==" } }, "is_incremental": false, @@ -1041,7 +1041,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.SummonPet.html", - "hash": "nO0RA3tS2RyyOza5KGS29A==" + "hash": "K750j7jTmLvqww40W8KdEw==" } }, "is_incremental": false, @@ -1053,7 +1053,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WARGauge.html", - "hash": "KaxA/r7tJ0ovMiAGo+a4zg==" + "hash": "Hh/pawXi4ja0Wr2ienalLQ==" } }, "is_incremental": false, @@ -1065,7 +1065,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.WHMGauge.html", - "hash": "MBMNWx+UoA0nMYC5VDHm2w==" + "hash": "LzK0m0CODE2S5FP485D9zg==" } }, "is_incremental": false, @@ -1089,7 +1089,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.PartyMember.html", - "hash": "3PUq3Xcfsr/AdU4E73P7Yw==" + "hash": "n12/zMHcabihri8NYLO7Tg==" } }, "is_incremental": false, @@ -1101,7 +1101,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.StatusEffect.html", - "hash": "SDgRBTXry9avpNKb5SxSsA==" + "hash": "APuHshc1XAFvjXkUJFSPow==" } }, "is_incremental": false, @@ -1137,7 +1137,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandInfo.HandlerDelegate.html", - "hash": "ivC8yastYVaJItCEYofSsQ==" + "hash": "ROKJPNPlvfszHt0mzO1dcA==" } }, "is_incremental": false, @@ -1149,7 +1149,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandInfo.html", - "hash": "ahSJh18G0bGpO+RXR5MG9Q==" + "hash": "MM1Pw6vNG+Ju/r9nAG2Xdg==" } }, "is_incremental": false, @@ -1161,7 +1161,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Command.CommandManager.html", - "hash": "a32Xb9fQzWlxO2mGuQcsCQ==" + "hash": "6FkqJall18qmIHO/nO8gow==" } }, "is_incremental": false, @@ -1185,7 +1185,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainSigResolver.html", - "hash": "eYVwi3V0VVWIm2EHrly2qw==" + "hash": "Bn5zAVPWRUukUEF+woOPJw==" } }, "is_incremental": false, @@ -1197,7 +1197,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.DXGI.SwapChainVtableResolver.html", - "hash": "zO5fYywQPouRIph2jAA/mg==" + "hash": "C7zPK6Llgve3yO4ZPSVqSQ==" } }, "is_incremental": false, @@ -1221,7 +1221,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.File.ResourceManager.html", - "hash": "ryCCvxXI6yWdgMevS6m4Fw==" + "hash": "gqOU0lJHhQoOGPD8wO47gQ==" } }, "is_incremental": false, @@ -1245,7 +1245,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html", - "hash": "fI/tKWv4jQlEqfeKjIEPAw==" + "hash": "WU8PXcwlmcONSAzIRQWBRw==" } }, "is_incremental": false, @@ -1257,7 +1257,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.html", - "hash": "XFoOHg7vP3liguHhse/GRQ==" + "hash": "uHiwmYC2THfu8sEJ2r5nrA==" } }, "is_incremental": false, @@ -1269,7 +1269,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandledDelegate.html", - "hash": "4OTn4yhDh8kC6CXdtVK2cw==" + "hash": "JPt2Bd8A+d29Z2x9v/nSiA==" } }, "is_incremental": false, @@ -1281,7 +1281,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate.html", - "hash": "fAj59AUK+Utn0xft55SVRw==" + "hash": "F4jiMt3kMRVY4/6oh2yqbQ==" } }, "is_incremental": false, @@ -1293,7 +1293,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html", - "hash": "+1c+Zi1/VE5ku3FN/ijWeg==" + "hash": "9LlFgxRZ9TncDJGjEkoZNg==" } }, "is_incremental": false, @@ -1305,7 +1305,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.html", - "hash": "1byHVzn94jGnVPpmAz+mlA==" + "hash": "zrmt5RzIL5hYIs8AgO4fyg==" } }, "is_incremental": false, @@ -1317,7 +1317,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.GameGui.html", - "hash": "sQKZhYUNX7S3Awp46v0p4g==" + "hash": "4b6nORh1NVnstmoUjTWi0w==" } }, "is_incremental": false, @@ -1329,7 +1329,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.GetTargetDelegate.html", - "hash": "rLLlnBXOeqsPFIWLy7/xkQ==" + "hash": "Fj9GqXIomH28nJ/ZqhqIHQ==" } }, "is_incremental": false, @@ -1341,7 +1341,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.TargetManager.html", - "hash": "9fbPhJ25wCVioM7pmYSc6A==" + "hash": "XUgrwXDdAy7V3mgkgsgldw==" } }, "is_incremental": false, @@ -1365,7 +1365,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.LibcFunction.html", - "hash": "Yaza1U2NytsCLSU7YDtRfg==" + "hash": "jzjj+/4zA1ITCWY3UyJx9A==" } }, "is_incremental": false, @@ -1377,7 +1377,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.OwnedStdString.html", - "hash": "hoj7gFDfA4zqD06cZoeEig==" + "hash": "t5ueariQtoljyp59JBYwig==" } }, "is_incremental": false, @@ -1389,7 +1389,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Libc.StdString.html", - "hash": "KKnWEXclyIWF4VHKjorkfQ==" + "hash": "gjTdw9vf3423G5N6vxPsXA==" } }, "is_incremental": false, @@ -1413,7 +1413,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.OnNetworkMessageDelegate.html", - "hash": "Ha99htr9HWLTwnsZr0Tzgw==" + "hash": "HLVDg25AKEJfIvgD+8WAzA==" } }, "is_incremental": false, @@ -1425,7 +1425,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.GameNetwork.html", - "hash": "0ZDNJa4Zs1T7O+8Yj3lf3g==" + "hash": "bJAQvoOgO93k0w9NGF5Ejg==" } }, "is_incremental": false, @@ -1437,7 +1437,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Network.NetworkMessageDirection.html", - "hash": "LuXQuZY9gZtSGl3r7aU5wg==" + "hash": "YtLiLVCpUD/TQZqTyejJZg==" } }, "is_incremental": false, @@ -1473,7 +1473,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.CfPop.html", - "hash": "tTfm5Ngt9Ch7PcIo7m8KJw==" + "hash": "R8pOJzghDB7JyaJcyTHrMw==" } }, "is_incremental": false, @@ -1485,7 +1485,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.html", - "hash": "x15BoLl/q/lGp56V6Sc7GA==" + "hash": "AGmEM4G5bMSYk9bMtPA4ZA==" } }, "is_incremental": false, @@ -1497,7 +1497,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.ItemMateria.html", - "hash": "PeYlckY4AMXy0RbD6djezw==" + "hash": "Xfb43GOjZ64Pi/dl8MK9gg==" } }, "is_incremental": false, @@ -1509,7 +1509,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.MarketBoardItemListing.html", - "hash": "tCsF4rkQtAKKa1PU2vei+g==" + "hash": "7E/UrlzGM74iubTQ6hocow==" } }, "is_incremental": false, @@ -1521,7 +1521,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardCurrentOfferings.html", - "hash": "llfBMAc69Pl52zT1QhLi9w==" + "hash": "VJiCW6w8tqAU8s4cb+yAFg==" } }, "is_incremental": false, @@ -1533,7 +1533,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.MarketBoardHistoryListing.html", - "hash": "qZ8R+JKpc1zzDEN4e9WTiQ==" + "hash": "TebUSH+KDte2u4RFzBJFCQ==" } }, "is_incremental": false, @@ -1545,7 +1545,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketBoardHistory.html", - "hash": "IepIsgxG99p3pPYf0ms4JA==" + "hash": "y8jFPtnB/1iXMkJSUO8jfw==" } }, "is_incremental": false, @@ -1557,7 +1557,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.Structures.MarketTaxRates.html", - "hash": "6Ka/k0UhZROWG24GtyEl8w==" + "hash": "enS4PqmMVbvw2C4AiiuPsA==" } }, "is_incremental": false, @@ -1593,7 +1593,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.SigScanner.html", - "hash": "t6iWQRIFhSue+MR3qAgtzQ==" + "hash": "Vl4sEXBOMPZ9fHg9wn+3mw==" } }, "is_incremental": false, @@ -1617,7 +1617,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.FontAwesomeExtensions.html", - "hash": "lo1WdEgprbAhku3xMKfNNg==" + "hash": "CqEDap8Qyr2KkWKozeToPQ==" } }, "is_incremental": false, @@ -1629,7 +1629,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.FontAwesomeIcon.html", - "hash": "fUKk3CfxPIttO9lTvMK4mw==" + "hash": "gkZEYfCKr4qEdeCy4i2YMQ==" } }, "is_incremental": false, @@ -1641,7 +1641,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.InterfaceManager.html", - "hash": "8LK9etHKP4Fhc2E/SvwAmg==" + "hash": "RH70RL/tuRjUwwqKLfQQlw==" } }, "is_incremental": false, @@ -1653,7 +1653,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.MySinkExtensions.html", - "hash": "CpvN5cf0eOeRJACeeeqpMw==" + "hash": "6CD6y0K9dDmYgJX5Z6A/sQ==" } }, "is_incremental": false, @@ -1665,7 +1665,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.SerilogEventSink.html", - "hash": "oHiE2rggsbwerQlYHLaBhQ==" + "hash": "OR548wbEbLrskcVzRO0N4w==" } }, "is_incremental": false, @@ -1677,7 +1677,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.UiBuilder.html", - "hash": "+1oIwKZdgEwIk1G57ARzaw==" + "hash": "IwrausWlwAIZTIXiLrA6qQ==" } }, "is_incremental": false, @@ -1701,7 +1701,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.DalamudPluginInterface.html", - "hash": "WCy1oUtlsh/dII/tX4JLDA==" + "hash": "2e3kcVWyI6kGkR1VfgEcdg==" } }, "is_incremental": false, @@ -1713,7 +1713,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.IDalamudPlugin.html", - "hash": "NMGjFQhSFsgNtCCoO2xULQ==" + "hash": "eK8MN2VBnsmaJ6HD9zTE7g==" } }, "is_incremental": false, @@ -1725,7 +1725,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginDefinition.html", - "hash": "mKmSmLXfOX8m7RouGpO0rA==" + "hash": "XjCrKSwjPi9wUtDlN8rEoQ==" } }, "is_incremental": false, @@ -1737,7 +1737,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginLog.html", - "hash": "ckSUyRVv2Wt2ppjac64oiQ==" + "hash": "vXAhG+3tG5i0BTcN4xHCXQ==" } }, "is_incremental": false, @@ -1749,7 +1749,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginRepository.InitializationState.html", - "hash": "UygQo5paqLg8kUN+zKr7KA==" + "hash": "Ouhfrt7/n+O3+W1aQTIBaA==" } }, "is_incremental": false, @@ -1761,7 +1761,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.PluginRepository.html", - "hash": "icYz+WMQFKNmaUHHlZfc8g==" + "hash": "LKHAm/izB1DlrMEvahqzQw==" } }, "is_incremental": false, @@ -1788,7 +1788,7 @@ "hash": "Y1KVb7KI9HStMOy6/3RQpg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1800,7 +1800,7 @@ "hash": "5uNOiTG+Z+CjrkHiBdfezg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1812,7 +1812,7 @@ "hash": "eT9hMJrVlFBQMLFYJK0cHg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1824,7 +1824,7 @@ "hash": "j7ggk2fu0FYtckXnHe35zA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1836,7 +1836,7 @@ "hash": "UGwLxqCNf0gv6XsbsaCfuw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1848,7 +1848,7 @@ "hash": "4rK1Tt19zHr83jowXm81fA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1860,7 +1860,7 @@ "hash": "sxRrWQWD1yw6WBMUfoCW8Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1872,7 +1872,7 @@ "hash": "9JkVw+CCUrd/LlyTCcVzDA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1884,7 +1884,7 @@ "hash": "ofgHiraVQDSdnioBEzzdMg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1896,7 +1896,7 @@ "hash": "LcM0SsJoXQk1QVaJvGzdzg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1908,7 +1908,7 @@ "hash": "DXko/UAURnCoxS0FhuD5oA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1920,7 +1920,7 @@ "hash": "P4BZ7oTHkyAp3GG3PoWF6w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1932,7 +1932,7 @@ "hash": "0XOUBez778q4S9Estn8+sA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1944,7 +1944,7 @@ "hash": "5w8IlxT0MWb6yQVzpbbxuA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1956,7 +1956,7 @@ "hash": "xBiRKOEF9uCcJ2wQqTiOCA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1968,7 +1968,7 @@ "hash": "P3Zf8ovdwiPH85M4SloDYQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1980,7 +1980,7 @@ "hash": "XfRcCVxMcKMwTWlJgjSTLA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -1992,7 +1992,7 @@ "hash": "QvGkOs0MDDbocRc/8VkrSg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2004,7 +2004,7 @@ "hash": "G6aAV3t0IRh2fQI2crgWIg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2016,7 +2016,7 @@ "hash": "m5nPET+ckyE4HCRi+vgL5Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2028,7 +2028,7 @@ "hash": "ycL8In8v2YOATbgEQMDmCg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2040,7 +2040,7 @@ "hash": "dq2Q+IsQkJVxiN433O3TKw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2052,7 +2052,7 @@ "hash": "SZ/EbGQgO9Tmz1oZX/eukg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2064,7 +2064,7 @@ "hash": "5Nux2pi6O2xlrrRbHe71bA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2076,7 +2076,7 @@ "hash": "WBZnovzzdD9LRCaklVv1hA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2088,7 +2088,7 @@ "hash": "XjZhDQg7fZQ7+UjfGWp/3Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2100,7 +2100,7 @@ "hash": "8KSDFLna7oy3fEhWXCD2Sg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2112,7 +2112,7 @@ "hash": "L75S7jClcaLouqaYOf7sGw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2124,7 +2124,7 @@ "hash": "IaJv0UDjZw0t1OlBhBhO3Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2136,7 +2136,7 @@ "hash": "OYvEK/dcjcMdffZ/mD8dkw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2148,7 +2148,7 @@ "hash": "nV+qlGp/frQ5IuTH79W5iw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2160,7 +2160,7 @@ "hash": "oRi9ycSfj2lRo0C+QoR+Ug==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2172,7 +2172,7 @@ "hash": "JCqlWQGKGystHBHnSyeYcg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2184,7 +2184,7 @@ "hash": "9z5UC9vX6Lo7lp2ntNDlVQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2196,7 +2196,7 @@ "hash": "cv2kPhUmterY+MQxmNUXUA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2208,7 +2208,7 @@ "hash": "orrspc0BAkw7r2eTHzsaDA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2220,7 +2220,7 @@ "hash": "aqjlpRHCsI41y0PLPEeZMQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2232,7 +2232,7 @@ "hash": "jRNInPnDCO0suMUoJUuI9g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2244,7 +2244,7 @@ "hash": "NIltP1hlxk9NTSJSDYRhag==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2256,7 +2256,7 @@ "hash": "aMshjl7JkOF3ZDVY0wlZRg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2268,7 +2268,7 @@ "hash": "yKfAzHdXcXkiTqi6K6v5lA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2280,7 +2280,7 @@ "hash": "+ayMHwU9oX7BBy1km5tlqg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2292,7 +2292,7 @@ "hash": "JyJlUsy6zJjym2aZz0lAiw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2304,7 +2304,7 @@ "hash": "QPo87haaF5ZMi3pZV4EoJw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2316,7 +2316,7 @@ "hash": "Xw4OsNg0hsuircBYW4Oopw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2328,7 +2328,7 @@ "hash": "R10pycW6ZYI4Ss5nnVafcw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2340,7 +2340,7 @@ "hash": "+S1QsSo4/nHLY5r0XJl14Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2352,7 +2352,7 @@ "hash": "AIheBiLbeYiZvnhU6Mms4g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2364,7 +2364,7 @@ "hash": "YFoks4X9MmGbWLpIuNAskg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2376,7 +2376,7 @@ "hash": "yygYS8n4Vqp1IwQ74FD8Wg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2388,7 +2388,7 @@ "hash": "WmNnxxpRNjeFbOCwVWzr8A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2400,7 +2400,7 @@ "hash": "Q200JYRwAOICG8hppVUb9A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2412,7 +2412,7 @@ "hash": "Dlx5SZ9hGFY7flP/IZb/xg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2424,7 +2424,7 @@ "hash": "S2hwXnJsoQt1XsAJGvyMkA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2436,7 +2436,7 @@ "hash": "lLT3+nNchh91JqVLQCi3oA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2448,7 +2448,7 @@ "hash": "Kuj0tgyHa6vLFROB0PpOXQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2460,7 +2460,7 @@ "hash": "zg5ZWgbr8tra3PBGUx1Clw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2472,7 +2472,7 @@ "hash": "OF1jqxGr3nkrW0oitt/oEg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2484,7 +2484,7 @@ "hash": "EH1zOf+VEUzcFh1EqIFVqQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2496,7 +2496,7 @@ "hash": "dZRBWPlkeHm0sfGFaQbnxQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2508,7 +2508,7 @@ "hash": "0eC5YQhs4Eo++7gaM9I1vQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2520,7 +2520,7 @@ "hash": "oQWDgVmSBQPL6PFlvYoyVw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2532,7 +2532,7 @@ "hash": "rGbSXbZacRWYCS65Q1QN9A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2544,7 +2544,7 @@ "hash": "/aaMQeHGe15BB3G27brh3g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2556,7 +2556,7 @@ "hash": "i3F45XQ0CFPxXup4VPbP0A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2568,7 +2568,7 @@ "hash": "KJaO/qTL3V4MCzsJe0ZNSw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2580,7 +2580,7 @@ "hash": "+5vljyoZmGH7AOeBHsN8nA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2592,7 +2592,7 @@ "hash": "VjqwYt7h2/0l0oVJOXSdwA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2604,7 +2604,7 @@ "hash": "2Vuze40Z9Wjk/ESPvbXHgQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2616,7 +2616,7 @@ "hash": "zrf+U/ZZEqvIwvOjuR3NRw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2628,7 +2628,7 @@ "hash": "id4XH4KSiwCNy/0wrZXzig==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2640,7 +2640,7 @@ "hash": "hbeUHev0CeNjsX5KEoYHOw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2652,7 +2652,7 @@ "hash": "FpJr86uHrNYUZxnYbjB70g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2664,7 +2664,7 @@ "hash": "6tv2QLzQHVC4XANN199YEw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2676,7 +2676,7 @@ "hash": "iyxa4fenl1WMLPe4MdkwaQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2688,7 +2688,7 @@ "hash": "x2qq/HBrilOX3QWCQcRujA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2700,7 +2700,7 @@ "hash": "O87DIRyaiiUHa+XUJkJuNw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2712,7 +2712,7 @@ "hash": "GoVeq8NUPJ7BWvaMO/GKAQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2724,7 +2724,7 @@ "hash": "Nf8pIImvsv06jouL+IbWWA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2736,7 +2736,7 @@ "hash": "4Ncgmmp8M0gDuoDoI2xUMg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2748,7 +2748,7 @@ "hash": "12VdZenBrYD5kfRaWLOt/g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2760,7 +2760,7 @@ "hash": "0pOmSv4eWAhwq6OaL7mcMQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2772,7 +2772,7 @@ "hash": "/QeGfjoir3YNhkA4A8k1Yw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2784,7 +2784,7 @@ "hash": "31OuXaMbG8ChEFbdziN1FA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2796,7 +2796,7 @@ "hash": "czJZCFDH5ZD20xn0ylHseQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2808,7 +2808,7 @@ "hash": "XyN+EgQcWdLSp/93EIhafA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2820,7 +2820,7 @@ "hash": "zRc9hltIswOFO6H4HezZKg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2832,7 +2832,7 @@ "hash": "EfpoTkmGEompjptVk57DVA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2844,7 +2844,7 @@ "hash": "2FQ54uuL1z5d6COAMRZl5A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2856,7 +2856,7 @@ "hash": "P74IZNfxBadvBHgUix7psQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2868,7 +2868,7 @@ "hash": "5DrozzP2EQesZ4/yA3LSrg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2880,7 +2880,7 @@ "hash": "BuY7C6WILP/vwjmjMySxzA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2892,7 +2892,7 @@ "hash": "RwGelkmRQZfMsjeZj/z3/w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2904,7 +2904,7 @@ "hash": "oda4ElGCxXaN8r3EDFRZuA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2916,7 +2916,7 @@ "hash": "U8p6+02Z3j1BWY1DVe8Djg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2928,7 +2928,7 @@ "hash": "o78A043bGl7hBOMEO3LWyg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2940,7 +2940,7 @@ "hash": "e0os1oIA/gBe6nl5Frb6qw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2952,7 +2952,7 @@ "hash": "jtN3ezTOh/rsmszNPTpLmQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2964,7 +2964,7 @@ "hash": "ZcbhAnCdNhseDsUj2wMXnQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2976,7 +2976,7 @@ "hash": "87XiyyqbZnqGbok8keq6mg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -2988,7 +2988,7 @@ "hash": "QSrX/ffydzaZ5kMU5n3GsA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3000,7 +3000,7 @@ "hash": "riDCJnSLF6vxWNNeKU7YJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3012,7 +3012,7 @@ "hash": "z6FZvLV0Wu242LyalI3WaQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3024,7 +3024,7 @@ "hash": "GUsBidL6qscegz//7jgJ0w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3036,7 +3036,7 @@ "hash": "9MCInvIh557CeFSEidsiyA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3048,7 +3048,7 @@ "hash": "g1WG527fFphOEpoYkIc6ew==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3060,7 +3060,7 @@ "hash": "W0PWe0pF5NLYkJArflcbPg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3072,7 +3072,7 @@ "hash": "jz6+5Nzj7DeEWaugmZQZsA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3084,7 +3084,7 @@ "hash": "BHmXV7W3f7ev3i59rVqnFg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3096,7 +3096,7 @@ "hash": "iyNgIcBrTxj9gdUq5mhtwg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3108,7 +3108,7 @@ "hash": "V6qRlFAYboVqbnXNHbRrwg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3120,7 +3120,7 @@ "hash": "e5kHUYOEyUOsbQ7KMD6XJg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3132,7 +3132,7 @@ "hash": "PV/1VhogpU50QPyShsyj7w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3144,7 +3144,7 @@ "hash": "n4HtaPqXY7aybWYhKG8Xfg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3156,7 +3156,7 @@ "hash": "CceOeNGSTbdqlP8K8bO7NQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3168,7 +3168,7 @@ "hash": "LQqTkPEU3eMNKbEnsgBoYw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3180,7 +3180,7 @@ "hash": "vNfca0CRUss+SqveR6O8WQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3192,7 +3192,7 @@ "hash": "E6eDCeQPyLLYvJsXA2QoTw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3204,7 +3204,7 @@ "hash": "EVg0w3Ew62i+zT08eFPUJA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3216,7 +3216,7 @@ "hash": "SJvUCf1HsFMMXe1k+zYaSg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3228,7 +3228,7 @@ "hash": "j792Uj1Y+vEENyEZcTvJ8w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3240,7 +3240,7 @@ "hash": "WWp/MZPT/h5lSOXelkv4OA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3252,7 +3252,7 @@ "hash": "FFYi29KKosH12XpsDv/KJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3264,7 +3264,7 @@ "hash": "VTJDZgI8ETnOHCez1W3KzQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3276,7 +3276,7 @@ "hash": "tzDOmxkyct1EnHUT4VpOYw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3288,7 +3288,7 @@ "hash": "t0yYGoHn7DuQL3fCAihR8Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3300,7 +3300,7 @@ "hash": "+ppnInBrVxd92QtrhZGaAw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3312,7 +3312,7 @@ "hash": "Qx7TMSFfavVNo9N52Pgc7g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3324,7 +3324,7 @@ "hash": "mw+jeEXWMZS2cBt3jY/BWw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3336,7 +3336,7 @@ "hash": "07a5fyEAcwPMOOuB3OgTrA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3348,7 +3348,7 @@ "hash": "xzLYMkUuWmodggwZFvKSbg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3360,7 +3360,7 @@ "hash": "W+QyoRF4xTYd6d0rjRYoog==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3372,7 +3372,7 @@ "hash": "9T9Ic+TWtnJp2LmG3UWyJA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3384,7 +3384,7 @@ "hash": "D7/24hrJRWH9dMTvQb/DgA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3396,7 +3396,7 @@ "hash": "iYNwmCnS7iVJbv/PlNKbNA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3408,7 +3408,7 @@ "hash": "NwgWDj/1SWUA/cIyazphoQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3420,7 +3420,7 @@ "hash": "6RMWLvNPdc6hpKuayvoRDw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3432,7 +3432,7 @@ "hash": "QDROwuUmOuCDF+Wo8/HzBQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3444,7 +3444,7 @@ "hash": "RBG/OMpWezJ1jhnViJcC0A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3456,7 +3456,7 @@ "hash": "htmW/Gvv0gwI8psH3JquoQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3468,7 +3468,7 @@ "hash": "iibTnOVX3HEZwoOC27pYzw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3480,7 +3480,7 @@ "hash": "cpBUi8TxzfNHx6XF0PTmcw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3492,7 +3492,7 @@ "hash": "mWh27C4Dw6dl//LHGyFLpA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3504,7 +3504,7 @@ "hash": "XK8Pfr//Hv/Oj1yYkdcC1g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3516,7 +3516,7 @@ "hash": "IyuqGAoJt7A16rHnt8iarw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3528,7 +3528,7 @@ "hash": "fGtMJmTb2WSlUw3aF/gMMw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3540,7 +3540,7 @@ "hash": "NTtHsLWlMSbWIN8vvsDrrw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3552,7 +3552,7 @@ "hash": "1LjC4/qZgtALpobuPPlMMA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3564,7 +3564,7 @@ "hash": "p5Yh8Z4jsQx6UQV3yjme6w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3576,7 +3576,7 @@ "hash": "4NrGnr4fE3wOor0721yYLg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3588,7 +3588,7 @@ "hash": "pSXjTXa0qmWBGp8doBPdlg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3600,7 +3600,7 @@ "hash": "cnkfKy75zIDNd+UIYdJVfg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3612,7 +3612,7 @@ "hash": "T3FBCSQoWTEGur7Ddv8mqg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3624,7 +3624,7 @@ "hash": "hFDvpdQ59BTVEHyDjm2Deg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3636,7 +3636,7 @@ "hash": "DJj6oqUoNx6q8Pxg9q0PSg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3648,7 +3648,7 @@ "hash": "6QLkXUYFXyLyliaqX606Cw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3660,7 +3660,7 @@ "hash": "hKo5+txFNfhnvSGDLC+KFw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3672,7 +3672,7 @@ "hash": "/+Lj8iirVZ5Klo2MeHX4VA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3684,7 +3684,7 @@ "hash": "VR8Tp/wguFktweO1FeGgkQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3696,7 +3696,7 @@ "hash": "mh2hwj8Q6b83iQhtmIYPxA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3708,7 +3708,7 @@ "hash": "oRTIH2aoOiFEO3IPGlPLcg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3720,7 +3720,7 @@ "hash": "5B+k0IHJsPsyAQhGgKbykA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3732,7 +3732,7 @@ "hash": "EOr1IcYzry2ZpTcdJdgjEw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3744,7 +3744,7 @@ "hash": "HfFYB6rvIb2mSL0TQfma6Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3756,7 +3756,7 @@ "hash": "qeq8EaKiB8RSPlkBXNWOEQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3768,7 +3768,7 @@ "hash": "Rm5kW4jXLEaRBVHSQOjFkg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3780,7 +3780,7 @@ "hash": "x6Bx3vfcA6IeYXWjyXFSRQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3792,7 +3792,7 @@ "hash": "afxOuI2117XUfQusU/OWLw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3804,7 +3804,7 @@ "hash": "HID4rrC9wbMcE/b42r45ww==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3816,7 +3816,7 @@ "hash": "Gsqt0AWROGK+FQGecz5v1A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3828,7 +3828,7 @@ "hash": "oymN+9w/7WoYwElDIojrKg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3840,7 +3840,7 @@ "hash": "HJAA7J3ONygAaFcludV0MA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3852,7 +3852,7 @@ "hash": "/ameLm6osIVgwok+DkuYeg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3864,7 +3864,7 @@ "hash": "jDdSRao9m+ecx6/K0v5WCA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3876,7 +3876,7 @@ "hash": "TwCunf6mwaBFa+43QZ5e5Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3888,7 +3888,7 @@ "hash": "mPZ0lLHqx14X35im4/m90w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3900,7 +3900,7 @@ "hash": "jbevqHUeT9SMimtcUPPxWw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3912,7 +3912,7 @@ "hash": "U8fjUxFSvbkoeDflC4ce4w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3924,7 +3924,7 @@ "hash": "+8gfBVs5/Ddv6i+rsyXZ7Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3936,7 +3936,7 @@ "hash": "vMYCaVO11lYbhiecyg7aEQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3948,7 +3948,7 @@ "hash": "1G0gUOMM+lV2PB16XyJrrw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3960,7 +3960,7 @@ "hash": "5k9HxV2BXpXmxS5EbYtweA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3972,7 +3972,7 @@ "hash": "BP0v7jc32kxR8j7L9iK8Lw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3984,7 +3984,7 @@ "hash": "lAy6TETKV94uixzBIUjgjg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -3996,7 +3996,7 @@ "hash": "DLagSun+o46phJJV9zUbnA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4008,7 +4008,7 @@ "hash": "hAb0n0qvG3mnvxfyWGrGSw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4020,7 +4020,7 @@ "hash": "Ew6JcfmAz00/nX0nCnLk8Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4032,7 +4032,7 @@ "hash": "mB+Qns36fGAmdEgV8YvjtQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4044,7 +4044,7 @@ "hash": "l7TNJe8mwM8aDVn0eu6nfg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4056,7 +4056,7 @@ "hash": "feDT0ij00XDa8Y/vNyoccA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4068,7 +4068,7 @@ "hash": "Vjm9+wLZUkMzMg3K30gpuw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4080,7 +4080,7 @@ "hash": "RT0KFN3lj9TEIqXZyF9aGQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4092,7 +4092,7 @@ "hash": "O51nYMAiYBDSr3ZCi9PwOg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4104,7 +4104,7 @@ "hash": "bA8Kn6fsGL2x25zBapZdcQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4116,7 +4116,7 @@ "hash": "XyKcgrDvv/tIJTj0vmKK9Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4128,7 +4128,7 @@ "hash": "74UUl1JY0wrMdVi4jjmvVQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4140,7 +4140,7 @@ "hash": "PD46t5pYpPHLIyD5dRH72w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4152,7 +4152,7 @@ "hash": "WRFLmvmqFvIvg7/QRxMIpw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4164,7 +4164,7 @@ "hash": "VcwzpqwmC0YS8F7MzCdXXA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4176,7 +4176,7 @@ "hash": "b224zDWUdn/ryLnyFdCjLw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4188,7 +4188,7 @@ "hash": "cbfT2ImdoA9KMA61ZJMEvw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4200,7 +4200,7 @@ "hash": "Hf1X5uBYv4GtHDrXWek/xg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4212,7 +4212,7 @@ "hash": "4hZ3XlTLZlaZ3z4ilAZIng==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4224,7 +4224,7 @@ "hash": "jsVzHaDLKcJPmvZnS1yASQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4236,7 +4236,7 @@ "hash": "vbTnklC4R/pcypCzI8ypFw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4248,7 +4248,7 @@ "hash": "OUxaF8OeQtdhDJMl0gndhw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4260,7 +4260,7 @@ "hash": "3FtdjGwFysL50lTgd0s6Zg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4272,7 +4272,7 @@ "hash": "f34KdqeRvl4SZCgYVTgkOQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4284,7 +4284,7 @@ "hash": "dPCQzma4oS6ukE6qPOTG8w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4296,7 +4296,7 @@ "hash": "ZEzAbNf6ep+yGPD4W/ogLQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4308,7 +4308,7 @@ "hash": "lZA7Eq0ecWlIeBS92GB/1Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4320,7 +4320,7 @@ "hash": "qnATNFuL0VWS99M7jdoT7Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4332,7 +4332,7 @@ "hash": "ujyxUj9gu9hlcwb3qv2qdw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4344,7 +4344,7 @@ "hash": "w1mcG5LzXzRbqnoajQKmWQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4356,7 +4356,7 @@ "hash": "GZMDqY49Z/I/kJi+LCUHsA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4368,7 +4368,7 @@ "hash": "WkkVVqg4Z+m+ivohoZehQA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4380,7 +4380,7 @@ "hash": "WrZYSriRopYOwt6B3Bd2wg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4392,7 +4392,7 @@ "hash": "Ui5nSBhyAviL5laGI1sg2g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4404,7 +4404,7 @@ "hash": "FzbomxjWehTic7t9lRfzog==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4416,7 +4416,7 @@ "hash": "/fm/ugIrJnEgdgXHMxP/PA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4428,7 +4428,7 @@ "hash": "ggBtab3L86MMD+smnHPEMA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4440,7 +4440,7 @@ "hash": "9fxBISH7urmwgQSiOQAU2w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4452,7 +4452,7 @@ "hash": "uYxyUGM57g5wvP6nE2SrGg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4464,7 +4464,7 @@ "hash": "oPuGBKSSV/aHvj05Mqje9g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4476,7 +4476,7 @@ "hash": "JjuMXIlBHxGGfZRKuBdRoA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4488,7 +4488,7 @@ "hash": "vQH6yybZNyUT9bUVn7g0Pw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4500,7 +4500,7 @@ "hash": "l80+jwe9noyvhLAmWOofFA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4512,7 +4512,7 @@ "hash": "hwbNjuWRu7zAqbja4OcYiw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4524,7 +4524,7 @@ "hash": "ADRqxIulETEd3nF0P4SezQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4536,7 +4536,7 @@ "hash": "QWAcQpIEVwF3KOuebNpFrQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4548,7 +4548,7 @@ "hash": "gneBDeBB/qvYHXI9w6R7WQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4560,7 +4560,7 @@ "hash": "Mi9Jfg2SXIlVztV+j54tig==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4572,7 +4572,7 @@ "hash": "pRkMNZ5XnBbez6eGOLs7wg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4584,7 +4584,7 @@ "hash": "KIzDlJgCWfmt5qKMStIGVA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4596,7 +4596,7 @@ "hash": "BeDHlYtPe8I/Ca4YDcDEZg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4608,7 +4608,7 @@ "hash": "W9hXdT/TZUsDPzjoefLTHA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4620,7 +4620,7 @@ "hash": "BP1tYwIcg6MEj3qmr8K1Ng==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4632,7 +4632,7 @@ "hash": "Hbipnocnc0fk1bvuDVhVpQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4644,7 +4644,7 @@ "hash": "5xKOpjGl46/U9OEcapgKfQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4656,7 +4656,7 @@ "hash": "tOrphXVRktNLVxY+8jyP7A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4668,7 +4668,7 @@ "hash": "2Vzbm3kCB2l+mosuKgUpmg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4680,7 +4680,7 @@ "hash": "fdfp3w0zW2bbeLinQ8EoLg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4692,7 +4692,7 @@ "hash": "6pA94R/JuW5hI5sjpMU0AA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4704,7 +4704,7 @@ "hash": "zpNzOek+44D+9PWz2o5Uww==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4716,7 +4716,7 @@ "hash": "/mLka2rGUFGuKrHAiMQLFg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4728,7 +4728,7 @@ "hash": "r+vD1WhXI9llicAyx3ZUDA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4740,7 +4740,7 @@ "hash": "qKhPfKPvDunq/hw/mCLcRw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4752,7 +4752,7 @@ "hash": "dU6QS/OZSapb93Ku1N12VA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4764,7 +4764,7 @@ "hash": "dW/9kvmzGXubIK6aqLPyhQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4776,7 +4776,7 @@ "hash": "CXDLD2j/QABK4/9yi+zAfQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4788,7 +4788,7 @@ "hash": "XUmpz6RDxH36qdxKEh1Mdw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4800,7 +4800,7 @@ "hash": "nb9O2acYhRMexMptZk61+Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4812,7 +4812,7 @@ "hash": "vrtGwb8z9sAwSFGrRtZ4iA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4824,7 +4824,7 @@ "hash": "c9TNCUQbsjaRXXQHmKBCrA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4836,7 +4836,7 @@ "hash": "xBrgGNsMVJUQIt3t8ff0ww==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4848,7 +4848,7 @@ "hash": "7ogufBTymxnxgqC+CTbHWQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4860,7 +4860,7 @@ "hash": "Y+0V8ebZVRYztHWLX2We+A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4872,7 +4872,7 @@ "hash": "k8tkAk7AwDeLj5iaj5tuZQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4884,7 +4884,7 @@ "hash": "dKgteLq63nmRNbfYmWuOcw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4896,7 +4896,7 @@ "hash": "1rJTHBmRv4Tq4cmogZNjJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4908,7 +4908,7 @@ "hash": "+bjc/1NQasf+UrESJ5OACA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4920,7 +4920,7 @@ "hash": "7Vqr95fg4gAn+tI8600cOA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4932,7 +4932,7 @@ "hash": "EGeasL40bYHRs1Og+7J/QA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4944,7 +4944,7 @@ "hash": "cVwkvv/yK5AGK15ALcuuWw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4956,7 +4956,7 @@ "hash": "+YxVv9CTFpuclecYeWTZqA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4968,7 +4968,7 @@ "hash": "4siIK5I2tx9s78XOlm6UJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4980,7 +4980,7 @@ "hash": "H99ckDVEyaOH6LdGrW4emg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -4992,7 +4992,7 @@ "hash": "uaecVDZs3ihMABPwfGroqA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5004,7 +5004,7 @@ "hash": "+OimAcWmDImk6sfu0qT2CQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5016,7 +5016,7 @@ "hash": "W2+34EmiOueKHCiNWPoJBg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5028,7 +5028,7 @@ "hash": "1t+5Xnmy5uytxuPnwA9FDg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5040,7 +5040,7 @@ "hash": "QhK6A9nPd7awQxUbPJUE/g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5052,7 +5052,7 @@ "hash": "gkVxdxYDR31uWLphZXnfBA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5064,7 +5064,7 @@ "hash": "7pqP6vBs78NkutwVdkk1pQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5076,7 +5076,7 @@ "hash": "9/yuaYR5CnAI4itCnV6NYQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5088,7 +5088,7 @@ "hash": "5Lsfkmbo0ET0e++M1vZKZg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5100,7 +5100,7 @@ "hash": "eRW82FJJyG8n86zoOs9EJA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5112,7 +5112,7 @@ "hash": "5ZyxPpuHEmgOdDOUKIhUtg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5124,7 +5124,7 @@ "hash": "/6EsDmfzmqHOVyJnC8w+sg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5136,7 +5136,7 @@ "hash": "r0jz/P9ErV9AKe7ywPYfyA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5148,7 +5148,7 @@ "hash": "0uQTkhgn1f8d9kl1tM5gYA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5160,7 +5160,7 @@ "hash": "wSx8lxE01tvSM1vVTCBjGQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5172,7 +5172,7 @@ "hash": "UKWk/DPETpMfraZbrvYqrA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5184,7 +5184,7 @@ "hash": "vvyVoWylSYpN1MDmm8yFgw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5196,7 +5196,7 @@ "hash": "y7terWsrrCF4okS7yM5Pew==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5208,7 +5208,7 @@ "hash": "kBQjR2GcOi2ybZgID1GMmw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5220,7 +5220,7 @@ "hash": "MziE6EUXfB2Qbq4hBAS9XA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5232,7 +5232,7 @@ "hash": "MwmRpdFP/Y8HVppeMXbdAw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5244,7 +5244,7 @@ "hash": "C9U5m+wyzMFHX/87T/kP7w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5256,7 +5256,7 @@ "hash": "XGBQDoShtbGHyB0qRTrZoA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5268,7 +5268,7 @@ "hash": "apxMDOxxK57hhkRKPhYuWA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5280,7 +5280,7 @@ "hash": "Z6V1G7OhbmxJsYXcQKFiCw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5292,7 +5292,7 @@ "hash": "/9QbqWo7b7YO9TkORrGhPA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5304,7 +5304,7 @@ "hash": "W/YAEMgPZfc546eBTGvOFQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5316,7 +5316,7 @@ "hash": "z+dONH/7eEE8UNuBZfVbvQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5328,7 +5328,7 @@ "hash": "wCRopdVVpRHt3QJcUaXLmA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5340,7 +5340,7 @@ "hash": "SmubV8OW8yqXX2Ks2/giIA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5352,7 +5352,7 @@ "hash": "Lk544je82mi7iIFsXAN0Og==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5364,7 +5364,7 @@ "hash": "5dfGrVKzu9gSVGCZcJN/fg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5376,7 +5376,7 @@ "hash": "TynF8LjAjrVTpXGyntnMlQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5388,7 +5388,7 @@ "hash": "XkWUKmg/ejcoiD4bGsbIkQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5400,7 +5400,7 @@ "hash": "+fyNL+ryZuFkdHbtxGU5RQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5412,7 +5412,7 @@ "hash": "v/DXPkQktNaJZAPgzWm9gQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5424,7 +5424,7 @@ "hash": "HTmjHrXoLTPEw7qXMh6oTg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5436,7 +5436,7 @@ "hash": "7K7U9OpCh97vugl/ZvGKTA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5448,7 +5448,7 @@ "hash": "rqQXK8QSTt5Y7PgJ3t8JtA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5460,7 +5460,7 @@ "hash": "oB2lINRjvWfj29L+Eegtag==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5472,7 +5472,7 @@ "hash": "SRE5UngixKSROg2oQxnFAg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5484,7 +5484,7 @@ "hash": "sW0Tpevqc24s2i94h80uKA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5496,7 +5496,7 @@ "hash": "vX6Bqj6QcF76PoeWBQXxjA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5508,7 +5508,7 @@ "hash": "T2/NzIwqtY9wTzvxAehwwg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5520,7 +5520,7 @@ "hash": "xNtvhfiCphp70yVJsw9C0g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5532,7 +5532,7 @@ "hash": "HVDiVWbS8IlKpaGd0TEv2A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5544,7 +5544,7 @@ "hash": "+vvm1ww9jkJ4K1joiIZSoA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5556,7 +5556,7 @@ "hash": "mzC+g10l8xQq20JiI1NEHg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5568,7 +5568,7 @@ "hash": "EEC1r+0G1zGs8dLlRDTDng==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5580,7 +5580,7 @@ "hash": "kQIZyrjfxr6bfWDZnb6mSg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5592,7 +5592,7 @@ "hash": "Erw7DY0u8dbsjCp3dY/P5w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5604,7 +5604,7 @@ "hash": "Nlad5KIj5m7feURLNgplzg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5616,7 +5616,7 @@ "hash": "1I6Llkb6zDNyS3Df9gbJ9A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5628,7 +5628,7 @@ "hash": "td85ur0r0z+UD5wjPyD+vg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5640,7 +5640,7 @@ "hash": "tzon9m5iA0fdXVI7LRBd7w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5652,7 +5652,7 @@ "hash": "A0Xf/zJy163miKA71aWhRw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5664,7 +5664,7 @@ "hash": "JMBUuiZC01gLg4i9jU+49A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5676,7 +5676,7 @@ "hash": "9s+BFD7L0OtBgjhkB9fZSA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5688,7 +5688,7 @@ "hash": "RV7pshGsH6EeVq90kuFxtw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5700,7 +5700,7 @@ "hash": "xPKDutJKTyADZN1ImO+/vA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5712,7 +5712,7 @@ "hash": "JeSptkwwFnXpgBOez0zSGA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5724,7 +5724,7 @@ "hash": "Keqpy4pny1ECK747eBbLAw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5736,7 +5736,7 @@ "hash": "6H9/akYjf8qB9imghlVBTQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5748,7 +5748,7 @@ "hash": "3qGbFmmWOBAg2YllN93ycQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5760,7 +5760,7 @@ "hash": "XaHNvFptZ4Y0kL1ZCcPUfA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5772,7 +5772,7 @@ "hash": "OMJ/K/qqCRv4/HWTEqLnDw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5784,7 +5784,7 @@ "hash": "q7wXxNWz4+erEOvEj1VAPw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5796,7 +5796,7 @@ "hash": "YQNhG4hp29wF+OIRTbV4NA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5808,7 +5808,7 @@ "hash": "Ihcqg2f55EEMJistKgpb8w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5820,7 +5820,7 @@ "hash": "U6/vMupgudj1P2Zw6NZTeg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5832,7 +5832,7 @@ "hash": "DUnZvJMHOh0OEjGRR9ysEw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5844,7 +5844,7 @@ "hash": "Im9GDJT5o1wnxfNCkHQJZw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5856,7 +5856,7 @@ "hash": "BIlqBUkdfHX6hYZW3FJDhQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5868,7 +5868,7 @@ "hash": "GrinAeb/CKRZzvhDCCk54g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5880,7 +5880,7 @@ "hash": "nNENZTKuT8UfzUW+1x+Ncg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5892,7 +5892,7 @@ "hash": "a1HnEZT3DzPExXfMzv4uQA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5904,7 +5904,7 @@ "hash": "dbdKcxUht/MKI+0svynq8Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5916,7 +5916,7 @@ "hash": "HXIIQCxSbiFcdIDvYjsqdw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5928,7 +5928,7 @@ "hash": "QqebX/9cn/Ku4ERa7WPHVw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5940,7 +5940,7 @@ "hash": "AqFqqrLqdWk/z1y/Mv4TmQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5952,7 +5952,7 @@ "hash": "MLpoVeb8AlM4lbBk3+buGg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5964,7 +5964,7 @@ "hash": "evVntNDTgA01JFFwq3yLqg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5976,7 +5976,7 @@ "hash": "qPqvCMTROW2dSUM21UeZ+A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -5988,7 +5988,7 @@ "hash": "EMBTfSyiUiy5xQLboiyLPw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6000,7 +6000,7 @@ "hash": "Ut+6kCyBZzAKYrWDxPJ2MQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6012,7 +6012,7 @@ "hash": "nfkT24YVl/Hsnzma3MIbwQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6024,7 +6024,7 @@ "hash": "KOMSd/TvDXHSG4z4XPKPOg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6036,7 +6036,7 @@ "hash": "QH/Zpylk68X3Q4edcnwfeA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6048,7 +6048,7 @@ "hash": "AMIShMPdd+7iv9+slgBA6Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6060,7 +6060,7 @@ "hash": "/yqsFzW0bNqkesXb6o4RJA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6072,7 +6072,7 @@ "hash": "vGZskB6h7nbc3PyJbZwjnQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6084,7 +6084,7 @@ "hash": "K/tZBE8K0PSP/T8mRKBn7Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6096,7 +6096,7 @@ "hash": "coCEg6DAIKWCJWyRxXO4TQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6108,7 +6108,7 @@ "hash": "Cozmcb3NsRCfcB+/+k1tsA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6120,7 +6120,7 @@ "hash": "EvgfWp2erUM6N0B1w8UMzQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6132,7 +6132,7 @@ "hash": "vqF9NDHay6ImP3iyZ1lIAA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6144,7 +6144,7 @@ "hash": "5T1NxkmAofOG6LZjs5hZtA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6156,7 +6156,7 @@ "hash": "fsRwG6IIGqccAdUxwL6icQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6165,7 +6165,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangeAccessor-1.html", - "hash": "Kh0MYHMlyDYvkQtSlSll3Q==" + "hash": "31V1mUauG5peFRm+w9OiuA==" } }, "is_incremental": false, @@ -6180,7 +6180,7 @@ "hash": "bmwq7ypm1rLGgFgzTF+fww==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6189,7 +6189,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangePtrAccessor-1.html", - "hash": "vTcVpOM+Bj+06V7IrpE0Kw==" + "hash": "8x4YQsZqkK/v4cZX0kKb+Q==" } }, "is_incremental": false, @@ -6204,7 +6204,7 @@ "hash": "FiuEqqTlx0sinVYW0a1cPQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6228,7 +6228,7 @@ "hash": "qR92Hc24HE6h6FQELByT2Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6240,7 +6240,7 @@ "hash": "3b6ep7TnLRACLamB0eA3yQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6252,7 +6252,7 @@ "hash": "S/pfP6Rxbv/G1P7rwApyJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6264,7 +6264,7 @@ "hash": "yAJLNCnngpNcAQHC3phLGw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6276,7 +6276,7 @@ "hash": "ppG1ALWbXRFaWx45YYBJsg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6288,7 +6288,7 @@ "hash": "4BYRSXZWapGYWvu+THAo3Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6300,7 +6300,7 @@ "hash": "XBrVzizOZEcFuj+Yfx4N7A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6312,7 +6312,7 @@ "hash": "ZLacgFzjP4s7E9LOmSZJqg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6324,7 +6324,7 @@ "hash": "324lFTiQCMCsw/oxe5ua1g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6336,7 +6336,7 @@ "hash": "QpzvjPL/XyCAYX9HQjvhRQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6348,7 +6348,7 @@ "hash": "YdeavpLlGdk3q+HNLTfPnQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6360,7 +6360,7 @@ "hash": "pnj4y7J2ipz9mShypXBD4w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6372,7 +6372,7 @@ "hash": "kCrzzdu9kvuObw87ORybPQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6384,7 +6384,7 @@ "hash": "mNn6EykNC6+H4K88Ckv6yA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6396,7 +6396,7 @@ "hash": "Wz19MwFq0XoWIgJ7WBqgbg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6408,7 +6408,7 @@ "hash": "21YY09BPoQcZrcwk3b9wnA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6420,7 +6420,7 @@ "hash": "C2HsMLVFUISO8GRIfC+A3Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6432,7 +6432,7 @@ "hash": "w7q5GUx6WmrZEthsqCd6hA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6444,7 +6444,7 @@ "hash": "p6Z/qM59OaVF0gpiQdktHg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6456,7 +6456,7 @@ "hash": "SqCjdI1s00ZvrbSxBMBCJA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6468,7 +6468,7 @@ "hash": "901q3rlvbXWP6RI8TyGYGg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6480,7 +6480,7 @@ "hash": "mmXA+snJzxP660aTpfS3Bg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6492,7 +6492,7 @@ "hash": "6sVDBjlcd7xoyt/S5PbKeA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6504,7 +6504,7 @@ "hash": "y2c82fHAbmDv3mg7PbSKcA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6516,7 +6516,7 @@ "hash": "RJXUKnrIxy3Ef9J+HepDUw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6528,7 +6528,7 @@ "hash": "BS1au7LW+wXPGX56/uSL2w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6540,7 +6540,7 @@ "hash": "05HemJVfTpjHPGWweE+ChA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6552,7 +6552,7 @@ "hash": "mGWUn+2r4BbnG5Wc+QWDaA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6564,7 +6564,7 @@ "hash": "RqjOHdqVb6DTw5sSrQ//Bg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6576,7 +6576,7 @@ "hash": "JCtgRPpZj7yRqIrrlls4Bw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6588,7 +6588,7 @@ "hash": "ABOTpyrJ1ldug/Cf1mlQ5Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6600,7 +6600,7 @@ "hash": "e5VtvUjY7j0NMelp8/LyEw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6612,7 +6612,7 @@ "hash": "/QNBzIaz5Nf8RUdKyhfytQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6624,7 +6624,7 @@ "hash": "MNCyqTofT+0ltIwnex9T0Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6636,7 +6636,7 @@ "hash": "5LBX9uVkaOOH2SS2SYn4hg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6648,7 +6648,7 @@ "hash": "oxRYTfRNPM7fmymK1ZZJBg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6660,7 +6660,7 @@ "hash": "l3hbakC0uTzxTa4n9e9wEA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6672,7 +6672,7 @@ "hash": "4bS/a6Ud0RYw2TlaKLDBgg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6684,7 +6684,7 @@ "hash": "ZJDC/Kzutx0pnG9UTI9f6w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6696,7 +6696,7 @@ "hash": "6kCX4Cl8itjJ4777cjwUZw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6708,7 +6708,7 @@ "hash": "lFY67OjooSxtjPkjs5NxMg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6720,7 +6720,7 @@ "hash": "J9eqT9zphZIW1U6iUYc/CA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6732,7 +6732,7 @@ "hash": "RJXCBhPLq10gqNx6I2+NsQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6744,7 +6744,7 @@ "hash": "jVHAGXTEVML1czsrKPOEwA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6756,7 +6756,7 @@ "hash": "K+mm2lWUxAWG1xb1EUjQ8w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6768,7 +6768,7 @@ "hash": "hWXrWSmvX32hz1YqugvW6A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6780,7 +6780,7 @@ "hash": "V6pnYY+4ZMbML6R/mS2C9w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6792,7 +6792,7 @@ "hash": "uAwu3c8FIU60gKUT4LD46w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6804,7 +6804,7 @@ "hash": "ilV1CrQdiERGXt7d1Hc7Nw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6816,7 +6816,7 @@ "hash": "DmKu2o9qZUWqmK2RR4HhBA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6828,7 +6828,7 @@ "hash": "oEmtwisrVTNZ/QJ+cGrdvg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6840,7 +6840,7 @@ "hash": "kcWnT+sNoRcZSxqxTQYI1Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6852,7 +6852,7 @@ "hash": "PDV2A482wR0e6weDzEa/mA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6864,7 +6864,7 @@ "hash": "TzZ+lHcmvuL6Ff+0BA4vBg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6876,7 +6876,7 @@ "hash": "ZpAX+N1sNTg7xSVsI6cWJQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6888,7 +6888,7 @@ "hash": "U49/LEChjL7k2SN77O/KBA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6900,7 +6900,7 @@ "hash": "XH9wHogF3YP6gqcS0LgDcA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6912,7 +6912,7 @@ "hash": "FsBPedXNWhTaavE5I2f6Ug==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6924,7 +6924,7 @@ "hash": "gbcn60HSO1t1ESvX6Lyckg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6936,7 +6936,7 @@ "hash": "OcC+TxH/7GIVi90yhZQHjw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6948,7 +6948,7 @@ "hash": "ymKsS296loGek7gXdjfVag==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6960,7 +6960,7 @@ "hash": "oqC/9pyVFFf/dbc5xxpCwg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6972,7 +6972,7 @@ "hash": "Rbj5Mw/Uxw2eSDu5cOTSrQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6984,7 +6984,7 @@ "hash": "tOUWmarYn6Ucy6tixNFtXw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -6996,7 +6996,7 @@ "hash": "S2+CtyrbPNDZ6veMpHM67w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7008,7 +7008,7 @@ "hash": "m6dCGDV6DA2xo3oIKXr+GA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7020,7 +7020,7 @@ "hash": "peF5Nw2/mC/OfMxrYY01Ig==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7032,7 +7032,7 @@ "hash": "7ePbxmtbrPGHJv3i2vadMQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7044,7 +7044,7 @@ "hash": "T0Eg+Pou6uMx00VaALWKWQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7056,7 +7056,7 @@ "hash": "TA6Jn0/8Hjd0RycIbm6LQg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7068,7 +7068,7 @@ "hash": "OCZv1KnnVeZ06St2zVHGbA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7080,7 +7080,7 @@ "hash": "5RQKrbD+26Fnc8kXObylbA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7092,7 +7092,7 @@ "hash": "PQ5c8H8hMcwWu4fEkFTaUg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7104,7 +7104,7 @@ "hash": "eq0YY9vJG+zsRW1nVThyug==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7116,7 +7116,7 @@ "hash": "Zjd4PAsR5NcHW//v5ThKZA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7128,7 +7128,7 @@ "hash": "6tmul44jX7uK4wYQIx195g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7140,7 +7140,7 @@ "hash": "aJGiG3244L2UiEdb+AXo3g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7152,7 +7152,7 @@ "hash": "gvhms0W7YeG8xmE3V1b05A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7164,7 +7164,7 @@ "hash": "f1H+2DTEuNXJfcEIeNPbsQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7176,7 +7176,7 @@ "hash": "dnqNmJ0rt5tM+YIGtHRzOg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7188,7 +7188,7 @@ "hash": "JPyYpvFWKZKBrNoj3komhQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7200,7 +7200,7 @@ "hash": "r1W79yOwDaL9glOaLKOdxw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7212,7 +7212,7 @@ "hash": "lgTDhP6xWcbVgj34/LA5cg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7224,7 +7224,7 @@ "hash": "ZV4aogQDxAQL+1Bif/aLfA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7236,7 +7236,7 @@ "hash": "t48QPYcPGN6/xXHrXPPrkw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7248,7 +7248,7 @@ "hash": "ECcNGPlqgUZKpS44wYNF1w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7260,7 +7260,7 @@ "hash": "VBXjAthDVi0VFZLipweuog==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7272,7 +7272,7 @@ "hash": "bbORiXtbMba0EvPK8q0uiA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7284,7 +7284,7 @@ "hash": "g2lS2kk9DxWrc31SeVwYlA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7296,7 +7296,7 @@ "hash": "ALq/A1MImZZjPC9BF9PNOw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7308,7 +7308,7 @@ "hash": "L93IfBdyqrGLYa8mktQt6A==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7320,7 +7320,7 @@ "hash": "DdyNCZPcbmGgqyxEplkidQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7332,7 +7332,7 @@ "hash": "UyQSj15eTsKzo4SBSIh9TQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7344,7 +7344,7 @@ "hash": "6fbneTPB7T9Rg83BS+yLpg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7356,7 +7356,7 @@ "hash": "74+Zdh1ijL9n9p+Pjsp1+g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7368,7 +7368,7 @@ "hash": "Utk9+7FGSG6fczSh5jReGg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7380,7 +7380,7 @@ "hash": "160kgHxx10fcahCLdHnkzg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7392,7 +7392,7 @@ "hash": "B76AJMGrgFJJxObwLUOuzw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7404,7 +7404,7 @@ "hash": "8eQ5vT90xHgsVWEi6axgXA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7416,7 +7416,7 @@ "hash": "gIIGZxD5732TvK4tQ55tLg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7428,7 +7428,7 @@ "hash": "sGL86aE/ELVm6wN1hOrqqg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7440,7 +7440,7 @@ "hash": "qtu7v6UKuCIz0ITktYCZ7Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7452,7 +7452,7 @@ "hash": "qumdOId0Y9QnRosaWCfKgg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7464,7 +7464,7 @@ "hash": "ETbqFgMXHhEJTV8oWTYRqw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7476,7 +7476,7 @@ "hash": "7Su9LgDdCYIr45HSu726PQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7488,7 +7488,7 @@ "hash": "sVjlUtJ3hAb3d8lqkQeNfQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7500,7 +7500,7 @@ "hash": "s5PPCQOvzHsS1vwEuN7lsA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7512,7 +7512,7 @@ "hash": "Q6zPzYGXeZRLbfM5vpJxzg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7524,7 +7524,7 @@ "hash": "HECEKBvWZoqxSJUUm9biCA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7536,7 +7536,7 @@ "hash": "XX/t16y8WTC9JUfQDImSvA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7548,7 +7548,7 @@ "hash": "fUXH2JgMU5LPG0f6eXGxag==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7560,7 +7560,7 @@ "hash": "PMNDRL88Ufxj/O4qhmJrLQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7572,7 +7572,7 @@ "hash": "VVZx4sijzuXv1P1vPE+sLg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7584,7 +7584,7 @@ "hash": "BLjFvc3s/sDIlYkr65fMFw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7596,7 +7596,7 @@ "hash": "LJ7JrPpNnfcJm+Deh6/iig==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7608,7 +7608,7 @@ "hash": "/K68VEVGmakdQQ1GbeZYGQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7620,7 +7620,7 @@ "hash": "ZNwkv5GyDueIBjbTPlQE9Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7632,7 +7632,7 @@ "hash": "ho1HpY2vZNuE8bftghGwfw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7644,7 +7644,7 @@ "hash": "ruMEJwylXQHh+v1pyKR2Ew==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7656,7 +7656,7 @@ "hash": "VKYu8WGNvTtDbHWUIcWMhw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7668,7 +7668,7 @@ "hash": "1JGDePa9pW4LLhfqJZP7UA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7680,7 +7680,7 @@ "hash": "5HXdjVNPoh7xx5gUNjrllQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7692,7 +7692,7 @@ "hash": "vZIIKvmoAnl/njfKrs0dtA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7704,7 +7704,7 @@ "hash": "wQ4F4cTluo5+KIezThwdPw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7716,7 +7716,7 @@ "hash": "dNUyWrW+Dj7jU7kI3NVDRA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7728,7 +7728,7 @@ "hash": "KS8u3C+7zL+hNYtN+aREPQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7740,7 +7740,7 @@ "hash": "XmRq1uMI8pb0iyFZs99D7g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7752,7 +7752,7 @@ "hash": "BkXUO+2inDoiq0S/4Wpe1Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7764,7 +7764,7 @@ "hash": "Mmkgd4x4YExAoS9mgcYW0w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7776,7 +7776,7 @@ "hash": "L7tCquwzPc/y9FdYlzpCzw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7788,7 +7788,7 @@ "hash": "Id3jcLPiKuSECWWuwFv2hQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7800,7 +7800,7 @@ "hash": "IbyPUL0pKRS+gvyTowXyIg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7812,7 +7812,7 @@ "hash": "xoybyD61Q7NI6BcUW0SeiA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7824,7 +7824,7 @@ "hash": "KhGPWgRxwSgNa3swsaxypQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7836,7 +7836,7 @@ "hash": "3yTOHXzaks/VvFf+Yu1WjQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7848,7 +7848,7 @@ "hash": "IFdNPGddhcteOqcZIuetSg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7860,7 +7860,7 @@ "hash": "8asYTJ0S/Da8KqiHJ/2I4w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7872,7 +7872,7 @@ "hash": "WBJbWvjMgDXWFcIEoCQa7Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7884,7 +7884,7 @@ "hash": "OnFz4jaMN8yRF2SWvtNfgQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7896,7 +7896,7 @@ "hash": "GPZfeYFpZ2Pgu0FzPOB9iw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7908,7 +7908,7 @@ "hash": "XNfjobq1TifQ3/dN5IU4fw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7920,7 +7920,7 @@ "hash": "RdGqUDDpt8dL43Gyj+AvBQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7932,7 +7932,7 @@ "hash": "xd9jtWjjAuQOSoQaxQNUhA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7944,7 +7944,7 @@ "hash": "kgJvb4r0eMBQt3goe8V70g==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7956,7 +7956,7 @@ "hash": "P12uwgxuxyBF293stqgbwQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7968,7 +7968,7 @@ "hash": "EtMpp3rmFZJmuzNC1HIK2Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7980,7 +7980,7 @@ "hash": "mQfoYalVvUdR57Jxmr9m7w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -7992,7 +7992,7 @@ "hash": "MSj3AMUNPkvV3EpAvaDs3Q==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8004,7 +8004,7 @@ "hash": "4E9gKXJOSyE0L2MLK3kP8w==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8016,7 +8016,7 @@ "hash": "tjE6osszWTtqiz8iYOkGZQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8028,7 +8028,7 @@ "hash": "5jQj5VktZWA2m/c9WPDrAw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8040,7 +8040,7 @@ "hash": "jmyVMoaOs2Nx3yN4MVPxPw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8052,7 +8052,7 @@ "hash": "GuJRZilncU9r+CbquDXIPQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8064,7 +8064,7 @@ "hash": "6hq0yw8Y4cpdygivtHCebw==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8076,7 +8076,7 @@ "hash": "ECNn4NzfrkDpHQkzVJvKSQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8088,7 +8088,7 @@ "hash": "CtVmKJ0pNZuf0cJQYcxGgQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8100,7 +8100,7 @@ "hash": "StYNa/p+ejDNnD3vUU4wxQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8112,7 +8112,7 @@ "hash": "SuhsPyCgbaiZPtuhQ3D3yg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8124,7 +8124,7 @@ "hash": "4OA/buMbpEBACHiUYpCEag==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8136,7 +8136,7 @@ "hash": "S85+M08X4gSYRPgqW21fAQ==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8148,7 +8148,7 @@ "hash": "fNfvXqnUNXvWmqmPIW0fuA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8160,7 +8160,7 @@ "hash": "rbvqYn1oVKayxf1mEnGkMA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8172,7 +8172,7 @@ "hash": "ouKfDLMeUJdQEnF/p8uRPg==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8184,7 +8184,7 @@ "hash": "Xa2TgjEQLGi7upSWkfCcoA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8196,7 +8196,7 @@ "hash": "Ttk1dQ7KE++yjQRTILCFfA==" } }, - "is_incremental": true, + "is_incremental": false, "version": "" }, { @@ -8256,7 +8256,7 @@ "can_incremental": true, "incrementalPhase": "build", "total_file_count": 682, - "skipped_file_count": 559 + "skipped_file_count": 601 }, "ConceptualDocumentProcessor": { "can_incremental": true, diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index 0b8cb8af8..92c26a515 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -18268,35 +18268,6 @@ references: isSpec: "True" fullName: Dalamud.Plugin.DalamudPluginInterface.SavePluginConfig nameWithType: DalamudPluginInterface.SavePluginConfig -- uid: Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) - name: SendMessage(ExpandoObject) - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_SendMessage_System_Dynamic_ExpandoObject_ - commentId: M:Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) - fullName: Dalamud.Plugin.DalamudPluginInterface.SendMessage(System.Dynamic.ExpandoObject) - nameWithType: DalamudPluginInterface.SendMessage(ExpandoObject) -- uid: Dalamud.Plugin.DalamudPluginInterface.SendMessage* - name: SendMessage - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_SendMessage_ - commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.SendMessage - isSpec: "True" - fullName: Dalamud.Plugin.DalamudPluginInterface.SendMessage - nameWithType: DalamudPluginInterface.SendMessage -- uid: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String,System.Action{System.Dynamic.ExpandoObject}) - name: Subscribe(String, Action) - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Subscribe_System_String_System_Action_System_Dynamic_ExpandoObject__ - commentId: M:Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String,System.Action{System.Dynamic.ExpandoObject}) - name.vb: Subscribe(String, Action(Of ExpandoObject)) - fullName: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String, System.Action) - fullName.vb: Dalamud.Plugin.DalamudPluginInterface.Subscribe(System.String, System.Action(Of System.Dynamic.ExpandoObject)) - nameWithType: DalamudPluginInterface.Subscribe(String, Action) - nameWithType.vb: DalamudPluginInterface.Subscribe(String, Action(Of ExpandoObject)) -- uid: Dalamud.Plugin.DalamudPluginInterface.Subscribe* - name: Subscribe - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Subscribe_ - commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.Subscribe - isSpec: "True" - fullName: Dalamud.Plugin.DalamudPluginInterface.Subscribe - nameWithType: DalamudPluginInterface.Subscribe - uid: Dalamud.Plugin.DalamudPluginInterface.TargetModuleScanner name: TargetModuleScanner href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_TargetModuleScanner @@ -18309,19 +18280,6 @@ references: commentId: F:Dalamud.Plugin.DalamudPluginInterface.UiBuilder fullName: Dalamud.Plugin.DalamudPluginInterface.UiBuilder nameWithType: DalamudPluginInterface.UiBuilder -- uid: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) - name: Unsubscribe(String) - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Unsubscribe_System_String_ - commentId: M:Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) - fullName: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe(System.String) - nameWithType: DalamudPluginInterface.Unsubscribe(String) -- uid: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe* - name: Unsubscribe - href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_Unsubscribe_ - commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.Unsubscribe - isSpec: "True" - fullName: Dalamud.Plugin.DalamudPluginInterface.Unsubscribe - nameWithType: DalamudPluginInterface.Unsubscribe - uid: Dalamud.Plugin.IDalamudPlugin name: IDalamudPlugin href: api/Dalamud.Plugin.IDalamudPlugin.html