using System; using System.Collections; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Cryptography; using System.Security.Permissions; using System.Text; using System.Text.Json; using System.Text.Json.Serialization; using System.Text.RegularExpressions; using BepInEx; using BepInEx.Configuration; using BepInEx.Core.Logging.Interpolation; using BepInEx.Logging; using BepInEx.Unity.IL2CPP; using BepInEx.Unity.IL2CPP.Utils.Collections; using BloodcraftEclipseBridge.Messages; using Eclipse.Patches; using Eclipse.Resources; using Eclipse.Resources.Localization; using Eclipse.Services; using Eclipse.Utilities; using HarmonyLib; using Il2CppInterop.Runtime; using Il2CppInterop.Runtime.InteropTypes.Arrays; using Il2CppSystem; using Il2CppSystem.Collections.Generic; using Il2CppSystem.Text; using Microsoft.CodeAnalysis; using MonoMod.Utils; using ProjectM; using ProjectM.Gameplay.Systems; using ProjectM.Hybrid; using ProjectM.Network; using ProjectM.Physics; using ProjectM.Scripting; using ProjectM.Shared; using ProjectM.UI; using StunShared.UI; using Stunlock.Core; using Stunlock.Localization; using TMPro; using Unity.Collections; using Unity.Entities; using Unity.Mathematics; using Unity.Transforms; using UnityEngine; using UnityEngine.Events; using UnityEngine.SceneManagement; using UnityEngine.UI; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] [assembly: AssemblyCompany("Eclipse")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyFileVersion("1.3.14.0")] [assembly: AssemblyInformationalVersion("1.3.14+cbcdf58ff580e1f686334ff04ee7ef3998002358")] [assembly: AssemblyProduct("Eclipse")] [assembly: AssemblyTitle("Eclipse")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.3.14.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] [CompilerGenerated] internal sealed class <>z__ReadOnlyList : IEnumerable, ICollection, IList, IEnumerable, IReadOnlyCollection, IReadOnlyList, ICollection, IList { int ICollection.Count => _items.Count; bool ICollection.IsSynchronized => false; object ICollection.SyncRoot => this; object IList.this[int index] { get { return _items[index]; } set { throw new NotSupportedException(); } } bool IList.IsFixedSize => true; bool IList.IsReadOnly => true; int IReadOnlyCollection.Count => _items.Count; T IReadOnlyList.this[int index] => _items[index]; int ICollection.Count => _items.Count; bool ICollection.IsReadOnly => true; T IList.this[int index] { get { return _items[index]; } set { throw new NotSupportedException(); } } public <>z__ReadOnlyList(List items) { _items = items; } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable)_items).GetEnumerator(); } void ICollection.CopyTo(Array array, int index) { ((ICollection)_items).CopyTo(array, index); } int IList.Add(object? value) { throw new NotSupportedException(); } void IList.Clear() { throw new NotSupportedException(); } bool IList.Contains(object? value) { return ((IList)_items).Contains(value); } int IList.IndexOf(object? value) { return ((IList)_items).IndexOf(value); } void IList.Insert(int index, object? value) { throw new NotSupportedException(); } void IList.Remove(object? value) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable)_items).GetEnumerator(); } void ICollection.Add(T item) { throw new NotSupportedException(); } void ICollection.Clear() { throw new NotSupportedException(); } bool ICollection.Contains(T item) { return _items.Contains(item); } void ICollection.CopyTo(T[] array, int arrayIndex) { _items.CopyTo(array, arrayIndex); } bool ICollection.Remove(T item) { throw new NotSupportedException(); } int IList.IndexOf(T item) { return _items.IndexOf(item); } void IList.Insert(int index, T item) { throw new NotSupportedException(); } void IList.RemoveAt(int index) { throw new NotSupportedException(); } } namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)] internal sealed class NullableAttribute : Attribute { public readonly byte[] NullableFlags; public NullableAttribute(byte P_0) { NullableFlags = new byte[1] { P_0 }; } public NullableAttribute(byte[] P_0) { NullableFlags = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)] internal sealed class NullableContextAttribute : Attribute { public readonly byte Flag; public NullableContextAttribute(byte P_0) { Flag = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)] internal sealed class RefSafetyRulesAttribute : Attribute { public readonly int Version; public RefSafetyRulesAttribute(int P_0) { Version = P_0; } } } namespace Eclipse { internal static class Core { private static World _client; private static SystemService _systemService; private static Entity _localCharacter = Entity.Null; private static Entity _localUser = Entity.Null; private static MonoBehaviour _monoBehaviour; public static bool _initialized; public static Entity LocalCharacter { get { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) if (!_localCharacter.Exists()) { if (!ConsoleShared.TryGetLocalCharacterInCurrentWorld(ref _localCharacter, _client)) { return Entity.Null; } return _localCharacter; } return _localCharacter; } } public static Entity LocalUser { get { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) if (!_localUser.Exists()) { if (!ConsoleShared.TryGetLocalUserInCurrentWorld(ref _localUser, _client)) { return Entity.Null; } return _localUser; } return _localUser; } } public static EntityManager EntityManager => _client.EntityManager; public static SystemService SystemService => _systemService ?? (_systemService = new SystemService(_client)); public static ClientGameManager ClientGameManager => SystemService.ClientScriptMapper._ClientGameManager; public static CanvasService CanvasService { get; set; } public static ServerTime ServerTime => ClientGameManager.ServerTime; public static ManualLogSource Log => Plugin.LogInstance; public static byte[] NEW_SHARED_KEY { get; set; } public static bool HasInitialized => _initialized; public static void Initialize(GameDataManager __instance) { //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) if (!_initialized) { _client = ((ComponentSystemBase)__instance).World; new LocalizationService(); NEW_SHARED_KEY = Convert.FromBase64String(SecretManager.GetNewSharedKey()); Entity entity = default(Entity); if (SystemService.PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(PrefabGUIDs.SetBonus_AllLeech_T09, ref entity) && entity.TryGetBuffer(out DynamicBuffer dynamicBuffer)) { dynamicBuffer.Clear(); } ShadowMatter.GatherShadows().Run(); _initialized = true; } } public static void Reset() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) ShadowMatter.UnloadAssets(); _client = null; _systemService = null; CanvasService = null; _initialized = false; _localCharacter = Entity.Null; _localUser = Entity.Null; } public static void SetCanvas(UICanvasBase canvas) { CanvasService = new CanvasService(canvas); } public static Coroutine StartCoroutine(IEnumerator routine) { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Expected O, but got Unknown if ((Object)(object)_monoBehaviour == (Object)null) { GameObject val = new GameObject("Eclipse"); _monoBehaviour = (MonoBehaviour)(object)val.AddComponent(); Object.DontDestroyOnLoad((Object)val); } return _monoBehaviour.StartCoroutine(CollectionExtensions.WrapToIl2Cpp(routine)); } public static void StopCoroutine(Coroutine routine) { if (!((Object)(object)_monoBehaviour == (Object)null)) { _monoBehaviour.StopCoroutine(routine); } } public static void DumpEntity(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Expected O, but got Unknown //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Expected O, but got Unknown //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Expected O, but got Unknown StringBuilder val = new StringBuilder(); bool flag = default(bool); try { EntityDebuggingUtility.DumpEntity(_client, entity, true, val); ManualLogSource log = Log; BepInExInfoLogInterpolatedStringHandler val2 = new BepInExInfoLogInterpolatedStringHandler(13, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Entity Dump:\n"); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(((Object)val).ToString()); } log.LogInfo(val2); } catch (Exception ex) { ManualLogSource log2 = Log; BepInExWarningLogInterpolatedStringHandler val3 = new BepInExWarningLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(ex); } log2.LogWarning(val3); } } private static AssetGuid GetAssetGuid(string textString) { //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) using SHA256 sHA = SHA256.Create(); byte[] array = sHA.ComputeHash(Encoding.UTF8.GetBytes(textString)); return AssetGuid.FromGuid(new Guid(Il2CppStructArray.op_Implicit(array[..16]))); } public static LocalizationKey LocalizeString(string text) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) AssetGuid assetGuid = GetAssetGuid(text); if (Localization.Initialized) { if (!Localization._LocalizedStrings.TryAdd(assetGuid, text)) { Localization._LocalizedStrings[assetGuid] = text; } return new LocalizationKey(assetGuid); } Log.LogWarning((object)"Stunlock.Localization isn't ready yet!"); return LocalizationKey.Empty; } public static EntityQuery BuildEntityQuery(this EntityManager entityManager, ComponentType[] all, EntityQueryOptions options) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) EntityQueryBuilder val = default(EntityQueryBuilder); ((EntityQueryBuilder)(ref val))..ctor(AllocatorHandle.op_Implicit((Allocator)2)); foreach (ComponentType val2 in all) { ((EntityQueryBuilder)(ref val)).AddAll(val2); } ((EntityQueryBuilder)(ref val)).WithOptions(options); return ((EntityManager)(ref entityManager)).CreateEntityQuery(ref val); } public static Type Il2CppTypeOf() { return Il2CppType.Of(); } } [BepInPlugin("io.zfolmt.Eclipse", "Eclipse", "1.3.14")] [BepInDependency(/*Could not decode attribute arguments.*/)] internal class Plugin : BasePlugin { private Harmony _harmony; private static ConfigEntry _leveling; private static ConfigEntry _prestige; private static ConfigEntry _legacies; private static ConfigEntry _expertise; private static ConfigEntry _familiars; private static ConfigEntry _professions; private static ConfigEntry _quests; private static ConfigEntry _shiftSlot; private static ConfigEntry _eclipsed; private static ConfigEntry _useEmberglassBridge; internal static Plugin Instance { get; set; } public static ManualLogSource LogInstance => ((BasePlugin)Instance).Log; public static bool Leveling => _leveling.Value; public static bool Prestige => _prestige.Value; public static bool Legacies => _legacies.Value; public static bool Expertise => _expertise.Value; public static bool Familiars => _familiars.Value; public static bool Professions => _professions.Value; public static bool Quests => _quests.Value; public static bool ShiftSlot => _shiftSlot.Value; public static bool Eclipsed => _eclipsed.Value; public static bool UseEmberglassBridge => _useEmberglassBridge.Value; public override void Load() { //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Expected O, but got Unknown //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Expected O, but got Unknown Instance = this; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val; if (Application.productName == "VRisingServer") { ManualLogSource log = Core.Log; val = new BepInExInfoLogInterpolatedStringHandler(22, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("] is a client mod! ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(Application.productName); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogInfo(val); return; } _harmony = Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), (string)null); InitConfig(); EmberglassEclipseBridge.Initialize(); ManualLogSource log2 = Core.Log; val = new BepInExInfoLogInterpolatedStringHandler(20, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("] loaded on client!"); } log2.LogInfo(val); } private static void InitConfig() { _leveling = InitConfigEntry("UIOptions", "ExperienceBar", defaultValue: true, "Enable/Disable the experience bar, requires both ClientCompanion/LevelingSystem to be enabled in Bloodcraft."); _prestige = InitConfigEntry("UIOptions", "ShowPrestige", defaultValue: true, "Enable/Disable showing prestige level in front of experience bar, requires both ClientCompanion/PrestigeSystem to be enabled in Bloodcraft."); _legacies = InitConfigEntry("UIOptions", "LegacyBar", defaultValue: true, "Enable/Disable the legacy bar, requires both ClientCompanion/BloodSystem to be enabled in Bloodcraft."); _expertise = InitConfigEntry("UIOptions", "ExpertiseBar", defaultValue: true, "Enable/Disable the expertise bar, requires both ClientCompanion/ExpertiseSystem to be enabled in Bloodcraft."); _familiars = InitConfigEntry("UIOptions", "Familiars", defaultValue: true, "Enable/Disable showing basic familiar details bar, requires both ClientCompanion/FamiliarSystem to be enabled in Bloodcraft."); _professions = InitConfigEntry("UIOptions", "Professions", defaultValue: true, "Enable/Disable the professions tab, requires both ClientCompanion/ProfessionSystem to be enabled in Bloodcraft."); _quests = InitConfigEntry("UIOptions", "QuestTrackers", defaultValue: true, "Enable/Disable the quest tracker, requires both ClientCompanion/QuestSystem to be enabled in Bloodcraft."); _shiftSlot = InitConfigEntry("UIOptions", "ShiftSlot", defaultValue: true, "Enable/Disable the shift slot, requires both ClientCompanion and shift slot spell to be enabled in Bloodcraft."); _eclipsed = InitConfigEntry("UIOptions", "Eclipsed", defaultValue: true, "Set to false for slower update intervals (0.1s -> 1s) if performance is negatively impacted."); _useEmberglassBridge = InitConfigEntry("UIOptions", "UseEmberglassBridge", defaultValue: false, "Use Emberglass for the Bloodcraft/Eclipse bridge when Emberglass is installed. Falls back to the legacy chat bridge when disabled or unavailable."); } private static ConfigEntry InitConfigEntry(string section, string key, T defaultValue, string description) { //IL_002e: Unknown result type (might be due to invalid IL or missing references) ConfigEntry val = ((BasePlugin)Instance).Config.Bind(section, key, defaultValue, description); string text = Path.Combine(Paths.ConfigPath, "io.zfolmt.Eclipse.cfg"); ConfigEntry val2 = default(ConfigEntry); if (File.Exists(text) && new ConfigFile(text, true).TryGetEntry(section, key, ref val2)) { val.Value = val2.Value; } return val; } public override bool Unload() { _harmony.UnpatchSelf(); return true; } } internal static class VExtensions { public delegate void WithRefHandler(ref T item); private const string EMPTY_KEY = "LocalizationKey.Empty"; private const string PREFIX = "Entity("; private const int LENGTH = 7; private static EntityManager EntityManager => Core.EntityManager; private static ClientGameManager ClientGameManager => Core.ClientGameManager; private static PrefabCollectionSystem PrefabCollectionSystem => Core.SystemService.PrefabCollectionSystem; public static void With(this Entity entity, WithRefHandler action) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { T item = entity.Read(); action(ref item); EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).SetComponentData(entity, item); } } public static void WithEdit(this Entity entity, int index, WithRefHandler action) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Expected O, but got Unknown bool flag = default(bool); if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else if (!InventoryExtensions.IsIndexWithinRange(ref dynamicBuffer, index)) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Index ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") OoR ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("/"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dynamicBuffer.Length); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") for DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log2.LogWarning(val); } else { T item = dynamicBuffer[index]; action(ref item); dynamicBuffer[index] = item; } } public static void WithInsert(this Entity entity, int index, T element) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Expected O, but got Unknown bool flag = default(bool); if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else if (!InventoryExtensions.IsIndexWithinRange(ref dynamicBuffer, index)) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(37, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Index ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") OoR ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(index); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("/"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(dynamicBuffer.Length); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(") for DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log2.LogWarning(val); } else { dynamicBuffer.Insert(index, element); } } public static void WithAdd(this Entity entity, T element) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else { dynamicBuffer.Add(element); } } public static void WithClear(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Expected O, but got Unknown if (!entity.TryGetBuffer(out var dynamicBuffer)) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Entity is missing DynamicBuffer<"); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(typeof(T)); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(">!"); } log.LogWarning(val); } else { dynamicBuffer.Clear(); } } public static void AddWith(this Entity entity, WithRefHandler action) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { entity.Add(); } entity.With(action); } public static void Write(this Entity entity, T componentData) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).SetComponentData(entity, componentData); } } public static T Read(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; T result = default(T); if (!((EntityManager)(ref entityManager)).TryGetComponentData(entity, ref result)) { return default(T); } return result; } public static T Lookup(this Entity entity, ref ComponentLookup componentLookup) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) T result = default(T); if (!componentLookup.TryGetComponent(entity, ref result)) { return default(T); } return result; } public static bool TryGetBuffer(this Entity entity, out DynamicBuffer dynamicBuffer) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (GameManager_Shared.TryGetBuffer(EntityManager, entity, ref dynamicBuffer)) { return true; } dynamicBuffer = default(DynamicBuffer); return false; } public static DynamicBuffer ReadBuffer(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).GetBuffer(entity, false); } public static DynamicBuffer AddBuffer(this Entity entity) where T : struct { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).AddBuffer(entity); } public static bool TryGetComponent(this Entity entity, out T componentData) where T : struct { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) componentData = default(T); if (entity.Has()) { componentData = entity.Read(); return true; } return false; } public static bool TryGetComponentObject(this Entity entity, EntityManager entityManager, out T componentObject) where T : class { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) componentObject = null; if (((EntityManager)(ref entityManager)).HasComponent(entity)) { componentObject = ((EntityManager)(ref entityManager)).GetComponentObject(entity); return componentObject != null; } return false; } public static bool Has(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).HasComponent(entity); } public static bool HasBuffer(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).HasBuffer(entity); } public static string GetPrefabName(this PrefabGUID prefabGUID) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) if (!LocalizationService.PrefabGuidsToNames.TryGetValue(prefabGUID, out var value)) { return "String.Empty"; } return $"{value} {prefabGUID}"; } public static string GetLocalizedName(this PrefabGUID prefabGUID) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) string nameFromGuidString = LocalizationService.GetNameFromGuidString(LocalizationService.GetGuidString(prefabGUID)); if (!string.IsNullOrEmpty(nameFromGuidString)) { return nameFromGuidString; } return "LocalizationKey.Empty"; } public static void Add(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) if (!entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).AddComponent(entity, new ComponentType(Il2CppType.Of(), (AccessMode)0)); } } public static void Remove(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).RemoveComponent(entity, new ComponentType(Il2CppType.Of(), (AccessMode)0)); } } public static bool TryGetFollowedPlayer(this Entity entity, out Entity player) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) player = Entity.Null; if (entity.TryGetComponent(out Follower componentData) && componentData.Followed._Value.TryGetPlayer(out player)) { return true; } return false; } public static bool TryGetPlayer(this Entity entity, out Entity player) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) player = Entity.Null; if (entity.Has()) { player = entity; return true; } return false; } public static bool IsPlayer(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { return true; } return false; } public static bool IsDifferentPlayer(this Entity entity, Entity target) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) if (entity.IsPlayer() && target.IsPlayer() && !((Entity)(ref entity)).Equals(target)) { return true; } return false; } public static bool IsFollowingPlayer(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Follower componentData) && componentData.Followed._Value.IsPlayer()) { return true; } return false; } public static Entity GetBuffTarget(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) return CreateGameplayEventServerUtility.GetBuffTarget(EntityManager, entity); } public static Entity GetPrefabEntity(this Entity entity) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) return GameManager_Shared.GetPrefabEntity(PrefabCollectionSystem._PrefabLookupMap, entity.GetPrefabGUID()); } public static Entity GetPrefabEntity(this PrefabGUID prefabGuid) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) if (!((PrefabGUID)(ref prefabGuid)).HasValue()) { return Entity.Null; } return GameManager_Shared.GetPrefabEntity(PrefabCollectionSystem._PrefabLookupMap, prefabGuid); } public static Entity GetSpellTarget(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) return CreateGameplayEventServerUtility.GetSpellTarget(EntityManager, entity); } public static bool TryGetTeamEntity(this Entity entity, out Entity teamEntity) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) teamEntity = Entity.Null; if (entity.TryGetComponent(out TeamReference componentData)) { Entity value = componentData.Value._Value; if (value.Exists()) { teamEntity = value; return true; } } return false; } public static bool Exists(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) if (entity.HasValue() && entity.IndexWithinCapacity()) { EntityManager entityManager = EntityManager; return ((EntityManager)(ref entityManager)).Exists(entity); } return false; } public static bool IndexWithinCapacity(this Entity entity) { //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) ReadOnlySpan span = ((object)(Entity)(ref entity)).ToString().AsSpan(); if (!span.StartsWith("Entity(".AsSpan())) { return false; } span = span.Slice(7, span.Length - 7); int num = span.IndexOf(':'); if (num <= 0) { return false; } int result = num + 1; ReadOnlySpan span2 = span.Slice(result, span.Length - result); int num2 = span2.IndexOf(')'); if (num2 <= 0) { return false; } if (!int.TryParse(span.Slice(0, num), out var result2)) { return false; } if (!int.TryParse(span2.Slice(0, num2), out result)) { return false; } EntityManager entityManager = EntityManager; int entityCapacity = ((EntityManager)(ref entityManager)).EntityCapacity; return (uint)result2 < (uint)entityCapacity; } public static bool IsDisabled(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static bool HasConnectedCoffin(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out ServantConnectedCoffin componentData)) { return ((NetworkedEntity)(ref componentData.CoffinEntity)).GetEntityOnServer().Exists(); } return false; } public static bool IsVBlood(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return entity.Has(); } public static ulong GetSteamId(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PlayerCharacter componentData)) { return componentData.UserEntity.Read().PlatformId; } if (entity.TryGetComponent(out User componentData2)) { return componentData2.PlatformId; } return 0uL; } public static NetworkId GetNetworkId(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out NetworkId componentData)) { return componentData; } return NetworkId.Empty; } public static void ForEach(this IEnumerable source, Action action) { foreach (T item in source) { action(item); } } public static PrefabGUID GetPrefabGUID(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PrefabGUID componentData)) { return componentData; } return PrefabGUID.Empty; } public static Entity GetUserEntity(this Entity character) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (character.TryGetComponent(out PlayerCharacter componentData)) { return componentData.UserEntity; } return Entity.Null; } public static User GetUser(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out PlayerCharacter componentData) && componentData.UserEntity.TryGetComponent(out User componentData2)) { return componentData2; } if (entity.TryGetComponent(out componentData2)) { return componentData2; } return User.Empty; } public static Equipment GetEquipment(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Equipment componentData)) { return componentData; } return default(Equipment); } public static CustomizationFeatures GetCustomizationFeatures(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out CustomizationFeatures componentData)) { return componentData; } return default(CustomizationFeatures); } public static T GetExistingDataManaged(this PrefabGUID prefabGuid) where T : class { //IL_000f: Unknown result type (might be due to invalid IL or missing references) T result = default(T); if (((ManagedDataSystem_Base)Core.SystemService.ManagedDataSystem).ManagedDataRegistry.TryGet(prefabGuid, ref result)) { return result; } return null; } public static bool HasBuff(this Entity entity, PrefabGUID buffPrefabGUID) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) return GameManager_Shared.HasBuff(EntityManager, entity, ((PrefabGUID)(ref buffPrefabGUID)).ToIdentifier()); } public static bool TryGetBuff(this Entity entity, PrefabGUID buffPrefabGUID, out Entity buffEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) return GameManager_Shared.TryGetBuff(EntityManager, entity, ((PrefabGUID)(ref buffPrefabGUID)).ToIdentifier(), ref buffEntity); } public static float3 GetAimPosition(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out EntityInput componentData)) { return componentData.AimPosition; } return float3.zero; } public static bool TryGetPosition(this Entity entity, out float3 position) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) position = float3.zero; if (entity.TryGetComponent(out Translation componentData)) { position = componentData.Value; return true; } return false; } public static float3 GetPosition(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out Translation componentData)) { return componentData.Value; } return float3.zero; } public static bool TryGetMatch(this HashSet<(ulong, ulong)> hashSet, ulong value, out (ulong, ulong) matchingPair) { matchingPair = default((ulong, ulong)); foreach (var item in hashSet) { if (item.Item1 == value || item.Item2 == value) { matchingPair = item; return true; } } return false; } public static bool IsCustomSpawned(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) if (entity.TryGetComponent(out IsMinion componentData)) { return componentData.Value; } return false; } public static void Destroy(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) if (entity.Exists()) { DestroyUtility.Destroy(EntityManager, entity, (DestroyDebugReason)0, (string)null, 0); } } public static void SetTeam(this Entity entity, Entity teamSource) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) if (entity.Has() && entity.Has() && teamSource.TryGetComponent(out Team componentData) && teamSource.TryGetComponent(out TeamReference componentData2)) { Entity teamRefEntity = componentData2.Value._Value; int teamId = componentData.Value; entity.With((WithRefHandler)delegate(ref TeamReference teamReference) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) teamReference.Value._Value = teamRefEntity; }); entity.With((WithRefHandler)delegate(ref Team team) { team.Value = teamId; }); } } public static void SetFaction(this Entity entity, PrefabGUID factionPrefabGUID) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) if (entity.Has()) { entity.With((WithRefHandler)delegate(ref FactionReference factionReference) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) factionReference.FactionGuid._Value = factionPrefabGUID; }); } } public static bool HasValue(this Entity entity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) return entity != Entity.Null; } public static bool IsAllies(this Entity entity, Entity player) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) ClientGameManager clientGameManager = ClientGameManager; return ((ClientGameManager)(ref clientGameManager)).IsAllies(entity, player); } public static Coroutine Run(this IEnumerator routine) { return Core.StartCoroutine(routine); } public static void Stop(this Coroutine routine) { if (routine != null) { Core.StopCoroutine(routine); } } public static Dictionary Reverse(this IDictionary source) { Dictionary dictionary = new Dictionary(); foreach (KeyValuePair item in source) { dictionary[item.Value] = item.Key; } return dictionary; } public static bool Equals(this T value, params T[] options) { foreach (T val in options) { if (value.Equals(val)) { return true; } } return false; } public static LocalizationKey LocalizeText(this string text) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) return Core.LocalizeString(text); } public static void PreloadSprite(this string iconName) { CanvasService.DataHUD.SpriteNames.Add(iconName); } public static Sprite GetExistingSprite(this string iconName) { if (!CanvasService.DataHUD.Sprites.TryGetValue(iconName, out var value)) { return null; } return value; } public static bool IsEmpty(this string str) { return string.IsNullOrEmpty(str); } public static bool HasValue(this T obj) where T : class { return obj != null; } public static bool HasValue(this Object obj) { return Object.op_Implicit(obj); } } public static class MyPluginInfo { public const string PLUGIN_GUID = "io.zfolmt.Eclipse"; public const string PLUGIN_NAME = "Eclipse"; public const string PLUGIN_VERSION = "1.3.14"; } } namespace Eclipse.Utilities { internal static class GameObjects { public static TMP_SpriteAsset CreateSpriteAsset(Sprite sprite) { //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Expected O, but got Unknown TMP_SpriteAsset val = ScriptableObject.CreateInstance(); ((Object)val).name = ((Object)sprite).name; val.spriteSheet = (Texture)(object)sprite.texture; if (val.spriteInfoList == null) { val.spriteInfoList = new List(); } else { val.spriteInfoList.Clear(); } TMP_Sprite val2 = new TMP_Sprite { id = 0, name = ((Object)sprite).name, hashCode = TMP_TextUtilities.GetSimpleHashCode(((Object)sprite).name), sprite = sprite, unicode = 57344 }; Rect rect = sprite.rect; ((TMP_TextElement_Legacy)val2).x = ((Rect)(ref rect)).x; rect = sprite.rect; ((TMP_TextElement_Legacy)val2).y = ((Rect)(ref rect)).y; rect = sprite.rect; ((TMP_TextElement_Legacy)val2).width = ((Rect)(ref rect)).width; rect = sprite.rect; ((TMP_TextElement_Legacy)val2).height = ((Rect)(ref rect)).height; Vector2 pivot = sprite.pivot; rect = sprite.rect; val2.pivot = pivot / ((Rect)(ref rect)).size; TMP_Sprite val3 = val2; val.spriteInfoList.Add(val3); val.UpdateLookupTables(); return val; } public static GameObject FindTargetUIObject(Transform root, string targetName) { //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Expected O, but got Unknown Stack<(Transform, int)> stack = new Stack<(Transform, int)>(); stack.Push((root, 0)); HashSet hashSet = new HashSet(); List list = ((IEnumerable)((Component)root).GetComponentsInChildren(true)).ToList(); while (stack.Count > 0) { var (val, num) = stack.Pop(); if (!hashSet.Add(val)) { continue; } if (((Object)((Component)val).gameObject).name.Equals(targetName, StringComparison.OrdinalIgnoreCase)) { return ((Component)val).gameObject; } foreach (Transform item in list) { if ((Object)(object)item.parent == (Object)(object)val) { stack.Push((item, num + 1)); } } } ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("GameObject with name '"); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(targetName); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("' not found!"); } log.LogWarning(val2); return null; } public static void FindLoadedObjects() where T : Object { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Expected O, but got Unknown //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Expected O, but got Unknown Il2CppReferenceArray val = Resources.FindObjectsOfTypeAll(Il2CppType.Of()); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val2 = new BepInExInfoLogInterpolatedStringHandler(10, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Found "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(((Il2CppArrayBase)(object)val).Length); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(" "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(Il2CppType.Of().FullName); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("'s!"); } log.LogInfo(val2); foreach (Object item in (Il2CppArrayBase)(object)val) { ManualLogSource log2 = Core.Log; val2 = new BepInExInfoLogInterpolatedStringHandler(8, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Sprite: "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(item.name); } log2.LogInfo(val2); } } public static void DeactivateChildrenExceptNamed(Transform root, string targetName) { Stack<(Transform, int)> stack = new Stack<(Transform, int)>(); stack.Push((root, 0)); HashSet hashSet = new HashSet(); List list = ((IEnumerable)((Component)root).GetComponentsInChildren()).ToList(); while (stack.Count > 0) { var (val, num) = stack.Pop(); if (!hashSet.Add(val)) { continue; } foreach (Transform item in list) { if ((Object)(object)item.parent == (Object)(object)val) { stack.Push((item, num + 1)); } if (!((Object)item).name.Equals(targetName)) { ((Component)item).gameObject.SetActive(false); } } } } public static void FindGameObjects(Transform root, string filePath = "", bool includeInactive = false) { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Expected O, but got Unknown //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Expected O, but got Unknown //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) Stack<(Transform, int)> stack = new Stack<(Transform, int)>(); stack.Push((root, 0)); HashSet hashSet = new HashSet(); List list = ((IEnumerable)((Component)root).GetComponentsInChildren(includeInactive)).ToList(); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(19, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Found "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(list.Count); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" GameObjects!"); } log.LogWarning(val); Scene scene; if (string.IsNullOrEmpty(filePath)) { while (stack.Count > 0) { var (val2, num) = stack.Pop(); if (!hashSet.Add(val2)) { continue; } List values = FindGameObjectComponents(((Component)val2).gameObject); string text = new string('|', num); ManualLogSource log2 = Core.Log; BepInExInfoLogInterpolatedStringHandler val3 = new BepInExInfoLogInterpolatedStringHandler(8, 4, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(text); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(((Object)((Component)val2).gameObject).name); ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral(" | "); ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(string.Join(",", values)); ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral(" | ["); scene = ((Component)val2).gameObject.scene; ((BepInExLogInterpolatedStringHandler)val3).AppendFormatted(((Scene)(ref scene)).name); ((BepInExLogInterpolatedStringHandler)val3).AppendLiteral("]"); } log2.LogInfo(val3); foreach (Transform item in list) { if ((Object)(object)item.parent == (Object)(object)val2) { stack.Push((item, num + 1)); } } } return; } if (!File.Exists(filePath)) { File.Create(filePath).Dispose(); } using StreamWriter streamWriter = new StreamWriter(filePath, append: false); while (stack.Count > 0) { var (val4, num2) = stack.Pop(); if (!hashSet.Add(val4)) { continue; } List values2 = FindGameObjectComponents(((Component)val4).gameObject); string value = new string('|', num2); DefaultInterpolatedStringHandler defaultInterpolatedStringHandler = new DefaultInterpolatedStringHandler(8, 4); defaultInterpolatedStringHandler.AppendFormatted(value); defaultInterpolatedStringHandler.AppendFormatted(((Object)((Component)val4).gameObject).name); defaultInterpolatedStringHandler.AppendLiteral(" | "); defaultInterpolatedStringHandler.AppendFormatted(string.Join(",", values2)); defaultInterpolatedStringHandler.AppendLiteral(" | ["); scene = ((Component)val4).gameObject.scene; defaultInterpolatedStringHandler.AppendFormatted(((Scene)(ref scene)).name); defaultInterpolatedStringHandler.AppendLiteral("]"); streamWriter.WriteLine(defaultInterpolatedStringHandler.ToStringAndClear()); foreach (Transform item2 in list) { if ((Object)(object)item2.parent == (Object)(object)val4) { stack.Push((item2, num2 + 1)); } } } } public static List FindGameObjectComponents(GameObject parentObject) { List list = new List(); int componentCount = parentObject.GetComponentCount(); for (int i = 0; i < componentCount; i++) { list.Add($"{((Object)parentObject.GetComponentAtIndex(i)).GetIl2CppType().FullName}({i})"); } return list; } public static GameObject FindByTransformPath(string scenePath) { foreach (GameObject item in Resources.FindObjectsOfTypeAll()) { string transformPath = GetTransformPath(item.transform); if (scenePath.Equals(transformPath)) { return item; } } return null; } private static string GetTransformPath(Transform transform) { StringBuilder stringBuilder = new StringBuilder(((Object)transform).name); while (Object.op_Implicit((Object)(object)transform.parent)) { transform = transform.parent; stringBuilder.Insert(0, ((Object)transform).name + "/"); } return stringBuilder.ToString(); } } internal static class ModificationIds { public enum StatSourceType { Weapon, Blood, Class } private const int SOURCE_SHIFT = 30; private const int STAT_SHIFT = 20; private const int SOURCE_MASK = 3; private const int STAT_MASK = 1023; private const int SIGN_SHIFT = 19; private const int SIGN_MASK = 524288; private const int MAG_MASK = 524287; [MethodImpl(MethodImplOptions.AggressiveInlining)] public static int GenerateId(int sourceType, int statType, float value) { if (float.IsNaN(value) || float.IsInfinity(value)) { value = 0f; } int num = Mathf.RoundToInt(value * 1000f); int num2 = ((num < 0) ? 524288 : 0); int num3 = Mathf.Clamp(Mathf.Abs(num), 0, 524287); int num4 = num2 | num3; return ((sourceType & 3) << 30) | ((statType & 0x3FF) << 20) | (num4 & 0xFFFFF); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static int GenerateId(StatSourceType source, int statType, float value) { return GenerateId((int)source, statType, value); } } internal static class Quips { private static FromCharacter? _fromCharacter; private static readonly ComponentType[] _componentTypes = (ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly NetworkEventType _networkEventType = new NetworkEventType { IsAdminEvent = false, EventId = NetworkEvents.EventId_ChatMessageEvent, IsDebugEvent = false }; private static EntityManager EntityManager => Core.EntityManager; private static Entity LocalCharacter => Core.LocalCharacter; private static Entity LocalUser => Core.LocalUser; private static NetworkId NetworkId => LocalUser.GetNetworkId(); public static FromCharacter FromCharacter { get { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) FromCharacter valueOrDefault = _fromCharacter.GetValueOrDefault(); if (!_fromCharacter.HasValue) { FromCharacter val = default(FromCharacter); val.Character = LocalCharacter; val.User = LocalUser; valueOrDefault = val; _fromCharacter = valueOrDefault; return valueOrDefault; } return valueOrDefault; } } public static void SendCommand(string command) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Expected O, but got Unknown ChatMessageEvent val = default(ChatMessageEvent); val.MessageText = new FixedString512Bytes(command); val.MessageType = (ChatMessageType)4; val.ReceiverEntity = NetworkId; ChatMessageEvent componentData = val; EntityManager entityManager = EntityManager; Entity entity = ((EntityManager)(ref entityManager)).CreateEntity(_componentTypes); entity.Write(FromCharacter); entity.Write(_networkEventType); entity.Write(componentData); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val2 = new BepInExInfoLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(command); } log.LogInfo(val2); } } internal static class Recipes { private static readonly PrefabGUID _advancedGrinder = new PrefabGUID(-178579946); private static readonly PrefabGUID _advancedFurnace = new PrefabGUID(-222851985); private static readonly PrefabGUID _fabricator = new PrefabGUID(-465055967); private static readonly PrefabGUID _shardExtractor = new PrefabGUID(1794206684); private static readonly PrefabGUID _gemCuttingTable = new PrefabGUID(-21483617); private static readonly PrefabGUID _refinementInventoryLarge = new PrefabGUID(1436956144); private static readonly PrefabGUID _extractorInventory = new PrefabGUID(-1814907421); private static readonly PrefabGUID _ironBodyRecipe = new PrefabGUID(-1270503528); private static readonly PrefabGUID _vampiricDustRecipe = new PrefabGUID(311920560); private static readonly PrefabGUID _copperWiresRecipe = new PrefabGUID(-2031309726); private static readonly PrefabGUID _silverIngotRecipe = new PrefabGUID(-1633898285); private static readonly PrefabGUID _fakeFlowerRecipe = new PrefabGUID(-2095604835); private static readonly PrefabGUID _chargedBatteryRecipe = new PrefabGUID(-40415372); private static readonly PrefabGUID _batHide = new PrefabGUID(1262845777); private static readonly PrefabGUID _lesserStygian = new PrefabGUID(2103989354); private static readonly PrefabGUID _bloodEssence = new PrefabGUID(862477668); private static readonly PrefabGUID _plantThistle = new PrefabGUID(-598100816); private static readonly PrefabGUID _batteryCharge = new PrefabGUID(-77555820); private static readonly PrefabGUID _techScrap = new PrefabGUID(834864259); private static readonly PrefabGUID _primalEssence = new PrefabGUID(1566989408); private static readonly PrefabGUID _copperWires = new PrefabGUID(-456161884); private static readonly PrefabGUID _itemBuildingEMP = new PrefabGUID(-1447213995); private static readonly PrefabGUID _depletedBattery = new PrefabGUID(1270271716); private static readonly PrefabGUID _itemJewelTemplate = new PrefabGUID(1075994038); private static readonly PrefabGUID _pristineHeart = new PrefabGUID(-1413694594); private static readonly PrefabGUID _radiantFibre = new PrefabGUID(-182923609); private static readonly PrefabGUID _resonator = new PrefabGUID(-1629804427); private static readonly PrefabGUID _document = new PrefabGUID(1334469825); private static readonly PrefabGUID _demonFragment = new PrefabGUID(-77477508); private static readonly PrefabGUID _magicalComponent = new PrefabGUID(1488205677); private static readonly PrefabGUID _tailoringComponent = new PrefabGUID(828271620); private static readonly PrefabGUID _gemGrindStone = new PrefabGUID(2115367516); private static readonly PrefabGUID _perfectAmethyst = new PrefabGUID(-106283194); private static readonly PrefabGUID _perfectEmerald = new PrefabGUID(1354115931); private static readonly PrefabGUID _perfectRuby = new PrefabGUID(188653143); private static readonly PrefabGUID _perfectSapphire = new PrefabGUID(-2020212226); private static readonly PrefabGUID _perfectTopaz = new PrefabGUID(-1983566585); private static readonly PrefabGUID _perfectMiststone = new PrefabGUID(750542699); private static readonly PrefabGUID _goldOre = new PrefabGUID(660533034); private static readonly PrefabGUID _goldJewelry = new PrefabGUID(-1749304196); private static readonly PrefabGUID _extractShardRecipe = new PrefabGUID(1743327679); private static readonly PrefabGUID _solarusShardRecipe = new PrefabGUID(-958598508); private static readonly PrefabGUID _monsterShardRecipe = new PrefabGUID(1791150988); private static readonly PrefabGUID _manticoreShardRecipe = new PrefabGUID(-111826090); private static readonly PrefabGUID _draculaShardRecipe = new PrefabGUID(-414358988); private static readonly PrefabGUID _itemBuildingManticore = new PrefabGUID(-222860772); private static readonly PrefabGUID _solarusShard = new PrefabGUID(-21943750); private static readonly PrefabGUID _monsterShard = new PrefabGUID(-1581189572); private static readonly PrefabGUID _manticoreShard = new PrefabGUID(-1260254082); private static readonly PrefabGUID _draculaShard = new PrefabGUID(666638454); private static readonly PrefabGUID _solarusShardContainer = new PrefabGUID(-824445631); private static readonly PrefabGUID _monsterShardContainer = new PrefabGUID(-1996942061); private static readonly PrefabGUID _manticoreShardContainer = new PrefabGUID(653759442); private static readonly PrefabGUID _draculaShardContainer = new PrefabGUID(1495743889); private static readonly PrefabGUID _primalStygianRecipe = new PrefabGUID(-259193408); private static readonly PrefabGUID _greaterStygian = new PrefabGUID(576389135); private static readonly PrefabGUID _primalStygian = new PrefabGUID(28358550); private static readonly PrefabGUID _bloodCrystalRecipe = new PrefabGUID(-597461125); private static readonly PrefabGUID _crystal = new PrefabGUID(-257494203); private static readonly PrefabGUID _bloodCrystal = new PrefabGUID(-1913156733); private static readonly PrefabGUID _greaterEssence = new PrefabGUID(271594022); private static readonly List _shardRecipes = new List(4) { _solarusShardRecipe, _monsterShardRecipe, _manticoreShardRecipe, _draculaShardRecipe }; private static readonly List _soulShards = new List(4) { _solarusShard, _monsterShard, _manticoreShard, _draculaShard }; private static readonly List _shardContainers = new List(4) { _solarusShardContainer, _monsterShardContainer, _manticoreShardContainer, _draculaShardContainer }; private static readonly Dictionary _recipesToShards = new Dictionary { { _solarusShardRecipe, _solarusShard }, { _monsterShardRecipe, _monsterShard }, { _manticoreShardRecipe, _manticoreShard }, { _draculaShardRecipe, _draculaShard } }; private const string PRIMAL_JEWEL = "Stunlock_Icon_Item_Jewel_Collection4"; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static PrefabCollectionSystem PrefabCollectionSystem => SystemService.PrefabCollectionSystem; private static GameDataSystem GameDataSystem => SystemService.GameDataSystem; private static AssetGuid HashStringToGuidString(string hashString) { //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) using SHA256 sHA = SHA256.Create(); byte[] array = sHA.ComputeHash(Encoding.UTF8.GetBytes(hashString)); return AssetGuid.FromGuid(new Guid(Il2CppStructArray.op_Implicit(array[..16]))); } public static void ModifyRecipes() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0269: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_02a8: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f6: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0483: Unknown result type (might be due to invalid IL or missing references) //IL_0487: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0498: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_054f: Unknown result type (might be due to invalid IL or missing references) //IL_04a8: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c1: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_04ce: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_07fa: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_0803: Unknown result type (might be due to invalid IL or missing references) //IL_06ba: Unknown result type (might be due to invalid IL or missing references) //IL_06bf: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05ec: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0519: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_0836: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_083f: Unknown result type (might be due to invalid IL or missing references) //IL_0844: Unknown result type (might be due to invalid IL or missing references) //IL_084e: Unknown result type (might be due to invalid IL or missing references) //IL_0853: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085c: Unknown result type (might be due to invalid IL or missing references) //IL_0861: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0596: Unknown result type (might be due to invalid IL or missing references) //IL_0598: Unknown result type (might be due to invalid IL or missing references) //IL_059d: Unknown result type (might be due to invalid IL or missing references) //IL_05a2: Unknown result type (might be due to invalid IL or missing references) //IL_05aa: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_058e: Unknown result type (might be due to invalid IL or missing references) //IL_0590: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0899: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a4: Unknown result type (might be due to invalid IL or missing references) //IL_08ac: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08c6: Unknown result type (might be due to invalid IL or missing references) //IL_08d3: Unknown result type (might be due to invalid IL or missing references) //IL_08d8: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_081a: Unknown result type (might be due to invalid IL or missing references) //IL_06e5: Unknown result type (might be due to invalid IL or missing references) //IL_06ea: Unknown result type (might be due to invalid IL or missing references) //IL_06ee: Unknown result type (might be due to invalid IL or missing references) //IL_06f3: Unknown result type (might be due to invalid IL or missing references) //IL_06f8: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0703: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0711: Unknown result type (might be due to invalid IL or missing references) //IL_0719: Unknown result type (might be due to invalid IL or missing references) //IL_0720: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_0726: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_0739: Unknown result type (might be due to invalid IL or missing references) //IL_0746: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_062c: Unknown result type (might be due to invalid IL or missing references) //IL_0631: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0650: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_0677: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0690: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_0926: Unknown result type (might be due to invalid IL or missing references) //IL_092b: Unknown result type (might be due to invalid IL or missing references) //IL_092c: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0940: Unknown result type (might be due to invalid IL or missing references) //IL_0944: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_094f: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_0955: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_0967: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_097c: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_09a3: Unknown result type (might be due to invalid IL or missing references) //IL_09a8: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09b3: Unknown result type (might be due to invalid IL or missing references) //IL_09b8: Unknown result type (might be due to invalid IL or missing references) //IL_09be: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09cb: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09ec: Unknown result type (might be due to invalid IL or missing references) //IL_09f4: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_076a: Unknown result type (might be due to invalid IL or missing references) //IL_076f: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0775: Unknown result type (might be due to invalid IL or missing references) //IL_077a: Unknown result type (might be due to invalid IL or missing references) //IL_0780: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_0787: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_079c: Unknown result type (might be due to invalid IL or missing references) //IL_079e: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b7: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c4: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) NativeParallelHashMap recipeHashLookupMap = GameDataSystem.RecipeHashLookupMap; Entity val = PrefabCollectionSystem._PrefabGuidToEntityMap[_itemBuildingEMP]; EntityManager entityManager = EntityManager; DynamicBuffer val2 = ((EntityManager)(ref entityManager)).AddBuffer(val); val2.Add(new RecipeRequirementBuffer { Guid = _depletedBattery, Amount = 2 }); val2.Add(new RecipeRequirementBuffer { Guid = _techScrap, Amount = 15 }); if (!val.Has()) { val.AddWith((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 20f; }); } val = PrefabCollectionSystem._PrefabGuidToEntityMap[_greaterStygian]; if (!val.Has()) { val.AddWith((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUIDs.Recipe_CastleUpkeep_T02; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 10f; }); } val = PrefabCollectionSystem._PrefabGuidToEntityMap[_greaterEssence]; if (!val.Has()) { val.AddWith((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUIDs.Recipe_CastleUpkeep_T02; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 5f; }); } Entity entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_primalStygianRecipe]; val2 = entity.ReadBuffer(); RecipeRequirementBuffer val3 = val2[0]; val3.Guid = _greaterStygian; val3.Amount = 8; val2[0] = val3; DynamicBuffer val4 = entity.ReadBuffer(); RecipeOutputBuffer val5 = val4[0]; val5.Guid = _primalStygian; val5.Amount = 1; val4[0] = val5; entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.CraftDuration = 10f; recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; }); recipeHashLookupMap[_primalStygianRecipe] = entity.Read(); entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_bloodCrystalRecipe]; val2 = entity.ReadBuffer(); val3 = val2[0]; val3.Guid = _crystal; val3.Amount = 100; val2[0] = val3; val3.Guid = _greaterEssence; val3.Amount = 1; val2.Add(val3); val4 = entity.ReadBuffer(); val5 = val4[0]; val5.Guid = _bloodCrystal; val5.Amount = 100; val4[0] = val5; entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.CraftDuration = 10f; recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; }); recipeHashLookupMap[_bloodCrystalRecipe] = entity.Read(); if (CanvasService.DataHUD.Sprites.TryGetValue("Stunlock_Icon_Item_Jewel_Collection4", out var value)) { ManagedItemData orDefault = ((ManagedDataSystem_Base)Core.SystemService.ManagedDataSystem).ManagedDataRegistry.GetOrDefault(_itemJewelTemplate, (ManagedItemData)null); if (orDefault != null && (Object)(object)value != (Object)null) { AssetGuid val6 = HashStringToGuidString($"{orDefault.Name.Key}{"io.zfolmt.Eclipse"}"); Localization._LocalizedStrings.TryAdd(val6, "Primal Jewel"); orDefault.Name = new LocalizationKey(val6); orDefault.Icon = value; } } Entity entity2 = default(Entity); if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_primalEssence, ref entity2)) { if (!entity2.Has()) { entity2.Add(); } entity2.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 10f; }); if (!entity2.Has()) { entity2.AddBuffer(); } entity2.ReadBuffer().Add(new RecipeRequirementBuffer { Guid = _batteryCharge, Amount = 5 }); } if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_copperWires, ref entity2)) { if (!entity2.Has()) { entity2.Add(); } entity2.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 15f; }); if (!entity2.Has()) { entity2.AddBuffer(); } entity2.ReadBuffer().Add(new RecipeRequirementBuffer { Guid = _batteryCharge, Amount = 1 }); } if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_batHide, ref entity2)) { if (!entity2.Has()) { entity2.Add(); } entity2.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 15f; }); if (!entity2.Has()) { entity2.AddBuffer(); } val2 = entity2.ReadBuffer(); val2.Add(new RecipeRequirementBuffer { Guid = _lesserStygian, Amount = 3 }); val2.Add(new RecipeRequirementBuffer { Guid = _bloodEssence, Amount = 5 }); } if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_goldOre, ref entity2)) { if (!entity2.Has()) { entity2.Add(); } entity2.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 10f; }); if (!entity2.Has()) { entity2.AddBuffer(); } entity2.ReadBuffer().Add(new RecipeRequirementBuffer { Guid = _goldJewelry, Amount = 2 }); } if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_radiantFibre, ref entity2)) { if (!entity2.Has()) { entity2.Add(); } entity2.With((VExtensions.WithRefHandler)delegate(ref Salvageable salvageable) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) salvageable.RecipeGUID = PrefabGUID.Empty; salvageable.SalvageFactor = 1f; salvageable.SalvageTimer = 10f; }); if (!entity2.Has()) { entity2.AddBuffer(); } val2 = entity2.ReadBuffer(); val2.Add(new RecipeRequirementBuffer { Guid = PrefabGUIDs.Item_Ingredient_Gemdust, Amount = 8 }); val2.Add(new RecipeRequirementBuffer { Guid = PrefabGUIDs.Item_Ingredient_Plant_PlantFiber, Amount = 16 }); val2.Add(new RecipeRequirementBuffer { Guid = PrefabGUIDs.Item_Ingredient_Pollen, Amount = 24 }); } Entity entity3 = default(Entity); if (((PrefabGUID)(ref DataService._primalCost)).HasValue() && PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(DataService._primalCost, ref entity3) && entity3.Has()) { entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_extractShardRecipe]; val2 = entity.ReadBuffer(); RecipeRequirementBuffer val7 = val2[0]; val7.Guid = DataService._primalCost; val2[0] = val7; entity.ReadBuffer().Add(new RecipeOutputBuffer { Guid = _itemJewelTemplate, Amount = 1 }); foreach (PrefabGUID shardRecipe in _shardRecipes) { entity = PrefabCollectionSystem._PrefabGuidToEntityMap[shardRecipe]; PrefabGUID guid = _recipesToShards[shardRecipe]; val2 = entity.ReadBuffer(); val2.Add(new RecipeRequirementBuffer { Guid = guid, Amount = 1 }); val2.Add(new RecipeRequirementBuffer { Guid = DataService._primalCost, Amount = 1 }); } } if (PrefabCollectionSystem._PrefabGuidToEntityMap.TryGetValue(_batteryCharge, ref entity2)) { if (entity2.Has()) { entity2.Remove(); } if (entity2.Has()) { entity2.Remove(); } } Entity entity4 = PrefabCollectionSystem._PrefabGuidToEntityMap[_advancedGrinder]; entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_vampiricDustRecipe]; entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; }); recipeHashLookupMap[_vampiricDustRecipe] = entity.Read(); entity4.ReadBuffer().Add(new RefinementstationRecipesBuffer { RecipeGuid = _vampiricDustRecipe, Disabled = false, Unlocked = true }); Entity entity5 = PrefabCollectionSystem._PrefabGuidToEntityMap[_fabricator]; entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_copperWiresRecipe]; entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; recipeData.CraftDuration = 10f; }); recipeHashLookupMap[_copperWiresRecipe] = entity.Read(); entity = PrefabCollectionSystem._PrefabGuidToEntityMap[_chargedBatteryRecipe]; entity.ReadBuffer().Add(new RecipeRequirementBuffer { Guid = _batteryCharge, Amount = 1 }); entity.With((VExtensions.WithRefHandler)delegate(ref RecipeData recipeData) { recipeData.CraftDuration = 90f; recipeData.AlwaysUnlocked = true; recipeData.HideInStation = false; recipeData.HudSortingOrder = 0; }); recipeHashLookupMap[_chargedBatteryRecipe] = entity.Read(); DynamicBuffer val8 = entity5.ReadBuffer(); val8.Add(new RefinementstationRecipesBuffer { RecipeGuid = _copperWiresRecipe, Disabled = false, Unlocked = true }); val8.Add(new RefinementstationRecipesBuffer { RecipeGuid = _chargedBatteryRecipe, Disabled = false, Unlocked = true }); } } internal static class ShadowMatter { public readonly record struct PrimalData(ReadOnlyMemory Items) { public readonly record struct PrimalSettings(float WeaponLevel, float PhysicalPower, float SpellPower, float OffensiveCd, float DefensiveCd, float ProjectileCd, float UltimateCd, float DashCd) { public static PrimalSettings Default { get; } = new PrimalSettings(100f, 35f, 10f, 8f, 10f, 5f, 60f, 6f); public const float WEAPON_LVL = 100f; public const float PHYSICAL_PWR = 35f; public const float SPELL_PWR = 10f; public const float OFFENSIVE_CD = 8f; public const float DEFENSIVE_CD = 10f; public const float PROJECTILE_CD = 5f; public const float ULTIMATE_CD = 60f; public const float DASH_CD = 6f; } internal static PrimalItem[] PrimalItems { get; } = new PrimalItem[2] { new PrimalItem(new PrimalItem.PrimalBase(PrefabGUIDs.Item_Weapon_Spear_T09_ShadowMatter, PrefabGUIDs.EquipBuff_Weapon_Pollaxe_Ability01), PrimalItem.PrimalShared.PowerInfo.Default, PrimalItem.PrimalShared.AbilityInfo.Attack(PrefabGUIDs.AB_Vampire_Spear_Primary_Attack_Group), PrimalItem.PrimalShared.AbilityInfo.Offensive(PrefabGUIDs.AB_Vampire_BloodKnight_SkeweringLeap_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Defensive(PrefabGUIDs.AB_Vampire_BloodKnight_SpearTwirl_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Ultimate(PrefabGUIDs.AB_Vampire_BloodKnight_ThousandSpears_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Dash(PrefabGUIDs.AB_Vampire_BloodKnight_Dash_AbilityGroup), new PrimalItem.PrimalClient.ModelInfo("Part_Dracula_SwordFloor_PLACEHOLDER/DraculaSword_1H_Static"), new PrimalItem.PrimalClient.TooltipInfo("Velvet Thorn")), new PrimalItem(new PrimalItem.PrimalBase(PrefabGUIDs.Item_Weapon_GreatSword_T09_ShadowMatter, PrefabGUIDs.EquipBuff_Weapon_Pollaxe_Ability02), PrimalItem.PrimalShared.PowerInfo.Default, PrimalItem.PrimalShared.AbilityInfo.Attack(PrefabGUIDs.AB_Vampire_GreatSword_Primary_Moving_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Offensive(PrefabGUIDs.AB_HighLord_SwordDashCleave_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Projectile(PrefabGUIDs.AB_HighLord_UnholySkill_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Ultimate(PrefabGUIDs.AB_HighLord_CorpseStorm_AbilityGroup), PrimalItem.PrimalShared.AbilityInfo.Dash(PrefabGUIDs.AB_HighLord_UnholyWarp_AbilityGroup), new PrimalItem.PrimalClient.ModelInfo("Model_Weapon_SanguineGreatsword_Legendary_Unholy_Prefab/SanguineGreatsword_2H_Standard/LOD00_GRP/SteelGreatsword_GEO", HasMesh: true), new PrimalItem.PrimalClient.TooltipInfo("Nightfall Edge")) }; public static PrimalSettings Settings { get; } = PrimalSettings.Default; public ReadOnlySpan.Enumerator GetEnumerator() { return Items.Span.GetEnumerator(); } } public readonly struct PrimalItem { public readonly struct PrimalBase { public readonly int WeaponGuid; public readonly int BuffGuid; public PrimalBase(PrefabGUID itemWeapon, PrefabGUID equipBuff) { WeaponGuid = ((PrefabGUID)(ref itemWeapon)).GuidHash; BuffGuid = ((PrefabGUID)(ref equipBuff)).GuidHash; } } public readonly struct PrimalShared { public readonly struct PowerInfo { public readonly float WeaponLevel; public readonly float PhysicalPower; public readonly float SpellPower; public static readonly PowerInfo Default = new PowerInfo(100f, 35f, 10f); public static readonly PowerInfo Scholar = new PowerInfo(100f, 10f, 35f); public PowerInfo(float weaponLevel, float physicalPower, float spellPower) { WeaponLevel = weaponLevel; PhysicalPower = physicalPower; SpellPower = spellPower; } } public readonly struct AbilityInfo { public readonly PrefabGUID AbilityGroup; public readonly float Cooldown; public AbilityInfo(PrefabGUID abilityGroup, float cooldown = 0f) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) AbilityGroup = abilityGroup; Cooldown = cooldown; } public static AbilityInfo Attack(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup); } public static AbilityInfo Offensive(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 8f); } public static AbilityInfo Defensive(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 10f); } public static AbilityInfo Projectile(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 5f); } public static AbilityInfo Ultimate(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 60f); } public static AbilityInfo Dash(PrefabGUID abilityGroup) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) return new AbilityInfo(abilityGroup, 6f); } } public readonly record struct AbilityData(ReadOnlyMemory AbilityInfos) { public AbilityInfo this[int index] => AbilityInfos.Span[index]; public AbilityData(ReadOnlyMemory AbilityInfos) { this.AbilityInfos = AbilityInfos; } public ReadOnlySpan.Enumerator GetEnumerator() { return AbilityInfos.Span.GetEnumerator(); } public AbilityData(AbilityInfo attack, AbilityInfo primary, AbilityInfo secondary, AbilityInfo ultimate, AbilityInfo dash) : this(new AbilityInfo[5] { attack, primary, secondary, ultimate, dash }) { } [CompilerGenerated] private bool PrintMembers(StringBuilder builder) { builder.Append("AbilityInfos = "); builder.Append(AbilityInfos.ToString()); return true; } } public PowerInfo WeaponPower { get; } public AbilityInfo AttackSlot => AbilityInfos[0]; public AbilityInfo PrimarySlot => AbilityInfos[1]; public AbilityInfo SecondarySlot => AbilityInfos[2]; public AbilityInfo UltimateSlot => AbilityInfos[3]; public AbilityInfo DashSlot => AbilityInfos[4]; internal AbilityData AbilityInfos { get; } public PrimalShared(PowerInfo weaponPower, AbilityInfo attackAbility, AbilityInfo primaryAbility, AbilityInfo secondaryAbility, AbilityInfo ultimateAbility, AbilityInfo dashAbility) { WeaponPower = weaponPower; AbilityInfos = new AbilityData(attackAbility, primaryAbility, secondaryAbility, ultimateAbility, dashAbility); } } public readonly struct PrimalClient { public readonly struct ModelInfo { public readonly string ScenePath; public readonly bool HasMesh; public ModelInfo(string ScenePath, bool HasMesh = false) { this.ScenePath = ScenePath; this.HasMesh = HasMesh; } } public readonly struct TooltipInfo { public readonly string Title; public readonly string Rarity; public readonly string Description; public readonly string Icon; public bool HasText { get { if (Title.IsEmpty()) { return !Description.IsEmpty(); } return true; } } public bool HasSprite => !Icon.IsEmpty(); public TooltipInfo(string title = null, string color = null, string description = null, string icon = null) { Title = title; Rarity = color; Description = description; Icon = icon; if (!icon.IsEmpty()) { icon.PreloadSprite(); } } } public readonly record struct TooltipData(ReadOnlyMemory TooltipInfos) { public TooltipInfo this[int index] => TooltipInfos.Span[index]; public bool HasItemIcon { get { ReadOnlyMemory tooltipInfos = TooltipInfos; if (tooltipInfos.Length > 0) { tooltipInfos = TooltipInfos; return tooltipInfos.Span[0].HasSprite; } return false; } } public bool HasItemText { get { ReadOnlyMemory tooltipInfos = TooltipInfos; if (tooltipInfos.Length > 0) { tooltipInfos = TooltipInfos; return tooltipInfos.Span[0].HasText; } return false; } } public bool HasAbilityIcon { get { ReadOnlySpan span = TooltipInfos.Span; for (int i = 1; i < span.Length; i++) { if (span[i].HasSprite) { return true; } } return false; } } public bool HasAbilityText { get { ReadOnlySpan span = TooltipInfos.Span; for (int i = 1; i < span.Length; i++) { if (!span[i].Title.IsEmpty() || !span[i].Description.IsEmpty()) { return true; } } return false; } } public TooltipData(ReadOnlyMemory TooltipInfos) { this.TooltipInfos = TooltipInfos; } public ReadOnlySpan.Enumerator GetEnumerator() { return TooltipInfos.Span.GetEnumerator(); } public TooltipData(TooltipInfo item, TooltipInfo attack, TooltipInfo primary, TooltipInfo secondary, TooltipInfo ultimate, TooltipInfo dash) : this(new TooltipInfo[6] { item, attack, primary, secondary, ultimate, dash }) { } [CompilerGenerated] private bool PrintMembers(StringBuilder builder) { builder.Append("TooltipInfos = "); builder.Append(TooltipInfos.ToString()); builder.Append(", HasItemIcon = "); builder.Append(HasItemIcon.ToString()); builder.Append(", HasItemText = "); builder.Append(HasItemText.ToString()); builder.Append(", HasAbilityIcon = "); builder.Append(HasAbilityIcon.ToString()); builder.Append(", HasAbilityText = "); builder.Append(HasAbilityText.ToString()); return true; } } public bool HasMesh => WeaponModel.HasMesh; public ModelInfo WeaponModel { get; } public bool HasItemIcon => TooltipInfos.HasItemIcon; public bool HasItemText => TooltipInfos.HasItemText; public bool HasAbilityIcon => TooltipInfos.HasAbilityIcon; public bool HasAbilityText => TooltipInfos.HasAbilityText; public TooltipInfo ItemInfo => TooltipInfos[0]; public TooltipInfo AttackInfo => TooltipInfos[1]; public TooltipInfo PrimaryInfo => TooltipInfos[2]; public TooltipInfo SecondaryInfo => TooltipInfos[3]; public TooltipInfo UltimateInfo => TooltipInfos[4]; public TooltipInfo DashInfo => TooltipInfos[5]; internal TooltipData TooltipInfos { get; } public PrimalClient(ModelInfo weaponModel, TooltipInfo itemInfo, TooltipInfo attackInfo, TooltipInfo primaryInfo, TooltipInfo secondaryInfo, TooltipInfo ultimateInfo, TooltipInfo dashInfo) { WeaponModel = weaponModel; TooltipInfos = new TooltipData(itemInfo, attackInfo, primaryInfo, secondaryInfo, ultimateInfo, dashInfo); } } public PrefabGUID ItemWeapon => new PrefabGUID(WeaponBase.WeaponGuid); public PrefabGUID EquipBuff => new PrefabGUID(WeaponBase.BuffGuid); public PrimalBase WeaponBase { get; } public PrefabGUID AttackGroup => WeaponShared.AttackSlot.AbilityGroup; public PrefabGUID PrimaryGroup => WeaponShared.PrimarySlot.AbilityGroup; public PrefabGUID SecondaryGroup => WeaponShared.SecondarySlot.AbilityGroup; public PrefabGUID UltimateGroup => WeaponShared.UltimateSlot.AbilityGroup; public PrefabGUID DashGroup => WeaponShared.DashSlot.AbilityGroup; public PrimalShared WeaponShared { get; } public PrimalClient WeaponClient { get; } public PrimalItem(PrimalBase weaponBase, PrimalShared.PowerInfo weaponPower = default(PrimalShared.PowerInfo), PrimalShared.AbilityInfo attackAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo primaryAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo secondaryAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo ultimateAbility = default(PrimalShared.AbilityInfo), PrimalShared.AbilityInfo dashAbility = default(PrimalShared.AbilityInfo), PrimalClient.ModelInfo itemModel = default(PrimalClient.ModelInfo), PrimalClient.TooltipInfo itemInfo = default(PrimalClient.TooltipInfo), PrimalClient.TooltipInfo attackInfo = default(PrimalClient.TooltipInfo), PrimalClient.TooltipInfo primaryInfo = default(PrimalClient.TooltipInfo), PrimalClient.TooltipInfo secondaryInfo = default(PrimalClient.TooltipInfo), PrimalClient.TooltipInfo ultimateInfo = default(PrimalClient.TooltipInfo), PrimalClient.TooltipInfo dashInfo = default(PrimalClient.TooltipInfo)) { WeaponBase = weaponBase; WeaponShared = new PrimalShared(weaponPower, attackAbility, primaryAbility, secondaryAbility, ultimateAbility, dashAbility); WeaponClient = new PrimalClient(itemModel, itemInfo, attackInfo, primaryInfo, secondaryInfo, ultimateInfo, dashInfo); } } [CompilerGenerated] private sealed class d__20 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private object <>2__current; object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } [DebuggerHidden] public d__20(int <>1__state) { this.<>1__state = <>1__state; } [DebuggerHidden] void IDisposable.Dispose() { <>1__state = -2; } private bool MoveNext() { switch (<>1__state) { default: return false; case 0: <>1__state = -1; break; case 1: { <>1__state = -1; ReadOnlySpan.Enumerator enumerator = PrimalItems.GetEnumerator(); while (enumerator.MoveNext()) { PrimalItem primalItem = enumerator.Current; RefineMateria(ref primalItem); TravelPath(ref primalItem); ManageAssets(ref primalItem); } break; } } if (!_managedAssets.Any()) { <>2__current = null; <>1__state = 1; return true; } return false; } bool IEnumerator.MoveNext() { //ILSpy generated this explicit interface implementation from .override directive in MoveNext return this.MoveNext(); } [DebuggerHidden] void IEnumerator.Reset() { throw new NotSupportedException(); } } [CompilerGenerated] private sealed class d__26 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private object <>2__current; public PrefabGUID buff; object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } [DebuggerHidden] public d__26(int <>1__state) { this.<>1__state = <>1__state; } [DebuggerHidden] void IDisposable.Dispose() { <>1__state = -2; } private bool MoveNext() { //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) switch (<>1__state) { default: return false; case 0: <>1__state = -1; <>2__current = WaitForSeconds; <>1__state = 1; return true; case 1: { <>1__state = -1; if (!Core.LocalCharacter.HasBuff(buff)) { return false; } Material item = _managedAssets[buff].Material; Mesh item2 = _managedAssets[buff].Mesh; if ((Object)(object)item2 != (Object)null) { GameObject obj = ResolveJoint01(); MeshRenderer val = ((obj != null) ? obj.GetComponent() : null); MeshFilter obj2 = ((obj != null) ? obj.GetComponent() : null); if (val != null) { ((Renderer)val).material = item; } if (val != null) { ((Renderer)val).sharedMaterial = item; } if (obj2 != null) { obj2.mesh = item2; } if (obj2 != null) { obj2.sharedMesh = item2; } } else { GameObject obj3 = ResolveJoint02(); SkinnedMeshRenderer obj4 = ((obj3 != null) ? obj3.GetComponent() : null); if (obj4 != null) { ((Renderer)obj4).material = item; } if (obj4 != null) { ((Renderer)obj4).sharedMaterial = item; } } return false; } } } bool IEnumerator.MoveNext() { //ILSpy generated this explicit interface implementation from .override directive in MoveNext return this.MoveNext(); } [DebuggerHidden] void IEnumerator.Reset() { throw new NotSupportedException(); } } private const string WEAPON_1H_FEMALE = "HybridModels/HYB_VampireFemale_Prefab(Clone)/VampireFemale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Left_Collar_JNT/Left_Shoulder_JNT/Left_Elbow_JNT/Weapon02_JNT"; private const string WEAPON_2H_FEMALE = "HybridModels/HYB_VampireFemale_Prefab(Clone)/VampireFemale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Right_Collar_JNT/Right_Shoulder_JNT/Right_Elbow_JNT/Weapon01_JNT"; private const string WEAPON_1H_MALE = "HybridModels/HYB_VampireMale_Prefab(Clone)/VampireMale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Left_Collar_JNT/Left_Shoulder_JNT/Left_Elbow_JNT/Weapon02_JNT"; private const string WEAPON_2H_MALE = "HybridModels/HYB_VampireMale_Prefab(Clone)/VampireMale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Right_Collar_JNT/Right_Shoulder_JNT/Right_Elbow_JNT/Weapon01_JNT"; private const float WAIT_FOR_SECONDS = 0.25f; private static readonly ConcurrentDictionary _managedAssets; public static readonly ConcurrentDictionary ModelPrefabCache; private static WaitForSeconds WaitForSeconds { get; } = new WaitForSeconds(0.25f); private static PrimalData PrimalItems { get; } = new PrimalData(PrimalData.PrimalItems); private static HashSet EquipBuffs { get; } private static Dictionary BuffWeaponLookup { get; } [IteratorStateMachine(typeof(d__20))] internal static IEnumerator GatherShadows() { //yield-return decompiler failed: Unexpected instruction in Iterator.Dispose() return new d__20(0); } private static void RefineMateria(ref PrimalItem primalItem) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) Entity prefabEntity = primalItem.ItemWeapon.GetPrefabEntity(); PrimalItem.PrimalShared.PowerInfo weaponPower = primalItem.WeaponShared.WeaponPower; prefabEntity.WithEdit(0, (VExtensions.WithRefHandler)delegate(ref ModifyUnitStatBuff_DOTS buff) { buff.Value = weaponPower.PhysicalPower; }); prefabEntity.WithInsert(1, new ModifyUnitStatBuff_DOTS { StatType = (UnitStatType)25, ModificationType = (ModificationType)6, AttributeCapType = (AttributeCapType)0, Value = weaponPower.SpellPower, Modifier = 1f }); } private static void TravelPath(ref PrimalItem primalItem) { //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) PrimalItem.PrimalClient weaponClient = primalItem.WeaponClient; if (weaponClient.WeaponModel.ScenePath.IsEmpty()) { return; } GameObject val = GameObjects.FindByTransformPath(weaponClient.WeaponModel.ScenePath); if (weaponClient.HasMesh) { object obj; if (val == null) { obj = null; } else { MeshRenderer component = val.GetComponent(); obj = ((component != null) ? ((Renderer)component).material : null); } Material val2 = (Material)obj; object obj2; if (val == null) { obj2 = null; } else { MeshFilter component2 = val.GetComponent(); obj2 = ((component2 != null) ? component2.mesh : null); } Mesh val3 = (Mesh)obj2; if ((Object)(object)val2 != (Object)null && (Object)(object)val3 != (Object)null) { _managedAssets[primalItem.EquipBuff] = (val2, val3); } } else { object obj3; if (val == null) { obj3 = null; } else { MeshRenderer component3 = val.GetComponent(); obj3 = ((component3 != null) ? ((Renderer)component3).material : null); } Material val4 = (Material)obj3; if ((Object)(object)val4 != (Object)null) { _managedAssets[primalItem.EquipBuff] = (val4, null); } } } private static void ManageAssets(ref PrimalItem primalItem) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) PrimalItem.PrimalClient weaponClient = primalItem.WeaponClient; ManagedItemData existingDataManaged = primalItem.ItemWeapon.GetExistingDataManaged(); bool hasItemText = weaponClient.HasItemText; bool hasItemIcon = weaponClient.HasItemIcon; if (hasItemText) { string title = weaponClient.ItemInfo.Title; string description = weaponClient.ItemInfo.Description; LocalizationKey name = (LocalizationKey)(((??)title?.LocalizeText()) ?? default(LocalizationKey)); LocalizationKey key = (LocalizationKey)(((??)description?.LocalizeText()) ?? default(LocalizationKey)); if (!((LocalizationKey)(ref name)).IsEmpty && existingDataManaged != null) { existingDataManaged.Name = name; } if (!((LocalizationKey)(ref key)).IsEmpty) { LocalizedStringBuilderBase description2 = existingDataManaged.Description; description2.Key = key; } } if (hasItemIcon) { Sprite existingSprite = weaponClient.ItemInfo.Icon.GetExistingSprite(); if (existingSprite.HasValue()) { existingDataManaged.Icon = existingSprite; } } } internal static void OnLoad() { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) foreach (PrefabGUID equipBuff in EquipBuffs) { if (Core.LocalCharacter.HasBuff(equipBuff) && ShouldOverride(equipBuff)) { YieldChange(equipBuff).Run(); } } } internal static bool ShouldOverride(PrefabGUID buff) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) if (IsPrimalBuff(buff)) { return HasPrimalItem(buff); } return false; } [IteratorStateMachine(typeof(d__26))] internal static IEnumerator YieldChange(PrefabGUID buff) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //yield-return decompiler failed: Unexpected instruction in Iterator.Dispose() return new d__26(0) { buff = buff }; } private static GameObject ResolveJoint01() { GameObject obj = GameObject.Find("HybridModels/HYB_VampireMale_Prefab(Clone)/VampireMale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Right_Collar_JNT/Right_Shoulder_JNT/Right_Elbow_JNT/Weapon01_JNT"); object obj2; if (obj == null) { obj2 = null; } else { Transform transform = obj.transform; if (transform == null) { obj2 = null; } else { Transform child = transform.GetChild(0); if (child == null) { obj2 = null; } else { Transform child2 = child.GetChild(0); if (child2 == null) { obj2 = null; } else { Transform child3 = child2.GetChild(0); if (child3 == null) { obj2 = null; } else { Transform child4 = child3.GetChild(0); obj2 = ((child4 != null) ? ((Component)child4).gameObject : null); } } } } } GameObject val = (GameObject)obj2; if (val == null) { GameObject obj3 = GameObject.Find("HybridModels/HYB_VampireFemale_Prefab(Clone)/VampireFemale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Right_Collar_JNT/Right_Shoulder_JNT/Right_Elbow_JNT/Weapon01_JNT"); object obj4; if (obj3 == null) { obj4 = null; } else { Transform transform2 = obj3.transform; if (transform2 == null) { obj4 = null; } else { Transform child5 = transform2.GetChild(0); if (child5 == null) { obj4 = null; } else { Transform child6 = child5.GetChild(0); if (child6 == null) { obj4 = null; } else { Transform child7 = child6.GetChild(0); if (child7 == null) { obj4 = null; } else { Transform child8 = child7.GetChild(0); obj4 = ((child8 != null) ? ((Component)child8).gameObject : null); } } } } } val = (GameObject)obj4; } return val; } private static GameObject ResolveJoint02() { GameObject obj = GameObject.Find("HybridModels/HYB_VampireMale_Prefab(Clone)/VampireMale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Left_Collar_JNT/Left_Shoulder_JNT/Left_Elbow_JNT/Weapon02_JNT"); object obj2; if (obj == null) { obj2 = null; } else { Transform transform = obj.transform; if (transform == null) { obj2 = null; } else { Transform child = transform.GetChild(0); if (child == null) { obj2 = null; } else { Transform child2 = child.GetChild(1); obj2 = ((child2 != null) ? ((Component)child2).gameObject : null); } } } GameObject val = (GameObject)obj2; if (val == null) { GameObject obj3 = GameObject.Find("HybridModels/HYB_VampireFemale_Prefab(Clone)/VampireFemale_Standard_LOD00_rig/Root_JNT/Pelvis_JNT/Spine_JNT/Gut_JNT/Chest_JNT/Ribcage_JNT/Left_Collar_JNT/Left_Shoulder_JNT/Left_Elbow_JNT/Weapon02_JNT"); object obj4; if (obj3 == null) { obj4 = null; } else { Transform transform2 = obj3.transform; if (transform2 == null) { obj4 = null; } else { Transform child3 = transform2.GetChild(0); if (child3 == null) { obj4 = null; } else { Transform child4 = child3.GetChild(1); obj4 = ((child4 != null) ? ((Component)child4).gameObject : null); } } } val = (GameObject)obj4; } return val; } private static bool HasPrimalItem(PrefabGUID buff) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) PrefabGUID slotId = Core.LocalCharacter.GetEquipment().WeaponSlot.SlotId; PrefabGUID val = BuffWeaponLookup[buff]; return ((PrefabGUID)(ref val)).Equals(slotId); } private static bool IsPrimalBuff(PrefabGUID buff) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) return EquipBuffs.Contains(buff); } internal static void LoadAssets() { } internal static void UnloadAssets() { _managedAssets.Clear(); } static ShadowMatter() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Expected O, but got Unknown //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) HashSet hashSet = new HashSet(); foreach (PrefabGUID item in PrimalData.PrimalItems.Select((PrimalItem data) => data.EquipBuff)) { hashSet.Add(item); } EquipBuffs = hashSet; BuffWeaponLookup = PrimalData.PrimalItems.ToDictionary((PrimalItem data) => data.EquipBuff, (PrimalItem data) => data.ItemWeapon); _managedAssets = new ConcurrentDictionary(); ModelPrefabCache = new ConcurrentDictionary(); } } } namespace Eclipse.Systems { public sealed class FamiliarHealthChangeSystem : SystemBase { private EntityQuery _familiarQuery; private EntityTypeHandle _entityHandle; private ComponentTypeHandle _prefabGuidHandle; private ComponentTypeHandle _healthHandle; internal static FamiliarHealthChangeSystem Instance { get; set; } public override void OnCreate() { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Expected O, but got Unknown //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) Instance = this; EntityQueryDesc[] array = new EntityQueryDesc[1]; EntityQueryDesc val = new EntityQueryDesc(); val.All = Il2CppStructArray.op_Implicit((ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }); array[0] = val; _familiarQuery = ((ComponentSystemBase)this).GetEntityQuery((EntityQueryDesc[])(object)array); ((EntityQuery)(ref _familiarQuery)).SetChangedVersionFilter(ComponentType.ReadOnly(Il2CppType.Of())); _entityHandle = ((ComponentSystemBase)this).GetEntityTypeHandle(); _prefabGuidHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); _healthHandle = ((ComponentSystemBase)this).GetComponentTypeHandle(true); ((ComponentSystemBase)this).RequireForUpdate(_familiarQuery); ((ComponentSystemBase)this).Enabled = true; } public override void OnUpdate() { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) ((EntityTypeHandle)(ref _entityHandle)).Update((SystemBase)(object)this); _prefabGuidHandle.Update((SystemBase)(object)this); _healthHandle.Update((SystemBase)(object)this); NativeArray val = ((EntityQuery)(ref _familiarQuery)).ToArchetypeChunkArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { ArchetypeChunk current = enumerator.Current; NativeArray nativeArray = ((ArchetypeChunk)(ref current)).GetNativeArray(_entityHandle); NativeArray nativeArray2 = ((ArchetypeChunk)(ref current)).GetNativeArray(_prefabGuidHandle); NativeArray nativeArray3 = ((ArchetypeChunk)(ref current)).GetNativeArray(_healthHandle); for (int i = 0; i < ((ArchetypeChunk)(ref current)).Count; i++) { Entity val2 = nativeArray[i]; _ = nativeArray2[i]; _ = nativeArray3[i]; ((SystemBase)this).Exists(val2); } } } finally { val.Dispose(); } } } } namespace Eclipse.Services { internal class CanvasService { public static class InitializeHUD { public static void InitializeUI() { //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) if (ConfigureHUD._experienceBar) { ConfigureHUD.ConfigureHorizontalProgressBar(ref DataHUD._experienceBarGameObject, ref DataHUD._experienceInformationPanel, ref DataHUD._experienceFill, ref DataHUD._experienceText, ref DataHUD._experienceHeader, DataHUD.UIElement.Experience, Color.green, ref DataHUD._experienceFirstText, ref DataHUD._experienceClassText, ref DataHUD._experienceSecondText); } if (ConfigureHUD._legacyBar) { ConfigureHUD.ConfigureHorizontalProgressBar(ref DataHUD._legacyBarGameObject, ref DataHUD._legacyInformationPanel, ref DataHUD._legacyFill, ref DataHUD._legacyText, ref DataHUD._legacyHeader, DataHUD.UIElement.Legacy, Color.red, ref DataHUD._firstLegacyStat, ref DataHUD._secondLegacyStat, ref DataHUD._thirdLegacyStat); } if (ConfigureHUD._expertiseBar) { ConfigureHUD.ConfigureHorizontalProgressBar(ref DataHUD._expertiseBarGameObject, ref DataHUD._expertiseInformationPanel, ref DataHUD._expertiseFill, ref DataHUD._expertiseText, ref DataHUD._expertiseHeader, DataHUD.UIElement.Expertise, Color.grey, ref DataHUD._firstExpertiseStat, ref DataHUD._secondExpertiseStat, ref DataHUD._thirdExpertiseStat); } if (ConfigureHUD._familiarBar) { ConfigureHUD.ConfigureHorizontalProgressBar(ref DataHUD._familiarBarGameObject, ref DataHUD._familiarInformationPanel, ref DataHUD._familiarFill, ref DataHUD._familiarText, ref DataHUD._familiarHeader, DataHUD.UIElement.Familiars, Color.yellow, ref DataHUD._familiarMaxHealth, ref DataHUD._familiarPhysicalPower, ref DataHUD._familiarSpellPower); } if (ConfigureHUD._questTracker) { ConfigureHUD.ConfigureQuestWindow(ref DataHUD._dailyQuestObject, DataHUD.UIElement.Daily, Color.green, ref DataHUD._dailyQuestHeader, ref DataHUD._dailyQuestSubHeader, ref DataHUD._dailyQuestIcon); ConfigureHUD.ConfigureQuestWindow(ref DataHUD._weeklyQuestObject, DataHUD.UIElement.Weekly, Color.magenta, ref DataHUD._weeklyQuestHeader, ref DataHUD._weeklyQuestSubHeader, ref DataHUD._weeklyQuestIcon); } if (ConfigureHUD._professionBars) { ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._alchemyBarGameObject, ref DataHUD._alchemyProgressFill, ref DataHUD._alchemyFill, ref DataHUD._alchemyLevelText, DataService.Profession.Alchemy); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._blacksmithingBarGameObject, ref DataHUD._blacksmithingProgressFill, ref DataHUD._blacksmithingFill, ref DataHUD._blacksmithingLevelText, DataService.Profession.Blacksmithing); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._enchantingBarGameObject, ref DataHUD._enchantingProgressFill, ref DataHUD._enchantingFill, ref DataHUD._enchantingLevelText, DataService.Profession.Enchanting); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._tailoringBarGameObject, ref DataHUD._tailoringProgressFill, ref DataHUD._tailoringFill, ref DataHUD._tailoringLevelText, DataService.Profession.Tailoring); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._fishingBarGameObject, ref DataHUD._fishingProgressFill, ref DataHUD._fishingFill, ref DataHUD._fishingLevelText, DataService.Profession.Fishing); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._harvestingGameObject, ref DataHUD._harvestingProgressFill, ref DataHUD._harvestingFill, ref DataHUD._harvestingLevelText, DataService.Profession.Harvesting); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._miningBarGameObject, ref DataHUD._miningProgressFill, ref DataHUD._miningFill, ref DataHUD._miningLevelText, DataService.Profession.Mining); ConfigureHUD.ConfigureVerticalProgressBar(ref DataHUD._woodcuttingBarGameObject, ref DataHUD._woodcuttingProgressFill, ref DataHUD._woodcuttingFill, ref DataHUD._woodcuttingLevelText, DataService.Profession.Woodcutting); } if (ConfigureHUD._shiftSlot) { ConfigureHUD.ConfigureShiftSlot(ref DataHUD._abilityDummyObject, ref DataHUD._abilityBarEntry, ref DataHUD._uiState, ref DataHUD._cooldownParentObject, ref DataHUD._cooldownText, ref DataHUD._chargesTextObject, ref DataHUD._cooldownFillImage, ref DataHUD._chargesText, ref DataHUD._chargeCooldownFillImage, ref DataHUD._chargeCooldownImageObject, ref DataHUD._abilityEmptyIcon, ref DataHUD._abilityIcon, ref DataHUD._keybindObject); } DataHUD._ready = true; } public static void InitializeAbilitySlotButtons() { foreach (KeyValuePair item in DataHUD.UiElementsConfigured) { if (!item.Value || !DataHUD.AbilitySlotNamePaths.ContainsKey(item.Key)) { continue; } SimpleStunButton val = GameObject.Find(DataHUD.AbilitySlotNamePaths[item.Key]).AddComponent(); GameObject value; if (item.Key.Equals(DataHUD.UIElement.Professions)) { GameObject[] capturedObjects2 = DataHUD.ProfessionObjects.ToArray(); ((UnityEvent)val.onClick).AddListener(UnityAction.op_Implicit((Action)delegate { ToggleHUD.ToggleGameObjects(capturedObjects2); })); } else if (DataHUD.GameObjects.TryGetValue(item.Key, out value)) { GameObject[] capturedObjects = (GameObject[])(object)new GameObject[1] { value }; ((UnityEvent)val.onClick).AddListener(UnityAction.op_Implicit((Action)delegate { ToggleHUD.ToggleGameObjects(capturedObjects); })); } } } public static void InitializeBloodButton() { GameObject val = GameObject.Find("HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/BloodOrbParent/BloodOrb/BlackBackground/Blood"); if ((Object)(object)val != (Object)null) { ((UnityEvent)val.AddComponent().onClick).AddListener(UnityAction.op_Implicit((Action)ToggleHUD.ToggleAllObjects)); } } public static bool InitializeAttributeValues(InventorySubMenu inventorySubMenu) { //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Expected O, but got Unknown //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)inventorySubMenu == (Object)null) { Core.Log.LogError((object)"InventorySubMenu is null!"); return false; } Transform child = ((Component)inventorySubMenu.AttributesParentConsole).transform.parent.parent.GetChild(4).GetChild(0).GetChild(2) .GetChild(0); bool flag = default(bool); foreach (CharacterAttributeSection item in (child != null) ? ((IEnumerable)((Component)child).GetComponentsInChildren(false)).Take(1).Concat(((IEnumerable)((Component)child).GetComponentsInChildren(false)).Skip(2)) : null) { Il2CppArrayBase componentsInChildren = ((Component)((Component)((Component)item).transform.FindChild("AttributesContainer")).gameObject.transform).GetComponentsInChildren(false); int num = 0; if (!((IEnumerable)componentsInChildren).Any()) { return false; } try { foreach (CharacterAttributeEntry item2 in componentsInChildren) { if (!((Object)((Component)item2).gameObject).name.EndsWith("(Clone)")) { continue; } GameObject gameObject = ((Component)((Component)item2).transform.GetChild(0)).gameObject; SimpleStunButton component = gameObject.GetComponent(); if (!((Object)(object)component == (Object)null)) { GameObject gameObject2 = ((Component)gameObject.gameObject.transform.GetChild(0)).gameObject; GameObject gameObject3 = ((Component)gameObject2.transform.GetChild(1)).gameObject; if (UpdateHUD._attributeObjectPrefab == null) { UpdateHUD._attributeObjectPrefab = gameObject3; } UnitStatType type = item.Attributes[num++].Type; GameObject attributeValueClone = UIHelper.InstantiateGameObjectUnderAnchor(UpdateHUD._attributeObjectPrefab, gameObject2.transform); ConfigureHUD.ConfigureAttributeObjects(component, gameObject, gameObject2, gameObject3, attributeValueClone, type); } } } catch (Exception ex) { ManualLogSource log = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(52, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to initialize attribute values for section "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(((Object)item).name); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(": "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); } } return true; } } public static class DataHUD { public enum UIElement { Experience, Legacy, Expertise, Familiars, Professions, Daily, Weekly, ShiftSlot } public static readonly Dictionary RomanNumerals = new Dictionary { { 100, "C" }, { 90, "XC" }, { 50, "L" }, { 40, "XL" }, { 10, "X" }, { 9, "IX" }, { 5, "V" }, { 4, "IV" }, { 1, "I" } }; public static readonly HashSet SpriteNames = new HashSet { "Attribute_TierIndicator_Fixed", "BloodTypeFrame", "BloodTypeIcon_Tiny_Warrior", "BloodIcon_Cursed", "BloodIcon_Small_Cursed", "BloodIcon_Small_Holy", "BloodIcon_Warrior", "BloodIcon_Small_Warrior", "Poneti_Icon_Hammer_30", "Poneti_Icon_Bag", "Poneti_Icon_Res_93", "Stunlock_Icon_Item_Jewel_Collection4", "Stunlock_Icon_Bag_Background_Alchemy", "Poneti_Icon_Alchemy_02_mortar", "Stunlock_Icon_Bag_Background_Jewel", "Poneti_Icon_runic_tablet_12", "Stunlock_Icon_Bag_Background_Woodworking", "Stunlock_Icon_Bag_Background_Herbs", "Poneti_Icon_Herbalism_35_fellherb", "Stunlock_Icon_Bag_Background_Fish", "Poneti_Icon_Cooking_28_fish", "Poneti_Icon_Cooking_60_oceanfish", "Stunlock_Icon_Bag_Background_Armor", "Poneti_Icon_Tailoring_38_fiercloth", "FantasyIcon_ResourceAndCraftAddon (56)", "Stunlock_Icon_Bag_Background_Weapon", "Poneti_Icon_Sword_v2_48", "Poneti_Icon_Hammer_30", "Stunlock_Icon_Bag_Background_Consumable", "Poneti_Icon_Quest_131", "FantasyIcon_Wood_Hallow", "Poneti_Icon_Engineering_59_mega_fishingrod", "Poneti_Icon_Axe_v2_04", "Poneti_Icon_Blacksmith_21_big_grindstone", "FantasyIcon_Flowers (11)", "FantasyIcon_MagicItem (105)", "Item_MagicSource_General_T05_Relic", "Stunlock_Icon_BloodRose", "Poneti_Icon_Blacksmith_24_bigrune_grindstone", "Item_MagicSource_General_T04_FrozenEye", "Stunlock_Icon_SpellPoint_Blood1", "Stunlock_Icon_SpellPoint_Unholy1", "Stunlock_Icon_SpellPoint_Frost1", "Stunlock_Icon_SpellPoint_Chaos1", "Stunlock_Icon_SpellPoint_Frost1", "Stunlock_Icon_SpellPoint_Storm1", "Stunlock_Icon_SpellPoint_Illusion1", "spell_level_icon" }; public const string ABILITY_ICON = "Stunlock_Icon_Ability_Spell_"; public const string NPC_ABILITY = "Ashka_M1_64"; public static readonly Dictionary ProfessionIcons = new Dictionary { { DataService.Profession.Enchanting, "Item_MagicSource_General_T04_FrozenEye" }, { DataService.Profession.Alchemy, "FantasyIcon_MagicItem (105)" }, { DataService.Profession.Harvesting, "Stunlock_Icon_BloodRose" }, { DataService.Profession.Blacksmithing, "Poneti_Icon_Blacksmith_24_bigrune_grindstone" }, { DataService.Profession.Tailoring, "FantasyIcon_ResourceAndCraftAddon (56)" }, { DataService.Profession.Woodcutting, "Poneti_Icon_Axe_v2_04" }, { DataService.Profession.Mining, "Poneti_Icon_Hammer_30" }, { DataService.Profession.Fishing, "Poneti_Icon_Engineering_59_mega_fishingrod" } }; public static readonly Dictionary Sprites = new Dictionary(); public static Sprite _questKillStandardUnit; public static Sprite _questKillVBloodUnit; public static readonly Regex ClassNameRegex = new Regex("(? ClassColorHexMap = new Dictionary { { DataService.PlayerClass.ShadowBlade, new Color(0.6f, 0.1f, 0.9f) }, { DataService.PlayerClass.DemonHunter, new Color(1f, 0.8f, 0f) }, { DataService.PlayerClass.BloodKnight, new Color(1f, 0f, 0f) }, { DataService.PlayerClass.ArcaneSorcerer, new Color(0f, 0.5f, 0.5f) }, { DataService.PlayerClass.VampireLord, new Color(0f, 1f, 1f) }, { DataService.PlayerClass.DeathMage, new Color(0f, 1f, 0f) } }; public const string V1_3 = "1.3"; public static UICanvasBase _canvasBase; public static Canvas _bottomBarCanvas; public static Canvas _targetInfoPanelCanvas; public static string _version = string.Empty; public static GameObject _experienceBarGameObject; public static GameObject _experienceInformationPanel; public static LocalizedText _experienceHeader; public static LocalizedText _experienceText; public static LocalizedText _experienceFirstText; public static LocalizedText _experienceClassText; public static LocalizedText _experienceSecondText; public static Image _experienceFill; public static float _experienceProgress = 0f; public static int _experienceLevel = 0; public static int _experiencePrestige = 0; public static int _experienceMaxLevel = 90; public static DataService.PlayerClass _classType = DataService.PlayerClass.None; public static GameObject _legacyBarGameObject; public static GameObject _legacyInformationPanel; public static LocalizedText _firstLegacyStat; public static LocalizedText _secondLegacyStat; public static LocalizedText _thirdLegacyStat; public static LocalizedText _legacyHeader; public static LocalizedText _legacyText; public static Image _legacyFill; public static string _legacyType; public static float _legacyProgress = 0f; public static int _legacyLevel = 0; public static int _legacyPrestige = 0; public static int _legacyMaxLevel = 100; public static List _legacyBonusStats = new List(3) { "", "", "" }; public static GameObject _expertiseBarGameObject; public static GameObject _expertiseInformationPanel; public static LocalizedText _firstExpertiseStat; public static LocalizedText _secondExpertiseStat; public static LocalizedText _thirdExpertiseStat; public static LocalizedText _expertiseHeader; public static LocalizedText _expertiseText; public static Image _expertiseFill; public static string _expertiseType; public static float _expertiseProgress = 0f; public static int _expertiseLevel = 0; public static int _expertisePrestige = 0; public static int _expertiseMaxLevel = 100; public static List _expertiseBonusStats = new List(3) { "", "", "" }; public static GameObject _familiarBarGameObject; public static GameObject _familiarInformationPanel; public static LocalizedText _familiarMaxHealth; public static LocalizedText _familiarPhysicalPower; public static LocalizedText _familiarSpellPower; public static LocalizedText _familiarHeader; public static LocalizedText _familiarText; public static Image _familiarFill; public static float _familiarProgress = 0f; public static int _familiarLevel = 1; public static int _familiarPrestige = 0; public static int _familiarMaxLevel = 90; public static string _familiarName = ""; public static List _familiarStats = new List(3) { "", "", "" }; public static bool _equipmentBonus = false; public const float MAX_PROFESSION_LEVEL = 100f; public const float EQUIPMENT_BONUS = 0.1f; public static GameObject _enchantingBarGameObject; public static LocalizedText _enchantingLevelText; public static Image _enchantingProgressFill; public static Image _enchantingFill; public static float _enchantingProgress = 0f; public static int _enchantingLevel = 0; public static GameObject _alchemyBarGameObject; public static LocalizedText _alchemyLevelText; public static Image _alchemyProgressFill; public static Image _alchemyFill; public static float _alchemyProgress = 0f; public static int _alchemyLevel = 0; public static GameObject _harvestingGameObject; public static LocalizedText _harvestingLevelText; public static Image _harvestingProgressFill; public static Image _harvestingFill; public static float _harvestingProgress = 0f; public static int _harvestingLevel = 0; public static GameObject _blacksmithingBarGameObject; public static LocalizedText _blacksmithingLevelText; public static Image _blacksmithingProgressFill; public static Image _blacksmithingFill; public static float _blacksmithingProgress = 0f; public static int _blacksmithingLevel = 0; public static GameObject _tailoringBarGameObject; public static LocalizedText _tailoringLevelText; public static Image _tailoringProgressFill; public static Image _tailoringFill; public static float _tailoringProgress = 0f; public static int _tailoringLevel = 0; public static GameObject _woodcuttingBarGameObject; public static LocalizedText _woodcuttingLevelText; public static Image _woodcuttingProgressFill; public static Image _woodcuttingFill; public static float _woodcuttingProgress = 0f; public static int _woodcuttingLevel = 0; public static GameObject _miningBarGameObject; public static LocalizedText _miningLevelText; public static Image _miningProgressFill; public static Image _miningFill; public static float _miningProgress = 0f; public static int _miningLevel = 0; public static GameObject _fishingBarGameObject; public static LocalizedText _fishingLevelText; public static Image _fishingProgressFill; public static Image _fishingFill; public static float _fishingProgress = 0f; public static int _fishingLevel = 0; public static GameObject _dailyQuestObject; public static LocalizedText _dailyQuestHeader; public static LocalizedText _dailyQuestSubHeader; public static Image _dailyQuestIcon; public static DataService.TargetType _dailyTargetType = DataService.TargetType.Kill; public static int _dailyProgress = 0; public static int _dailyGoal = 0; public static string _dailyTarget = ""; public static bool _dailyVBlood = false; public static GameObject _weeklyQuestObject; public static LocalizedText _weeklyQuestHeader; public static LocalizedText _weeklyQuestSubHeader; public static Image _weeklyQuestIcon; public static DataService.TargetType _weeklyTargetType = DataService.TargetType.Kill; public static int _weeklyProgress = 0; public static int _weeklyGoal = 0; public static string _weeklyTarget = ""; public static bool _weeklyVBlood = false; public static PrefabGUID _abilityGroupPrefabGUID; public static AbilityTooltipData _abilityTooltipData; public static readonly ComponentType AbilityTooltipDataComponent = ComponentType.ReadOnly(Il2CppType.Of()); public static GameObject _abilityDummyObject; public static AbilityBarEntry _abilityBarEntry; public static UIState _uiState; public static GameObject _cooldownParentObject; public static TextMeshProUGUI _cooldownText; public static GameObject _chargeCooldownImageObject; public static GameObject _chargesTextObject; public static TextMeshProUGUI _chargesText; public static Image _cooldownFillImage; public static Image _chargeCooldownFillImage; public static GameObject _abilityEmptyIcon; public static GameObject _abilityIcon; public static GameObject _keybindObject; public static int _shiftSpellIndex = -1; public const float COOLDOWN_FACTOR = 8f; public static double _cooldownEndTime = 0.0; public static float _cooldownRemaining = 0f; public static float _cooldownTime = 0f; public static int _currentCharges = 0; public static int _maxCharges = 0; public static double _chargeUpEndTime = 0.0; public static float _chargeUpTime = 0f; public static float _chargeUpTimeRemaining = 0f; public static float _chargeCooldownTime = 0f; public static int _layer; public static int _barNumber; public static int _graphBarNumber; public static float _horizontalBarHeaderFontSize; public static float _windowOffset; public static readonly Color BrightGold = new Color(1f, 0.8f, 0f, 1f); public const float BAR_HEIGHT_SPACING = 0.075f; public const float BAR_WIDTH_SPACING = 0.065f; public static readonly Dictionary GameObjects = new Dictionary(); public static readonly Dictionary ObjectStates = new Dictionary(); public static readonly List ProfessionObjects = new List(); public static readonly Dictionary AbilitySlotNamePaths = new Dictionary { { UIElement.Experience, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_Primary/" }, { UIElement.Legacy, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_WeaponSkill1/" }, { UIElement.Expertise, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_WeaponSkill2/" }, { UIElement.Familiars, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_Travel/" }, { UIElement.Professions, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_Spell1/" }, { UIElement.Weekly, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_Spell2/" }, { UIElement.Daily, "HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/AbilityBarEntry_Ultimate/" } }; public static readonly Dictionary UiElementsConfigured = new Dictionary { { UIElement.Experience, ConfigureHUD._experienceBar }, { UIElement.Legacy, ConfigureHUD._legacyBar }, { UIElement.Expertise, ConfigureHUD._expertiseBar }, { UIElement.Familiars, ConfigureHUD._familiarBar }, { UIElement.Professions, ConfigureHUD._professionBars }, { UIElement.Daily, ConfigureHUD._questTracker }, { UIElement.Weekly, ConfigureHUD._questTracker }, { UIElement.ShiftSlot, ConfigureHUD._shiftSlot } }; public const string FISHING = "Go Fish!"; public static bool _ready = false; public static bool _active = false; public static bool _shiftActive = false; public static bool _killSwitch = false; } public static class UpdateHUD { public static readonly PrefabGUID StatBuff = PrefabGUIDs.SetBonus_AllLeech_T09; public static readonly bool StatBuffActive = ConfigureHUD._legacyBar || ConfigureHUD._expertiseBar; public static readonly HashSet AttributeObjects = new HashSet(); public static GameObject _attributeObjectPrefab; public static readonly Dictionary BloodAttributeTexts = new Dictionary(); public static readonly Dictionary WeaponAttributeTexts = new Dictionary(); public static readonly List BloodStatBuffs = new List(3) { default(ModifyUnitStatBuff_DOTS), default(ModifyUnitStatBuff_DOTS), default(ModifyUnitStatBuff_DOTS) }; public static readonly List WeaponStatBuffs = new List(3) { default(ModifyUnitStatBuff_DOTS), default(ModifyUnitStatBuff_DOTS), default(ModifyUnitStatBuff_DOTS) }; public static HashSet CombinedAttributeTexts { get { HashSet hashSet = new HashSet(); foreach (LocalizedText item in BloodAttributeTexts.Values.Concat(WeaponAttributeTexts.Values)) { hashSet.Add(item); } return hashSet; } } public static void UpdateAttributeType(UnitStatType unitStatType, Sprite sprite) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) if (BloodAttributeTexts.TryGetValue(unitStatType, out var value)) { ConfigureHUD.ConfigureAttributeType(((Component)value).gameObject, sprite); } else if (WeaponAttributeTexts.TryGetValue(unitStatType, out value)) { ConfigureHUD.ConfigureAttributeType(((Component)value).gameObject, sprite); } } public static DynamicBuffer TryGetSourceBuffer() { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0005: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) DynamicBuffer result = default(DynamicBuffer); if (!ModifyUnitStatBuffLookup.TryGetBuffer(LocalCharacter, ref result)) { return default(DynamicBuffer); } return result; } public static void UpdateTargetBuffer(ref DynamicBuffer sourceBuffer) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) DynamicBuffer val = default(DynamicBuffer); if (sourceBuffer.IsCreated && LocalCharacter.TryGetBuff(StatBuff, out var buffEntity) && ModifyUnitStatBuffLookup.TryGetBuffer(buffEntity, ref val)) { val.CopyFrom(sourceBuffer); } } public static void UpdateAttributes(ref DynamicBuffer sourceBuffer) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) if (!InitializationPatches.AttributesInitialized) { InitializationPatches.TryInitializeAttributeValues(); DynamicBuffer val = default(DynamicBuffer); if (InitializationPatches.AttributesInitialized && !ModifyUnitStatBuffLookup.TryGetBuffer(LocalCharacter, ref val)) { EntityManager entityManager = EntityManager; val = ((EntityManager)(ref entityManager)).AddBuffer(LocalCharacter); val.EnsureCapacity(6); val.ResizeUninitialized(6); } } else { if (!sourceBuffer.IsCreated) { return; } foreach (KeyValuePair bloodAttributeText in BloodAttributeTexts) { bloodAttributeText.Value.ForceSet(""); } foreach (KeyValuePair weaponAttributeText in WeaponAttributeTexts) { weaponAttributeText.Value.ForceSet(""); } for (int i = 0; i < sourceBuffer.Length; i++) { ModifyUnitStatBuff_DOTS val2 = sourceBuffer[i]; UnitStatType statType = val2.StatType; int id = val2.Id.Id; float value = val2.Value; if (id == 0 || value == 0f || float.IsNaN(value)) { continue; } if (BloodAttributeTexts.TryGetValue(statType, out var value2)) { string text = UtilitiesHUD.FormatAttributeValue(statType, value); if (text != value2.GetText()) { value2.ForceSet(text); } } else if (WeaponAttributeTexts.TryGetValue(statType, out value2)) { string text2 = UtilitiesHUD.FormatAttributeValue(statType, value); if (text2 != value2.GetText()) { value2.ForceSet(text2); } } } } } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static string GetWeaponStatInfo(int i, string statType) { //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) if (Enum.TryParse(statType, out var result) && DataService._weaponStatValues.TryGetValue(result, out var value)) { float num = UtilitiesHUD.ClassSynergy(result, DataHUD._classType, DataService._classStatSynergies); value *= (1f + DataService._prestigeStatMultiplier * (float)DataHUD._expertisePrestige) * num * ((float)DataHUD._expertiseLevel / (float)DataHUD._expertiseMaxLevel); int num2 = ModificationIds.GenerateId(0, (int)result, value); UnitStatType statType2 = (UnitStatType)Enum.Parse(typeof(UnitStatType), result.ToString()); WeaponStatBuffs[i] = new ModifyUnitStatBuff_DOTS { StatType = statType2, ModificationType = (ModificationType)3, Value = value, Modifier = 1f, IncreaseByStacks = false, ValueByStacks = 0f, Priority = 0, Id = new ModificationId(num2) }; return UtilitiesHUD.FormatWeaponStatBar(result, value); } return string.Empty; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static string GetBloodStatInfo(int i, string statType) { //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) if (Enum.TryParse(statType, out var result) && DataService._bloodStatValues.TryGetValue(result, out var value)) { float num = UtilitiesHUD.ClassSynergy(result, DataHUD._classType, DataService._classStatSynergies); value *= (1f + DataService._prestigeStatMultiplier * (float)DataHUD._legacyPrestige) * num * ((float)DataHUD._legacyLevel / (float)DataHUD._legacyMaxLevel); string result2 = $"{DataService.BloodStatTypeAbbreviations[result]}: {(value * 100f).ToString("F0") + "%"}"; int num2 = ModificationIds.GenerateId(1, (int)result, value); UnitStatType statType2 = (UnitStatType)Enum.Parse(typeof(UnitStatType), result.ToString()); BloodStatBuffs[i] = new ModifyUnitStatBuff_DOTS { StatType = statType2, ModificationType = (ModificationType)3, Value = value, Modifier = 1f, IncreaseByStacks = false, ValueByStacks = 0f, Priority = 0, Id = new ModificationId(num2) }; return result2; } return string.Empty; } public static void UpdateAbilityData(AbilityTooltipData abilityTooltipData, Entity abilityGroupEntity, Entity abilityCastEntity, PrefabGUID abilityGroupPrefabGUID) { //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) if (!DataHUD._abilityDummyObject.active) { DataHUD._abilityDummyObject.SetActive(true); if (DataHUD._uiState.CachedInputVersion != 3) { DataHUD._uiState.CachedInputVersion = 3; } } if (!DataHUD._keybindObject.active) { DataHUD._keybindObject.SetActive(true); } DataHUD._cooldownFillImage.fillAmount = 0f; DataHUD._chargeCooldownFillImage.fillAmount = 0f; DataHUD._abilityGroupPrefabGUID = abilityGroupPrefabGUID; DataHUD._abilityBarEntry.AbilityEntity = abilityGroupEntity; DataHUD._abilityBarEntry.AbilityId = abilityGroupPrefabGUID; DataHUD._abilityBarEntry.AbilityIconImage.sprite = abilityTooltipData.Icon; DataHUD._abilityBarEntry._CurrentUIState.AbilityIconImageActive = true; DataHUD._abilityBarEntry._CurrentUIState.AbilityIconImageSprite = abilityTooltipData.Icon; if (abilityGroupEntity.TryGetComponent(out AbilityChargesData componentData)) { DataHUD._maxCharges = componentData.MaxCharges; } else { DataHUD._maxCharges = 0; DataHUD._currentCharges = 0; ((TMP_Text)DataHUD._chargesText).SetText("", true); } if (abilityCastEntity.TryGetComponent(out AbilityCooldownData componentData2)) { DataHUD._cooldownTime = (DataHUD._shiftSpellIndex.Equals(-1) ? componentData2.Cooldown._Value : ((float)DataHUD._shiftSpellIndex * 8f + 8f)); DataHUD._cooldownEndTime = Core.ServerTime.TimeOnServer + (double)DataHUD._cooldownTime; } } public static void UpdateAbilityState(Entity abilityGroupEntity, Entity abilityCastEntity) { //IL_0000: Unknown result type (might be due to invalid IL or missing references) //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) PrefabGUID prefabGUID = abilityGroupEntity.GetPrefabGUID(); if (((PrefabGUID)(ref prefabGUID)).HasValue() && !((PrefabGUID)(ref prefabGUID)).Equals(DataHUD._abilityGroupPrefabGUID)) { return; } if (abilityCastEntity.TryGetComponent(out AbilityCooldownState componentData)) { DataHUD._cooldownEndTime = (DataHUD._shiftSpellIndex.Equals(-1) ? componentData.CooldownEndTime : DataHUD._cooldownEndTime); } DataHUD._chargeUpTimeRemaining = (float)(DataHUD._chargeUpEndTime - Core.ServerTime.TimeOnServer); DataHUD._cooldownRemaining = (float)(DataHUD._cooldownEndTime - Core.ServerTime.TimeOnServer); if (abilityGroupEntity.TryGetComponent(out AbilityChargesState componentData2)) { DataHUD._currentCharges = componentData2.CurrentCharges; DataHUD._chargeUpTime = componentData2.ChargeTime; DataHUD._chargeUpEndTime = Core.ServerTime.TimeOnServer + (double)DataHUD._chargeUpTime; if (DataHUD._currentCharges == 0) { DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = false; DataHUD._chargeCooldownFillImage.fillAmount = 0f; DataHUD._chargeCooldownImageObject.SetActive(false); ((TMP_Text)DataHUD._chargesText).SetText("", true); ((TMP_Text)DataHUD._cooldownText).SetText($"{(int)DataHUD._chargeUpTime}", true); DataHUD._cooldownFillImage.fillAmount = DataHUD._chargeUpTime / DataHUD._cooldownTime; return; } DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = true; DataHUD._cooldownFillImage.fillAmount = 0f; DataHUD._chargesTextObject.SetActive(true); DataHUD._chargeCooldownImageObject.SetActive(true); ((TMP_Text)DataHUD._cooldownText).SetText("", true); ((TMP_Text)DataHUD._chargesText).SetText($"{DataHUD._currentCharges}", true); DataHUD._chargeCooldownFillImage.fillAmount = 1f - DataHUD._cooldownRemaining / DataHUD._cooldownTime; if (DataHUD._currentCharges == DataHUD._maxCharges) { DataHUD._chargeCooldownFillImage.fillAmount = 0f; } } else if (DataHUD._maxCharges > 0) { if (DataHUD._currentCharges == 0) { DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = true; DataHUD._chargeCooldownFillImage.fillAmount = 0f; DataHUD._chargeCooldownImageObject.SetActive(false); if (DataHUD._chargeUpTimeRemaining < 0f) { ((TMP_Text)DataHUD._cooldownText).SetText("", true); ((TMP_Text)DataHUD._chargesText).SetText("1", true); } else { ((TMP_Text)DataHUD._chargesText).SetText("", true); ((TMP_Text)DataHUD._cooldownText).SetText($"{(int)DataHUD._chargeUpTimeRemaining}", true); } DataHUD._cooldownFillImage.fillAmount = DataHUD._chargeUpTimeRemaining / DataHUD._cooldownTime; if (DataHUD._chargeUpTimeRemaining < 0f) { DataHUD._currentCharges++; DataHUD._cooldownEndTime = Core.ServerTime.TimeOnServer + (double)DataHUD._cooldownTime; } } else if (DataHUD._currentCharges < DataHUD._maxCharges && DataHUD._currentCharges > 0) { ((TMP_Text)DataHUD._cooldownText).SetText("", true); DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = true; DataHUD._cooldownFillImage.fillAmount = 0f; DataHUD._chargesTextObject.SetActive(true); DataHUD._chargeCooldownImageObject.SetActive(true); ((TMP_Text)DataHUD._chargesText).SetText($"{DataHUD._currentCharges}", true); DataHUD._chargeCooldownFillImage.fillAmount = 1f - DataHUD._cooldownRemaining / DataHUD._cooldownTime; if (DataHUD._cooldownRemaining < 0f) { DataHUD._currentCharges++; DataHUD._cooldownEndTime = Core.ServerTime.TimeOnServer + (double)DataHUD._cooldownTime; } } else if (DataHUD._currentCharges == DataHUD._maxCharges) { DataHUD._chargeCooldownImageObject.SetActive(false); ((TMP_Text)DataHUD._cooldownText).SetText("", true); DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = true; DataHUD._cooldownFillImage.fillAmount = 0f; DataHUD._chargeCooldownFillImage.fillAmount = 0f; DataHUD._chargesTextObject.SetActive(true); ((TMP_Text)DataHUD._chargesText).SetText($"{DataHUD._currentCharges}", true); } } else { DataHUD._currentCharges = 0; DataHUD._abilityBarEntry._CurrentUIState.ChargesTextActive = false; DataHUD._chargeCooldownImageObject.SetActive(false); DataHUD._chargeCooldownFillImage.fillAmount = 0f; if (DataHUD._cooldownRemaining < 0f) { ((TMP_Text)DataHUD._cooldownText).SetText("", true); } else { ((TMP_Text)DataHUD._cooldownText).SetText($"{(int)DataHUD._cooldownRemaining}", true); } DataHUD._cooldownFillImage.fillAmount = DataHUD._cooldownRemaining / DataHUD._cooldownTime; } } public static bool UpdateTooltipData(Entity abilityGroupEntity, PrefabGUID abilityGroupPrefabGUID) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) if ((DataHUD._abilityTooltipData == null || DataHUD._abilityGroupPrefabGUID != abilityGroupPrefabGUID) && abilityGroupEntity.TryGetComponentObject(EntityManager, out DataHUD._abilityTooltipData) && DataHUD._abilityTooltipData == null) { EntityManager entityManager = EntityManager; DataHUD._abilityTooltipData = ((EntityManager)(ref entityManager)).GetComponentObject(abilityGroupEntity, DataHUD.AbilityTooltipDataComponent); } return DataHUD._abilityTooltipData != null; } public static void UpdateProfessions(float progress, int level, LocalizedText levelText, Image progressFill, Image fill, DataService.Profession profession) { if (!DataHUD._killSwitch) { if ((float)level == 100f) { progressFill.fillAmount = 1f; fill.fillAmount = 1f; } else { progressFill.fillAmount = progress; fill.fillAmount = (float)level / 100f; } } } public static void UpdateBar(float progress, int level, int maxLevel, int prestiges, LocalizedText levelText, LocalizedText barHeader, Image fill, DataHUD.UIElement element, string type = "") { if (DataHUD._killSwitch) { return; } string text = level.ToString(); if (type == "Frailed" || type == "Familiar") { text = "N/A"; } if (level == maxLevel) { fill.fillAmount = 1f; } else { fill.fillAmount = progress; } if (levelText.GetText() != text) { levelText.ForceSet(text); } if (element.Equals(DataHUD.UIElement.Expertise)) { type = UtilitiesHUD.SplitPascalCase(type); } if (element.Equals(DataHUD.UIElement.Familiars)) { type = UtilitiesHUD.TrimToFirstWord(type); } if (((TMP_Text)barHeader.Text).fontSize != DataHUD._horizontalBarHeaderFontSize) { ((TMP_Text)barHeader.Text).fontSize = DataHUD._horizontalBarHeaderFontSize; } if (ConfigureHUD._showPrestige && prestiges != 0) { string text2 = string.Empty; if (element.Equals(DataHUD.UIElement.Experience)) { text2 = $"{element} {UtilitiesHUD.IntegerToRoman(prestiges)}"; } else if (element.Equals(DataHUD.UIElement.Legacy)) { text2 = type + " " + UtilitiesHUD.IntegerToRoman(prestiges); } else if (element.Equals(DataHUD.UIElement.Expertise)) { text2 = type + " " + UtilitiesHUD.IntegerToRoman(prestiges); } else if (element.Equals(DataHUD.UIElement.Familiars)) { text2 = type + " " + UtilitiesHUD.IntegerToRoman(prestiges); } barHeader.ForceSet(text2); } else if (!string.IsNullOrEmpty(type) && barHeader.GetText() != type) { barHeader.ForceSet(type); } } public static void UpdateClass(DataService.PlayerClass classType, LocalizedText classText) { //IL_0056: Unknown result type (might be due to invalid IL or missing references) if (DataHUD._killSwitch) { return; } if (classType != 0) { if (!((Behaviour)classText).enabled) { ((Behaviour)classText).enabled = true; } if (!((Component)classText).gameObject.active) { ((Component)classText).gameObject.SetActive(true); } string text = UtilitiesHUD.FormatClassName(classType); classText.ForceSet(text); if (DataHUD.ClassColorHexMap.TryGetValue(classType, out var value)) { ((Graphic)classText.Text).color = value; } } else { classText.ForceSet(string.Empty); ((Behaviour)classText).enabled = false; } } public static void UpdateBloodStats(List bonusStats, List statTexts, ref DynamicBuffer buffer, Func getStatInfo) { //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < 3; i++) { if (bonusStats[i] != "None") { if (!((Behaviour)statTexts[i]).enabled) { ((Behaviour)statTexts[i]).enabled = true; } if (!((Component)statTexts[i]).gameObject.active) { ((Component)statTexts[i]).gameObject.SetActive(true); } statTexts[i].ForceSet(getStatInfo(i, bonusStats[i])); if (buffer.IsCreated && BloodStatBuffs[i].Id.Id != 0) { buffer[i] = BloodStatBuffs[i]; } } else if (bonusStats[i] == "None" && ((Behaviour)statTexts[i]).enabled) { statTexts[i].ForceSet(string.Empty); ((Behaviour)statTexts[i]).enabled = false; BloodStatBuffs[i] = default(ModifyUnitStatBuff_DOTS); if (buffer.IsCreated) { buffer[i] = default(ModifyUnitStatBuff_DOTS); } } } } public static void UpdateWeaponStats(List bonusStats, List statTexts, ref DynamicBuffer buffer, Func getStatInfo) { //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < 3; i++) { int num = i + 3; if (bonusStats[i] != "None") { if (!((Behaviour)statTexts[i]).enabled) { ((Behaviour)statTexts[i]).enabled = true; } if (!((Component)statTexts[i]).gameObject.active) { ((Component)statTexts[i]).gameObject.SetActive(true); } statTexts[i].ForceSet(getStatInfo(i, bonusStats[i])); if (buffer.IsCreated && WeaponStatBuffs[i].Id.Id != 0) { buffer[num] = WeaponStatBuffs[i]; } } else if (bonusStats[i] == "None" && ((Behaviour)statTexts[i]).enabled) { statTexts[i].ForceSet(string.Empty); ((Behaviour)statTexts[i]).enabled = false; WeaponStatBuffs[i] = default(ModifyUnitStatBuff_DOTS); if (buffer.IsCreated) { buffer[i] = default(ModifyUnitStatBuff_DOTS); } } } } public static void UpdateFamiliarStats(List familiarStats, List statTexts) { if (DataHUD._killSwitch) { return; } for (int i = 0; i < 3; i++) { if (!string.IsNullOrEmpty(familiarStats[i])) { if (!((Behaviour)statTexts[i]).enabled) { ((Behaviour)statTexts[i]).enabled = true; } if (!((Component)statTexts[i]).gameObject.active) { ((Component)statTexts[i]).gameObject.SetActive(true); } string text = $"{DataService.FamiliarStatStringAbbreviations[i]}: {familiarStats[i]}"; statTexts[i].ForceSet(text); } else if (((Behaviour)statTexts[i]).enabled) { statTexts[i].ForceSet(""); ((Behaviour)statTexts[i]).enabled = false; } } } public static void UpdateQuests(GameObject questObject, LocalizedText questSubHeader, Image questIcon, DataService.TargetType targetType, string target, int progress, int goal, bool isVBlood) { //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) if (DataHUD._killSwitch) { return; } if (progress != goal && DataHUD.ObjectStates[questObject]) { if (!questObject.gameObject.active) { questObject.gameObject.active = true; } if (targetType.Equals(DataService.TargetType.Kill)) { target = UtilitiesHUD.TrimToFirstWord(target); } else if (targetType.Equals(DataService.TargetType.Fish)) { target = "Go Fish!"; } questSubHeader.ForceSet($"{target}: {progress}/{goal}"); switch (targetType) { case DataService.TargetType.Kill: if (!((Component)questIcon).gameObject.active) { ((Component)questIcon).gameObject.active = true; } if (isVBlood && (Object)(object)questIcon.sprite != (Object)(object)DataHUD._questKillVBloodUnit) { questIcon.sprite = DataHUD._questKillVBloodUnit; } else if (!isVBlood && (Object)(object)questIcon.sprite != (Object)(object)DataHUD._questKillStandardUnit) { questIcon.sprite = DataHUD._questKillStandardUnit; } break; case DataService.TargetType.Craft: { if (!((Component)questIcon).gameObject.active) { ((Component)questIcon).gameObject.active = true; } PrefabGUID val = LocalizationService.GetPrefabGuidFromName(target); ManagedItemData orDefault = ManagedDataRegistry.GetOrDefault(val, (ManagedItemData)null); if (orDefault != null && (Object)(object)questIcon.sprite != (Object)(object)orDefault.Icon) { questIcon.sprite = orDefault.Icon; } break; } case DataService.TargetType.Gather: { if (!((Component)questIcon).gameObject.active) { ((Component)questIcon).gameObject.active = true; } PrefabGUID val = LocalizationService.GetPrefabGuidFromName(target); if (target.Equals("Stone")) { val = PrefabGUIDs.Item_Ingredient_Stone; } ManagedItemData orDefault = ManagedDataRegistry.GetOrDefault(val, (ManagedItemData)null); if (orDefault != null && (Object)(object)questIcon.sprite != (Object)(object)orDefault.Icon) { questIcon.sprite = orDefault.Icon; } break; } case DataService.TargetType.Fish: { if (!((Component)questIcon).gameObject.active) { ((Component)questIcon).gameObject.active = true; } ManagedItemData orDefault = ManagedDataRegistry.GetOrDefault(PrefabGUIDs.FakeItem_AnyFish, (ManagedItemData)null); if (orDefault != null && (Object)(object)questIcon.sprite != (Object)(object)orDefault.Icon) { questIcon.sprite = orDefault.Icon; } break; } } } else { questObject.gameObject.active = false; ((Component)questIcon).gameObject.active = false; } } } public static class ToggleHUD { public static readonly Dictionary ActionToggles = new Dictionary { { 0, ExperienceToggle }, { 1, LegacyToggle }, { 2, ExpertiseToggle }, { 3, FamiliarToggle }, { 4, ProfessionToggle }, { 5, DailyQuestToggle }, { 6, WeeklyQuestToggle }, { 7, ShiftSlotToggle } }; private static void DailyQuestToggle() { bool flag = !DataHUD._dailyQuestObject.activeSelf; DataHUD._dailyQuestObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._dailyQuestObject] = flag; } private static void ExperienceToggle() { bool flag = !DataHUD._experienceBarGameObject.activeSelf; DataHUD._experienceBarGameObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._experienceBarGameObject] = flag; } private static void ExpertiseToggle() { bool flag = !DataHUD._expertiseBarGameObject.activeSelf; DataHUD._expertiseBarGameObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._expertiseBarGameObject] = flag; } private static void FamiliarToggle() { bool flag = !DataHUD._familiarBarGameObject.activeSelf; DataHUD._familiarBarGameObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._familiarBarGameObject] = flag; } private static void LegacyToggle() { bool flag = !DataHUD._legacyBarGameObject.activeSelf; DataHUD._legacyBarGameObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._legacyBarGameObject] = flag; } private static void ProfessionToggle() { //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Expected O, but got Unknown //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Expected O, but got Unknown bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val; foreach (GameObject professionObject in DataHUD.ProfessionObjects) { ManualLogSource log = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(31, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Toggling profession object: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(((Object)professionObject).name); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(professionObject.activeSelf); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogWarning(val); bool flag2 = !professionObject.activeSelf; professionObject.SetActive(flag2); DataHUD.ObjectStates[professionObject] = flag2; } ManualLogSource log2 = Core.Log; val = new BepInExWarningLogInterpolatedStringHandler(29, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Toggled profession objects ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(DataHUD.ProfessionObjects.Count); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log2.LogWarning(val); } private static void ShiftSlotToggle() { bool flag = !DataHUD._abilityDummyObject.activeSelf; DataHUD._abilityDummyObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._abilityDummyObject] = flag; } public static void ToggleAllObjects() { DataHUD._active = !DataHUD._active; foreach (GameObject key in DataHUD.ObjectStates.Keys) { key.active = DataHUD._active; DataHUD.ObjectStates[key] = DataHUD._active; } } public static void ToggleGameObjects(params GameObject[] gameObjects) { foreach (GameObject val in gameObjects) { bool flag = !val.activeSelf; val.SetActive(flag); DataHUD.ObjectStates[val] = flag; } } private static void WeeklyQuestToggle() { bool flag = !DataHUD._weeklyQuestObject.activeSelf; DataHUD._weeklyQuestObject.SetActive(flag); DataHUD.ObjectStates[DataHUD._weeklyQuestObject] = flag; } } public static class InputHUD { public readonly struct InputAdaptiveElement { public readonly GameObject AdaptiveObject; public readonly Vector2 KeyboardMouseAnchoredPosition; public readonly Vector2 KeyboardMouseAnchorMin; public readonly Vector2 KeyboardMouseAnchorMax; public readonly Vector2 KeyboardMousePivot; public readonly Vector3 KeyboardMouseScale; public readonly Vector2 ControllerAnchoredPosition; public readonly Vector2 ControllerAnchorMin; public readonly Vector2 ControllerAnchorMax; public readonly Vector2 ControllerPivot; public readonly Vector3 ControllerScale; public InputAdaptiveElement(GameObject adaptiveObject, Vector2 keyboardMousePos, Vector2 keyboardMouseAnchorMin, Vector2 keyboardMouseAnchorMax, Vector2 keyboardMousePivot, Vector3 keyboardMouseScale, Vector2 controllerPos, Vector2 controllerAnchorMin, Vector2 controllerAnchorMax, Vector2 controllerPivot, Vector3 controllerScale) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) AdaptiveObject = adaptiveObject; KeyboardMouseAnchoredPosition = keyboardMousePos; KeyboardMouseAnchorMin = keyboardMouseAnchorMin; KeyboardMouseAnchorMax = keyboardMouseAnchorMax; KeyboardMousePivot = keyboardMousePivot; KeyboardMouseScale = keyboardMouseScale; ControllerAnchoredPosition = controllerPos; ControllerAnchorMin = controllerAnchorMin; ControllerAnchorMax = controllerAnchorMax; ControllerPivot = controllerPivot; ControllerScale = controllerScale; } } private static ControllerType _inputDevice = (ControllerType)0; public static readonly List AdaptiveElements = new List(); public static bool IsGamepad => InputActionSystemPatch.IsGamepad; public static void SyncInputHUD() { if (!(IsGamepad ? ((object)(ControllerType)(ref _inputDevice)).Equals((object)(ControllerType)1) : ((object)(ControllerType)(ref _inputDevice)).Equals((object)(ControllerType)0))) { SyncAdaptiveElements(IsGamepad); } } public static void RegisterAdaptiveElement(GameObject adaptiveObject, Vector2 keyboardMousePos, Vector2 keyboardMouseAnchorMin, Vector2 keyboardMouseAnchorMax, Vector2 keyboardMousePivot, Vector3 keyboardMouseScale, Vector2 controllerPos, Vector2 controllerAnchorMin, Vector2 controllerAnchorMax, Vector2 controllerPivot, Vector3 controllerScale) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)adaptiveObject == (Object)null)) { AdaptiveElements.Add(new InputAdaptiveElement(adaptiveObject, keyboardMousePos, keyboardMouseAnchorMin, keyboardMouseAnchorMax, keyboardMousePivot, keyboardMouseScale, controllerPos, controllerAnchorMin, controllerAnchorMax, controllerPivot, controllerScale)); } } public static void SyncAdaptiveElements(bool isGamepad) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Expected O, but got Unknown //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) _inputDevice = (ControllerType)(isGamepad ? 1 : 0); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(41, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[OnInputDeviceChanged] - ControllerType: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(_inputDevice); } log.LogWarning(val); foreach (InputAdaptiveElement adaptiveElement in AdaptiveElements) { RectTransform component = adaptiveElement.AdaptiveObject.GetComponent(); if (isGamepad) { component.anchorMin = adaptiveElement.ControllerAnchorMin; component.anchorMax = adaptiveElement.ControllerAnchorMax; component.pivot = adaptiveElement.ControllerPivot; component.anchoredPosition = adaptiveElement.ControllerAnchoredPosition; ((Transform)component).localScale = adaptiveElement.ControllerScale; } else { component.anchorMin = adaptiveElement.KeyboardMouseAnchorMin; component.anchorMax = adaptiveElement.KeyboardMouseAnchorMax; component.pivot = adaptiveElement.KeyboardMousePivot; component.anchoredPosition = adaptiveElement.KeyboardMouseAnchoredPosition; ((Transform)component).localScale = adaptiveElement.KeyboardMouseScale; } } } } public static class ConfigureHUD { public static readonly bool _experienceBar = Plugin.Leveling; public static readonly bool _showPrestige = Plugin.Prestige; public static readonly bool _legacyBar = Plugin.Legacies; public static readonly bool _expertiseBar = Plugin.Expertise; public static readonly bool _familiarBar = Plugin.Familiars; public static readonly bool _professionBars = Plugin.Professions; public static readonly bool _questTracker = Plugin.Quests; public static readonly bool _shiftSlot = Plugin.ShiftSlot; public static void ConfigureShiftSlot(ref GameObject shiftSlotObject, ref AbilityBarEntry shiftSlotEntry, ref UIState uiState, ref GameObject cooldownObject, ref TextMeshProUGUI cooldownText, ref GameObject chargeCooldownTextObject, ref Image cooldownFill, ref TextMeshProUGUI chargeCooldownText, ref Image chargeCooldownFillImage, ref GameObject chargeCooldownFillObject, ref GameObject abilityEmptyIcon, ref GameObject abilityIcon, ref GameObject keybindObject) { //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) GameObject val = GameObject.Find("HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/Abilities/AbilityBarEntry_Dummy/"); if ((Object)(object)val != (Object)null) { shiftSlotObject = Object.Instantiate(val); RectTransform component = shiftSlotObject.GetComponent(); RectTransform component2 = GameObject.Find("HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/Abilities/").GetComponent(); Object.DontDestroyOnLoad((Object)(object)shiftSlotObject); SceneManager.MoveGameObjectToScene(shiftSlotObject, SceneManager.GetSceneByName("VRisingWorld")); shiftSlotObject.transform.SetParent((Transform)(object)component2, false); shiftSlotObject.SetActive(false); shiftSlotEntry = shiftSlotObject.GetComponent(); shiftSlotEntry._CurrentUIState.CachedInputVersion = 3; uiState = shiftSlotEntry._CurrentUIState; cooldownObject = GameObjects.FindTargetUIObject((Transform)(object)component, "CooldownParent").gameObject; cooldownText = GameObjects.FindTargetUIObject((Transform)(object)component, "Cooldown").GetComponent(); ((TMP_Text)cooldownText).SetText("", true); ((TMP_Text)cooldownText).alpha = 1f; ((Graphic)cooldownText).color = Color.white; ((Behaviour)cooldownText).enabled = true; cooldownFill = GameObjects.FindTargetUIObject((Transform)(object)component, "CooldownOverlayFill").GetComponent(); cooldownFill.fillAmount = 0f; ((Behaviour)cooldownFill).enabled = true; chargeCooldownFillObject = GameObjects.FindTargetUIObject((Transform)(object)component, "ChargeCooldownImage"); chargeCooldownFillImage = chargeCooldownFillObject.GetComponent(); chargeCooldownFillImage.fillOrigin = 2; chargeCooldownFillImage.fillAmount = 0f; chargeCooldownFillImage.fillMethod = (FillMethod)4; chargeCooldownFillImage.fillClockwise = true; ((Behaviour)chargeCooldownFillImage).enabled = true; chargeCooldownTextObject = GameObjects.FindTargetUIObject((Transform)(object)component, "ChargeCooldown"); chargeCooldownText = chargeCooldownTextObject.GetComponent(); ((TMP_Text)chargeCooldownText).SetText("", true); ((TMP_Text)chargeCooldownText).alpha = 1f; ((Graphic)chargeCooldownText).color = Color.white; ((Behaviour)chargeCooldownText).enabled = true; abilityEmptyIcon = GameObjects.FindTargetUIObject((Transform)(object)component, "EmptyIcon"); abilityEmptyIcon.SetActive(false); abilityIcon = GameObjects.FindTargetUIObject((Transform)(object)component, "Icon"); abilityIcon.SetActive(true); keybindObject = GameObject.Find("HUDCanvas(Clone)/BottomBarCanvas/BottomBar(Clone)/Content/Background/AbilityBar/Abilities/AbilityBarEntry_Dummy(Clone)/KeybindBackground/Keybind/"); TextMeshProUGUI component3 = keybindObject.GetComponent(); ((TMP_Text)component3).SetText("Shift", true); ((Behaviour)component3).enabled = true; DataHUD.ObjectStates.Add(shiftSlotObject, value: true); DataHUD.GameObjects.Add(DataHUD.UIElement.ShiftSlot, shiftSlotObject); SimpleStunButton val2 = shiftSlotObject.AddComponent(); if (ToggleHUD.ActionToggles.TryGetValue(7, out var value)) { ((UnityEvent)val2.onClick).AddListener(UnityAction.op_Implicit((Action)value.Invoke)); } } else { Core.Log.LogWarning((object)"AbilityBarEntry_Dummy is null!"); } } public static void ConfigureQuestWindow(ref GameObject questObject, DataHUD.UIElement questType, Color headerColor, ref LocalizedText header, ref LocalizedText subHeader, ref Image questIcon) { //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_03eb: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_03f1: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fb: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) questObject = Object.Instantiate(((Component)DataHUD._canvasBase.BottomBarParentPrefab.FakeTooltip).gameObject); RectTransform component = questObject.GetComponent(); Object.DontDestroyOnLoad((Object)(object)questObject); SceneManager.MoveGameObjectToScene(questObject, SceneManager.GetSceneByName("VRisingWorld")); ((Transform)component).SetParent(((Component)DataHUD._bottomBarCanvas).transform, false); ((Component)component).gameObject.layer = DataHUD._layer; questObject.SetActive(true); GameObjects.DeactivateChildrenExceptNamed(GameObjects.FindTargetUIObject(questObject.transform, "InformationEntries").transform, "TooltipHeader"); GameObject obj = GameObjects.FindTargetUIObject(questObject.transform, "TooltipHeader"); obj.SetActive(true); GameObject val = GameObjects.FindTargetUIObject(obj.transform, "Icon&Name"); val.SetActive(true); GameObjects.FindTargetUIObject(val.transform, "LevelFrame").SetActive(false); GameObjects.FindTargetUIObject(questObject.transform, "Tooltip_ReforgeCost").SetActive(false); GameObject val2 = GameObjects.FindTargetUIObject(obj.transform, "TooltipIcon"); RectTransform component2 = val2.GetComponent(); component2.anchorMin = new Vector2(component2.anchorMin.x, 0.55f); component2.anchorMax = new Vector2(component2.anchorMax.x, 0.55f); component2.pivot = new Vector2(component2.pivot.x, 0.55f); questIcon = val2.GetComponent(); if (questType.Equals(DataHUD.UIElement.Daily)) { if (DataHUD.Sprites.ContainsKey("BloodIcon_Small_Warrior")) { questIcon.sprite = DataHUD.Sprites["BloodIcon_Small_Warrior"]; } } else if (questType.Equals(DataHUD.UIElement.Weekly) && DataHUD.Sprites.ContainsKey("BloodIcon_Warrior")) { questIcon.sprite = DataHUD.Sprites["BloodIcon_Warrior"]; } component2.sizeDelta = new Vector2(component2.sizeDelta.x * 0.35f, component2.sizeDelta.y * 0.35f); GameObject val3 = GameObjects.FindTargetUIObject(val.transform, "TooltipSubHeader"); header = GameObjects.FindTargetUIObject(val.transform, "TooltipHeader").GetComponent(); TextMeshProUGUI text = header.Text; ((TMP_Text)text).fontSize = ((TMP_Text)text).fontSize * 2f; ((Graphic)header.Text).color = headerColor; subHeader = val3.GetComponent(); ((TMP_Text)subHeader.Text).enableAutoSizing = false; ((TMP_Text)subHeader.Text).autoSizeTextContainer = false; ((TMP_Text)subHeader.Text).enableWordWrapping = false; ContentSizeFitter component3 = val3.GetComponent(); component3.horizontalFit = (FitMode)0; component3.verticalFit = (FitMode)0; component.sizeDelta = new Vector2(component.sizeDelta.x * 0.65f, component.sizeDelta.y); component.anchorMin = new Vector2(1f, DataHUD._windowOffset); component.anchorMax = new Vector2(1f, DataHUD._windowOffset); component.pivot = new Vector2(1f, DataHUD._windowOffset); component.anchoredPosition = new Vector2(0f, DataHUD._windowOffset); Vector2 keyboardMouseAnchorMin = default(Vector2); ((Vector2)(ref keyboardMouseAnchorMin))..ctor(1f, DataHUD._windowOffset); Vector2 keyboardMouseAnchorMax = default(Vector2); ((Vector2)(ref keyboardMouseAnchorMax))..ctor(1f, DataHUD._windowOffset); Vector2 keyboardMousePivot = default(Vector2); ((Vector2)(ref keyboardMousePivot))..ctor(1f, DataHUD._windowOffset); Vector2 keyboardMousePos = default(Vector2); ((Vector2)(ref keyboardMousePos))..ctor(0f, DataHUD._windowOffset); Vector2 controllerAnchorMin = default(Vector2); ((Vector2)(ref controllerAnchorMin))..ctor(0.6f, DataHUD._windowOffset); Vector2 controllerAnchorMax = default(Vector2); ((Vector2)(ref controllerAnchorMax))..ctor(0.6f, DataHUD._windowOffset); Vector2 controllerPivot = default(Vector2); ((Vector2)(ref controllerPivot))..ctor(0.6f, DataHUD._windowOffset); Vector2 controllerPos = default(Vector2); ((Vector2)(ref controllerPos))..ctor(0f, DataHUD._windowOffset); header.ForceSet(questType.ToString() + " Quest"); subHeader.ForceSet("UnitName: 0/0"); DataHUD.GameObjects.Add(questType, questObject); DataHUD.ObjectStates.Add(questObject, value: true); DataHUD._windowOffset += 0.075f; InputHUD.RegisterAdaptiveElement(questObject, keyboardMousePos, keyboardMouseAnchorMin, keyboardMouseAnchorMax, keyboardMousePivot, ((Transform)component).localScale, controllerPos, controllerAnchorMin, controllerAnchorMax, controllerPivot, ((Transform)component).localScale * 0.85f); } public static void ConfigureHorizontalProgressBar(ref GameObject barGameObject, ref GameObject informationPanelObject, ref Image fill, ref LocalizedText level, ref LocalizedText header, DataHUD.UIElement element, Color fillColor, ref LocalizedText firstText, ref LocalizedText secondText, ref LocalizedText thirdText) { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) barGameObject = Object.Instantiate(((Component)DataHUD._canvasBase.TargetInfoParent).gameObject); Object.DontDestroyOnLoad((Object)(object)barGameObject); SceneManager.MoveGameObjectToScene(barGameObject, SceneManager.GetSceneByName("VRisingWorld")); RectTransform component = barGameObject.GetComponent(); ((Transform)component).SetParent(((Component)DataHUD._targetInfoPanelCanvas).transform, false); ((Component)component).gameObject.layer = DataHUD._layer; float num = 0.075f * (float)DataHUD._barNumber; float num2 = 0.935f; component.anchorMin = new Vector2(num2, 0.6f - num); component.anchorMax = new Vector2(num2, 0.6f - num); component.pivot = new Vector2(num2, 0.6f - num); ((Transform)component).localScale = new Vector3(0.7f, 0.7f, 1f); fill = GameObjects.FindTargetUIObject(((Component)component).transform, "Fill").GetComponent(); level = GameObjects.FindTargetUIObject(((Component)component).transform, "LevelText").GetComponent(); header = GameObjects.FindTargetUIObject(((Component)component).transform, "Name").GetComponent(); fill.fillAmount = 0f; ((Graphic)fill).color = fillColor; level.ForceSet("0"); header.ForceSet(element.ToString()); TextMeshProUGUI text = header.Text; ((TMP_Text)text).fontSize = ((TMP_Text)text).fontSize * 1.5f; DataHUD._horizontalBarHeaderFontSize = ((TMP_Text)header.Text).fontSize; GameObjects.FindTargetUIObject(((Component)component).transform, "DamageTakenFill").GetComponent().fillAmount = 0f; GameObjects.FindTargetUIObject(((Component)component).transform, "AbsorbFill").GetComponent().fillAmount = 0f; informationPanelObject = GameObjects.FindTargetUIObject(((Component)component).transform, "InformationPanel"); ConfigureInformationPanel(ref informationPanelObject, ref firstText, ref secondText, ref thirdText, element); DataHUD._barNumber++; barGameObject.SetActive(true); DataHUD.ObjectStates.Add(barGameObject, value: true); DataHUD.GameObjects.Add(element, barGameObject); } public static void ConfigureVerticalProgressBar(ref GameObject barGameObject, ref Image progressFill, ref Image maxFill, ref LocalizedText level, DataService.Profession profession) { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_035a: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_0364: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_0368: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) barGameObject = Object.Instantiate(((Component)DataHUD._canvasBase.TargetInfoParent).gameObject); Object.DontDestroyOnLoad((Object)(object)barGameObject); SceneManager.MoveGameObjectToScene(barGameObject, SceneManager.GetSceneByName("VRisingWorld")); RectTransform component = barGameObject.GetComponent(); ((Transform)component).SetParent(((Component)DataHUD._targetInfoPanelCanvas).transform, false); ((Component)component).gameObject.layer = DataHUD._layer; int num = 8; float num2 = 0.215f / (float)num; float num3 = 0.81624997f + num2 * (float)DataHUD._graphBarNumber / 1.4f; Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0.4f, 1f, 1f); ((Transform)component).localScale = val; float num4 = 0.24f; component.anchorMin = new Vector2(num3, num4); component.anchorMax = new Vector2(num3, num4); component.pivot = new Vector2(num3, num4); progressFill = GameObjects.FindTargetUIObject(((Component)component).transform, "Fill").GetComponent(); progressFill.fillMethod = (FillMethod)0; progressFill.fillOrigin = 0; progressFill.fillAmount = 0f; ((Graphic)progressFill).color = DataService.ProfessionColors[profession]; ((Transform)component).localRotation = Quaternion.Euler(0f, 0f, 90f); level = GameObjects.FindTargetUIObject(((Component)component).transform, "LevelText").GetComponent(); GameObject obj = GameObjects.FindTargetUIObject(((Component)component).transform, "LevelBackground"); Image component2 = obj.GetComponent(); string value; Sprite value2; Sprite val2 = ((DataHUD.ProfessionIcons.TryGetValue(profession, out value) && DataHUD.Sprites.TryGetValue(value, out value2)) ? value2 : component2.sprite); component2.sprite = val2 ?? component2.sprite; ((Graphic)component2).color = new Color(1f, 1f, 1f, 1f); obj.transform.localRotation = Quaternion.Euler(0f, 0f, -90f); obj.transform.localScale = new Vector3(0.25f, 1f, 1f); GameObject obj2 = GameObjects.FindTargetUIObject(((Component)component).transform, "Name"); if (obj2 != null) { obj2.SetActive(false); } GameObject obj3 = GameObjects.FindTargetUIObject(((Component)component).transform, "InformationPanel"); if (obj3 != null) { obj3.SetActive(false); } GameObjects.FindTargetUIObject(((Component)component).transform, "DamageTakenFill").GetComponent().fillAmount = 0f; maxFill = GameObjects.FindTargetUIObject(((Component)component).transform, "AbsorbFill").GetComponent(); maxFill.fillAmount = 0f; ((Component)maxFill).transform.localScale = new Vector3(1f, 0.25f, 1f); ((Graphic)maxFill).color = DataHUD.BrightGold; DataHUD._graphBarNumber++; barGameObject.SetActive(true); ((Component)level).gameObject.SetActive(false); DataHUD.ObjectStates.Add(barGameObject, value: true); DataHUD.ProfessionObjects.Add(barGameObject); float num5 = 0.81624997f + num2 * (float)DataHUD._graphBarNumber / 1.4f; float num6 = num4; Vector2 keyboardMouseAnchorMin = default(Vector2); ((Vector2)(ref keyboardMouseAnchorMin))..ctor(num5, num6); Vector2 keyboardMouseAnchorMax = default(Vector2); ((Vector2)(ref keyboardMouseAnchorMax))..ctor(num5, num6); Vector2 keyboardMousePivot = default(Vector2); ((Vector2)(ref keyboardMousePivot))..ctor(num5, num6); Vector2 zero = Vector2.zero; float num7 = 0.015f; float num8 = 0.6175f + (float)DataHUD._graphBarNumber * num7; float num9 = 0.075f; Vector2 controllerAnchorMin = default(Vector2); ((Vector2)(ref controllerAnchorMin))..ctor(num8, num9); Vector2 controllerAnchorMax = default(Vector2); ((Vector2)(ref controllerAnchorMax))..ctor(num8, num9); Vector2 controllerPivot = default(Vector2); ((Vector2)(ref controllerPivot))..ctor(num8, num9); Vector2 zero2 = Vector2.zero; InputHUD.RegisterAdaptiveElement(barGameObject, zero, keyboardMouseAnchorMin, keyboardMouseAnchorMax, keyboardMousePivot, val, zero2, controllerAnchorMin, controllerAnchorMax, controllerPivot, val * 0.85f); } public static void ConfigureInformationPanel(ref GameObject informationPanelObject, ref LocalizedText firstText, ref LocalizedText secondText, ref LocalizedText thirdText, DataHUD.UIElement element) { if (element == DataHUD.UIElement.Experience) { ConfigureExperiencePanel(ref informationPanelObject, ref firstText, ref secondText, ref thirdText); } else { ConfigureDefaultPanel(ref informationPanelObject, ref firstText, ref secondText, ref thirdText); } } public static void ConfigureExperiencePanel(ref GameObject panel, ref LocalizedText firstText, ref LocalizedText secondText, ref LocalizedText thirdText) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) Vector2 anchoredPosition = panel.GetComponent().anchoredPosition; anchoredPosition.x = -18f; firstText = GameObjects.FindTargetUIObject(panel.transform, "BloodInfo").GetComponent(); firstText.ForceSet(""); ((Behaviour)firstText).enabled = false; GameObject val = GameObjects.FindTargetUIObject(panel.transform, "Affixes"); val.GetComponent().ignoreLayout = false; secondText = val.GetComponent(); secondText.ForceSet(""); TextMeshProUGUI text = secondText.Text; ((TMP_Text)text).fontSize = ((TMP_Text)text).fontSize * 1.2f; ((Behaviour)secondText).enabled = false; thirdText = GameObjects.FindTargetUIObject(panel.transform, "PlatformUserName").GetComponent(); thirdText.ForceSet(""); ((Behaviour)thirdText).enabled = false; } public static void ConfigureDefaultPanel(ref GameObject panel, ref LocalizedText firstText, ref LocalizedText secondText, ref LocalizedText thirdText) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) Vector2 anchoredPosition = panel.GetComponent().anchoredPosition; anchoredPosition.x = -18f; firstText = GameObjects.FindTargetUIObject(panel.transform, "BloodInfo").GetComponent(); firstText.ForceSet(""); TextMeshProUGUI text = firstText.Text; ((TMP_Text)text).fontSize = ((TMP_Text)text).fontSize * 1.1f; ((Behaviour)firstText).enabled = false; GameObject val = GameObjects.FindTargetUIObject(panel.transform, "Affixes"); val.GetComponent().ignoreLayout = false; secondText = val.GetComponent(); secondText.ForceSet(""); TextMeshProUGUI text2 = secondText.Text; ((TMP_Text)text2).fontSize = ((TMP_Text)text2).fontSize * 1.1f; ((Behaviour)secondText).enabled = false; thirdText = GameObjects.FindTargetUIObject(panel.transform, "PlatformUserName").GetComponent(); thirdText.ForceSet(""); TextMeshProUGUI text3 = thirdText.Text; ((TMP_Text)text3).fontSize = ((TMP_Text)text3).fontSize * 1.1f; ((Behaviour)thirdText).enabled = false; } public static void ConfigureAttributeType(GameObject attributeSpriteClone, Sprite sprite) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) TextMeshProUGUI component = attributeSpriteClone.GetComponent(); ((TMP_Text)component).spriteAsset = GameObjects.CreateSpriteAsset(sprite); ((TMP_Text)component).m_spriteColor = Color32.op_Implicit(Color.white); LayoutElement component2 = attributeSpriteClone.GetComponent(); LocalizedText component3 = attributeSpriteClone.GetComponent(); component2.flexibleWidth = 1f; attributeSpriteClone.transform.SetSiblingIndex(1); ((TMP_Text)component).autoSizeTextContainer = true; ((TMP_Text)component).enableWordWrapping = false; component3.ForceSet(string.Empty); attributeSpriteClone.SetActive(true); } public static void ConfigureAttributeSynergy(GameObject attributeSynergyClone, Sprite sprite) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) TextMeshProUGUI component = attributeSynergyClone.GetComponent(); ((TMP_Text)component).spriteAsset = GameObjects.CreateSpriteAsset(sprite); ((TMP_Text)component).m_spriteColor = Color32.op_Implicit(Color.white); LayoutElement component2 = attributeSynergyClone.GetComponent(); LocalizedText component3 = attributeSynergyClone.GetComponent(); component2.flexibleWidth = 1f; component3.ForceSet(string.Empty); attributeSynergyClone.transform.SetSiblingIndex(1); ((TMP_Text)component).autoSizeTextContainer = true; ((TMP_Text)component).enableWordWrapping = false; attributeSynergyClone.SetActive(true); } public static void ConfigureAttributeButton(SimpleStunButton button, string command) { ((UnityEvent)button.onClick).AddListener(UnityAction.op_Implicit((Action)delegate { Quips.SendCommand(command); })); } public static void ConfigureAttributeObjects(SimpleStunButton simpleStunButton, GameObject attributeEntryObject, GameObject gameObject, GameObject attributeValue, GameObject attributeValueClone, UnitStatType unitStatType) { //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Expected O, but got Unknown //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Expected O, but got Unknown //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) HorizontalLayoutGroup component = gameObject.GetComponent(); TextMeshProUGUI component2 = attributeValue.GetComponent(); Image component3 = attributeEntryObject.GetComponent(); LayoutElement component4 = attributeValueClone.GetComponent(); LocalizedText component5 = attributeValueClone.GetComponent(); bool flag = false; bool flag2 = default(bool); if (Enum.TryParse(((object)(UnitStatType)(ref unitStatType)).ToString(), ignoreCase: true, out var result) && DataService._bloodStatValues.ContainsKey(result)) { ConfigureAttributeButton(simpleStunButton, $".bl cst {result}"); ((Graphic)component3).color = Color.red; UpdateHUD.BloodAttributeTexts[unitStatType] = component5; UpdateHUD.AttributeObjects.Add(attributeValueClone); ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(28, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Registered Blood Attribute: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(unitStatType); } log.LogWarning(val); flag = true; } if (Enum.TryParse(((object)(UnitStatType)(ref unitStatType)).ToString(), ignoreCase: true, out var result2) && DataService._weaponStatValues.ContainsKey(result2)) { ConfigureAttributeButton(simpleStunButton, $".wep cst {result2}"); ((Graphic)component3).color = Color.grey; UpdateHUD.WeaponAttributeTexts[unitStatType] = component5; UpdateHUD.AttributeObjects.Add(attributeValueClone); ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(29, 1, ref flag2); if (flag2) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Registered Weapon Attribute: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(unitStatType); } log2.LogWarning(val); flag = true; } if (!flag) { UpdateHUD.AttributeObjects.Add(attributeValueClone); } ((HorizontalOrVerticalLayoutGroup)component).childForceExpandWidth = false; component4.flexibleWidth = 1f; attributeValueClone.transform.SetSiblingIndex(1); ((TMP_Text)component2).autoSizeTextContainer = true; ((TMP_Text)component2).enableWordWrapping = false; component5.ForceSet(string.Empty); attributeValueClone.SetActive(true); } } public static class UtilitiesHUD { public static float ClassSynergy(T statType, DataService.PlayerClass classType, Dictionary WeaponStatTypes, List BloodStatTypes)> classStatSynergy) { if (classType.Equals(DataService.PlayerClass.None)) { return 1f; } if (typeof(T) == typeof(DataService.WeaponStatType) && classStatSynergy[classType].WeaponStatTypes.Contains((DataService.WeaponStatType)(object)statType)) { return DataService._classStatMultiplier; } if (typeof(T) == typeof(DataService.BloodStatType) && classStatSynergy[classType].BloodStatTypes.Contains((DataService.BloodStatType)(object)statType)) { return DataService._classStatMultiplier; } return 1f; } public static string FormatWeaponStatBar(DataService.WeaponStatType weaponStat, float statValue) { string value = DataService.WeaponStatFormats[weaponStat] switch { "integer" => ((int)statValue).ToString(), "decimal" => statValue.ToString("0.#"), "percentage" => (statValue * 100f).ToString("0.#") + "%", _ => statValue.ToString(), }; return $"{DataService.WeaponStatTypeAbbreviations[weaponStat]}: {value}"; } public static string FormatAttributeValue(UnitStatType unitStatType, float statValue) { string result = $"+{statValue * 100f:F0}%"; if (Enum.TryParse(((object)(UnitStatType)(ref unitStatType)).ToString(), out var result2)) { result = FormatWeaponAttribute(result2, statValue); } return result; } public static string FormatWeaponAttribute(DataService.WeaponStatType weaponStat, float statValue) { return "+" + DataService.WeaponStatFormats[weaponStat] switch { "integer" => ((int)statValue).ToString(), "decimal" => statValue.ToString("0.#"), "percentage" => (statValue * 100f).ToString("0.#") + "%", _ => statValue.ToString(), } + ""; } public static string IntegerToRoman(int num) { string text = string.Empty; foreach (KeyValuePair romanNumeral in DataHUD.RomanNumerals) { while (num >= romanNumeral.Key) { text += romanNumeral.Value; num -= romanNumeral.Key; } } return text; } public static string FormatClassName(DataService.PlayerClass classType) { return DataHUD.ClassNameRegex.Replace(classType.ToString(), " $1"); } public static string TrimToFirstWord(string input) { int num = input.IndexOf(' '); int num2 = input.IndexOf(' ', num + 1); bool flag = input.StartsWith("Sir") || input.StartsWith("Lord") || input.StartsWith("General") || input.StartsWith("Baron"); if (num > 0 && num2 > 0) { if (flag) { return input.Substring(0, num2); } return input.Substring(0, num); } return input; } public static string SplitPascalCase(string input) { return Extensions.SpacedPascalCase(input); } public static void FindSprites() { foreach (Sprite item in Resources.FindObjectsOfTypeAll()) { if (DataHUD.SpriteNames.Contains(((Object)item).name) && !DataHUD.Sprites.ContainsKey(((Object)item).name)) { DataHUD.Sprites[((Object)item).name] = item; if (((Object)item).name.Equals("BloodIcon_Cursed") && (Object)(object)DataHUD._questKillVBloodUnit == (Object)null) { DataHUD._questKillVBloodUnit = item; } if (((Object)item).name.Equals("BloodIcon_Warrior") && (Object)(object)DataHUD._questKillStandardUnit == (Object)null) { DataHUD._questKillStandardUnit = item; } } } } } [CompilerGenerated] private sealed class d__21 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private object <>2__current; object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } [DebuggerHidden] public d__21(int <>1__state) { this.<>1__state = <>1__state; } [DebuggerHidden] void IDisposable.Dispose() { <>1__state = -2; } private bool MoveNext() { //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Expected O, but got Unknown //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Expected O, but got Unknown //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Expected O, but got Unknown //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Expected O, but got Unknown //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Expected O, but got Unknown //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Expected O, but got Unknown //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Expected O, but got Unknown //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Expected O, but got Unknown //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Expected O, but got Unknown //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_0544: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) switch (<>1__state) { default: return false; case 0: <>1__state = -1; break; case 1: <>1__state = -1; break; case 2: <>1__state = -1; break; } if (DataHUD._killSwitch) { return false; } if (!DataHUD._ready || !DataHUD._active) { <>2__current = WaitForSeconds; <>1__state = 1; return true; } bool flag = default(bool); if (ConfigureHUD._experienceBar) { try { UpdateHUD.UpdateBar(DataHUD._experienceProgress, DataHUD._experienceLevel, DataHUD._experienceMaxLevel, DataHUD._experiencePrestige, DataHUD._experienceText, DataHUD._experienceHeader, DataHUD._experienceFill, DataHUD.UIElement.Experience); UpdateHUD.UpdateClass(DataHUD._classType, DataHUD._experienceClassText); } catch (Exception ex) { ManualLogSource log = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(31, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating experience bar: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); } } DynamicBuffer buffer = UpdateHUD.TryGetSourceBuffer(); if (ConfigureHUD._legacyBar) { try { UpdateHUD.UpdateBar(DataHUD._legacyProgress, DataHUD._legacyLevel, DataHUD._legacyMaxLevel, DataHUD._legacyPrestige, DataHUD._legacyText, DataHUD._legacyHeader, DataHUD._legacyFill, DataHUD.UIElement.Legacy, DataHUD._legacyType); UpdateHUD.UpdateBloodStats(DataHUD._legacyBonusStats, new List(3) { DataHUD._firstLegacyStat, DataHUD._secondLegacyStat, DataHUD._thirdLegacyStat }, ref buffer, UpdateHUD.GetBloodStatInfo); } catch (Exception ex2) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(27, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating legacy bar: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex2); } log2.LogError(val); } } if (ConfigureHUD._expertiseBar) { try { UpdateHUD.UpdateBar(DataHUD._expertiseProgress, DataHUD._expertiseLevel, DataHUD._expertiseMaxLevel, DataHUD._expertisePrestige, DataHUD._expertiseText, DataHUD._expertiseHeader, DataHUD._expertiseFill, DataHUD.UIElement.Expertise, DataHUD._expertiseType); UpdateHUD.UpdateWeaponStats(DataHUD._expertiseBonusStats, new List(3) { DataHUD._firstExpertiseStat, DataHUD._secondExpertiseStat, DataHUD._thirdExpertiseStat }, ref buffer, UpdateHUD.GetWeaponStatInfo); } catch (Exception ex3) { ManualLogSource log3 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(30, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating expertise bar: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex3); } log3.LogError(val); } } if (UpdateHUD.StatBuffActive) { try { UpdateHUD.UpdateTargetBuffer(ref buffer); UpdateHUD.UpdateAttributes(ref buffer); } catch (Exception ex4) { ManualLogSource log4 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(27, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating stats buff: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex4); } log4.LogError(val); } } if (ConfigureHUD._familiarBar) { try { UpdateHUD.UpdateBar(DataHUD._familiarProgress, DataHUD._familiarLevel, DataHUD._familiarMaxLevel, DataHUD._familiarPrestige, DataHUD._familiarText, DataHUD._familiarHeader, DataHUD._familiarFill, DataHUD.UIElement.Familiars, DataHUD._familiarName); UpdateHUD.UpdateFamiliarStats(DataHUD._familiarStats, new List(3) { DataHUD._familiarMaxHealth, DataHUD._familiarPhysicalPower, DataHUD._familiarSpellPower }); } catch (Exception ex5) { ManualLogSource log5 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(29, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating familiar bar: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex5); } log5.LogError(val); } } if (ConfigureHUD._questTracker) { try { UpdateHUD.UpdateQuests(DataHUD._dailyQuestObject, DataHUD._dailyQuestSubHeader, DataHUD._dailyQuestIcon, DataHUD._dailyTargetType, DataHUD._dailyTarget, DataHUD._dailyProgress, DataHUD._dailyGoal, DataHUD._dailyVBlood); UpdateHUD.UpdateQuests(DataHUD._weeklyQuestObject, DataHUD._weeklyQuestSubHeader, DataHUD._weeklyQuestIcon, DataHUD._weeklyTargetType, DataHUD._weeklyTarget, DataHUD._weeklyProgress, DataHUD._weeklyGoal, DataHUD._weeklyVBlood); } catch (Exception ex6) { ManualLogSource log6 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(30, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating quest tracker: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex6); } log6.LogError(val); } } if (ConfigureHUD._professionBars) { try { UpdateHUD.UpdateProfessions(DataHUD._alchemyProgress, DataHUD._alchemyLevel, DataHUD._alchemyLevelText, DataHUD._alchemyProgressFill, DataHUD._alchemyFill, DataService.Profession.Alchemy); UpdateHUD.UpdateProfessions(DataHUD._blacksmithingProgress, DataHUD._blacksmithingLevel, DataHUD._blacksmithingLevelText, DataHUD._blacksmithingProgressFill, DataHUD._blacksmithingFill, DataService.Profession.Blacksmithing); UpdateHUD.UpdateProfessions(DataHUD._enchantingProgress, DataHUD._enchantingLevel, DataHUD._enchantingLevelText, DataHUD._enchantingProgressFill, DataHUD._enchantingFill, DataService.Profession.Enchanting); UpdateHUD.UpdateProfessions(DataHUD._tailoringProgress, DataHUD._tailoringLevel, DataHUD._tailoringLevelText, DataHUD._tailoringProgressFill, DataHUD._tailoringFill, DataService.Profession.Tailoring); } catch (Exception ex7) { ManualLogSource log7 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(31, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating professions(1): "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex7); } log7.LogError(val); } try { UpdateHUD.UpdateProfessions(DataHUD._fishingProgress, DataHUD._fishingLevel, DataHUD._fishingLevelText, DataHUD._fishingProgressFill, DataHUD._fishingFill, DataService.Profession.Fishing); UpdateHUD.UpdateProfessions(DataHUD._harvestingProgress, DataHUD._harvestingLevel, DataHUD._harvestingLevelText, DataHUD._harvestingProgressFill, DataHUD._harvestingFill, DataService.Profession.Harvesting); UpdateHUD.UpdateProfessions(DataHUD._miningProgress, DataHUD._miningLevel, DataHUD._miningLevelText, DataHUD._miningProgressFill, DataHUD._miningFill, DataService.Profession.Mining); UpdateHUD.UpdateProfessions(DataHUD._woodcuttingProgress, DataHUD._woodcuttingLevel, DataHUD._woodcuttingLevelText, DataHUD._woodcuttingProgressFill, DataHUD._woodcuttingFill, DataService.Profession.Woodcutting); } catch (Exception ex8) { ManualLogSource log8 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(31, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating professions(2): "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex8); } log8.LogError(val); } } try { if (!DataHUD._shiftActive && LocalCharacter.TryGetComponent(out AbilityBar_Shared componentData) && ((NetworkedEntity)(ref componentData.CastGroup)).GetEntityOnServer().TryGetComponent(out AbilityGroupState componentData2) && componentData2.SlotIndex == 3 && _shiftRoutine == null) { _shiftRoutine = ShiftUpdateLoop().Run(); DataHUD._shiftActive = true; } } catch (Exception ex9) { ManualLogSource log9 = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(28, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Error updating ability bar: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex9); } log9.LogError(val); } InputHUD.SyncInputHUD(); <>2__current = WaitForSeconds; <>1__state = 2; return true; } bool IEnumerator.MoveNext() { //ILSpy generated this explicit interface implementation from .override directive in MoveNext return this.MoveNext(); } [DebuggerHidden] void IEnumerator.Reset() { throw new NotSupportedException(); } } [CompilerGenerated] private sealed class d__22 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private object <>2__current; object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } [DebuggerHidden] public d__22(int <>1__state) { this.<>1__state = <>1__state; } [DebuggerHidden] void IDisposable.Dispose() { <>1__state = -2; } private bool MoveNext() { //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) switch (<>1__state) { default: return false; case 0: <>1__state = -1; break; case 1: <>1__state = -1; break; case 2: <>1__state = -1; break; case 3: <>1__state = -1; break; } if (DataHUD._killSwitch) { return false; } if (!DataHUD._ready) { <>2__current = WaitForSeconds; <>1__state = 1; return true; } if (!DataHUD._shiftActive) { <>2__current = WaitForSeconds; <>1__state = 2; return true; } if (LocalCharacter.TryGetComponent(out AbilityBar_Shared componentData)) { Entity entityOnServer = ((NetworkedEntity)(ref componentData.CastGroup)).GetEntityOnServer(); Entity entityOnServer2 = ((NetworkedEntity)(ref componentData.CastAbility)).GetEntityOnServer(); if (entityOnServer.TryGetComponent(out AbilityGroupState componentData2) && componentData2.SlotIndex == 3) { PrefabGUID prefabGUID = entityOnServer.GetPrefabGUID(); if (UpdateHUD.UpdateTooltipData(entityOnServer, prefabGUID)) { UpdateHUD.UpdateAbilityData(DataHUD._abilityTooltipData, entityOnServer, entityOnServer2, prefabGUID); } else if (DataHUD._abilityTooltipData != null) { UpdateHUD.UpdateAbilityData(DataHUD._abilityTooltipData, entityOnServer, entityOnServer2, prefabGUID); } } if (DataHUD._abilityTooltipData != null) { UpdateHUD.UpdateAbilityState(entityOnServer, entityOnServer2); } } <>2__current = WaitForSeconds; <>1__state = 3; return true; } bool IEnumerator.MoveNext() { //ILSpy generated this explicit interface implementation from .override directive in MoveNext return this.MoveNext(); } [DebuggerHidden] void IEnumerator.Reset() { throw new NotSupportedException(); } } public static Coroutine _canvasRoutine; public static Coroutine _shiftRoutine; private static EntityManager EntityManager => Core.EntityManager; private static SystemService SystemService => Core.SystemService; private static ManagedDataRegistry ManagedDataRegistry => ((ManagedDataSystem_Base)SystemService.ManagedDataSystem).ManagedDataRegistry; private static UIDataSystem UIDataSystem => SystemService.UIDataSystem; private static Entity LocalCharacter => Core.LocalCharacter; private static BufferLookup ModifyUnitStatBuffLookup => ClientChatSystemPatch.ModifyUnitStatBuffLookup; private static bool Eclipsed { get; } = Plugin.Eclipsed; public static WaitForSeconds WaitForSeconds { get; } = Eclipsed ? new WaitForSeconds(0.1f) : new WaitForSeconds(1f); public CanvasService(UICanvasBase canvas) { //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Expected O, but got Unknown DataHUD._canvasBase = canvas; DataHUD._bottomBarCanvas = ((Component)canvas.BottomBarParent).gameObject.GetComponent(); DataHUD._targetInfoPanelCanvas = ((Component)canvas.TargetInfoPanelParent).gameObject.GetComponent(); DataHUD._layer = ((Component)DataHUD._bottomBarCanvas).gameObject.layer; DataHUD._barNumber = 0; DataHUD._graphBarNumber = 0; DataHUD._windowOffset = 0f; UtilitiesHUD.FindSprites(); InitializeHUD.InitializeBloodButton(); try { InitializeHUD.InitializeUI(); InitializeHUD.InitializeAbilitySlotButtons(); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(34, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to initialize UI elements: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); } } [IteratorStateMachine(typeof(d__21))] public static IEnumerator CanvasUpdateLoop() { //yield-return decompiler failed: Unexpected instruction in Iterator.Dispose() return new d__21(0); } [IteratorStateMachine(typeof(d__22))] public static IEnumerator ShiftUpdateLoop() { //yield-return decompiler failed: Unexpected instruction in Iterator.Dispose() return new d__22(0); } public static void ResetState() { foreach (GameObject key in DataHUD.ObjectStates.Keys) { if ((Object)(object)key != (Object)null) { Object.Destroy((Object)(object)key); } } foreach (GameObject professionObject in DataHUD.ProfessionObjects) { if ((Object)(object)professionObject != (Object)null) { Object.Destroy((Object)(object)professionObject); } } foreach (GameObject value in DataHUD.GameObjects.Values) { if ((Object)(object)value != (Object)null) { Object.Destroy((Object)(object)value); } } foreach (GameObject attributeObject in UpdateHUD.AttributeObjects) { if ((Object)(object)attributeObject != (Object)null) { Object.Destroy((Object)(object)attributeObject); } } foreach (InputHUD.InputAdaptiveElement adaptiveElement in InputHUD.AdaptiveElements) { if ((Object)(object)adaptiveElement.AdaptiveObject != (Object)null) { Object.Destroy((Object)(object)adaptiveElement.AdaptiveObject); } } DataHUD.ObjectStates.Clear(); DataHUD.ProfessionObjects.Clear(); DataHUD.GameObjects.Clear(); UpdateHUD.AttributeObjects.Clear(); UpdateHUD._attributeObjectPrefab = null; UpdateHUD.BloodAttributeTexts.Clear(); UpdateHUD.WeaponAttributeTexts.Clear(); InputHUD.AdaptiveElements.Clear(); DataHUD.Sprites.Clear(); } } internal static class DataService { public enum TargetType { Kill, Craft, Gather, Fish } public enum Profession { Enchanting, Alchemy, Harvesting, Blacksmithing, Tailoring, Woodcutting, Mining, Fishing } public enum PlayerClass { None, BloodKnight, DemonHunter, VampireLord, ShadowBlade, ArcaneSorcerer, DeathMage } public enum BloodType { Worker, Warrior, Scholar, Rogue, Mutant, VBlood, Frailed, GateBoss, Draculin, Immortal, Creature, Brute, Corruption } public enum WeaponType { Sword, Axe, Mace, Spear, Crossbow, GreatSword, Slashers, Pistols, Reaper, Longbow, Whip, Unarmed, FishingPole, TwinBlades, Daggers, Claws } public enum WeaponStatType { None, MaxHealth, MovementSpeed, PrimaryAttackSpeed, PhysicalLifeLeech, SpellLifeLeech, PrimaryLifeLeech, PhysicalPower, SpellPower, PhysicalCriticalStrikeChance, PhysicalCriticalStrikeDamage, SpellCriticalStrikeChance, SpellCriticalStrikeDamage } public enum BloodStatType { None, HealingReceived, DamageReduction, PhysicalResistance, SpellResistance, ResourceYield, ReducedBloodDrain, SpellCooldownRecoveryRate, WeaponCooldownRecoveryRate, UltimateCooldownRecoveryRate, MinionDamage, AbilityAttackSpeed, CorruptionDamageReduction } public enum FamiliarStatType { MaxHealth, PhysicalPower, SpellPower } public class ProfessionData { public float EnchantingProgress { get; set; } = float.Parse(enchantingProgress, CultureInfo.InvariantCulture) / 100f; public int EnchantingLevel { get; set; } = int.Parse(enchantingLevel, CultureInfo.InvariantCulture); public float AlchemyProgress { get; set; } = float.Parse(alchemyProgress, CultureInfo.InvariantCulture) / 100f; public int AlchemyLevel { get; set; } = int.Parse(alchemyLevel, CultureInfo.InvariantCulture); public float HarvestingProgress { get; set; } = float.Parse(harvestingProgress, CultureInfo.InvariantCulture) / 100f; public int HarvestingLevel { get; set; } = int.Parse(harvestingLevel, CultureInfo.InvariantCulture); public float BlacksmithingProgress { get; set; } = float.Parse(blacksmithingProgress, CultureInfo.InvariantCulture) / 100f; public int BlacksmithingLevel { get; set; } = int.Parse(blacksmithingLevel, CultureInfo.InvariantCulture); public float TailoringProgress { get; set; } = float.Parse(tailoringProgress, CultureInfo.InvariantCulture) / 100f; public int TailoringLevel { get; set; } = int.Parse(tailoringLevel, CultureInfo.InvariantCulture); public float WoodcuttingProgress { get; set; } = float.Parse(woodcuttingProgress, CultureInfo.InvariantCulture) / 100f; public int WoodcuttingLevel { get; set; } = int.Parse(woodcuttingLevel, CultureInfo.InvariantCulture); public float MiningProgress { get; set; } = float.Parse(miningProgress, CultureInfo.InvariantCulture) / 100f; public int MiningLevel { get; set; } = int.Parse(miningLevel, CultureInfo.InvariantCulture); public float FishingProgress { get; set; } = float.Parse(fishingProgress, CultureInfo.InvariantCulture) / 100f; public int FishingLevel { get; set; } = int.Parse(fishingLevel, CultureInfo.InvariantCulture); public ProfessionData(string enchantingProgress, string enchantingLevel, string alchemyProgress, string alchemyLevel, string harvestingProgress, string harvestingLevel, string blacksmithingProgress, string blacksmithingLevel, string tailoringProgress, string tailoringLevel, string woodcuttingProgress, string woodcuttingLevel, string miningProgress, string miningLevel, string fishingProgress, string fishingLevel) { } } public class ExperienceData { public float Progress { get; set; } = float.Parse(percent, CultureInfo.InvariantCulture) / 100f; public int Level { get; set; } = int.Parse(level, CultureInfo.InvariantCulture); public int Prestige { get; set; } = int.Parse(prestige, CultureInfo.InvariantCulture); public PlayerClass Class { get; set; } = (PlayerClass)int.Parse(playerClass, CultureInfo.InvariantCulture); public ExperienceData(string percent, string level, string prestige, string playerClass) { } } public class LegacyData : ExperienceData { public string LegacyType { get; set; } = ((BloodType)int.Parse(legacyType, CultureInfo.InvariantCulture)).ToString(); public List BonusStats { get; set; } = (from i in Enumerable.Range(0, bonusStats.Length / 2) select ((BloodStatType)int.Parse(bonusStats.Substring(i * 2, 2), CultureInfo.InvariantCulture)).ToString()).ToList(); public LegacyData(string percent, string level, string prestige, string legacyType, string bonusStats) : base(percent, level, prestige, legacyType) { } } public class ExpertiseData : ExperienceData { public string ExpertiseType { get; set; } = ((WeaponType)int.Parse(expertiseType)).ToString(); public List BonusStats { get; set; } = (from i in Enumerable.Range(0, bonusStats.Length / 2) select ((WeaponStatType)int.Parse(bonusStats.Substring(i * 2, 2), CultureInfo.InvariantCulture)).ToString()).ToList(); public ExpertiseData(string percent, string level, string prestige, string expertiseType, string bonusStats) : base(percent, level, prestige, expertiseType) { } } public class QuestData { public TargetType TargetType { get; set; } = (TargetType)int.Parse(type, CultureInfo.InvariantCulture); public int Progress { get; set; } = int.Parse(progress, CultureInfo.InvariantCulture); public int Goal { get; set; } = int.Parse(goal, CultureInfo.InvariantCulture); public string Target { get; set; } public bool IsVBlood { get; set; } public QuestData(string type, string progress, string goal, string target, string isVBlood) { Target = target; IsVBlood = bool.Parse(isVBlood); base..ctor(); } } public class FamiliarData { public float Progress { get; set; } = float.Parse(percent, CultureInfo.InvariantCulture) / 100f; public int Level { get; set; } = (!int.TryParse(level, out var result) || result <= 0) ? 1 : result; public int Prestige { get; set; } = int.Parse(prestige, CultureInfo.InvariantCulture); public string FamiliarName { get; set; } = (!string.IsNullOrEmpty(familiarName)) ? familiarName : "Familiar"; public List FamiliarStats { get; set; } public FamiliarData(string percent, string level, string prestige, string familiarName, string familiarStats) { object obj; if (string.IsNullOrEmpty(familiarStats)) { obj = new List(3) { "", "", "" }; } else { List obj2 = new List { familiarStats.Substring(0, 4), familiarStats.Substring(4, 3) }; obj2.Add(familiarStats.Substring(7, familiarStats.Length - 7)); obj = obj2.Select((string stat) => int.Parse(stat, CultureInfo.InvariantCulture).ToString()).ToList(); } FamiliarStats = (List)obj; base..ctor(); } } public class ShiftSpellData { public int ShiftSpellIndex { get; set; } = int.Parse(index, CultureInfo.InvariantCulture); public ShiftSpellData(string index) { } } public class ConfigDataV1_3 { public float PrestigeStatMultiplier; public float ClassStatMultiplier; public int MaxPlayerLevel; public int MaxLegacyLevel; public int MaxExpertiseLevel; public int MaxFamiliarLevel; public int MaxProfessionLevel; public bool ExtraRecipes; public int PrimalCost; public Dictionary WeaponStatValues; public Dictionary BloodStatValues; public Dictionary WeaponStats, List bloodStats)> ClassStatSynergies; public ConfigDataV1_3(string prestigeMultiplier, string statSynergyMultiplier, string maxPlayerLevel, string maxLegacyLevel, string maxExpertiseLevel, string maxFamiliarLevel, string maxProfessionLevel, string extraRecipes, string primalCost, string weaponStatValues, string bloodStatValues, string classStatSynergies) { PrestigeStatMultiplier = float.Parse(prestigeMultiplier, CultureInfo.InvariantCulture); ClassStatMultiplier = float.Parse(statSynergyMultiplier, CultureInfo.InvariantCulture); MaxPlayerLevel = int.Parse(maxPlayerLevel, CultureInfo.InvariantCulture); MaxLegacyLevel = int.Parse(maxLegacyLevel, CultureInfo.InvariantCulture); MaxExpertiseLevel = int.Parse(maxExpertiseLevel, CultureInfo.InvariantCulture); MaxFamiliarLevel = int.Parse(maxFamiliarLevel, CultureInfo.InvariantCulture); MaxProfessionLevel = int.Parse(maxProfessionLevel, CultureInfo.InvariantCulture); ExtraRecipes = bool.Parse(extraRecipes); PrimalCost = int.Parse(primalCost, CultureInfo.InvariantCulture); WeaponStatValues = weaponStatValues.Split(',').Select((string value, int index) => new { Index = index + 1, Value = float.Parse(value, CultureInfo.InvariantCulture) }).ToDictionary(x => (WeaponStatType)x.Index, x => x.Value); BloodStatValues = bloodStatValues.Split(',').Select((string value, int index) => new { Index = index + 1, Value = float.Parse(value, CultureInfo.InvariantCulture) }).ToDictionary(x => (BloodStatType)x.Index, x => x.Value); ClassStatSynergies = (from x in classStatSynergies.Split(',').Select((string value, int index) => new { Value = value, Index = index }) group x by x.Index / 3).ToDictionary(g => (PlayerClass)int.Parse(g.ElementAt(0).Value, CultureInfo.InvariantCulture), g => ((from j in Enumerable.Range(0, g.ElementAt(1).Value.Length / 2) select (WeaponStatType)int.Parse(g.ElementAt(1).Value.Substring(j * 2, 2), CultureInfo.InvariantCulture)).ToList(), (from j in Enumerable.Range(0, g.ElementAt(2).Value.Length / 2) select (BloodStatType)int.Parse(g.ElementAt(2).Value.Substring(j * 2, 2), CultureInfo.InvariantCulture)).ToList())); } } public static Dictionary _weaponStatValues = new Dictionary(); public static readonly Dictionary WeaponStatTypeAbbreviations = new Dictionary { { WeaponStatType.MaxHealth, "HP" }, { WeaponStatType.MovementSpeed, "MS" }, { WeaponStatType.PrimaryAttackSpeed, "PAS" }, { WeaponStatType.PhysicalLifeLeech, "PLL" }, { WeaponStatType.SpellLifeLeech, "SLL" }, { WeaponStatType.PrimaryLifeLeech, "PAL" }, { WeaponStatType.PhysicalPower, "PP" }, { WeaponStatType.SpellPower, "SP" }, { WeaponStatType.PhysicalCriticalStrikeChance, "PCC" }, { WeaponStatType.PhysicalCriticalStrikeDamage, "PCD" }, { WeaponStatType.SpellCriticalStrikeChance, "SCC" }, { WeaponStatType.SpellCriticalStrikeDamage, "SCD" } }; public static readonly Dictionary WeaponStatStringAbbreviations = new Dictionary { { "MaxHealth", "HP" }, { "MovementSpeed", "MS" }, { "PrimaryAttackSpeed", "PAS" }, { "PhysicalLifeLeech", "PLL" }, { "SpellLifeLeech", "SLL" }, { "PrimaryLifeLeech", "PAL" }, { "PhysicalPower", "PP" }, { "SpellPower", "SP" }, { "PhysicalCriticalStrikeChance", "PCC" }, { "PhysicalCriticalStrikeDamage", "PCD" }, { "SpellCriticalStrikeChance", "SCC" }, { "SpellCriticalStrikeDamage", "SCD" } }; public static readonly Dictionary WeaponStatFormats = new Dictionary { { WeaponStatType.MaxHealth, "integer" }, { WeaponStatType.MovementSpeed, "decimal" }, { WeaponStatType.PrimaryAttackSpeed, "percentage" }, { WeaponStatType.PhysicalLifeLeech, "percentage" }, { WeaponStatType.SpellLifeLeech, "percentage" }, { WeaponStatType.PrimaryLifeLeech, "percentage" }, { WeaponStatType.PhysicalPower, "decimal" }, { WeaponStatType.SpellPower, "decimal" }, { WeaponStatType.PhysicalCriticalStrikeChance, "percentage" }, { WeaponStatType.PhysicalCriticalStrikeDamage, "percentage" }, { WeaponStatType.SpellCriticalStrikeChance, "percentage" }, { WeaponStatType.SpellCriticalStrikeDamage, "percentage" } }; public static Dictionary _bloodStatValues = new Dictionary(); public static readonly Dictionary BloodStatTypeAbbreviations = new Dictionary { { BloodStatType.HealingReceived, "HR" }, { BloodStatType.DamageReduction, "DR" }, { BloodStatType.PhysicalResistance, "PR" }, { BloodStatType.SpellResistance, "SR" }, { BloodStatType.ResourceYield, "RY" }, { BloodStatType.ReducedBloodDrain, "BDR" }, { BloodStatType.SpellCooldownRecoveryRate, "SCR" }, { BloodStatType.WeaponCooldownRecoveryRate, "WCR" }, { BloodStatType.UltimateCooldownRecoveryRate, "UCR" }, { BloodStatType.MinionDamage, "MD" }, { BloodStatType.AbilityAttackSpeed, "AAS" }, { BloodStatType.CorruptionDamageReduction, "CDR" } }; public static readonly Dictionary BloodStatStringAbbreviations = new Dictionary { { "HealingReceived", "HR" }, { "DamageReduction", "DR" }, { "PhysicalResistance", "PR" }, { "SpellResistance", "SR" }, { "ResourceYield", "RY" }, { "ReducedBloodDrain", "BDR" }, { "SpellCooldownRecoveryRate", "SCR" }, { "WeaponCooldownRecoveryRate", "WCR" }, { "UltimateCooldownRecoveryRate", "UCR" }, { "MinionDamage", "MD" }, { "AbilityAttackSpeed", "AAS" }, { "CorruptionDamageReduction", "CDR" } }; public static Dictionary _familiarStatValues = new Dictionary(); public static readonly Dictionary FamiliarStatTypeAbbreviations = new Dictionary { { FamiliarStatType.MaxHealth, "HP" }, { FamiliarStatType.PhysicalPower, "PP" }, { FamiliarStatType.SpellPower, "SP" } }; public static readonly List FamiliarStatStringAbbreviations = new List { "HP", "PP", "SP" }; public static readonly Dictionary ProfessionColors = new Dictionary { { Profession.Enchanting, new Color(0.5f, 0.1f, 0.8f, 0.5f) }, { Profession.Alchemy, new Color(0.1f, 0.9f, 0.7f, 0.5f) }, { Profession.Harvesting, new Color(0f, 0.5f, 0f, 0.5f) }, { Profession.Blacksmithing, new Color(0.2f, 0.2f, 0.3f, 0.5f) }, { Profession.Tailoring, new Color(0.9f, 0.6f, 0.5f, 0.5f) }, { Profession.Woodcutting, new Color(0.5f, 0.3f, 0.1f, 0.5f) }, { Profession.Mining, new Color(0.5f, 0.5f, 0.5f, 0.5f) }, { Profession.Fishing, new Color(0f, 0.5f, 0.7f, 0.5f) } }; public static Dictionary WeaponStats, List BloodStats)> _classStatSynergies = new Dictionary, List)>(); public static float _prestigeStatMultiplier; public static float _classStatMultiplier; public static bool _extraRecipes; public static PrefabGUID _primalCost; public static List ParseMessageString(string serverMessage) { if (string.IsNullOrEmpty(serverMessage)) { return new List(); } return serverMessage.Split(',').ToList(); } public static void ParseConfigData(List configData) { //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Expected O, but got Unknown //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Expected O, but got Unknown //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) int num = 0; bool flag = default(bool); try { ConfigDataV1_3 configDataV1_ = new ConfigDataV1_3(configData[num++], configData[num++], configData[num++], configData[num++], configData[num++], configData[num++], configData[num++], configData[num++], configData[num++], string.Join(",", configData.Skip(num).Take(12)), string.Join(",", configData.Skip(num += 12).Take(12)), string.Join(",", configData.Skip(num += 12))); _prestigeStatMultiplier = configDataV1_.PrestigeStatMultiplier; _classStatMultiplier = configDataV1_.ClassStatMultiplier; CanvasService.DataHUD._experienceMaxLevel = configDataV1_.MaxPlayerLevel; CanvasService.DataHUD._legacyMaxLevel = configDataV1_.MaxLegacyLevel; CanvasService.DataHUD._expertiseMaxLevel = configDataV1_.MaxExpertiseLevel; CanvasService.DataHUD._familiarMaxLevel = configDataV1_.MaxFamiliarLevel; _extraRecipes = configDataV1_.ExtraRecipes; _primalCost = new PrefabGUID(configDataV1_.PrimalCost); _weaponStatValues = configDataV1_.WeaponStatValues; _bloodStatValues = configDataV1_.BloodStatValues; _classStatSynergies = configDataV1_.ClassStatSynergies; ValidateStatMetadataCoverage(); try { if (_extraRecipes) { Recipes.ModifyRecipes(); } } catch (Exception ex) { ManualLogSource log = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(26, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to modify recipes: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } catch (Exception ex2) { ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(29, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed to parse config data: "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex2); } log2.LogWarning(val); } } private static void ValidateStatMetadataCoverage() { ValidateStatCoverage("Weapon", WeaponStatTypeAbbreviations, WeaponStatStringAbbreviations, WeaponStatFormats, _weaponStatValues); ValidateStatCoverage("Blood", BloodStatTypeAbbreviations, BloodStatStringAbbreviations, null, _bloodStatValues); List list = new List(); List list2 = new List(); foreach (KeyValuePair, List)> classStatSynergy in _classStatSynergies) { foreach (WeaponStatType item in classStatSynergy.Value.Item1) { if (item == WeaponStatType.None || !Enum.IsDefined(typeof(WeaponStatType), item)) { list.Add($"{classStatSynergy.Key}:{item}"); } } foreach (BloodStatType item2 in classStatSynergy.Value.Item2) { if (item2 == BloodStatType.None || !Enum.IsDefined(typeof(BloodStatType), item2)) { list2.Add($"{classStatSynergy.Key}:{item2}"); } } } LogStatMetadataWarning("Class synergies contain invalid weapon stats", list); LogStatMetadataWarning("Class synergies contain invalid blood stats", list2); } private static void ValidateStatCoverage(string label, IReadOnlyDictionary typeAbbreviations, IReadOnlyDictionary stringAbbreviations, IReadOnlyDictionary formats, IReadOnlyDictionary configuredValues) where TStat : struct, Enum { List source = (from stat in Enum.GetValues() where !stat.ToString().Equals("None", StringComparison.Ordinal) select stat).ToList(); string category = label + " stats missing type abbreviations"; List list = new List(); list.AddRange(from stat in source where !typeAbbreviations.ContainsKey(stat) select stat.ToString()); LogStatMetadataWarning(category, new <>z__ReadOnlyList(list)); string category2 = label + " stats missing string abbreviations"; List list2 = new List(); list2.AddRange(from stat in source where !stringAbbreviations.ContainsKey(stat.ToString()) select stat.ToString()); LogStatMetadataWarning(category2, new <>z__ReadOnlyList(list2)); if (formats != null) { string category3 = label + " stats missing formats"; List list3 = new List(); list3.AddRange(from stat in source where !formats.ContainsKey(stat) select stat.ToString()); LogStatMetadataWarning(category3, new <>z__ReadOnlyList(list3)); } string category4 = label + " stats missing configured values"; List list4 = new List(); list4.AddRange(from stat in source where !configuredValues.ContainsKey(stat) select stat.ToString()); LogStatMetadataWarning(category4, new <>z__ReadOnlyList(list4)); } private static void LogStatMetadataWarning(string category, IReadOnlyCollection missingItems) { if (missingItems.Count != 0) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.Append("[DataService] Stat metadata coverage warning: "); stringBuilder.Append(category); stringBuilder.Append(" - "); stringBuilder.Append(string.Join(", ", missingItems)); Core.Log.LogWarning((object)stringBuilder.ToString()); } } public static void ParsePlayerData(List playerData) { int index = 0; ExperienceData experienceData = new ExperienceData(playerData[index++], playerData[index++], playerData[index++], playerData[index++]); LegacyData legacyData = new LegacyData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); ExpertiseData expertiseData = new ExpertiseData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); FamiliarData familiarData = new FamiliarData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); ProfessionData professionData = new ProfessionData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); QuestData questData = new QuestData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); QuestData questData2 = new QuestData(playerData[index++], playerData[index++], playerData[index++], playerData[index++], playerData[index++]); CanvasService.DataHUD._experienceProgress = experienceData.Progress; CanvasService.DataHUD._experienceLevel = experienceData.Level; CanvasService.DataHUD._experiencePrestige = experienceData.Prestige; CanvasService.DataHUD._classType = experienceData.Class; CanvasService.DataHUD._legacyProgress = legacyData.Progress; CanvasService.DataHUD._legacyLevel = legacyData.Level; CanvasService.DataHUD._legacyPrestige = legacyData.Prestige; CanvasService.DataHUD._legacyType = legacyData.LegacyType; CanvasService.DataHUD._legacyBonusStats = legacyData.BonusStats; CanvasService.DataHUD._expertiseProgress = expertiseData.Progress; CanvasService.DataHUD._expertiseLevel = expertiseData.Level; CanvasService.DataHUD._expertisePrestige = expertiseData.Prestige; CanvasService.DataHUD._expertiseType = expertiseData.ExpertiseType; CanvasService.DataHUD._expertiseBonusStats = expertiseData.BonusStats; CanvasService.DataHUD._familiarProgress = familiarData.Progress; CanvasService.DataHUD._familiarLevel = familiarData.Level; CanvasService.DataHUD._familiarPrestige = familiarData.Prestige; CanvasService.DataHUD._familiarName = familiarData.FamiliarName; CanvasService.DataHUD._familiarStats = familiarData.FamiliarStats; CanvasService.DataHUD._enchantingProgress = professionData.EnchantingProgress; CanvasService.DataHUD._enchantingLevel = professionData.EnchantingLevel; CanvasService.DataHUD._alchemyProgress = professionData.AlchemyProgress; CanvasService.DataHUD._alchemyLevel = professionData.AlchemyLevel; CanvasService.DataHUD._harvestingProgress = professionData.HarvestingProgress; CanvasService.DataHUD._harvestingLevel = professionData.HarvestingLevel; CanvasService.DataHUD._blacksmithingProgress = professionData.BlacksmithingProgress; CanvasService.DataHUD._blacksmithingLevel = professionData.BlacksmithingLevel; CanvasService.DataHUD._tailoringProgress = professionData.TailoringProgress; CanvasService.DataHUD._tailoringLevel = professionData.TailoringLevel; CanvasService.DataHUD._woodcuttingProgress = professionData.WoodcuttingProgress; CanvasService.DataHUD._woodcuttingLevel = professionData.WoodcuttingLevel; CanvasService.DataHUD._miningProgress = professionData.MiningProgress; CanvasService.DataHUD._miningLevel = professionData.MiningLevel; CanvasService.DataHUD._fishingProgress = professionData.FishingProgress; CanvasService.DataHUD._fishingLevel = professionData.FishingLevel; CanvasService.DataHUD._dailyTargetType = questData.TargetType; CanvasService.DataHUD._dailyProgress = questData.Progress; CanvasService.DataHUD._dailyGoal = questData.Goal; CanvasService.DataHUD._dailyTarget = questData.Target; CanvasService.DataHUD._dailyVBlood = questData.IsVBlood; CanvasService.DataHUD._weeklyTargetType = questData2.TargetType; CanvasService.DataHUD._weeklyProgress = questData2.Progress; CanvasService.DataHUD._weeklyGoal = questData2.Goal; CanvasService.DataHUD._weeklyTarget = questData2.Target; CanvasService.DataHUD._weeklyVBlood = questData2.IsVBlood; CanvasService.DataHUD._shiftSpellIndex = new ShiftSpellData(playerData[index]).ShiftSpellIndex; } } internal static class EmberglassEclipseBridge { private const string EMBERGLASS_ASSEMBLY_NAME = "Emberglass"; private const string VNETWORK_TYPE_NAME = "Emberglass.API.Shared.VNetwork"; private static bool _initialized; private static bool _available; private static bool _clientReady; private static bool _disabledForSession; private static bool _unavailableLogged; private static bool _clientReadyLogged; private static bool _notReadyLogged; private static MethodInfo _sendToServer; private static PropertyInfo _isReady; private static EventInfo _onReady; private static EventInfo _onClientReady; public static void Initialize() { if (_initialized || !Plugin.UseEmberglassBridge || _disabledForSession) { return; } _initialized = true; if (!TryResolveVNetwork(out var vNetworkType)) { LogUnavailable("Emberglass is not loaded"); return; } try { MethodInfo genericMethod = GetGenericMethod(vNetworkType, "RegisterClientbound", 1); _sendToServer = GetGenericMethod(vNetworkType, "SendToServer", 1); _isReady = vNetworkType.GetProperty("IsReady", BindingFlags.Static | BindingFlags.Public); _onReady = vNetworkType.GetEvent("OnReady", BindingFlags.Static | BindingFlags.Public); _onClientReady = vNetworkType.GetEvent("OnClientReady", BindingFlags.Static | BindingFlags.Public); genericMethod.MakeGenericMethod(typeof(EclipseServerMessagePacket)).Invoke(null, new object[1] { new Action(OnServerMessagePacket) }); SubscribeReadinessEvent(_onClientReady); SubscribeReadinessEvent(_onReady); _available = true; Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] registered"); } catch (Exception ex) { DisableForSession($"failed to register bridge ({ex.GetType().Name}: {ex.Message})"); } } public static bool TrySendRegistration(string message) { if (!Plugin.UseEmberglassBridge || _disabledForSession) { return false; } Initialize(); if (!_available) { return false; } if (!IsClientReady()) { LogNotReady(); return false; } return TrySendRegistrationNow(message); } private static bool TrySendRegistrationNow(string message) { try { _sendToServer.MakeGenericMethod(typeof(EclipseRegistrationPacket)).Invoke(null, new object[1] { new EclipseRegistrationPacket(message) }); Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] registration sent"); return true; } catch (Exception ex) { DisableForSession($"failed to send registration ({ex.GetType().Name}: {ex.Message})"); return false; } } private static void OnServerMessagePacket(User sender, EclipseServerMessagePacket packet) { //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown if (string.IsNullOrWhiteSpace(packet.Message)) { Core.Log.LogWarning((object)"[EclipseBridge:Emberglass] empty server message received"); return; } if (!ClientChatSystemPatch.TryHandleBridgeServerMessage(packet.Message, out var messageKind)) { Core.Log.LogWarning((object)"[EclipseBridge:Emberglass] failed to verify server message MAC"); return; } ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(36, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(messageKind); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" received"); } log.LogInfo(val); } private static void OnClientReady() { _clientReady = true; if (!_clientReadyLogged) { _clientReadyLogged = true; Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] client ready"); } } private static void OnReady(User user) { OnClientReady(); } private static void SubscribeReadinessEvent(EventInfo readinessEvent) { Type type = readinessEvent?.EventHandlerType; if ((object)type != null) { MethodInfo methodInfo = ResolveReadinessHandler(type); if (!(methodInfo == null)) { readinessEvent.AddEventHandler(null, Delegate.CreateDelegate(type, methodInfo)); } } } private static MethodInfo ResolveReadinessHandler(Type handlerType) { MethodInfo method = handlerType.GetMethod("Invoke"); if (method?.ReturnType != typeof(void)) { return null; } ParameterInfo[] parameters = method.GetParameters(); if (parameters.Length == 0) { return typeof(EmberglassEclipseBridge).GetMethod("OnClientReady", BindingFlags.Static | BindingFlags.NonPublic); } if (parameters.Length == 1 && parameters[0].ParameterType == typeof(User)) { return typeof(EmberglassEclipseBridge).GetMethod("OnReady", BindingFlags.Static | BindingFlags.NonPublic); } return null; } private static bool TryResolveVNetwork(out Type vNetworkType) { vNetworkType = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault((Assembly loadedAssembly) => loadedAssembly.GetName().Name == "Emberglass")?.GetType("Emberglass.API.Shared.VNetwork", throwOnError: false); return vNetworkType != null; } private static MethodInfo GetGenericMethod(Type declaringType, string name, int parameterCount) { return declaringType.GetMethods(BindingFlags.Static | BindingFlags.Public).Single((MethodInfo method) => method.Name == name && method.IsGenericMethodDefinition && method.GetParameters().Length == parameterCount); } private static bool IsClientReady() { if (_clientReady) { return true; } if (IsReady()) { OnClientReady(); return true; } return false; } private static bool IsReady() { object obj = _isReady?.GetValue(null); if (obj is bool) { return (bool)obj; } return false; } private static void LogUnavailable(string reason) { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown if (!_unavailableLogged) { _unavailableLogged = true; ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(67, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] unavailable; using ChatMessage bridge ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(reason); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogInfo(val); } } private static void LogNotReady() { if (!_notReadyLogged) { _notReadyLogged = true; Core.Log.LogInfo((object)"[EclipseBridge:Emberglass] client not ready; using ChatMessage bridge"); } } private static void DisableForSession(string reason) { //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Expected O, but got Unknown _available = false; _disabledForSession = true; ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(81, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("[EclipseBridge:Emberglass] disabled for this session; using ChatMessage bridge ("); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(reason); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral(")"); } log.LogWarning(val); } } internal class LocalizationService { private struct Codes { public string Key { get; set; } public string Value { get; set; } public string Description { get; set; } } private struct Nodes { public string Guid { get; set; } public string Text { get; set; } } private struct Words { public string Original { get; set; } public string Translation { get; set; } } private struct LocalizationFile { public Codes[] Codes { get; set; } public Nodes[] Nodes { get; set; } public Words[] Words { get; set; } } private static Dictionary _nameKeysToPrefabGuid; private static readonly Dictionary _guidStringsToLocalizedNames = new Dictionary(); private static readonly Dictionary _localizedNamesToGuidStrings = new Dictionary(); private static readonly Dictionary _prefabGuidsToNames = new Dictionary(); private static IReadOnlyDictionary LocalizedNameKeys => PrefabNames._localizedNameKeys; private static IReadOnlyDictionary NameKeysToPrefabGuid => _nameKeysToPrefabGuid; public static IReadOnlyDictionary PrefabGuidsToNames => _prefabGuidsToNames; public LocalizationService() { InitializeLocalizations(); } private static void InitializeLocalizations() { LoadGuidStringsToLocalizedNames(); } private static void InitializePrefabGuidNames() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) Enumerator enumerator = Core.SystemService.PrefabCollectionSystem.SpawnableNameToPrefabGuidDictionary.GetEnumerator(); while (enumerator.MoveNext()) { KeyValuePair current = enumerator.Current; _prefabGuidsToNames[current.Value] = current.Key; } } private static void LoadGuidStringsToLocalizedNames() { string name = "Eclipse.Resources.Localization.English.json"; using StreamReader streamReader = new StreamReader(Assembly.GetExecutingAssembly().GetManifestResourceStream(name)); Dictionary source = JsonSerializer.Deserialize(streamReader.ReadToEnd()).Nodes.ToDictionary((Nodes x) => x.Guid, (Nodes x) => x.Text); source.ForEach(delegate(KeyValuePair kvp) { _guidStringsToLocalizedNames[kvp.Key] = kvp.Value; }); source.ForEach(delegate(KeyValuePair kvp) { _localizedNamesToGuidStrings[kvp.Value] = kvp.Key; }); _nameKeysToPrefabGuid = PrefabNames._localizedNameKeys.Reverse(); } public static string GetGuidString(PrefabGUID prefabGuid) { //IL_0005: Unknown result type (might be due to invalid IL or missing references) if (LocalizedNameKeys.TryGetValue(prefabGuid, out var value)) { return value; } return string.Empty; } public static string GetNameFromGuidString(string guidString) { if (_guidStringsToLocalizedNames.TryGetValue(guidString, out var value)) { return value; } return string.Empty; } public static PrefabGUID GetPrefabGuidFromName(string name) { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) if (_localizedNamesToGuidStrings.TryGetValue(name, out var value) && NameKeysToPrefabGuid.TryGetValue(value, out var value2)) { return value2; } return PrefabGUID.Empty; } } internal class SystemService { private readonly World _world = world ?? throw new ArgumentNullException("world"); private ClientScriptMapper _clientScriptMapper; private PrefabCollectionSystem _prefabCollectionSystem; private GameDataSystem _gameDataSystem; private ManagedDataSystem _managedDataSystem; private TutorialSystem _tutorialSystem; private InputActionSystem _inputActionSystem; private UIDataSystem _uiDataSystem; private HybridEquipmentSystem _hybridEquipmentSystem; private HybridModelSystem _hybridModelSystem; public ClientScriptMapper ClientScriptMapper => _clientScriptMapper ?? (_clientScriptMapper = GetSystem()); public PrefabCollectionSystem PrefabCollectionSystem => _prefabCollectionSystem ?? (_prefabCollectionSystem = GetSystem()); public GameDataSystem GameDataSystem => _gameDataSystem ?? (_gameDataSystem = GetSystem()); public ManagedDataSystem ManagedDataSystem => _managedDataSystem ?? (_managedDataSystem = GetSystem()); public TutorialSystem TutorialSystem => _tutorialSystem ?? (_tutorialSystem = GetSystem()); public InputActionSystem InputActionSystem => _inputActionSystem ?? (_inputActionSystem = GetSystem()); public UIDataSystem UIDataSystem => _uiDataSystem ?? (_uiDataSystem = GetSystem()); public HybridEquipmentSystem HybridEquipmentSystem => _hybridEquipmentSystem ?? (_hybridEquipmentSystem = GetSystem()); public HybridModelSystem HybridModelSystem => _hybridModelSystem ?? (_hybridModelSystem = GetSystem()); public SystemService(World world) { } private T GetSystem() where T : ComponentSystemBase { return _world.GetExistingSystemManaged() ?? throw new InvalidOperationException("Failed to get " + Il2CppType.Of().FullName + " from the Server..."); } } } namespace Eclipse.Resources { internal static class PrefabGUIDs { public static readonly PrefabGUID VM_VBlood_TEMPLATE = new PrefabGUID(2075390218); public static readonly PrefabGUID _10x6RectangularTablesModularBuildMenuGroup = new PrefabGUID(-375280343); public static readonly PrefabGUID _3x3RoundTablesModularBuildMenuGroup = new PrefabGUID(-1226637162); public static readonly PrefabGUID _3x6RectangularTablesBuildMenuGroup = new PrefabGUID(-1058166909); public static readonly PrefabGUID _6x6RoundTablesModularBuildMenuGroup = new PrefabGUID(-1428481029); public static readonly PrefabGUID AB_AmbientLightning_Light = new PrefabGUID(589474506); public static readonly PrefabGUID AB_AmbientLightning_Light_GameplayStrike = new PrefabGUID(-2094079027); public static readonly PrefabGUID AB_ApplyWeaponCoating_AbilityGroup = new PrefabGUID(1327173823); public static readonly PrefabGUID AB_ApplyWeaponCoating_Activate = new PrefabGUID(-578949147); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_AbilityGroup = new PrefabGUID(-1007451621); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_Activate = new PrefabGUID(1186329047); public static readonly PrefabGUID AB_ApplyWeaponCoating_Blood_Cast = new PrefabGUID(765001445); public static readonly PrefabGUID AB_ApplyWeaponCoating_Cast = new PrefabGUID(1271061994); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_AbilityGroup = new PrefabGUID(-1706926836); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_Activate = new PrefabGUID(-1012725577); public static readonly PrefabGUID AB_ApplyWeaponCoating_Chaos_Cast = new PrefabGUID(1273123129); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_AbilityGroup = new PrefabGUID(2110406288); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_Activate = new PrefabGUID(-1250180678); public static readonly PrefabGUID AB_ApplyWeaponCoating_Frost_Cast = new PrefabGUID(-346833706); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_AbilityGroup = new PrefabGUID(-1063090297); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_Activate = new PrefabGUID(1197567253); public static readonly PrefabGUID AB_ApplyWeaponCoating_Illusion_Cast = new PrefabGUID(-237809887); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_AbilityGroup = new PrefabGUID(419215380); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_Activate = new PrefabGUID(655641197); public static readonly PrefabGUID AB_ApplyWeaponCoating_Storm_Cast = new PrefabGUID(1215462047); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_AbilityGroup = new PrefabGUID(1293762372); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_Activate = new PrefabGUID(1932625569); public static readonly PrefabGUID AB_ApplyWeaponCoating_Unholy_Cast = new PrefabGUID(-2088804628); public static readonly PrefabGUID AB_Archer_Projectile_Cast = new PrefabGUID(1106195644); public static readonly PrefabGUID AB_Archer_Projectile_Group = new PrefabGUID(-751119210); public static readonly PrefabGUID AB_Archer_Projectile01 = new PrefabGUID(-1423243724); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_AbilityGroup = new PrefabGUID(91941562); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_Cast = new PrefabGUID(1965996833); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_ImprisonBuff = new PrefabGUID(2007858431); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_MoveBehaviourBuff = new PrefabGUID(1099681289); public static readonly PrefabGUID AB_ArchMage_ArcaneImprisonment_RingArea = new PrefabGUID(-1952370580); public static readonly PrefabGUID AB_ArchMage_CrystalLance_AbilityGroup = new PrefabGUID(1520734123); public static readonly PrefabGUID AB_ArchMage_CrystalLance_AggroBuff = new PrefabGUID(-967628321); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_01 = new PrefabGUID(-88630604); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_02 = new PrefabGUID(1895752824); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Cast_03 = new PrefabGUID(-518248879); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_AbilityGroup = new PrefabGUID(1187623532); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_Cast = new PrefabGUID(-1536831420); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_HitBuff = new PrefabGUID(1237316881); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_Projectile = new PrefabGUID(-1385969356); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Charged_SplinterProjectile = new PrefabGUID(-485680280); public static readonly PrefabGUID AB_ArchMage_CrystalLance_Projectile = new PrefabGUID(826214455); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_AbilityGroup = new PrefabGUID(-139137314); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Buff = new PrefabGUID(-1161618215); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Buff_ALREADY_EXISTS_2 = new PrefabGUID(-1748472670); public static readonly PrefabGUID AB_ArchMage_Emote_Aggro_Cast = new PrefabGUID(-2059383344); public static readonly PrefabGUID AB_ArchMage_FireSpinner_AbilityGroup = new PrefabGUID(1217615468); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Cast = new PrefabGUID(-1997201513); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Projectile = new PrefabGUID(612861780); public static readonly PrefabGUID AB_ArchMage_FireSpinner_Spinner = new PrefabGUID(-1672727739); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AggroBuff = new PrefabGUID(-240922728); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaDamageBuff = new PrefabGUID(-1640482518); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaEffectBuff = new PrefabGUID(-139562596); public static readonly PrefabGUID AB_ArchMage_FlameSphere_AreaInitBuff = new PrefabGUID(451676082); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_AbilityGroup = new PrefabGUID(-1754787506); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_Cast = new PrefabGUID(2138663579); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Dash_Trigger = new PrefabGUID(1679920133); public static readonly PrefabGUID AB_ArchMage_FlameSphere_Projectile = new PrefabGUID(269193311); public static readonly PrefabGUID AB_ArchMage_FlameSphere_ShouldDestroyBuff = new PrefabGUID(299001257); public static readonly PrefabGUID AB_ArchMage_FlamingIce_AbilityGroup = new PrefabGUID(-2025881745); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Area = new PrefabGUID(379217467); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Cast = new PrefabGUID(1890249378); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Channel = new PrefabGUID(-920928426); public static readonly PrefabGUID AB_ArchMage_FlamingIce_FreezeBuff = new PrefabGUID(821255111); public static readonly PrefabGUID AB_ArchMage_FlamingIce_Trigger = new PrefabGUID(-1488767962); public static readonly PrefabGUID AB_ArchMage_LightningArc_AbilityGroup = new PrefabGUID(-1232816408); public static readonly PrefabGUID AB_ArchMage_LightningArc_Cast = new PrefabGUID(-1524769526); public static readonly PrefabGUID AB_ArchMage_LightningArc_Projectile = new PrefabGUID(1211897000); public static readonly PrefabGUID AB_ArchMage_LightningCurse_AbilityGroup = new PrefabGUID(1365358996); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Cast = new PrefabGUID(1142315183); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Projectile = new PrefabGUID(-1317668918); public static readonly PrefabGUID AB_ArchMage_LightningCurse_ProjectileSpawnerBuff = new PrefabGUID(2089605812); public static readonly PrefabGUID AB_ArchMage_LightningCurse_ProjectileTrigger = new PrefabGUID(390853496); public static readonly PrefabGUID AB_ArchMage_LightningCurse_Trigger = new PrefabGUID(-988990419); public static readonly PrefabGUID AB_ArchMage_MirrorImage_AbilityGroup = new PrefabGUID(-1897317770); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Cast = new PrefabGUID(-1714013936); public static readonly PrefabGUID AB_ArchMage_MirrorImage_EndPhase = new PrefabGUID(262354515); public static readonly PrefabGUID AB_ArchMage_MirrorImage_MoveBehaviourBuff = new PrefabGUID(-1099792891); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Phase = new PrefabGUID(30325069); public static readonly PrefabGUID AB_ArchMage_MirrorImage_Trigger = new PrefabGUID(292114817); public static readonly PrefabGUID AB_ArchMage_Teleport_AbilityGroup = new PrefabGUID(886063983); public static readonly PrefabGUID AB_ArchMage_Teleport_Cast = new PrefabGUID(484270946); public static readonly PrefabGUID AB_ArchMage_Teleport_EndPhase = new PrefabGUID(56049482); public static readonly PrefabGUID AB_ArchMage_Teleport_Phase = new PrefabGUID(-723899936); public static readonly PrefabGUID AB_Bandit_Ambush_Buff = new PrefabGUID(614276301); public static readonly PrefabGUID AB_Bandit_Ambush_RevealBuff = new PrefabGUID(-1076678456); public static readonly PrefabGUID AB_Bandit_Bomber_Elite_Roll = new PrefabGUID(-2048180340); public static readonly PrefabGUID AB_Bandit_Bomber_Elite_Roll_Group = new PrefabGUID(192866635); public static readonly PrefabGUID AB_Bandit_BombThrow_AbilityGroup = new PrefabGUID(-1743551272); public static readonly PrefabGUID AB_Bandit_BombThrow_Cast = new PrefabGUID(-733996338); public static readonly PrefabGUID AB_Bandit_BombThrow_Throw = new PrefabGUID(746729709); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_AbilityGroup = new PrefabGUID(-444905742); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Cast = new PrefabGUID(-1999880094); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_A = new PrefabGUID(-2120057081); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_B = new PrefabGUID(1077321307); public static readonly PrefabGUID AB_Bandit_ClusterBombThrow_Throw_C = new PrefabGUID(-1517314668); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_AbilityGroup = new PrefabGUID(403340165); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_Buff = new PrefabGUID(-1494713411); public static readonly PrefabGUID AB_Bandit_Deadeye_Camouflage_Cast = new PrefabGUID(1619421912); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Area = new PrefabGUID(-2085683744); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Cast = new PrefabGUID(-425480162); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Channel_Buff = new PrefabGUID(-1024366257); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Group = new PrefabGUID(1996370390); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Area = new PrefabGUID(318586876); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Cast = new PrefabGUID(646697719); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Channel_Buff = new PrefabGUID(1894913654); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Group = new PrefabGUID(642767950); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Hard_Throw = new PrefabGUID(-1052631664); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosbarrage_Throw = new PrefabGUID(1552667718); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Area = new PrefabGUID(1433173866); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Cast = new PrefabGUID(-538723780); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Group = new PrefabGUID(-1181691042); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_ProjectileDown = new PrefabGUID(-1181723749); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_ProjectileUp = new PrefabGUID(-2066463501); public static readonly PrefabGUID AB_Bandit_Deadeye_ChaosNuke_Hard_Spawner = new PrefabGUID(516139794); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Cast = new PrefabGUID(-2024307089); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Channel_Buff = new PrefabGUID(-1625210735); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Group = new PrefabGUID(-1230681995); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Cast = new PrefabGUID(-549357932); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Channel_Buff = new PrefabGUID(-381215490); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Group = new PrefabGUID(-836774616); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Hard_Projectile = new PrefabGUID(338969973); public static readonly PrefabGUID AB_Bandit_Deadeye_Chaosstorm_Projectile = new PrefabGUID(659256615); public static readonly PrefabGUID AB_Bandit_Deadeye_Idle_Buff = new PrefabGUID(-881914431); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Cast = new PrefabGUID(1015300268); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Group = new PrefabGUID(1336193986); public static readonly PrefabGUID AB_Bandit_Deadeye_RangedAttack_Projectile = new PrefabGUID(1262043059); public static readonly PrefabGUID AB_Bandit_Deadeye_Roll_AbilityGroup = new PrefabGUID(-912372242); public static readonly PrefabGUID AB_Bandit_Deadeye_Roll_CastAndRoll = new PrefabGUID(-1983337096); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_01_AbilityGroup = new PrefabGUID(-1601441951); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_02_AbilityGroup = new PrefabGUID(-1657698157); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_03_AbilityGroup = new PrefabGUID(-228936316); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Cast = new PrefabGUID(16980588); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_AbilityGroup = new PrefabGUID(514628041); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_Cast = new PrefabGUID(1621374433); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_ReachPos = new PrefabGUID(-2128770207); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_TargetSerpentSlotBuff = new PrefabGUID(343491640); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_Hard_WalkToPosBuff = new PrefabGUID(-352192969); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_ReachPos = new PrefabGUID(145985534); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_TargetSerpentSlotBuff = new PrefabGUID(1018849261); public static readonly PrefabGUID AB_Bandit_Fisherman_FeedSerpentLineup_WalkToPosBuff = new PrefabGUID(424796826); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_AbilityGroup = new PrefabGUID(643209588); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Buff = new PrefabGUID(1578560559); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Cast = new PrefabGUID(1802235612); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_DownedStun = new PrefabGUID(-531963043); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_PullBuff = new PrefabGUID(1511401953); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Throw = new PrefabGUID(-406761191); public static readonly PrefabGUID AB_Bandit_Fisherman_FishHook_Travel = new PrefabGUID(-56609007); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_AbilityGroup = new PrefabGUID(-2096565232); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_Buff = new PrefabGUID(-942168862); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_Cast = new PrefabGUID(2137527296); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionSpawnPostTravel = new PrefabGUID(2145493958); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionSpawnTravel = new PrefabGUID(796446287); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_MinionTrigger = new PrefabGUID(-263342865); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingBlowfish_TargetFishSpotBuff = new PrefabGUID(-1441774408); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_AbilityGroup = new PrefabGUID(-82547339); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_Cast = new PrefabGUID(-1677547928); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_TargetSerpentSlotBuff = new PrefabGUID(-459325308); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingLineup_WalkToPosBuff = new PrefabGUID(1667669669); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_AbilityGroup = new PrefabGUID(396802528); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Buff = new PrefabGUID(1143164491); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Cast = new PrefabGUID(1705082862); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_Object = new PrefabGUID(1173936438); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_SpawnTravel = new PrefabGUID(-2113681866); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingOldBoot_TargetFishSpotBuff = new PrefabGUID(-588408781); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_AbilityGroup = new PrefabGUID(647582679); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_Buff = new PrefabGUID(-1612091215); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_Cast = new PrefabGUID(-256287804); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionSpawnPostTravel = new PrefabGUID(1359094029); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionSpawnTravel = new PrefabGUID(-1957344524); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_MinionTrigger = new PrefabGUID(-1982947231); public static readonly PrefabGUID AB_Bandit_Fisherman_FishingPiranhas_TargetFishSpotBuff = new PrefabGUID(-1108714409); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_AbilityGroup = new PrefabGUID(571532506); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Buff = new PrefabGUID(-515272712); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Cast_Throw = new PrefabGUID(1184409626); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_DespawnBuff = new PrefabGUID(-163781604); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_DespawnDelayBuff = new PrefabGUID(2141155864); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_AbilityGroup = new PrefabGUID(-405467076); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Buff = new PrefabGUID(-162196022); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Cast_Throw = new PrefabGUID(-31935559); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_DespawnBuff = new PrefabGUID(1573364739); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_DespawnDelayBuff = new PrefabGUID(1995307154); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_SpawnBuff = new PrefabGUID(796768594); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_SpawnPosOccupiedBuff = new PrefabGUID(45227631); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Summon = new PrefabGUID(-1203439535); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_TargetFishSpotBuff = new PrefabGUID(-1067814600); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Hard_Throw = new PrefabGUID(605436873); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_SpawnBuff = new PrefabGUID(1431881003); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_SpawnPosOccupiedBuff = new PrefabGUID(979966699); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Summon = new PrefabGUID(294823191); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_TargetFishSpotBuff = new PrefabGUID(-2105496725); public static readonly PrefabGUID AB_Bandit_Fisherman_SerpentFeed_Throw = new PrefabGUID(197909875); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_AbilityGroup = new PrefabGUID(-1807544727); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Cast = new PrefabGUID(160205942); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Channel = new PrefabGUID(-1448436196); public static readonly PrefabGUID AB_Bandit_Fisherman_SpinAttack_Hit = new PrefabGUID(1481190476); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_AbilityGroup = new PrefabGUID(1516349451); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Cast01 = new PrefabGUID(1168365685); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Cast02 = new PrefabGUID(102339461); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Hit01 = new PrefabGUID(1700359110); public static readonly PrefabGUID AB_Bandit_Fisherman_SwingAttack_Hit02 = new PrefabGUID(2031929448); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_AbilityGroup = new PrefabGUID(-892431821); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Area = new PrefabGUID(-55501018); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Buff = new PrefabGUID(-250777393); public static readonly PrefabGUID AB_Bandit_Foreman_BloodRage_Cast = new PrefabGUID(1967051268); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Cast = new PrefabGUID(-102278544); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Group = new PrefabGUID(1187864883); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Throw = new PrefabGUID(-326095012); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Throw_Center = new PrefabGUID(1034684941); public static readonly PrefabGUID AB_Bandit_Foreman_BoltStorm_Trigger = new PrefabGUID(-978448375); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_BloodRage_Cast = new PrefabGUID(-236936957); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_BloodRage_Group = new PrefabGUID(-1100933071); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Cast = new PrefabGUID(-504877178); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Group = new PrefabGUID(-2010697707); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_AbilityGroup = new PrefabGUID(46962343); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_BloodRage_AbilityGroup = new PrefabGUID(-1432555386); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_BloodRage_Cast = new PrefabGUID(-1188423561); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_Cast = new PrefabGUID(-1555191296); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Hard_Projectile = new PrefabGUID(-1461521784); public static readonly PrefabGUID AB_Bandit_Foreman_Crossbow_Projectile = new PrefabGUID(926720349); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_AbilityGroup = new PrefabGUID(-1326540020); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Cast = new PrefabGUID(13962946); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Hard_AbilityGroup = new PrefabGUID(-1696612225); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Hard_Cast = new PrefabGUID(45482985); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_AbilityGroup = new PrefabGUID(-871701576); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Buff = new PrefabGUID(-1850501474); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Cast = new PrefabGUID(1428691280); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Hard_AbilityGroup = new PrefabGUID(-1568783706); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Init_Hard_Cast = new PrefabGUID(-1456665278); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_Projectile = new PrefabGUID(1154919829); public static readonly PrefabGUID AB_Bandit_Foreman_RapidShot_StaggerBuff = new PrefabGUID(1772599073); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Cast = new PrefabGUID(-968455089); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_GateBoss_MinionBuff = new PrefabGUID(1936552741); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Group = new PrefabGUID(1914101495); public static readonly PrefabGUID AB_Bandit_Foreman_Reinforcement_Summon = new PrefabGUID(891231141); public static readonly PrefabGUID AB_Bandit_Foreman_Roll_CastAndRoll = new PrefabGUID(-902150618); public static readonly PrefabGUID AB_Bandit_Foreman_Roll_Group = new PrefabGUID(-1773431654); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Buff = new PrefabGUID(-1388221055); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Cast = new PrefabGUID(-378355710); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Group = new PrefabGUID(2130985273); public static readonly PrefabGUID AB_Bandit_Foreman_ThrowNet_Throw = new PrefabGUID(1792504388); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_AbilityGroup = new PrefabGUID(-1675488046); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_Buff = new PrefabGUID(1564776620); public static readonly PrefabGUID AB_Bandit_Foreman_VBlood_Emote_Aggro_Cast = new PrefabGUID(-1709807211); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_AbilityGroup = new PrefabGUID(1015070299); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Buff = new PrefabGUID(172001911); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Cast = new PrefabGUID(1320706811); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_EndBuff = new PrefabGUID(-289232633); public static readonly PrefabGUID AB_Bandit_FrostArrow_Camouflage_HARD_Nova = new PrefabGUID(577840459); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_AbilityGroup = new PrefabGUID(766284586); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Cast = new PrefabGUID(-652657527); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_AbilityGroup = new PrefabGUID(-328617085); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Cast = new PrefabGUID(2055017810); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Throw01 = new PrefabGUID(-698051948); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Throw02 = new PrefabGUID(209868589); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Trigger01 = new PrefabGUID(-721181968); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Hard_Trigger02 = new PrefabGUID(1789626324); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Throw = new PrefabGUID(-1404569475); public static readonly PrefabGUID AB_Bandit_FrostArrow_RainOfArrows_Trigger = new PrefabGUID(1085881602); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Cast = new PrefabGUID(-895811403); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Group = new PrefabGUID(2134585360); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Hard_Cast = new PrefabGUID(-1374239147); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Hard_Group = new PrefabGUID(-1871956083); public static readonly PrefabGUID AB_Bandit_FrosttArrow_MultiShot_Projectile = new PrefabGUID(1042909452); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Cast = new PrefabGUID(1547925762); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Group = new PrefabGUID(-39311902); public static readonly PrefabGUID AB_Bandit_Hunter_Bow_Projectile = new PrefabGUID(1802976129); public static readonly PrefabGUID AB_Bandit_Hunter_Roll_AbilityGroup = new PrefabGUID(564244811); public static readonly PrefabGUID AB_Bandit_Hunter_Roll_CastAndRoll = new PrefabGUID(828882973); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_AbilityGroup = new PrefabGUID(-1854347593); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_Cast = new PrefabGUID(-1437515280); public static readonly PrefabGUID AB_Bandit_Leader_CallWolf_Summon = new PrefabGUID(-419870015); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Cast = new PrefabGUID(1956190540); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Group = new PrefabGUID(-589722860); public static readonly PrefabGUID AB_Bandit_Leader_Crossbow_Projectile = new PrefabGUID(-269688030); public static readonly PrefabGUID AB_Bandit_Leader_OnAggro_AbilityGroup = new PrefabGUID(1567999366); public static readonly PrefabGUID AB_Bandit_Leader_OnAggro_Cast = new PrefabGUID(1304417048); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_AbilityGroup = new PrefabGUID(-67405040); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Buff = new PrefabGUID(-1406264844); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Cast = new PrefabGUID(-1144749945); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_CountEnemies = new PrefabGUID(1163260); public static readonly PrefabGUID AB_Bandit_Leader_QuickDraw_Stagger_Debuff = new PrefabGUID(2013098681); public static readonly PrefabGUID AB_Bandit_Leader_Roll_AbilityGroup = new PrefabGUID(138056981); public static readonly PrefabGUID AB_Bandit_Leader_Roll_CastAndRoll = new PrefabGUID(814281313); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Cast = new PrefabGUID(-1478907722); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Group = new PrefabGUID(920868547); public static readonly PrefabGUID AB_Bandit_Leader_Strafe_Projectile = new PrefabGUID(-835823412); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Buff = new PrefabGUID(1167706357); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Cast = new PrefabGUID(-1795398926); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Group = new PrefabGUID(1550497814); public static readonly PrefabGUID AB_Bandit_Leader_ThrowNet_Throw = new PrefabGUID(-293977621); public static readonly PrefabGUID AB_Bandit_MegaBomb_Ground = new PrefabGUID(1249427475); public static readonly PrefabGUID AB_Bandit_Mugger_Block_AbilityGroup = new PrefabGUID(616797239); public static readonly PrefabGUID AB_Bandit_Mugger_Block_Buff = new PrefabGUID(-816211166); public static readonly PrefabGUID AB_Bandit_Mugger_Block_Cast = new PrefabGUID(-137254439); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Buff = new PrefabGUID(1058444186); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Cast = new PrefabGUID(1973172284); public static readonly PrefabGUID AB_Bandit_Mugger_GapCloser_Group = new PrefabGUID(2034763818); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Cast01 = new PrefabGUID(-662440840); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Cast02 = new PrefabGUID(-2120002335); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Group = new PrefabGUID(1281316565); public static readonly PrefabGUID AB_Bandit_Mugger_MeleeAttack_Hit = new PrefabGUID(-1244488154); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Pushups = new PrefabGUID(639938511); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Situps = new PrefabGUID(-1749423133); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Tinker = new PrefabGUID(-692399578); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Cast_Whittling = new PrefabGUID(25089619); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Pushups = new PrefabGUID(-1880729304); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Situps = new PrefabGUID(-976938930); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Tinker = new PrefabGUID(-937443015); public static readonly PrefabGUID AB_Bandit_Shared_Idle_Group_Whittling = new PrefabGUID(1067834426); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Cast = new PrefabGUID(-943520805); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Group = new PrefabGUID(-1250624804); public static readonly PrefabGUID AB_Bandit_Stalker_ChargeAttack_Hit = new PrefabGUID(904465818); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Cast = new PrefabGUID(1722414615); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Group = new PrefabGUID(-1969189808); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack_Hit = new PrefabGUID(-1248839893); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Cast = new PrefabGUID(-695801888); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Group = new PrefabGUID(1365760673); public static readonly PrefabGUID AB_Bandit_Stalker_MeleeAttack02_Hit = new PrefabGUID(120174250); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile = new PrefabGUID(810694829); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile_Cast = new PrefabGUID(1492163222); public static readonly PrefabGUID AB_Bandit_Stalker_Projectile_Group = new PrefabGUID(-1997657671); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Cast = new PrefabGUID(-1110837825); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Group = new PrefabGUID(65616384); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_ChargeAttack_Hit = new PrefabGUID(13465215); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_AbilityGroup = new PrefabGUID(-146108512); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_Buff = new PrefabGUID(-768608303); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_Aggro_Cast = new PrefabGUID(1704098967); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1194576057); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Cast = new PrefabGUID(-375142); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Group = new PrefabGUID(-66951019); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_MeleeAttack_Hit = new PrefabGUID(-1648675359); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile = new PrefabGUID(1248898466); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Cast = new PrefabGUID(-746091239); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Group = new PrefabGUID(226929260); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard = new PrefabGUID(1809270482); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard_Cast = new PrefabGUID(40230641); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Projectile_Hard_Group = new PrefabGUID(-1865487078); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Cast = new PrefabGUID(-1166042431); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Group = new PrefabGUID(-1749428209); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_Reinforcement_Summon = new PrefabGUID(-2021138427); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Cast = new PrefabGUID(-1337978054); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ChannlingBuff = new PrefabGUID(1659131783); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Group = new PrefabGUID(19031114); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Object = new PrefabGUID(1416059704); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Throw = new PrefabGUID(-1312236901); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ThrowLong = new PrefabGUID(-1463258350); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_ThrowShort = new PrefabGUID(849433643); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpikeTrap_Trigger = new PrefabGUID(165382461); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Cast = new PrefabGUID(-1279337499); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Channel = new PrefabGUID(936484594); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Group = new PrefabGUID(-2121210997); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hard_Cast = new PrefabGUID(-237625615); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hard_Group = new PrefabGUID(-609538743); public static readonly PrefabGUID AB_Bandit_Stalker_VBlood_SpinAttack_Hit = new PrefabGUID(1721747521); public static readonly PrefabGUID AB_Bandit_StickyBomb_AbilityGroup = new PrefabGUID(1479036818); public static readonly PrefabGUID AB_Bandit_StickyBomb_Cast = new PrefabGUID(-1779424390); public static readonly PrefabGUID AB_Bandit_StickyBomb_ExplosiveBuff = new PrefabGUID(-695537141); public static readonly PrefabGUID AB_Bandit_StickyBomb_ExplosiveImpact = new PrefabGUID(-896351921); public static readonly PrefabGUID AB_Bandit_StickyBomb_HitBuff = new PrefabGUID(1118893557); public static readonly PrefabGUID AB_Bandit_StickyBomb_Projectile = new PrefabGUID(-525938660); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_AbilityGroup = new PrefabGUID(1688748795); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_AreaThrow = new PrefabGUID(810319466); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Cast = new PrefabGUID(-211553165); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Hit = new PrefabGUID(1603067418); public static readonly PrefabGUID AB_Bandit_StoneBreaker_MountainRumbler_Hard_Projectile = new PrefabGUID(1873064515); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_AbilityGroup = new PrefabGUID(2078583785); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_AreaThrow = new PrefabGUID(-1005194448); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Cast = new PrefabGUID(-54449418); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Hit = new PrefabGUID(616126562); public static readonly PrefabGUID AB_Bandit_StoneBreaker_RockSmash_Hard_Projectile = new PrefabGUID(-1856356338); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_AbilityGroup = new PrefabGUID(1684865572); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_Cast = new PrefabGUID(1832709242); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_DownedStun = new PrefabGUID(-621173288); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_Hit = new PrefabGUID(1646866546); public static readonly PrefabGUID AB_Bandit_StoneBreaker_SwingAttack_Hard_LaunchBuff = new PrefabGUID(728002893); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_ChaosArea_Hard = new PrefabGUID(-870209514); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_AbilityGroup = new PrefabGUID(593979922); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_AreaThrow = new PrefabGUID(-49087485); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Cast = new PrefabGUID(2019901258); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Hit = new PrefabGUID(1093076824); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_MountainRumbler_Projectile = new PrefabGUID(-1320443001); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Cast = new PrefabGUID(-660133369); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Group = new PrefabGUID(1267543813); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_Reinforcement_Summon = new PrefabGUID(1189193321); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_AbilityGroup = new PrefabGUID(-96620724); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_AreaThrow = new PrefabGUID(-735643063); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Cast = new PrefabGUID(852775925); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Hit = new PrefabGUID(-1202407466); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_RockSmash_Projectile = new PrefabGUID(1173431424); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Cast = new PrefabGUID(526486472); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Channel = new PrefabGUID(-1097545335); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Group = new PrefabGUID(-47403235); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SpinAttack_Hit = new PrefabGUID(195936210); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_AbilityGroup = new PrefabGUID(-331113507); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_Cast = new PrefabGUID(26586665); public static readonly PrefabGUID AB_Bandit_StoneBreaker_VBlood_SwingAttack_Hit = new PrefabGUID(207297823); public static readonly PrefabGUID AB_Bandit_Thief_Counter_AbilityGroup = new PrefabGUID(817680188); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Buff = new PrefabGUID(-1641592767); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Cast = new PrefabGUID(-544841952); public static readonly PrefabGUID AB_Bandit_Thief_Counter_PreTravel = new PrefabGUID(751373588); public static readonly PrefabGUID AB_Bandit_Thief_Counter_Travel = new PrefabGUID(-1180330107); public static readonly PrefabGUID AB_Bandit_Thief_Counter_TravelEnd = new PrefabGUID(1334064160); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Cast = new PrefabGUID(1927151107); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Group = new PrefabGUID(-691814641); public static readonly PrefabGUID AB_Bandit_Thief_HeavyAttack_Hit = new PrefabGUID(1509293541); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Cast01 = new PrefabGUID(-923748863); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Group = new PrefabGUID(1734839687); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack01_Hit = new PrefabGUID(-113835723); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack02_Cast02 = new PrefabGUID(1155744315); public static readonly PrefabGUID AB_Bandit_Thief_MeleeAttack02_Group = new PrefabGUID(-2106739571); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Buff = new PrefabGUID(1595547018); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Cast = new PrefabGUID(-1015417951); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Buff = new PrefabGUID(2070247233); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Cast = new PrefabGUID(388863053); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Elite_Group = new PrefabGUID(-659513479); public static readonly PrefabGUID AB_Bandit_Thief_Rush_Group = new PrefabGUID(-1956103113); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Cast01 = new PrefabGUID(1771160214); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Group = new PrefabGUID(-1484849310); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite01_Hit = new PrefabGUID(-889980562); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite02_Cast02 = new PrefabGUID(366397341); public static readonly PrefabGUID AB_Bandit_Thief_SwiftSwing_Elite02_Group = new PrefabGUID(1112631726); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_AbilityGroup = new PrefabGUID(1660492999); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_Cast = new PrefabGUID(-829105677); public static readonly PrefabGUID AB_Bandit_Thieft_Dash_Elite_Phase = new PrefabGUID(789337881); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Cast01 = new PrefabGUID(422940571); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Cast02 = new PrefabGUID(1317399641); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Group = new PrefabGUID(-1970983747); public static readonly PrefabGUID AB_Bandit_Thug_MeleeAttack_Hit = new PrefabGUID(1692417678); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_AbilityGroup = new PrefabGUID(-3835897); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_Cast = new PrefabGUID(-238992625); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_CallReinforcements_Summon = new PrefabGUID(-2124269656); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_AbilityGroup = new PrefabGUID(840159262); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Cast = new PrefabGUID(1271701569); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Hard_Area = new PrefabGUID(152359773); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosCharge_Phase = new PrefabGUID(1489346628); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_AbilityGroup = new PrefabGUID(1452056926); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Buff = new PrefabGUID(694556689); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Cast = new PrefabGUID(606469554); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosParry_Projectile = new PrefabGUID(1197747538); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_AbilityGroup = new PrefabGUID(2003603501); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_AreaThrow = new PrefabGUID(-1873502217); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Cast = new PrefabGUID(-676261650); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Hit = new PrefabGUID(1334540542); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_ChaosWave_Projectile = new PrefabGUID(1243050104); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_AbilityGroup01 = new PrefabGUID(455219779); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_AbilityGroup02 = new PrefabGUID(-453755281); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Cast01 = new PrefabGUID(2019564238); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Cast02 = new PrefabGUID(1328465502); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Hit01 = new PrefabGUID(-2065483664); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_DoubleSwing_Hit02 = new PrefabGUID(931326790); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_AbilityGroup = new PrefabGUID(69086718); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Buff = new PrefabGUID(784366378); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Cast = new PrefabGUID(-302281354); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_AbilityGroup = new PrefabGUID(82350674); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_Cast = new PrefabGUID(1608242820); public static readonly PrefabGUID AB_Bandit_Tourok_VBlood_RageOfChaos_Charge_Phase = new PrefabGUID(-183575635); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_AbilityGroup = new PrefabGUID(358187796); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_Cast = new PrefabGUID(210911413); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_HideWeapon_Buff = new PrefabGUID(1114144111); public static readonly PrefabGUID AB_Bandit_Tourok_WeaponThrow_Hard_Projectile = new PrefabGUID(1327750581); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Cast01 = new PrefabGUID(-1412708535); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Cast02 = new PrefabGUID(-1242398765); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Group = new PrefabGUID(1400073690); public static readonly PrefabGUID AB_Bandit_Trapper_MeleeAttack01_Hit = new PrefabGUID(-1541586928); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_AbilityGroup = new PrefabGUID(-309308308); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Buff = new PrefabGUID(-885699430); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Cast = new PrefabGUID(-1709720054); public static readonly PrefabGUID AB_Bandit_Trapper_NetThrow_Throw = new PrefabGUID(-703151210); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_AbilityGroup = new PrefabGUID(-1826323796); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Cast01 = new PrefabGUID(-1264467506); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Cast02 = new PrefabGUID(400623713); public static readonly PrefabGUID AB_Bandit_Worker_Gatherer_MeleeAttack_Hit01 = new PrefabGUID(526643802); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_AbilityGroup = new PrefabGUID(900927411); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_Cast = new PrefabGUID(156862047); public static readonly PrefabGUID AB_Bandit_Worker_Miner_Mine_Hit = new PrefabGUID(126204861); public static readonly PrefabGUID AB_Bandit_Worker_Shared_Flee_AbilityGroup = new PrefabGUID(1340319300); public static readonly PrefabGUID AB_Bandit_Worker_Shared_Flee_Cast = new PrefabGUID(1566211437); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_AbilityGroup = new PrefabGUID(2039677643); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Cast01 = new PrefabGUID(1661895736); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Cast02 = new PrefabGUID(-1902190116); public static readonly PrefabGUID AB_Bandit_Worker_Shared_MeleeAttack_Hit01 = new PrefabGUID(-1879470218); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_AbilityGroup = new PrefabGUID(-1176933244); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_Cast = new PrefabGUID(1366309622); public static readonly PrefabGUID AB_BarrelDisguise_BarrelRoll_Phase = new PrefabGUID(794168656); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Buff = new PrefabGUID(581640601); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Cast = new PrefabGUID(-1151659014); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationApproch_Group = new PrefabGUID(-292632051); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Buff = new PrefabGUID(1644611028); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Cast = new PrefabGUID(518003890); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleClose_Group = new PrefabGUID(1493606342); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Buff = new PrefabGUID(-1073433311); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Cast = new PrefabGUID(-706163371); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleFar_Group = new PrefabGUID(1407801281); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Buff = new PrefabGUID(-1425536461); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Cast = new PrefabGUID(1668553037); public static readonly PrefabGUID AB_BatSwarm_BehaviourVariationCircleMid_Group = new PrefabGUID(417450031); public static readonly PrefabGUID AB_BatSwarm_Melee_AbilityGroup = new PrefabGUID(5164221); public static readonly PrefabGUID AB_BatSwarm_Melee_Cast = new PrefabGUID(-510562927); public static readonly PrefabGUID AB_BatSwarm_Melee_Hit = new PrefabGUID(1437404153); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_AbilityGroup = new PrefabGUID(1450902136); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Cast = new PrefabGUID(-1933992648); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Debuff = new PrefabGUID(418565276); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_End = new PrefabGUID(-1461371214); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Hit = new PrefabGUID(-1055188210); public static readonly PrefabGUID AB_BatVampire_AirDrop_HARD_Phase = new PrefabGUID(100945319); public static readonly PrefabGUID AB_BatVampire_BatStorm_AbilityGroup = new PrefabGUID(-254080557); public static readonly PrefabGUID AB_BatVampire_BatStorm_Cast = new PrefabGUID(2070624298); public static readonly PrefabGUID AB_BatVampire_BatStorm_Projectile = new PrefabGUID(-833043519); public static readonly PrefabGUID AB_BatVampire_BatStorm_ProjectileSpawnerBuff = new PrefabGUID(1280015305); public static readonly PrefabGUID AB_BatVampire_BatStorm_ProjectileTrigger = new PrefabGUID(190165383); public static readonly PrefabGUID AB_BatVampire_BatStorm_ScreenEffectBuff = new PrefabGUID(-1762287907); public static readonly PrefabGUID AB_BatVampire_BatStorm_Trigger = new PrefabGUID(1292017056); public static readonly PrefabGUID AB_BatVampire_BatSwarm_AbilityGroup = new PrefabGUID(716346677); public static readonly PrefabGUID AB_BatVampire_BatSwarm_BleedBuff = new PrefabGUID(1248170710); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Cast = new PrefabGUID(-97131038); public static readonly PrefabGUID AB_BatVampire_BatSwarm_HitBuff = new PrefabGUID(363438545); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile_Straight = new PrefabGUID(-1553976958); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile01 = new PrefabGUID(850610109); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Projectile02 = new PrefabGUID(-1049196958); public static readonly PrefabGUID AB_BatVampire_BatSwarm_Trigger = new PrefabGUID(410670682); public static readonly PrefabGUID AB_BatVampire_JumpStrike_AbilityGroup = new PrefabGUID(-66831677); public static readonly PrefabGUID AB_BatVampire_JumpStrike_Cast = new PrefabGUID(347077642); public static readonly PrefabGUID AB_BatVampire_JumpStrike_End = new PrefabGUID(1110408956); public static readonly PrefabGUID AB_BatVampire_JumpStrike_Phase = new PrefabGUID(-2133957108); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_AbilityGroup = new PrefabGUID(-1965562520); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast01 = new PrefabGUID(-1581102443); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast02 = new PrefabGUID(1248469826); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Cast03 = new PrefabGUID(1658073310); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Hit = new PrefabGUID(636829290); public static readonly PrefabGUID AB_BatVampire_MeleeAttack_Hit03 = new PrefabGUID(359609110); public static readonly PrefabGUID AB_BatVampire_NightDash_AbilityGroup = new PrefabGUID(1416508240); public static readonly PrefabGUID AB_BatVampire_NightDash_AggroBuff = new PrefabGUID(1751996731); public static readonly PrefabGUID AB_BatVampire_NightDash_BleedBuff = new PrefabGUID(765789382); public static readonly PrefabGUID AB_BatVampire_NightDash_Cast = new PrefabGUID(793689690); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_AbilityGroup = new PrefabGUID(-1648920159); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_Cast = new PrefabGUID(1741985697); public static readonly PrefabGUID AB_BatVampire_NightDash_Dash_Phase = new PrefabGUID(-794295605); public static readonly PrefabGUID AB_BatVampire_NightDash_MaxDurationBuff = new PrefabGUID(-1830017075); public static readonly PrefabGUID AB_BatVampire_NightDash_TargetedBuff = new PrefabGUID(-1202372086); public static readonly PrefabGUID AB_BatVampire_NightDash_Travel = new PrefabGUID(-873017477); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_AbilityGroup = new PrefabGUID(1146467217); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_Cast = new PrefabGUID(-428216997); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_End = new PrefabGUID(1991819397); public static readonly PrefabGUID AB_BatVampire_QuickTeleport_Phase = new PrefabGUID(-205551308); public static readonly PrefabGUID AB_BatVampire_SummonMinions_AbilityGroup = new PrefabGUID(-597709516); public static readonly PrefabGUID AB_BatVampire_SummonMinions_Cast = new PrefabGUID(-1081262130); public static readonly PrefabGUID AB_BatVampire_SummonMinions_End = new PrefabGUID(568585403); public static readonly PrefabGUID AB_BatVampire_SummonMinions_MinionTravel = new PrefabGUID(-243606225); public static readonly PrefabGUID AB_BatVampire_SummonMinions_MinionTravelEnd = new PrefabGUID(-1385157697); public static readonly PrefabGUID AB_BatVampire_SummonMinions_Phase = new PrefabGUID(-224955481); public static readonly PrefabGUID AB_BatVampire_Whirlwind_AbilityGroup = new PrefabGUID(-1698981316); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Cast = new PrefabGUID(-659266870); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Channel = new PrefabGUID(-376963499); public static readonly PrefabGUID AB_BatVampire_Whirlwind_End = new PrefabGUID(2092565960); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Hit = new PrefabGUID(689442495); public static readonly PrefabGUID AB_BatVampire_Whirlwind_HitBuff = new PrefabGUID(-301760618); public static readonly PrefabGUID AB_BatVampire_Whirlwind_Projectile = new PrefabGUID(-2115186527); public static readonly PrefabGUID AB_Bear_AreaAttack_Cast = new PrefabGUID(1078899666); public static readonly PrefabGUID AB_Bear_AreaAttack_Group = new PrefabGUID(160063059); public static readonly PrefabGUID AB_Bear_AreaAttack_Hit = new PrefabGUID(-1857672586); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Cast = new PrefabGUID(-1357868245); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Group = new PrefabGUID(-1385141321); public static readonly PrefabGUID AB_Bear_AreaAttack_Large_Hit = new PrefabGUID(2085177302); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Cast = new PrefabGUID(1435954159); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Group = new PrefabGUID(-1756745786); public static readonly PrefabGUID AB_Bear_Corrupted_AreaAttack_Hit = new PrefabGUID(-1131367727); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_AbilityGroup = new PrefabGUID(369886705); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Cast = new PrefabGUID(-26219035); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Channel = new PrefabGUID(-1204533751); public static readonly PrefabGUID AB_Bear_Corrupted_CorruptionAttack_Throw = new PrefabGUID(628633211); public static readonly PrefabGUID AB_Bear_Cursed_Dash = new PrefabGUID(1691986235); public static readonly PrefabGUID AB_Bear_Cursed_Dash_Cast = new PrefabGUID(-1200048631); public static readonly PrefabGUID AB_Bear_Cursed_Dash_Group = new PrefabGUID(-730437928); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_AbilityGroup = new PrefabGUID(-1972594588); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_Cast = new PrefabGUID(-1332081065); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_Hit = new PrefabGUID(1684028547); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_LongThrow = new PrefabGUID(661385602); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_MediumThrow = new PrefabGUID(1431423545); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_ShortThrow = new PrefabGUID(-472333822); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_ThrowSpawnerBuff = new PrefabGUID(-283916213); public static readonly PrefabGUID AB_Bear_Dire_AreaAttack_VeryLongThrow = new PrefabGUID(-1671998261); public static readonly PrefabGUID AB_Bear_Dire_Dash = new PrefabGUID(1769653891); public static readonly PrefabGUID AB_Bear_Dire_Dash_AbilityGroup = new PrefabGUID(-1709055711); public static readonly PrefabGUID AB_Bear_Dire_Dash_Cast = new PrefabGUID(-279330870); public static readonly PrefabGUID AB_Bear_Dire_Knockdown_StunBuff = new PrefabGUID(-1133702782); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_AbilityGroup = new PrefabGUID(1814567660); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_AbilityGroup_Hasted = new PrefabGUID(-217583794); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Cast = new PrefabGUID(1648109595); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Cast_Hasted = new PrefabGUID(-46604831); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_CountBuff_01 = new PrefabGUID(637874708); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_CountBuff_02 = new PrefabGUID(-1010916840); public static readonly PrefabGUID AB_Bear_Dire_MeleeAttack_Hit = new PrefabGUID(-969508928); public static readonly PrefabGUID AB_Bear_Dire_OnAggro_Emote_AbilityGroup = new PrefabGUID(-1155840114); public static readonly PrefabGUID AB_Bear_Dire_OnAggro_Emote_Cast = new PrefabGUID(-835404749); public static readonly PrefabGUID AB_Bear_Dire_PermaStone_Hard_Spawner = new PrefabGUID(1869400217); public static readonly PrefabGUID AB_Bear_Dire_PermaStone_Hard_Throw = new PrefabGUID(826184677); public static readonly PrefabGUID AB_Bear_Dire_Roar_AbilityGroup = new PrefabGUID(-1559349374); public static readonly PrefabGUID AB_Bear_Dire_Roar_Area = new PrefabGUID(1623254064); public static readonly PrefabGUID AB_Bear_Dire_Roar_Cast = new PrefabGUID(-714122181); public static readonly PrefabGUID AB_Bear_Dire_Roar_Haste = new PrefabGUID(1121555092); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_AbilityGroup = new PrefabGUID(-1748125028); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_AggroBuff = new PrefabGUID(772366153); public static readonly PrefabGUID AB_Bear_Dire_TargetSwitch_Cast = new PrefabGUID(-1786472471); public static readonly PrefabGUID AB_Bear_FallAsleep_Cast = new PrefabGUID(1221985602); public static readonly PrefabGUID AB_Bear_FallAsleep_Group = new PrefabGUID(-193432841); public static readonly PrefabGUID AB_Bear_FallAsleep_SleepingIdle_Buff = new PrefabGUID(-883762685); public static readonly PrefabGUID AB_Bear_MeleeAttack_Cast = new PrefabGUID(-27277817); public static readonly PrefabGUID AB_Bear_MeleeAttack_Group = new PrefabGUID(1745337333); public static readonly PrefabGUID AB_Bear_MeleeAttack_Hit = new PrefabGUID(-78823281); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Cast = new PrefabGUID(1582839126); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Group = new PrefabGUID(-1041059859); public static readonly PrefabGUID AB_Bear_MeleeAttack_Large_Hit = new PrefabGUID(-1355938576); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Cast = new PrefabGUID(582367638); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Fast_Cast = new PrefabGUID(881572895); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Fast_Group = new PrefabGUID(616732424); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Group = new PrefabGUID(-44955695); public static readonly PrefabGUID AB_Bear_Mutant_AreaAttack_Hit = new PrefabGUID(-1283390641); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Cast = new PrefabGUID(899195461); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Group = new PrefabGUID(-77977745); public static readonly PrefabGUID AB_Bear_Mutant_MeleeAttack_Hit = new PrefabGUID(557784151); public static readonly PrefabGUID AB_Bear_OnAggro_AbilityGroup = new PrefabGUID(-1241654227); public static readonly PrefabGUID AB_Bear_OnAggro_Cast = new PrefabGUID(64260220); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Cast = new PrefabGUID(1510777326); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Group = new PrefabGUID(-2138455533); public static readonly PrefabGUID AB_Bear_Shapeshift_AreaAttack_Hit = new PrefabGUID(-931027244); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Cast = new PrefabGUID(-1364267866); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Group = new PrefabGUID(-190598145); public static readonly PrefabGUID AB_Bear_SpiritAreaAttack_Hit = new PrefabGUID(1585340389); public static readonly PrefabGUID AB_Bear_WakeUp_Cast = new PrefabGUID(443716463); public static readonly PrefabGUID AB_Bear_WakeUp_Group = new PrefabGUID(-388636006); public static readonly PrefabGUID AB_BellRingerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(1276793139); public static readonly PrefabGUID AB_BellRingerMale_OnAggro_Cast_01 = new PrefabGUID(1179982386); public static readonly PrefabGUID AB_Blackfang_Alchemist_Drink_AbilityGroup = new PrefabGUID(-1641231517); public static readonly PrefabGUID AB_Blackfang_Alchemist_Drink_Cast = new PrefabGUID(-1166630536); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_AbilityGroup = new PrefabGUID(-1573201851); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_Cast = new PrefabGUID(-1630606068); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_Dash = new PrefabGUID(587002960); public static readonly PrefabGUID AB_Blackfang_Alchemist_Roll_MovementBuff = new PrefabGUID(-772506607); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_AbilityGroup = new PrefabGUID(516384057); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Cast01 = new PrefabGUID(498995886); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Cast02 = new PrefabGUID(-422405387); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_ContinousArea = new PrefabGUID(-765325334); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_ContinousArea_Small = new PrefabGUID(1794991801); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_HitBuff = new PrefabGUID(-106509608); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Throw = new PrefabGUID(-1470568471); public static readonly PrefabGUID AB_Blackfang_Alchemist_Throw_Throw2 = new PrefabGUID(853770047); public static readonly PrefabGUID AB_Blackfang_Ambush_Buff = new PrefabGUID(1692138750); public static readonly PrefabGUID AB_Blackfang_Ambush_RevealBuff = new PrefabGUID(-170529237); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_AbilityGroup = new PrefabGUID(1798105602); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Cast = new PrefabGUID(1939813747); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Channel = new PrefabGUID(-899295252); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Dash = new PrefabGUID(-734202137); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_FlightBuff = new PrefabGUID(1637315709); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_GrabbedBuff = new PrefabGUID(957938484); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_GrabingBuff = new PrefabGUID(1803412155); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_LandBuff = new PrefabGUID(107060256); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_PinBuff = new PrefabGUID(434680966); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Projectile = new PrefabGUID(892837941); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_Recover = new PrefabGUID(58711313); public static readonly PrefabGUID AB_Blackfang_CarverBoss_BodySlam_RecoverMiss = new PrefabGUID(-1762149671); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_AbilityGroup = new PrefabGUID(74226303); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_Cast01 = new PrefabGUID(710361545); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopChop_Hit = new PrefabGUID(1389755604); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_AbilityGroup = new PrefabGUID(-1796211602); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_AggroBuff = new PrefabGUID(803492554); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Cast01 = new PrefabGUID(330806151); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Channel = new PrefabGUID(456613973); public static readonly PrefabGUID AB_Blackfang_carverBoss_ChopLeap_MissRecover = new PrefabGUID(-353789914); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_StabTargetBuff = new PrefabGUID(1629292845); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_Travel = new PrefabGUID(-385326595); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ChopLeap_TravelEnd = new PrefabGUID(1543986369); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_AbilityGroup = new PrefabGUID(964878669); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_AggroBuff = new PrefabGUID(926596166); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Buff = new PrefabGUID(242858653); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Cast = new PrefabGUID(2062119815); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CoatWeapon_Trigger = new PrefabGUID(-1796297364); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area = new PrefabGUID(1792743267); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Dash = new PrefabGUID(-1101163949); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Dash_NoSound = new PrefabGUID(-909375245); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Large = new PrefabGUID(-606663366); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Melee = new PrefabGUID(-303466414); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Area_Projectile = new PrefabGUID(423900563); public static readonly PrefabGUID AB_Blackfang_CarverBoss_CorruptionSpill_Buff = new PrefabGUID(1472320596); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_AbilityGroup = new PrefabGUID(1147924409); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_AggroBuff = new PrefabGUID(-1047968169); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_BlockBuff = new PrefabGUID(1642687067); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Cast01 = new PrefabGUID(-1113063271); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Projectile = new PrefabGUID(-1943006622); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_Travel = new PrefabGUID(1445522819); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaChopLeap_TravelEnd = new PrefabGUID(-404224222); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_AbilityGroup = new PrefabGUID(2102431676); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_AggroBuff = new PrefabGUID(1379727984); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_BlockBuff = new PrefabGUID(1539287677); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Cast01 = new PrefabGUID(728880455); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Cast02 = new PrefabGUID(1240343186); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Hit = new PrefabGUID(2065525237); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Hit02 = new PrefabGUID(1370037725); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_Projectile = new PrefabGUID(-619652431); public static readonly PrefabGUID AB_Blackfang_CarverBoss_MegaCleave_ProjectileLauncher = new PrefabGUID(911035600); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_AbilityGroup = new PrefabGUID(-68142483); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_Cast = new PrefabGUID(2029434860); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SingleThrow_Throw = new PrefabGUID(-1037563967); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_AbilityGroup = new PrefabGUID(-833255541); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Cast = new PrefabGUID(-1906026424); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Channel = new PrefabGUID(-864074498); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_FollowupThrow = new PrefabGUID(651636982); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_InitialThrow = new PrefabGUID(-1719525983); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_AbilityGroup = new PrefabGUID(684024768); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Cast = new PrefabGUID(-1774430544); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Throw = new PrefabGUID(221418359); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_Small_Trigger = new PrefabGUID(1237856852); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SpewCorruption_SplashThrow = new PrefabGUID(-1158517504); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_AbilityGroup = new PrefabGUID(-1592003626); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_Cast = new PrefabGUID(-806722104); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_StandBack_Buff = new PrefabGUID(861028343); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonCarvers_Summon = new PrefabGUID(-2104854704); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_AbiliyGroup = new PrefabGUID(-521003587); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_Cast = new PrefabGUID(543579520); public static readonly PrefabGUID AB_Blackfang_CarverBoss_SummonGuards_SummonGuards_Summon = new PrefabGUID(-1152250194); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_AbilityGroup = new PrefabGUID(1290253258); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_Cast = new PrefabGUID(-72487923); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_MultiThrow = new PrefabGUID(-1612336591); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_SingleThrow = new PrefabGUID(-241647784); public static readonly PrefabGUID AB_Blackfang_CarverBoss_ThrowCorruption_Trigger = new PrefabGUID(1465983347); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_AbilityGroup = new PrefabGUID(-1808411682); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_BlockBuff = new PrefabGUID(-2084302194); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Cast01 = new PrefabGUID(-1013326587); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_HasLeaptBuff = new PrefabGUID(1743736757); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_PreviousTargetBuff = new PrefabGUID(-2070186195); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Projectile = new PrefabGUID(-961318961); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_Travel = new PrefabGUID(-158689543); public static readonly PrefabGUID AB_Blackfang_CarverBoss_UltraMegaChopLeap_TravelEnd = new PrefabGUID(-195822017); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_AbilityGroup = new PrefabGUID(-1193077056); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Cast = new PrefabGUID(245223722); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_AbilityGroup = new PrefabGUID(1705726981); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_Cast = new PrefabGUID(-822796547); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Intense_Projectile = new PrefabGUID(1206576023); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WeaponThrow_Projectile = new PrefabGUID(112277332); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_Buff = new PrefabGUID(-1463517253); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_PostChannelBuff = new PrefabGUID(1973436542); public static readonly PrefabGUID AB_Blackfang_CarverBoss_Whirlwind_Projectile = new PrefabGUID(-1474131978); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_AbilityGroup = new PrefabGUID(-1457510412); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Cast01 = new PrefabGUID(-1923679156); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Cast02 = new PrefabGUID(-1949887359); public static readonly PrefabGUID AB_Blackfang_CarverBoss_WildSwings_Hit = new PrefabGUID(-528838806); public static readonly PrefabGUID AB_Blackfang_CorruptedCrow_CorruptionSpill_Area = new PrefabGUID(2065347452); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_AbilityGroup = new PrefabGUID(-1629729690); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_Buff = new PrefabGUID(1864118786); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitClose_Cast = new PrefabGUID(-1746784831); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_AbilityGroup = new PrefabGUID(-865776841); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_Buff = new PrefabGUID(-841258144); public static readonly PrefabGUID AB_Blackfang_DartFlinger_ChangeOrbitFar_Cast = new PrefabGUID(-1102275102); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_AbilityGroup = new PrefabGUID(-1167502816); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast = new PrefabGUID(-1923988887); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast02 = new PrefabGUID(-571282625); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Cast03 = new PrefabGUID(1414411227); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Projectile = new PrefabGUID(685037685); public static readonly PrefabGUID AB_Blackfang_Dartflinger_Fling_Projectile02 = new PrefabGUID(-1743854638); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingCharged = new PrefabGUID(1815945310); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingReady = new PrefabGUID(532646688); public static readonly PrefabGUID AB_Blackfang_General_WeaponCoatingRecharge = new PrefabGUID(981131442); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_AbilityGroup = new PrefabGUID(-941466362); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_AggroBuff = new PrefabGUID(1976120182); public static readonly PrefabGUID AB_Blackfang_Livith_AggroPlayers_Cast = new PrefabGUID(-1336073441); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_AbilityGroup = new PrefabGUID(987540308); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_Cast = new PrefabGUID(982754605); public static readonly PrefabGUID AB_Blackfang_Livith_CirclingStance_CircleBuff = new PrefabGUID(-778792811); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_AbilityGroup = new PrefabGUID(-1337706250); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_Cast = new PrefabGUID(1143560250); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FakeTarget = new PrefabGUID(-1676800249); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile01 = new PrefabGUID(1779809540); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile02 = new PrefabGUID(-976430586); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile03 = new PrefabGUID(1979385190); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanFakeProjectile04 = new PrefabGUID(794522069); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FanTrigger = new PrefabGUID(-963662266); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearGoToPosBuff = new PrefabGUID(984009223); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearTargetPosThrow = new PrefabGUID(-1230254155); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_FearTrigger = new PrefabGUID(-640727499); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_HideBuff = new PrefabGUID(-1511449744); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_IllusionKilledBuff = new PrefabGUID(-548966732); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_IllusionVisualiserBuff = new PrefabGUID(338004206); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_MasterTrigger = new PrefabGUID(2038175415); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_MinionTrigger = new PrefabGUID(-1318821795); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_Phase = new PrefabGUID(61752401); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_PostShieldDestroyBuff = new PrefabGUID(-1293543428); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ScreenBuff = new PrefabGUID(-1828369565); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ShieldBuff = new PrefabGUID(-1960475034); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_ShieldDestroyedPhase = new PrefabGUID(1297667389); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff01 = new PrefabGUID(-1194802586); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff02 = new PrefabGUID(181939917); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TargetedBuff03 = new PrefabGUID(-1530584845); public static readonly PrefabGUID AB_Blackfang_Livith_CloneNinjutsu_TriggerManager = new PrefabGUID(-354118264); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_AbilityGroup = new PrefabGUID(-315621824); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_AggroBuff = new PrefabGUID(-248859657); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Cast01 = new PrefabGUID(-1889498551); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Cast02 = new PrefabGUID(-1057568866); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_ForceLookBuff = new PrefabGUID(-297390358); public static readonly PrefabGUID AB_Blackfang_Livith_CuttingWind_Projectile = new PrefabGUID(-1297908446); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_AbilityGroup = new PrefabGUID(1318543111); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_CastAndDash = new PrefabGUID(1607213183); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_CircleBuff = new PrefabGUID(-1438729998); public static readonly PrefabGUID AB_Blackfang_Livith_Dash_ImmaterialBuff = new PrefabGUID(841798001); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_AbilityGroup = new PrefabGUID(139802405); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast01 = new PrefabGUID(-1282189200); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast02 = new PrefabGUID(1853670600); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Cast03 = new PrefabGUID(1577286406); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Hit01 = new PrefabGUID(267995118); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_Hit03 = new PrefabGUID(801768090); public static readonly PrefabGUID AB_Blackfang_Livith_MeleeAttack_RotationBuff = new PrefabGUID(-1037056595); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_AbilityGroup = new PrefabGUID(-140727030); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_Buff = new PrefabGUID(-1387196851); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_Cast = new PrefabGUID(72289721); public static readonly PrefabGUID AB_Blackfang_Livith_PermanentStealth_CircleBuff = new PrefabGUID(-683082530); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_AbilityGroup = new PrefabGUID(-385314771); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_Cast = new PrefabGUID(-1468323661); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_DropBuff = new PrefabGUID(1756436822); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_Hit = new PrefabGUID(-1384219466); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_LandStunBuff = new PrefabGUID(1732804032); public static readonly PrefabGUID AB_Blackfang_Livith_RoundKick_LaunchBuff = new PrefabGUID(-1721636531); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_AbilityGroup = new PrefabGUID(168833229); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_AggroBuff = new PrefabGUID(-629777717); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Buff = new PrefabGUID(2104665805); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Cast = new PrefabGUID(-1293624718); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_LifetimeBuff = new PrefabGUID(-1653761848); public static readonly PrefabGUID AB_Blackfang_Livith_ShadowDance_Phase = new PrefabGUID(1860384370); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_AbilityGroup = new PrefabGUID(-407341422); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Buff = new PrefabGUID(-1187321033); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Cast01 = new PrefabGUID(-992416432); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_End = new PrefabGUID(210337041); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Phase01 = new PrefabGUID(-1954426858); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Phase02 = new PrefabGUID(-1111564854); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_AbilityGroup = new PrefabGUID(1261373899); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_AggroBuff = new PrefabGUID(-1221989239); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_Cast = new PrefabGUID(1424845963); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Single_Phase = new PrefabGUID(759627901); public static readonly PrefabGUID AB_Blackfang_Livith_SlicingDash_Trigger = new PrefabGUID(1539319213); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_AbilityGroup = new PrefabGUID(1584749067); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Cast = new PrefabGUID(-516285679); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_CastingTrackerBuff = new PrefabGUID(1907899256); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Channel_Buff = new PrefabGUID(2075087526); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_AbilityGroup = new PrefabGUID(-1518495336); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_CanCastBuff = new PrefabGUID(1927043186); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_ClearCheck_Cast = new PrefabGUID(276618087); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Throw = new PrefabGUID(-554619371); public static readonly PrefabGUID AB_Blackfang_Livith_SpiritOrbs_Trigger = new PrefabGUID(1941829996); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_AbilityGroup = new PrefabGUID(1920281924); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_AggroBuff = new PrefabGUID(505048937); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_Buff = new PrefabGUID(-361911593); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_Cast = new PrefabGUID(1839796503); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_CircleBuff = new PrefabGUID(993273548); public static readonly PrefabGUID AB_Blackfang_Livith_Stealth_TeleportBuff = new PrefabGUID(520997728); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_AbilityGroup = new PrefabGUID(-1372642162); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_Cast = new PrefabGUID(-832479758); public static readonly PrefabGUID AB_Blackfang_Livith_StealthAttack_Hit = new PrefabGUID(-1615565110); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_AbilityGroup = new PrefabGUID(1115417829); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Cast01 = new PrefabGUID(-1532980842); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Cast02 = new PrefabGUID(2122043310); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Hit01 = new PrefabGUID(-1845474794); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Hit02 = new PrefabGUID(903282285); public static readonly PrefabGUID AB_Blackfang_Lurker_Melee_Overhead_Cast = new PrefabGUID(633853154); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_AbilityGroup = new PrefabGUID(1298623256); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Cast = new PrefabGUID(-813136125); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Channel = new PrefabGUID(629317715); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_ContinousArea = new PrefabGUID(937999600); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Far_AbilityGroup = new PrefabGUID(325438116); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_HitBuff = new PrefabGUID(257901187); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_SpawnDelay = new PrefabGUID(-2066653512); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Throw01 = new PrefabGUID(1214604939); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Throw02 = new PrefabGUID(1011791275); public static readonly PrefabGUID AB_Blackfang_Morgana_CorruptionFountain_Trigger = new PrefabGUID(-925450187); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_AbilityGroup = new PrefabGUID(846291757); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Cast = new PrefabGUID(2124769465); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_FollowupHitBuff = new PrefabGUID(-1430472663); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_HomingProjectile = new PrefabGUID(1419730100); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_HomingTarget = new PrefabGUID(-149925775); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Left_InitialHit = new PrefabGUID(-1812098607); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_FollowupHitBuff = new PrefabGUID(961740099); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_HomingProjectile = new PrefabGUID(-996021019); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_HomingTarget = new PrefabGUID(35684891); public static readonly PrefabGUID AB_Blackfang_Morgana_CrossWindSlash_Right_InitialHit = new PrefabGUID(1727302918); public static readonly PrefabGUID AB_Blackfang_Morgana_DeathEffectsBuff = new PrefabGUID(1539099925); public static readonly PrefabGUID AB_Blackfang_Morgana_DisableCollisionBuff = new PrefabGUID(582104639); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamDamageBuff01 = new PrefabGUID(552045786); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamDamageBuff02 = new PrefabGUID(-724535911); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamInitBuff01 = new PrefabGUID(987175530); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_BeamInitBuff02 = new PrefabGUID(-993656149); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_CenterSpinner01 = new PrefabGUID(1137468146); public static readonly PrefabGUID AB_Blackfang_Morgana_DiscoBeams_CenterSpinner02 = new PrefabGUID(-1741464220); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_AbilityGroup = new PrefabGUID(-63677606); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_Cast = new PrefabGUID(805360002); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_FollowupHitBuff = new PrefabGUID(-718813882); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_InitialHit = new PrefabGUID(-1286355674); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Left_Projectile = new PrefabGUID(2100366639); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_AbilityGroup = new PrefabGUID(-1736482208); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_Cast = new PrefabGUID(-1844243668); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_FollowupHitBuff = new PrefabGUID(-1980410717); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_InitialHit = new PrefabGUID(1021234102); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Right_Projectile = new PrefabGUID(-1184116318); public static readonly PrefabGUID AB_Blackfang_Morgana_DownHorizontalSlash_Straight_Projectile = new PrefabGUID(-594193232); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_CenterSpinner01 = new PrefabGUID(930752844); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_CenterSpinner02 = new PrefabGUID(-158142011); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_HitBuff = new PrefabGUID(-638863409); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft01 = new PrefabGUID(1253365853); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft02 = new PrefabGUID(-1210840119); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffLeft03 = new PrefabGUID(1895430817); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight01 = new PrefabGUID(170061582); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight02 = new PrefabGUID(-2013744813); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_OrbBuffRight03 = new PrefabGUID(-959715680); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff01 = new PrefabGUID(-1606188422); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff02 = new PrefabGUID(341312225); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff03 = new PrefabGUID(1442248600); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff04 = new PrefabGUID(822188221); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff05 = new PrefabGUID(-1324731077); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_PositionBuff06 = new PrefabGUID(729991045); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_AbilityGroup = new PrefabGUID(734658196); public static readonly PrefabGUID AB_Blackfang_Morgana_EyeOfTheCorruption_Setup_Cast = new PrefabGUID(229127513); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_AbilityGroup = new PrefabGUID(-668068170); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_Cast = new PrefabGUID(-1243460454); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_DownedStun = new PrefabGUID(-1746192504); public static readonly PrefabGUID AB_Blackfang_Morgana_GroundPiercer_ThrowHit = new PrefabGUID(764467131); public static readonly PrefabGUID AB_Blackfang_Morgana_IdleBuff = new PrefabGUID(515276391); public static readonly PrefabGUID AB_Blackfang_Morgana_KillWorshippersAoe = new PrefabGUID(377127592); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Base = new PrefabGUID(267146481); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_CenterPool = new PrefabGUID(-1739908100); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Default = new PrefabGUID(-75547790); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_Dive = new PrefabGUID(-1664779682); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToCenterPool = new PrefabGUID(-947834471); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToDefault = new PrefabGUID(2051243649); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Area_DiveToSmall = new PrefabGUID(-563834486); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_Buff = new PrefabGUID(-818762715); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_AbilityGroup = new PrefabGUID(1684080967); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_Buff = new PrefabGUID(1192244413); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_CombatTag_Cast = new PrefabGUID(-36977253); public static readonly PrefabGUID AB_Blackfang_Morgana_LoomingMists_MinionLifetimeBuff = new PrefabGUID(-805424796); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_AbilityGroup = new PrefabGUID(2134120100); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Cast01 = new PrefabGUID(-1987288586); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Cast02 = new PrefabGUID(-333943326); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Hit01 = new PrefabGUID(121004364); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Hit02 = new PrefabGUID(58588340); public static readonly PrefabGUID AB_Blackfang_Morgana_MeleeAttack_Staggered = new PrefabGUID(-893458861); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_AbilityGroup = new PrefabGUID(1278045964); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_Cast = new PrefabGUID(491862922); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition01 = new PrefabGUID(708863087); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition02 = new PrefabGUID(169986938); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition03 = new PrefabGUID(-1359040628); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_HomingPosition04 = new PrefabGUID(-1763877514); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_Projectile = new PrefabGUID(-1148836039); public static readonly PrefabGUID AB_Blackfang_Morgana_MistSpinners_SetupTrigger = new PrefabGUID(1092461475); public static readonly PrefabGUID AB_Blackfang_Morgana_OnAggroBuff = new PrefabGUID(-1724573818); public static readonly PrefabGUID AB_Blackfang_Morgana_RevealWorshippersTrigger = new PrefabGUID(-1624877009); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_AbilityGroup = new PrefabGUID(-616120746); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Cast = new PrefabGUID(537275128); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Humanoid_AbilityGroup = new PrefabGUID(345561766); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Humanoid_Cast = new PrefabGUID(705231806); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Projectile = new PrefabGUID(-736078018); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ProjectileTrigger01 = new PrefabGUID(-106247465); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ProjectileTrigger02 = new PrefabGUID(-968981875); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_Throw = new PrefabGUID(581747098); public static readonly PrefabGUID AB_Blackfang_Morgana_RingsOfTerror_ThrowTrigger = new PrefabGUID(-529560817); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_AbilityGroup = new PrefabGUID(2099754785); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_AggroBuff = new PrefabGUID(600294053); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_Cast01 = new PrefabGUID(459091878); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_Cast02 = new PrefabGUID(-809908296); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeam_ThrowHit = new PrefabGUID(2116092559); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_AbilityGroup = new PrefabGUID(-1241930020); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_Cast01 = new PrefabGUID(-811904132); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_Cast02 = new PrefabGUID(219174627); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_EndTrigger = new PrefabGUID(-895629603); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamEmerge_StartTrigger = new PrefabGUID(-1430340649); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_AbilityGroup = new PrefabGUID(898624706); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_Cast = new PrefabGUID(2053458243); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_EffectBuff = new PrefabGUID(-1756303410); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBeamSlow_ThrowHit = new PrefabGUID(1353249536); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_AbilityGroup = new PrefabGUID(1173842428); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Cast = new PrefabGUID(-152322352); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Hit = new PrefabGUID(1939629884); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_AbilityGroup = new PrefabGUID(-1681336728); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_Cast = new PrefabGUID(1754994413); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_Hit = new PrefabGUID(-1685351564); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralBlast_Humanoid_MoveBehBuff = new PrefabGUID(-1216556711); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_AbilityGroup = new PrefabGUID(1185642044); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_AnimBuff = new PrefabGUID(-1095140374); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Cast = new PrefabGUID(412191768); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_AbilityGroup = new PrefabGUID(-135866689); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_Cast = new PrefabGUID(-1314000343); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectile_01 = new PrefabGUID(2088902993); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectile_02 = new PrefabGUID(1509695584); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectileRear_01 = new PrefabGUID(559148038); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_MainProjectileRear_02 = new PrefabGUID(-583521978); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_ProjectileSpawner_01 = new PrefabGUID(-1837800027); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_ProjectileSpawner_02 = new PrefabGUID(186328883); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_SmallProjectile_01 = new PrefabGUID(2033548339); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_Far_SmallProjectile_02 = new PrefabGUID(-416871642); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_HitBuff = new PrefabGUID(2089905588); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_MainProjectile_01 = new PrefabGUID(-16851640); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_MainProjectile_02 = new PrefabGUID(-1125606680); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_ProjectileSpawner_01 = new PrefabGUID(-2053014187); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_ProjectileSpawner_02 = new PrefabGUID(1871948906); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SmallProjectile_01 = new PrefabGUID(-370795778); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SmallProjectile_02 = new PrefabGUID(-1870465108); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SpawnDelayBuff = new PrefabGUID(-1059448417); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralHell_SpawnGreenlightBuff = new PrefabGUID(499389677); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_AbilityGroup = new PrefabGUID(1990869093); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Cast = new PrefabGUID(-875630608); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Channel = new PrefabGUID(-1220460029); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw01 = new PrefabGUID(1998201653); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw02 = new PrefabGUID(-810698669); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_Throw03 = new PrefabGUID(1455189473); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_ThrowToPlayer = new PrefabGUID(497806743); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralOrbBarrage_TriggerToPlayer = new PrefabGUID(-1076370381); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_AbilityGroup = new PrefabGUID(1946293901); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Cast = new PrefabGUID(1909376866); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_AbilityGroup = new PrefabGUID(-95450612); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_Cast = new PrefabGUID(1980668316); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_TargetBuff = new PrefabGUID(898677408); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Far_Throw_02 = new PrefabGUID(221558427); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_TargetBuff = new PrefabGUID(1995740870); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_01 = new PrefabGUID(1223305415); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_02 = new PrefabGUID(-2016269821); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_03 = new PrefabGUID(1909014584); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_04 = new PrefabGUID(-1223885396); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_05 = new PrefabGUID(-96338213); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_06 = new PrefabGUID(-339469055); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSnake_Throw_07 = new PrefabGUID(933412174); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_AbilityGroup = new PrefabGUID(1485893437); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Cast = new PrefabGUID(2015628217); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_ChannelBuff = new PrefabGUID(-2122362769); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_DummyBuff = new PrefabGUID(2017731479); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_AbilityGroup = new PrefabGUID(1326530647); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_Cast = new PrefabGUID(89633088); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_ChannelBuff = new PrefabGUID(-1196616673); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProj01 = new PrefabGUID(-303381870); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProj02 = new PrefabGUID(1586663586); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FakeProjTilePlacementMatch = new PrefabGUID(534490374); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FanTrigger01 = new PrefabGUID(-403933920); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_FanTrigger02 = new PrefabGUID(-723198303); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_GoToPosBuff = new PrefabGUID(1737878645); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_MoveBehBuff = new PrefabGUID(-1439973921); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_MovementPredictionBuff = new PrefabGUID(-418045958); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Humanoid_ShouldFindPosBuff = new PrefabGUID(2055599493); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_MovementPredictionBuff = new PrefabGUID(-1134886700); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_PostChannelBuff = new PrefabGUID(1016472610); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Projectile01 = new PrefabGUID(-870775456); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Projectile02 = new PrefabGUID(1268090318); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_ProjectileHitSlow = new PrefabGUID(-2049305989); public static readonly PrefabGUID AB_Blackfang_Morgana_SpectralSwarm_Trigger = new PrefabGUID(80162438); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_AbilityGroup = new PrefabGUID(1680946425); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Buff = new PrefabGUID(1875425595); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Cast = new PrefabGUID(419868766); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_DespawnBuff = new PrefabGUID(-1159869992); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_DespawnDelayBuff = new PrefabGUID(-1949076270); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_SpawnBuff = new PrefabGUID(2136903946); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_SpawnPosOccupiedBuff = new PrefabGUID(1751995860); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Summon = new PrefabGUID(-1419491999); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_TargetFishSpotBuff = new PrefabGUID(2009594389); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonCorruptedVines_Throw = new PrefabGUID(455945434); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_AbilityGroup = new PrefabGUID(-195933675); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_Cast = new PrefabGUID(-320080385); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_MinionSpawn = new PrefabGUID(-898953218); public static readonly PrefabGUID AB_Blackfang_Morgana_SummonTail_SharedHealthBuff = new PrefabGUID(-1417257872); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_01_TravelToCenter = new PrefabGUID(1896010089); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_02_HoverBuildup = new PrefabGUID(520738398); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_03_Submerge = new PrefabGUID(242050219); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_04_Emerge = new PrefabGUID(-1714790857); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_AbilityGroup = new PrefabGUID(-690426342); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_BubbleBuff = new PrefabGUID(631394021); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_Cast = new PrefabGUID(915415023); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_SnakePhaseBuff = new PrefabGUID(-1859425781); public static readonly PrefabGUID AB_Blackfang_Morgana_Transformation_Trigger = new PrefabGUID(-981046477); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_AbilityGroup = new PrefabGUID(1242557903); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Cast = new PrefabGUID(-1678187501); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_PostTravelBuff = new PrefabGUID(-1387354075); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw01 = new PrefabGUID(-1880893170); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw02 = new PrefabGUID(1014466388); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Throw03 = new PrefabGUID(-23887081); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_ThrowToPlayer = new PrefabGUID(-227535602); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_Travel = new PrefabGUID(376576928); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelingOrbBarrage_TriggerToPlayer = new PrefabGUID(320348317); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_AbilityGroup = new PrefabGUID(-918633640); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_AttachBuff = new PrefabGUID(376179328); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Cast = new PrefabGUID(126215347); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolCooldownBuff = new PrefabGUID(-305886309); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolShieldBuff = new PrefabGUID(-1733669874); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_CenterPoolTrackerBuff = new PrefabGUID(-1898979936); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_AbilityGroup = new PrefabGUID(1673956324); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_Cast = new PrefabGUID(737213827); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Emerge_Trigger = new PrefabGUID(1849380415); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Hidden_AbilityGroup = new PrefabGUID(1059128); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Hidden_Cast = new PrefabGUID(2049319069); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_ImmaterialBuff = new PrefabGUID(-99719403); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_LastPoolBuff = new PrefabGUID(901738182); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_OccupiedBuff = new PrefabGUID(1947116545); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_OuterPoolTrackerBuff = new PrefabGUID(2132400508); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_AbilityGroup = new PrefabGUID(-1980019894); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_Cast = new PrefabGUID(478929064); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_CastTrackerBuff = new PrefabGUID(-1495038629); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_FearTrigger = new PrefabGUID(1996723050); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_Thrower = new PrefabGUID(-730747480); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_ThrowToPlayer = new PrefabGUID(2053275461); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Swarm_TriggerToPlayer = new PrefabGUID(1912709201); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Tail_AbilityGroup = new PrefabGUID(690549364); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Tail_Cast = new PrefabGUID(-2000239337); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_TailEmerge_AbilityGroup = new PrefabGUID(438919203); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_TailEmerge_Cast = new PrefabGUID(148165843); public static readonly PrefabGUID AB_Blackfang_Morgana_TravelToPosition_Trigger = new PrefabGUID(-1307922425); public static readonly PrefabGUID AB_Blackfang_Morgana_TriggerSecondPhase_DEBUG = new PrefabGUID(809604772); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_AbilityGroup = new PrefabGUID(-2140645618); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_AttachBuff = new PrefabGUID(-1464702772); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Buff = new PrefabGUID(-210174333); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Cast = new PrefabGUID(683761386); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Dive_Trigger = new PrefabGUID(1946628258); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_AbilityGroup = new PrefabGUID(-1859321594); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast01 = new PrefabGUID(-1682123341); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast02 = new PrefabGUID(546011461); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Cast03 = new PrefabGUID(-16293641); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_DownedStun = new PrefabGUID(-1992016390); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_AbilityGroup = new PrefabGUID(29969582); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_Cast01 = new PrefabGUID(-1779263890); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_Single_ThrowHit = new PrefabGUID(-1542843694); public static readonly PrefabGUID AB_Blackfang_MorganasTail_Stinger_ThrowHit = new PrefabGUID(-311138981); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_AbilityGroup = new PrefabGUID(62301155); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_Cast = new PrefabGUID(725885534); public static readonly PrefabGUID AB_Blackfang_MorganasTail_TailSlam_Hit = new PrefabGUID(733131428); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_AbilityGroup = new PrefabGUID(2107551739); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_Cast = new PrefabGUID(-608795005); public static readonly PrefabGUID AB_Blackfang_Peon_Melee_Hit = new PrefabGUID(1593243784); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_AbilityGroup = new PrefabGUID(-459395643); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_Cast01 = new PrefabGUID(-1061845446); public static readonly PrefabGUID AB_Blackfang_Peon_Mining_MeleeAttack_Hit01 = new PrefabGUID(545351337); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_AbilityGroup = new PrefabGUID(651647554); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_Cast01 = new PrefabGUID(-376684558); public static readonly PrefabGUID AB_Blackfang_Peon_WoodChopping_MeleeAttack_Hit01 = new PrefabGUID(728796049); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_AbilityGroup = new PrefabGUID(112453727); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_Buff = new PrefabGUID(1714696616); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_CarryBarrel_Cast = new PrefabGUID(-938773373); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_AbilityGroup = new PrefabGUID(596395337); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_Cast = new PrefabGUID(-1744264720); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_Melee_Hit = new PrefabGUID(-632441504); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_AbilityGroup = new PrefabGUID(-1869018808); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Cast = new PrefabGUID(1112120717); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Throw = new PrefabGUID(-36892102); public static readonly PrefabGUID AB_Blackfang_PeonCarryingBarrel_ThrowBarrel_Trigger = new PrefabGUID(-390653002); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_AbilityGroup = new PrefabGUID(936609695); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_Cast = new PrefabGUID(-499832574); public static readonly PrefabGUID AB_Blackfang_PeonLogCarryer_Melee_Hit = new PrefabGUID(-65809171); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_AbilityGroup = new PrefabGUID(-123334608); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Cast = new PrefabGUID(1395413257); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_CounterShield = new PrefabGUID(-797550365); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_HitShieldBuff = new PrefabGUID(1792098639); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_AbilityGroup = new PrefabGUID(-637041016); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Cast = new PrefabGUID(-1408308711); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Hit = new PrefabGUID(1238576754); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Kick_Travel = new PrefabGUID(-1749921093); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_AbilityGroup = new PrefabGUID(170206690); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Cast = new PrefabGUID(1970107705); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Hit = new PrefabGUID(-275026019); public static readonly PrefabGUID AB_Blackfang_Sentinel_CounterAttack_Strike_Knockdown = new PrefabGUID(-919942886); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_AbilityGroup = new PrefabGUID(-838311342); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_Cast = new PrefabGUID(489936308); public static readonly PrefabGUID AB_Blackfang_Sentinel_DrinkPotion_Trigger = new PrefabGUID(1406378740); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_AbilityGroup = new PrefabGUID(-100357751); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_Cast = new PrefabGUID(-959137339); public static readonly PrefabGUID AB_Blackfang_Sentinel_HeavySwing_Hit = new PrefabGUID(1724880522); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_AbilityGroup = new PrefabGUID(-2067963108); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_Cast01 = new PrefabGUID(814774769); public static readonly PrefabGUID AB_Blackfang_Sentinel_NormalSwing_Hit = new PrefabGUID(634106161); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_AbilityGroup = new PrefabGUID(-1138991224); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_Cast = new PrefabGUID(1621355397); public static readonly PrefabGUID AB_Blackfang_Sentinel_Ram_Dash = new PrefabGUID(2133143672); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_AbilityGroup = new PrefabGUID(481790231); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Cast = new PrefabGUID(-535619588); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Hit = new PrefabGUID(484664521); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Projectile = new PrefabGUID(-2052182507); public static readonly PrefabGUID AB_Blackfang_Sentinel_Shockwave_Spinner = new PrefabGUID(1186910615); public static readonly PrefabGUID AB_Blackfang_Shared_DrinkCorruption_Buff = new PrefabGUID(-1664518297); public static readonly PrefabGUID AB_Blackfang_Shared_DrinkCorruption_Buff_Long = new PrefabGUID(1639519700); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_AbilityGroup = new PrefabGUID(1213228171); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_Cast = new PrefabGUID(1229245390); public static readonly PrefabGUID AB_Blackfang_Striker_ChargeAttack_Phase = new PrefabGUID(-1786601272); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_AbilityGroup = new PrefabGUID(1125833271); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_AllyBuff = new PrefabGUID(1398380888); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_Cast = new PrefabGUID(-1248447384); public static readonly PrefabGUID AB_Blackfang_Striker_DefendAlly_SelfBuff = new PrefabGUID(2040321461); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_AbilityGroup = new PrefabGUID(-2096054164); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Buff = new PrefabGUID(659713715); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Cast = new PrefabGUID(-789920422); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_Hit = new PrefabGUID(-1358214253); public static readonly PrefabGUID AB_Blackfang_Striker_FistBlock_SuccessfulBlockBuff = new PrefabGUID(1517666230); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_AbilityGroup = new PrefabGUID(1105771640); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_Cast01 = new PrefabGUID(995538769); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_Hit01 = new PrefabGUID(655082091); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_HitBuff = new PrefabGUID(493369900); public static readonly PrefabGUID AB_Blackfang_Striker_PowerPunch_PostStun = new PrefabGUID(1016698824); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_AbilityGroup = new PrefabGUID(1126476370); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Cast01 = new PrefabGUID(-1984797362); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Cast02 = new PrefabGUID(-1065405327); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Hit01 = new PrefabGUID(1296895227); public static readonly PrefabGUID AB_Blackfang_Striker_Smash_Hit02 = new PrefabGUID(-459564484); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_AbilityGroup = new PrefabGUID(-1329409686); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Cast = new PrefabGUID(512154391); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Explosion = new PrefabGUID(1635931004); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_Explosion_Frost = new PrefabGUID(426371423); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_HitBuff = new PrefabGUID(-2069141812); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_LaunchBuff = new PrefabGUID(-226456685); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_PrepBuff = new PrefabGUID(1832202530); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1 = new PrefabGUID(712606005); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1_1 = new PrefabGUID(-151353528); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile1_1_Frost = new PrefabGUID(-1055644410); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2 = new PrefabGUID(241812099); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2_2 = new PrefabGUID(-169561289); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile2_2_Frost = new PrefabGUID(-1483588498); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3 = new PrefabGUID(-790980400); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3_3 = new PrefabGUID(-2109994027); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile3_3_Frost = new PrefabGUID(1286464424); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4 = new PrefabGUID(1922806246); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4_4 = new PrefabGUID(2116685056); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_BomberDuelQuake_SpawnProjectile4_4_Frost = new PrefabGUID(1035404539); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_AbilityGroup = new PrefabGUID(-1015932492); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_Cast = new PrefabGUID(682468428); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_ChaseTargetBuff_RageBuff = new PrefabGUID(-365858678); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_AbilityGroup = new PrefabGUID(68363809); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Cast01 = new PrefabGUID(413338757); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Cast02 = new PrefabGUID(615149404); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Hit01 = new PrefabGUID(1636025691); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_MeleeAttack_Hit02 = new PrefabGUID(-568636508); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AbilityGroup = new PrefabGUID(-9078612); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AreaThrow01 = new PrefabGUID(-937142678); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_AreaThrow02 = new PrefabGUID(-1258745462); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Cast01 = new PrefabGUID(-1634052293); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Cast02 = new PrefabGUID(1505658358); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_InitDamage01 = new PrefabGUID(163632413); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_InitDamage02 = new PrefabGUID(991508961); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Projectile01 = new PrefabGUID(-1459136440); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_SeismicJump_Projectile02 = new PrefabGUID(783824917); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_AbilityGroup = new PrefabGUID(140047325); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_Cast = new PrefabGUID(-638277613); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_DownedStun = new PrefabGUID(1803245720); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseDual_Tackle_Phase = new PrefabGUID(2094589499); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_AbilityGroup = new PrefabGUID(-98135680); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_Cast = new PrefabGUID(1821376907); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_Explosion = new PrefabGUID(2055711075); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_ExplosionSmall = new PrefabGUID(-152868008); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_HitBuff = new PrefabGUID(-1464081739); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_LaunchBuff = new PrefabGUID(-1091954393); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_PrepBuff = new PrefabGUID(-569558899); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile1 = new PrefabGUID(-1786507260); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile1_1 = new PrefabGUID(362106538); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile2 = new PrefabGUID(-1252965849); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile2_2 = new PrefabGUID(-351097769); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile3 = new PrefabGUID(382833138); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile3_3 = new PrefabGUID(-1345258840); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile4 = new PrefabGUID(-1866432316); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_BomberQuake_SpawnProjectile4_4 = new PrefabGUID(667406789); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_AbilityGroup = new PrefabGUID(-845442935); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_Cast = new PrefabGUID(-1362686076); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_Phase = new PrefabGUID(-571008192); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Charge_PhaseEnd = new PrefabGUID(1865525324); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_AbilityGroup = new PrefabGUID(1633132226); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Cast01 = new PrefabGUID(1561161309); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Cast02 = new PrefabGUID(-1818672431); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Hit01 = new PrefabGUID(374506390); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_MeleeAttack_Hit02 = new PrefabGUID(1281476222); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_AbilityGroup = new PrefabGUID(1590188261); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_Cast = new PrefabGUID(-1198351713); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_Smack_Hit = new PrefabGUID(740265291); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_AbilityGroup = new PrefabGUID(-405003450); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_Cast = new PrefabGUID(369665448); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_End = new PrefabGUID(-1009241008); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_FrostNova = new PrefabGUID(-1644940656); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSingle_VaultAttack_Phase = new PrefabGUID(-152517311); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_AbilityGroup = new PrefabGUID(221530600); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_Buff = new PrefabGUID(968352313); public static readonly PrefabGUID AB_Blackfang_Valyr_PhaseSwap_Cast = new PrefabGUID(-1544021670); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_AbilityGroup = new PrefabGUID(-1574580061); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_Cast = new PrefabGUID(-1385306793); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_TriggerBuff = new PrefabGUID(-505876832); public static readonly PrefabGUID AB_Blackfang_Valyr_WalkToPos_WalkToPosBuff = new PrefabGUID(131220609); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_AbilityGroup = new PrefabGUID(-1375787055); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Buff = new PrefabGUID(-627360700); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Cast = new PrefabGUID(1557639506); public static readonly PrefabGUID AB_Blackfang_ValyrCauldron_Errupt_Throw = new PrefabGUID(1668955473); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_AbilityGroup = new PrefabGUID(71067886); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_Cast = new PrefabGUID(433723993); public static readonly PrefabGUID AB_Blackfang_Venomblade_ApplyWeaponCoating_ChargedBuff = new PrefabGUID(1960751195); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_AbilityGroup = new PrefabGUID(1797731340); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_Cast = new PrefabGUID(-2039114285); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_Travel = new PrefabGUID(-521887144); public static readonly PrefabGUID AB_Blackfang_Venomblade_Leap_TravelEnd = new PrefabGUID(127543888); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_AbilityGroup = new PrefabGUID(323806214); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Cast01 = new PrefabGUID(-238520748); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Cast02 = new PrefabGUID(-57204780); public static readonly PrefabGUID AB_Blackfang_Venomblade_Melee_Hit = new PrefabGUID(-995663917); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_AbilityGroup = new PrefabGUID(1944086996); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_Buff = new PrefabGUID(-378260610); public static readonly PrefabGUID AB_Blackfang_Venomblade_Sprint_Cast = new PrefabGUID(-1306211385); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_AbilityGroup = new PrefabGUID(940071564); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Cast01 = new PrefabGUID(1686276280); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Cast02 = new PrefabGUID(748718503); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_CoatingRemovalBuff = new PrefabGUID(-1258648411); public static readonly PrefabGUID AB_Blackfang_Venomblade_Venomstrike_Hit01 = new PrefabGUID(-1151037369); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_AbilityGroup = new PrefabGUID(381862924); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_Cast = new PrefabGUID(25905050); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_SpawnerProjectile01 = new PrefabGUID(-1320276284); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinRain_Throw = new PrefabGUID(2097520555); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_AbilityGroup = new PrefabGUID(-317345251); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_Cast = new PrefabGUID(1990270092); public static readonly PrefabGUID AB_Blackfang_Viper_JavelinThrow_Projectile = new PrefabGUID(2107952727); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_AbilityGroup = new PrefabGUID(1142040823); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_Cast = new PrefabGUID(1919046105); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_DashBuff = new PrefabGUID(-1455991071); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_PostDashBuff = new PrefabGUID(-1805841970); public static readonly PrefabGUID AB_Blackfang_Viper_StepThrow_Projectile = new PrefabGUID(1334247937); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_AbilityGroup = new PrefabGUID(628133433); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_Buff = new PrefabGUID(-823156105); public static readonly PrefabGUID AB_Blackfang_WoodCarver_CarveTree_Cast01 = new PrefabGUID(-633434463); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Drink_AbilityGroup = new PrefabGUID(-1472848281); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Drink_Cast = new PrefabGUID(-2026271555); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_AbilityGroup = new PrefabGUID(-1698228064); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Cast = new PrefabGUID(-581863994); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Channel_Buff = new PrefabGUID(1523431332); public static readonly PrefabGUID AB_Blackfang_WoodCarver_FuriousSwipes_Hit = new PrefabGUID(-752935754); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_AbilityGroup = new PrefabGUID(1074626555); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Cast01 = new PrefabGUID(-799632104); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Cast02 = new PrefabGUID(-1994797082); public static readonly PrefabGUID AB_Blackfang_WoodCarver_Melee_Hit = new PrefabGUID(-922638142); public static readonly PrefabGUID AB_Blackfang_WoodCarver_PrayingBuff = new PrefabGUID(-51816406); public static readonly PrefabGUID AB_Blood_BloodFountain_AbilityGroup = new PrefabGUID(2067760264); public static readonly PrefabGUID AB_Blood_BloodFountain_Cast = new PrefabGUID(2057555049); public static readonly PrefabGUID AB_Blood_BloodFountain_Ground_Impact = new PrefabGUID(-1830781170); public static readonly PrefabGUID AB_Blood_BloodFountain_Ground_Init = new PrefabGUID(479309105); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_AbilityGroup = new PrefabGUID(-1401133170); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Buff = new PrefabGUID(-777165991); public static readonly PrefabGUID AB_Blood_BloodFountain_SpellMod_Recast_Cast = new PrefabGUID(-1412027900); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Ground_Impact = new PrefabGUID(1168425465); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Ground_Init = new PrefabGUID(452423495); public static readonly PrefabGUID AB_Blood_BloodFountain_Spellmod_Recast_Throw = new PrefabGUID(-198029743); public static readonly PrefabGUID AB_Blood_BloodFountain_Throw = new PrefabGUID(1472352650); public static readonly PrefabGUID AB_Blood_BloodRage_AbilityGroup = new PrefabGUID(651613264); public static readonly PrefabGUID AB_Blood_BloodRage_Area = new PrefabGUID(1522616113); public static readonly PrefabGUID AB_Blood_BloodRage_Buff = new PrefabGUID(-491593410); public static readonly PrefabGUID AB_Blood_BloodRage_Buff_MagicSource = new PrefabGUID(2085766220); public static readonly PrefabGUID AB_Blood_BloodRage_Cast = new PrefabGUID(337805438); public static readonly PrefabGUID AB_Blood_BloodRage_SpellMod_Buff_Shield = new PrefabGUID(-1605515615); public static readonly PrefabGUID AB_Blood_BloodRite_AbilityGroup = new PrefabGUID(1191439206); public static readonly PrefabGUID AB_Blood_BloodRite_AreaTrigger = new PrefabGUID(-120445839); public static readonly PrefabGUID AB_Blood_BloodRite_Buff = new PrefabGUID(154981615); public static readonly PrefabGUID AB_Blood_BloodRite_Cast = new PrefabGUID(863435029); public static readonly PrefabGUID AB_Blood_BloodRite_HitBuff = new PrefabGUID(-2104807333); public static readonly PrefabGUID AB_Blood_BloodRite_Immaterial = new PrefabGUID(-259674366); public static readonly PrefabGUID AB_Blood_BloodRite_Projectile = new PrefabGUID(-68046098); public static readonly PrefabGUID AB_Blood_BloodRite_SpellMod_DamageOnAttackBuff = new PrefabGUID(623063875); public static readonly PrefabGUID AB_Blood_BloodRite_SpellMod_Stealth = new PrefabGUID(1462259032); public static readonly PrefabGUID AB_Blood_BloodStorm_AbilityGroup = new PrefabGUID(-1284243288); public static readonly PrefabGUID AB_Blood_BloodStorm_Cast = new PrefabGUID(928544163); public static readonly PrefabGUID AB_Blood_BloodStorm_ChannelBuff = new PrefabGUID(-429372830); public static readonly PrefabGUID AB_Blood_BloodStorm_PostBuffAttack = new PrefabGUID(-1381763893); public static readonly PrefabGUID AB_Blood_BloodStorm_Projectile = new PrefabGUID(-502932970); public static readonly PrefabGUID AB_Blood_CarrionSwarm_AbilityGroup = new PrefabGUID(-1380116221); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Left_01 = new PrefabGUID(-728088234); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Left_02 = new PrefabGUID(189108909); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Right_01 = new PrefabGUID(-691013912); public static readonly PrefabGUID AB_Blood_CarrionSwarm_BatProjectile_Right_02 = new PrefabGUID(159297406); public static readonly PrefabGUID AB_Blood_CarrionSwarm_Cast_01 = new PrefabGUID(-775157186); public static readonly PrefabGUID AB_Blood_CarrionSwarm_HitBuff = new PrefabGUID(389507623); public static readonly PrefabGUID AB_Blood_CarrionSwarm_MainProjectile_Left_01 = new PrefabGUID(-593275986); public static readonly PrefabGUID AB_Blood_CarrionSwarm_MainProjectile_Right_01 = new PrefabGUID(-1925490558); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Left_01 = new PrefabGUID(890139957); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Left_02 = new PrefabGUID(531197463); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Right_01 = new PrefabGUID(-1852510225); public static readonly PrefabGUID AB_Blood_CarrionSwarm_ProjectileDelay_Right_02 = new PrefabGUID(66466203); public static readonly PrefabGUID AB_Blood_CarrionSwarm_SpellMod_Area = new PrefabGUID(33522022); public static readonly PrefabGUID AB_Blood_CarrionSwarm_SpellMod_Stun_BuildUp = new PrefabGUID(-875052102); public static readonly PrefabGUID AB_Blood_CarrionSwarm_VampiricCurse_Buff = new PrefabGUID(744487535); public static readonly PrefabGUID AB_Blood_CrimsonBeam_AbilityGroup = new PrefabGUID(375131842); public static readonly PrefabGUID AB_Blood_CrimsonBeam_Cast = new PrefabGUID(795788195); public static readonly PrefabGUID AB_Blood_CrimsonBeam_Channel = new PrefabGUID(372033291); public static readonly PrefabGUID AB_Blood_HeartStrike_AbilityGroup = new PrefabGUID(-1432604486); public static readonly PrefabGUID AB_Blood_HeartStrike_Cast = new PrefabGUID(-987297406); public static readonly PrefabGUID AB_Blood_HeartStrike_Debuff = new PrefabGUID(-1855386239); public static readonly PrefabGUID AB_Blood_HeartStrike_Phase = new PrefabGUID(-2007539911); public static readonly PrefabGUID AB_Blood_SanguineCoil_AbilityGroup = new PrefabGUID(189403977); public static readonly PrefabGUID AB_Blood_SanguineCoil_Cast01 = new PrefabGUID(-443292115); public static readonly PrefabGUID AB_Blood_SanguineCoil_Cast02 = new PrefabGUID(1200039838); public static readonly PrefabGUID AB_Blood_SanguineCoil_Projectile = new PrefabGUID(-1020618296); public static readonly PrefabGUID AB_Blood_SanguineCoil_SpellMod_Projectile_AllowOwner = new PrefabGUID(32169065); public static readonly PrefabGUID AB_Blood_Shadowbolt_AbilityGroup = new PrefabGUID(-880131926); public static readonly PrefabGUID AB_Blood_Shadowbolt_Cast = new PrefabGUID(-1432574436); public static readonly PrefabGUID AB_Blood_Shadowbolt_Projectile = new PrefabGUID(1998252380); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_Area = new PrefabGUID(-1633540142); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_ForkHitBuff = new PrefabGUID(-1452263288); public static readonly PrefabGUID AB_Blood_Shadowbolt_SpellMod_ForkProjectile = new PrefabGUID(-1941104009); public static readonly PrefabGUID AB_Blood_Shadowbolt_VampiricCurse_Buff = new PrefabGUID(-1812972166); public static readonly PrefabGUID AB_Blood_VampiricCurse_AbilityGroup = new PrefabGUID(-326374250); public static readonly PrefabGUID AB_Blood_VampiricCurse_Buff = new PrefabGUID(733899991); public static readonly PrefabGUID AB_Blood_VampiricCurse_Buff_Lesser = new PrefabGUID(178387762); public static readonly PrefabGUID AB_Blood_VampiricCurse_Cast = new PrefabGUID(-254998690); public static readonly PrefabGUID AB_Blood_VampiricCurse_Projectile = new PrefabGUID(270228277); public static readonly PrefabGUID AB_Blood_VampiricCurse_SlashersLegendary_Buff = new PrefabGUID(910061115); public static readonly PrefabGUID AB_Blood_VampiricCurse_SpellMod_Area = new PrefabGUID(1026577933); public static readonly PrefabGUID AB_BloodAltar_TrackVbloodUnit_Projectile = new PrefabGUID(746504391); public static readonly PrefabGUID AB_BloodAltar_TrackVbloodUnit_Trigger = new PrefabGUID(-1024503212); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier1 = new PrefabGUID(-1596803256); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier1_Secondary = new PrefabGUID(-1616974014); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier2 = new PrefabGUID(1828387635); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier2_Secondary = new PrefabGUID(301933309); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier3 = new PrefabGUID(-1861657718); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier3_Secondary = new PrefabGUID(-1973741977); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier4 = new PrefabGUID(-584203677); public static readonly PrefabGUID AB_BloodBuff_Brute_Tier4_Secondary = new PrefabGUID(-231530699); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_AbilityGroup = new PrefabGUID(-1869894099); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_Cast = new PrefabGUID(-1740243185); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Angel_Dash_Phase = new PrefabGUID(31625836); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_AbilityGroup = new PrefabGUID(-2064327511); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_Cast = new PrefabGUID(232166500); public static readonly PrefabGUID AB_BloodBuff_Corrupted_Harpy_Dash_Phase = new PrefabGUID(-1055553242); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier1 = new PrefabGUID(-302908776); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier1_Secondary = new PrefabGUID(-601523002); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier2 = new PrefabGUID(-771138642); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier2_Secondary = new PrefabGUID(1971282100); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier3 = new PrefabGUID(-1493903943); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier3_Secondary = new PrefabGUID(-779149453); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier4 = new PrefabGUID(1491794137); public static readonly PrefabGUID AB_BloodBuff_Corruption_Tier4_Secondary = new PrefabGUID(-2010324894); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier1 = new PrefabGUID(894725875); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier1_Secondary = new PrefabGUID(753768915); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier2 = new PrefabGUID(475045773); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier2_Secondary = new PrefabGUID(-655171684); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier3 = new PrefabGUID(-1055766373); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier3_Secondary = new PrefabGUID(-1153664129); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier4 = new PrefabGUID(1643157297); public static readonly PrefabGUID AB_BloodBuff_Creature_Tier4_Secondary = new PrefabGUID(2133844623); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier1 = new PrefabGUID(-488475343); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier2 = new PrefabGUID(2145997375); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier3 = new PrefabGUID(1805033464); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier4 = new PrefabGUID(-2079057224); public static readonly PrefabGUID AB_BloodBuff_Dracula_Tier5 = new PrefabGUID(-1923843097); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier1 = new PrefabGUID(1558171501); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier1_Secondary = new PrefabGUID(-1821445788); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier2 = new PrefabGUID(997154800); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier2_Secondary = new PrefabGUID(2019530525); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier3 = new PrefabGUID(1159173627); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier3_Secondary = new PrefabGUID(-1936812740); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier4 = new PrefabGUID(1103099361); public static readonly PrefabGUID AB_BloodBuff_Draculin_Tier4_Secondary = new PrefabGUID(-883139285); public static readonly PrefabGUID AB_BloodBuff_General_Tier5 = new PrefabGUID(947312310); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier1 = new PrefabGUID(-1266262267); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier1_Secondary = new PrefabGUID(691903481); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier2 = new PrefabGUID(-1413561088); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier2_Secondary = new PrefabGUID(-415162965); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier3 = new PrefabGUID(946705138); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier3_Secondary = new PrefabGUID(638320853); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier4 = new PrefabGUID(-491525099); public static readonly PrefabGUID AB_BloodBuff_Mutant_Tier4_Secondary = new PrefabGUID(114976920); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier1 = new PrefabGUID(1201299233); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier1_Secondary = new PrefabGUID(-1446451371); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier2 = new PrefabGUID(-154702686); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier2_Secondary = new PrefabGUID(-522947794); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier3 = new PrefabGUID(-536284884); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier3_Secondary = new PrefabGUID(818894731); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier4 = new PrefabGUID(210193036); public static readonly PrefabGUID AB_BloodBuff_Rogue_Tier4_Secondary = new PrefabGUID(350468862); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier1 = new PrefabGUID(1934870645); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier1_Secondary = new PrefabGUID(-549903178); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier2 = new PrefabGUID(-993492354); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier2_Secondary = new PrefabGUID(-1039133297); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier3 = new PrefabGUID(-901503997); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier3_Secondary = new PrefabGUID(-1808968950); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier4 = new PrefabGUID(-1859298707); public static readonly PrefabGUID AB_BloodBuff_Scholar_Tier4_Secondary = new PrefabGUID(32713242); public static readonly PrefabGUID AB_BloodBuff_VBlood_0 = new PrefabGUID(20081801); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier1 = new PrefabGUID(-804597757); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier1_Secondary = new PrefabGUID(-697089408); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier2 = new PrefabGUID(-1510965956); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier2_Secondary = new PrefabGUID(-929443607); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier3 = new PrefabGUID(-1869022798); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier3_Secondary = new PrefabGUID(1165282791); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier4 = new PrefabGUID(-397097531); public static readonly PrefabGUID AB_BloodBuff_Warrior_Tier4_Secondary = new PrefabGUID(93927140); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier1 = new PrefabGUID(-773025435); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier1_Secondary = new PrefabGUID(779293180); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier2 = new PrefabGUID(-2068307944); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier2_Secondary = new PrefabGUID(-913668258); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier3 = new PrefabGUID(1359282533); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier3_Secondary = new PrefabGUID(-1699746135); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier4 = new PrefabGUID(1791009885); public static readonly PrefabGUID AB_BloodBuff_Worker_Tier4_Secondary = new PrefabGUID(-1136889813); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Brute = new PrefabGUID(-1795235430); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Creature = new PrefabGUID(-114712733); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Draculin = new PrefabGUID(1782455329); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Mutant = new PrefabGUID(1617091915); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Rogue = new PrefabGUID(270041664); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Scholar = new PrefabGUID(-1214837295); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Warrior = new PrefabGUID(-146846356); public static readonly PrefabGUID AB_BloodQualityUnitBuff_Worker = new PrefabGUID(1812921109); public static readonly PrefabGUID AB_Cardinal_Channel_AbilityGroup = new PrefabGUID(-1015165123); public static readonly PrefabGUID AB_Cardinal_Channel_Buff = new PrefabGUID(-1140936561); public static readonly PrefabGUID AB_Cardinal_Channel_Cast = new PrefabGUID(-1178781670); public static readonly PrefabGUID AB_Cardinal_Channel_Throw = new PrefabGUID(-1890273561); public static readonly PrefabGUID AB_Cardinal_LightNova_AbilityGroup = new PrefabGUID(114484622); public static readonly PrefabGUID AB_Cardinal_LightNova_Area = new PrefabGUID(1826627256); public static readonly PrefabGUID AB_Cardinal_LightNova_Cast = new PrefabGUID(904475242); public static readonly PrefabGUID AB_Cardinal_LightNova_Projectile = new PrefabGUID(174803230); public static readonly PrefabGUID AB_Cardinal_LightSwitch_AbilityGroup = new PrefabGUID(-1301873763); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Cast = new PrefabGUID(1123510843); public static readonly PrefabGUID AB_Cardinal_LightSwitch_End = new PrefabGUID(1745327274); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Phase = new PrefabGUID(-377571930); public static readonly PrefabGUID AB_Cardinal_LightSwitch_Phase_Ally = new PrefabGUID(-950278780); public static readonly PrefabGUID AB_Cardinal_LightWave_AbilityGroup = new PrefabGUID(194868388); public static readonly PrefabGUID AB_Cardinal_LightWave_Cast = new PrefabGUID(931744634); public static readonly PrefabGUID AB_Cardinal_LightWave_Channel_Buff = new PrefabGUID(198617072); public static readonly PrefabGUID AB_Cardinal_LightWave_Projectile = new PrefabGUID(-844607712); public static readonly PrefabGUID AB_Cardinal_LightWave_Trigger = new PrefabGUID(-1695296116); public static readonly PrefabGUID AB_Cardinal_Projectile = new PrefabGUID(-2138362741); public static readonly PrefabGUID AB_Cardinal_SummonAide_AbilityGroup = new PrefabGUID(-1381729810); public static readonly PrefabGUID AB_Cardinal_SummonAide_Cast = new PrefabGUID(-461942541); public static readonly PrefabGUID AB_Cardinal_SummonAide_Summon = new PrefabGUID(501996848); public static readonly PrefabGUID AB_Cardinal_SummonOrb_AbilityGroup = new PrefabGUID(-16930230); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Beam_Buff = new PrefabGUID(-2014639169); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Cast = new PrefabGUID(-1186459989); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Minion_Buff = new PrefabGUID(-784079255); public static readonly PrefabGUID AB_Cardinal_SummonOrb_Summon = new PrefabGUID(-1377783622); public static readonly PrefabGUID AB_Cardinal_Zap_AbilityGroup = new PrefabGUID(1172834223); public static readonly PrefabGUID AB_Cardinal_Zap_Buff = new PrefabGUID(-2122308920); public static readonly PrefabGUID AB_Cardinal_Zap_Cast = new PrefabGUID(-2093769435); public static readonly PrefabGUID AB_Cardinal_Zap_Disengage_Cardinal = new PrefabGUID(1348167152); public static readonly PrefabGUID AB_Cardinal_Zap_Engage_Aide = new PrefabGUID(-1078175137); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_AbilityGroup = new PrefabGUID(-1109386231); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Cast = new PrefabGUID(862854303); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Channel = new PrefabGUID(1647627459); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Hit = new PrefabGUID(-357089174); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_AbilityGroup = new PrefabGUID(2103931135); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_Cast = new PrefabGUID(-909226674); public static readonly PrefabGUID AB_CarverBoss_Whirlwind_Init_Trigger = new PrefabGUID(-690555778); public static readonly PrefabGUID AB_Castle_Immaterial_Buff = new PrefabGUID(-66088350); public static readonly PrefabGUID AB_Castle_Invulnerable_Buff = new PrefabGUID(1019910549); public static readonly PrefabGUID AB_CastleMan_AxeThrow_AbilityGroup = new PrefabGUID(1022054621); public static readonly PrefabGUID AB_CastleMan_AxeThrow_BleedBuff = new PrefabGUID(-1982638766); public static readonly PrefabGUID AB_CastleMan_AxeThrow_Cast = new PrefabGUID(1507956945); public static readonly PrefabGUID AB_CastleMan_AxeThrow_Throw = new PrefabGUID(-1660992845); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_AbilityGroup = new PrefabGUID(1302295192); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_Cast = new PrefabGUID(-236457498); public static readonly PrefabGUID AB_CastleMan_DaggerProjectile_Projectile = new PrefabGUID(-79847847); public static readonly PrefabGUID AB_CastleMan_FlameWhip_AbilityGroup = new PrefabGUID(-1736553762); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast01 = new PrefabGUID(1336637195); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast02 = new PrefabGUID(1893805174); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Cast03 = new PrefabGUID(2039160815); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_AbilityGroup = new PrefabGUID(-1272535312); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast01 = new PrefabGUID(331725498); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast02 = new PrefabGUID(2009851931); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hard_Cast03 = new PrefabGUID(710028572); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit1 = new PrefabGUID(-1707553539); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit2 = new PrefabGUID(1173181606); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Hit3 = new PrefabGUID(481299078); public static readonly PrefabGUID AB_CastleMan_FlameWhip_OwnerBuff = new PrefabGUID(244912239); public static readonly PrefabGUID AB_CastleMan_FlameWhip_Single_Hit1 = new PrefabGUID(326695514); public static readonly PrefabGUID AB_CastleMan_FlameWhip_SingleAttack_AbilityGroup = new PrefabGUID(-653938456); public static readonly PrefabGUID AB_CastleMan_FlameWhip_SingleAttack_Cast01 = new PrefabGUID(-509387580); public static readonly PrefabGUID AB_Castleman_FlameWhip_SmallFireArea = new PrefabGUID(1579919935); public static readonly PrefabGUID AB_CastleMan_Grab_AbilityGroup = new PrefabGUID(-460221305); public static readonly PrefabGUID AB_CastleMan_Grab_Cast = new PrefabGUID(1113325827); public static readonly PrefabGUID AB_CastleMan_Grab_FakeProjectile = new PrefabGUID(-747986341); public static readonly PrefabGUID AB_CastleMan_Grab_FakeTarget = new PrefabGUID(-1581500370); public static readonly PrefabGUID AB_CastleMan_Grab_FakeTargetHighPrio = new PrefabGUID(406250507); public static readonly PrefabGUID AB_CastleMan_Grab_HasGrabedBuff = new PrefabGUID(-1881495377); public static readonly PrefabGUID AB_CastleMan_Grab_Hit = new PrefabGUID(-1702748378); public static readonly PrefabGUID AB_CastleMan_Grab_OnHitTravel = new PrefabGUID(810941144); public static readonly PrefabGUID AB_CastleMan_Grab_PostHitBuff = new PrefabGUID(-309559319); public static readonly PrefabGUID AB_CastleMan_Grab_TargetGrabedBuff = new PrefabGUID(-1523339077); public static readonly PrefabGUID AB_CastleMan_HolyBeam_AbilityGroup = new PrefabGUID(906463896); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Cast = new PrefabGUID(1903916672); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Channel_01 = new PrefabGUID(-244880819); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Hard_AbilityGroup = new PrefabGUID(583436571); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Hard_Cast = new PrefabGUID(1278091953); public static readonly PrefabGUID AB_CastleMan_HolyBeam_HitBuff = new PrefabGUID(-23470596); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Knockback = new PrefabGUID(1181128541); public static readonly PrefabGUID AB_CastleMan_HolyBeam_PowerBuff_01 = new PrefabGUID(-1584595113); public static readonly PrefabGUID AB_CastleMan_HolyBeam_PowerBuff_Throw = new PrefabGUID(1370719411); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Projectile_01 = new PrefabGUID(-1398284350); public static readonly PrefabGUID AB_CastleMan_HolyBeam_SelfStun_01 = new PrefabGUID(-1256872153); public static readonly PrefabGUID AB_CastleMan_HolyBeam_SelfStun_Powerup_01 = new PrefabGUID(624789018); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_01 = new PrefabGUID(-919859961); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_02 = new PrefabGUID(1372764174); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_03 = new PrefabGUID(-1665259270); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_04 = new PrefabGUID(1000176020); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_01 = new PrefabGUID(-1338987233); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_02 = new PrefabGUID(-437637678); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_03 = new PrefabGUID(1169661070); public static readonly PrefabGUID AB_CastleMan_HolyBeam_Spinner_Hard_04 = new PrefabGUID(-102887460); public static readonly PrefabGUID AB_CastleMan_HomingHolyFire_Area = new PrefabGUID(95731176); public static readonly PrefabGUID AB_CastleMan_LastingHolyFire_Area = new PrefabGUID(-380842947); public static readonly PrefabGUID AB_CastleMan_LastingHolyFire_Area_SpellTarget = new PrefabGUID(-1686291580); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_AbilityGroup = new PrefabGUID(-650079140); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Cast = new PrefabGUID(-573710229); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_HolyArea = new PrefabGUID(-982103313); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_HolyAreaBuff = new PrefabGUID(-2032431194); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Throw = new PrefabGUID(-1655557787); public static readonly PrefabGUID AB_CastleMan_LastingHolyWater_Throw_Cluster = new PrefabGUID(1747917437); public static readonly PrefabGUID AB_CastleMan_SpinningCross_AbilityGroup = new PrefabGUID(761680482); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Cast = new PrefabGUID(-2068664088); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Projectile = new PrefabGUID(-2134250559); public static readonly PrefabGUID AB_CastleMan_SpinningCross_Projectile_Hard = new PrefabGUID(1691049182); public static readonly PrefabGUID AB_CastleMan_SpinShield_AbilityGroup = new PrefabGUID(112329675); public static readonly PrefabGUID AB_CastleMan_SpinShield_Buff = new PrefabGUID(1639380448); public static readonly PrefabGUID AB_CastleMan_SpinShield_Cast = new PrefabGUID(-162789018); public static readonly PrefabGUID AB_CastleMan_SpinShield_Hit = new PrefabGUID(1877825611); public static readonly PrefabGUID AB_CastleMan_Tackle_AbilityGroup = new PrefabGUID(-296227812); public static readonly PrefabGUID AB_CastleMan_Tackle_Cast = new PrefabGUID(-970067949); public static readonly PrefabGUID AB_CastleMan_Tackle_Phase = new PrefabGUID(-953933936); public static readonly PrefabGUID AB_CastleMan_Throw_AbilityGroup = new PrefabGUID(1797118698); public static readonly PrefabGUID AB_CastleMan_Throw_Cast = new PrefabGUID(-1547385271); public static readonly PrefabGUID AB_CastleMan_Throw_LaunchBuff = new PrefabGUID(1269998543); public static readonly PrefabGUID AB_CastleMan_Throw_StunBuff = new PrefabGUID(-266552360); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_AbilityGroup = new PrefabGUID(874909393); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast01 = new PrefabGUID(1656910310); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast02 = new PrefabGUID(-330471947); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Cast03 = new PrefabGUID(1155578242); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile01 = new PrefabGUID(634456772); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile02 = new PrefabGUID(1675423156); public static readonly PrefabGUID AB_CastleMan_TrippleSpinningCross_Projectile03 = new PrefabGUID(1062722893); public static readonly PrefabGUID AB_CastleMan_Whip_AbilityGroup = new PrefabGUID(-499397494); public static readonly PrefabGUID AB_CastleMan_Whip_Cast01 = new PrefabGUID(1740538342); public static readonly PrefabGUID AB_CastleMan_Whip_Cast02 = new PrefabGUID(694066590); public static readonly PrefabGUID AB_CastleMan_Whip_Cast03 = new PrefabGUID(125620038); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_AbilityGroup = new PrefabGUID(626219559); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast01 = new PrefabGUID(741045580); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast02 = new PrefabGUID(-668470859); public static readonly PrefabGUID AB_CastleMan_Whip_Hard_Cast03 = new PrefabGUID(-1748547849); public static readonly PrefabGUID AB_CastleMan_Whip_Hit1 = new PrefabGUID(276535092); public static readonly PrefabGUID AB_CastleMan_Whip_Hit2 = new PrefabGUID(470262483); public static readonly PrefabGUID AB_CastleMan_Whip_HitBuff = new PrefabGUID(516861965); public static readonly PrefabGUID AB_Chaos_Aftershock_AreaThrow = new PrefabGUID(399410024); public static readonly PrefabGUID AB_Chaos_Aftershock_Cast = new PrefabGUID(-647349550); public static readonly PrefabGUID AB_Chaos_Aftershock_GreatSword_AreaThrow = new PrefabGUID(-361533440); public static readonly PrefabGUID AB_Chaos_Aftershock_GreatSword_Projectile = new PrefabGUID(-844371388); public static readonly PrefabGUID AB_Chaos_Aftershock_Group = new PrefabGUID(1575317901); public static readonly PrefabGUID AB_Chaos_Aftershock_Projectile = new PrefabGUID(-243208974); public static readonly PrefabGUID AB_Chaos_Aftershock_SpellMod_KnockbackArea = new PrefabGUID(-241052558); public static readonly PrefabGUID AB_Chaos_Aftershock_TempBuff = new PrefabGUID(-478243777); public static readonly PrefabGUID AB_Chaos_Barrier_AbilityGroup = new PrefabGUID(-1016145613); public static readonly PrefabGUID AB_Chaos_Barrier_Buff = new PrefabGUID(-352442632); public static readonly PrefabGUID AB_Chaos_Barrier_Cast = new PrefabGUID(980100276); public static readonly PrefabGUID AB_Chaos_Barrier_Charges = new PrefabGUID(-673905030); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_AbilityGroup = new PrefabGUID(2070140125); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_AreaImpact = new PrefabGUID(-1980428595); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_Cast = new PrefabGUID(-1869527555); public static readonly PrefabGUID AB_Chaos_Barrier_Recast_Projectile = new PrefabGUID(1963614275); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_AbilityGroup = new PrefabGUID(1174831223); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Area = new PrefabGUID(265754735); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Cast = new PrefabGUID(133479300); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Channel = new PrefabGUID(-800216016); public static readonly PrefabGUID AB_Chaos_ChaosBarrage_Projectile = new PrefabGUID(-1903786704); public static readonly PrefabGUID AB_Chaos_MercilessCharge_AbilityGroup = new PrefabGUID(245173408); public static readonly PrefabGUID AB_Chaos_MercilessCharge_Cast = new PrefabGUID(-667967135); public static readonly PrefabGUID AB_Chaos_MercilessCharge_EndImpact = new PrefabGUID(1068025228); public static readonly PrefabGUID AB_Chaos_MercilessCharge_GrabbedBuff = new PrefabGUID(-301817425); public static readonly PrefabGUID AB_Chaos_MercilessCharge_GrabbingBuff = new PrefabGUID(960377305); public static readonly PrefabGUID AB_Chaos_MercilessCharge_Phase = new PrefabGUID(1326012900); public static readonly PrefabGUID AB_Chaos_MercilessCharge_StopPause = new PrefabGUID(-1801218516); public static readonly PrefabGUID AB_Chaos_PowerSurge_AbilityGroup = new PrefabGUID(1112116762); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff = new PrefabGUID(-429891372); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff_Lesser = new PrefabGUID(1704857987); public static readonly PrefabGUID AB_Chaos_PowerSurge_Buff_MagicSource = new PrefabGUID(763939566); public static readonly PrefabGUID AB_Chaos_PowerSurge_Cast = new PrefabGUID(1141366098); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Buff_Shield = new PrefabGUID(-1763296393); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Recast_AbilityGroup = new PrefabGUID(1576686583); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_AreaImpact = new PrefabGUID(-191671502); public static readonly PrefabGUID AB_Chaos_PowerSurge_SpellMod_Recast_Buff = new PrefabGUID(-287562542); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_Cast = new PrefabGUID(-2062460405); public static readonly PrefabGUID AB_Chaos_PowerSurge_Spellmod_Recast_Trigger = new PrefabGUID(-254603202); public static readonly PrefabGUID AB_Chaos_RainOfChaos_AbilityGroup = new PrefabGUID(2012523607); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Buff = new PrefabGUID(-1062097246); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Cast = new PrefabGUID(901495348); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BonusMeteor = new PrefabGUID(-1649014147); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BurnArea = new PrefabGUID(-689590392); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_BurnDebuff = new PrefabGUID(-1910609332); public static readonly PrefabGUID AB_Chaos_RainOfChaos_SpellMod_MegaMeteor = new PrefabGUID(321435434); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw = new PrefabGUID(-919146370); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw_Meteor = new PrefabGUID(1401753271); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Throw_Meteor_Center = new PrefabGUID(-1598926105); public static readonly PrefabGUID AB_Chaos_RainOfChaos_Trigger = new PrefabGUID(2090409031); public static readonly PrefabGUID AB_Chaos_Void_AbilityGroup = new PrefabGUID(-358319417); public static readonly PrefabGUID AB_Chaos_Void_Cast = new PrefabGUID(-707328735); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_BurnArea = new PrefabGUID(-1482196543); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_BurnDebuff = new PrefabGUID(-1559958188); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_ClusterBomb = new PrefabGUID(1547537110); public static readonly PrefabGUID AB_Chaos_Void_SpellMod_ClusterTrigger = new PrefabGUID(1227443635); public static readonly PrefabGUID AB_Chaos_Void_Throw = new PrefabGUID(-1734564881); public static readonly PrefabGUID AB_Chaos_Voidquake_AbilityGroup = new PrefabGUID(1383453728); public static readonly PrefabGUID AB_Chaos_Voidquake_Cast = new PrefabGUID(925745426); public static readonly PrefabGUID AB_Chaos_Voidquake_End = new PrefabGUID(1285575147); public static readonly PrefabGUID AB_Chaos_Voidquake_Phase = new PrefabGUID(-452698233); public static readonly PrefabGUID AB_Chaos_Volley_AbilityGroup = new PrefabGUID(1019568127); public static readonly PrefabGUID AB_Chaos_Volley_Cast = new PrefabGUID(1654851767); public static readonly PrefabGUID AB_Chaos_Volley_Channel = new PrefabGUID(385090887); public static readonly PrefabGUID AB_Chaos_Volley_FirstHit_Buff = new PrefabGUID(1447799523); public static readonly PrefabGUID AB_Chaos_Volley_Projectile_First = new PrefabGUID(-2086760208); public static readonly PrefabGUID AB_Chaos_Volley_Projectile_Second = new PrefabGUID(173993548); public static readonly PrefabGUID AB_Charm_AbilityGroup = new PrefabGUID(-107743040); public static readonly PrefabGUID AB_Charm_Active_Human_Buff = new PrefabGUID(1303169868); public static readonly PrefabGUID AB_Charm_CaptureBuff_Base = new PrefabGUID(1300556217); public static readonly PrefabGUID AB_Charm_CaptureBuff_Human = new PrefabGUID(-1683471273); public static readonly PrefabGUID AB_Charm_Cast = new PrefabGUID(-1696574816); public static readonly PrefabGUID AB_Charm_Channeling = new PrefabGUID(1002852223); public static readonly PrefabGUID AB_Charm_Channeling_Target_Debuff = new PrefabGUID(-1760277810); public static readonly PrefabGUID AB_Charm_Owner_Channeling_PostCast = new PrefabGUID(-1348576822); public static readonly PrefabGUID AB_Charm_Owner_HasCharmedTarget_Buff = new PrefabGUID(-2147040513); public static readonly PrefabGUID AB_Charm_Projectile = new PrefabGUID(1652376207); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Human_AbilityGroup = new PrefabGUID(826190081); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Human_Cast = new PrefabGUID(1476121942); public static readonly PrefabGUID AB_Charm_ReleaseTarget_Trigger = new PrefabGUID(-1692072908); public static readonly PrefabGUID AB_Charm_SendToPrison_AbilityGroup = new PrefabGUID(-1717210880); public static readonly PrefabGUID AB_Charm_SendToPrison_Cast = new PrefabGUID(-1987926603); public static readonly PrefabGUID AB_Charm_SendToPrison_Invulnerability = new PrefabGUID(-1988445418); public static readonly PrefabGUID AB_Charm_SendToPrison_Trigger = new PrefabGUID(1789285456); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_AbilityGroup = new PrefabGUID(116066962); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_Buff = new PrefabGUID(2059223980); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Block_Cast = new PrefabGUID(1786941235); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_AbilityGroup = new PrefabGUID(2108112601); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Cast_01 = new PrefabGUID(-1215591582); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Cast_02 = new PrefabGUID(-802558866); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Melee_Hit = new PrefabGUID(1430748044); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile = new PrefabGUID(1949732197); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile_AbilityGroup = new PrefabGUID(-1378417368); public static readonly PrefabGUID AB_ChurchOfLight_CardinalAide_Projectile_Cast = new PrefabGUID(1568540580); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_AbilityGroup = new PrefabGUID(100549683); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_Buff = new PrefabGUID(-59870091); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Block_Cast = new PrefabGUID(1537903648); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_AbilityGroup = new PrefabGUID(-923957888); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_Cast = new PrefabGUID(-2036444563); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_ChannelBuff = new PrefabGUID(-844701160); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Heal_HealingOverTime_Buff = new PrefabGUID(-1639791914); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_AbilityGroup = new PrefabGUID(1817985064); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_Cast = new PrefabGUID(-870388936); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_Dash = new PrefabGUID(1348203239); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Intervene_PostDashBuff = new PrefabGUID(392929978); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile = new PrefabGUID(48461323); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile_AbilityGroup = new PrefabGUID(-587604072); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_Projectile_Cast = new PrefabGUID(1710491579); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_AbilityGroup = new PrefabGUID(-819795639); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_Cast = new PrefabGUID(-1615229506); public static readonly PrefabGUID AB_ChurchOfLight_Cleric_ShieldSlam_Hit = new PrefabGUID(1226815161); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_AbilityGroup = new PrefabGUID(-1637210619); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_Cast = new PrefabGUID(-426254318); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_Channel = new PrefabGUID(1543175030); public static readonly PrefabGUID AB_ChurchOfLight_EnchantedCross_Beam_Hard_HitBuff = new PrefabGUID(1252218780); public static readonly PrefabGUID AB_ChurchOfLight_Miner_Alert_Buff = new PrefabGUID(458667960); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Cast01 = new PrefabGUID(-617735588); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Cast02 = new PrefabGUID(2054437187); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Group01 = new PrefabGUID(2013132333); public static readonly PrefabGUID AB_ChurchOfLight_Miner_MeleeAttack_Hit01 = new PrefabGUID(-275242680); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_AbilityGroup = new PrefabGUID(499671166); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_Buff = new PrefabGUID(2034745297); public static readonly PrefabGUID AB_ChurchOfLight_Miner_OnAggro_Cast = new PrefabGUID(-1993125004); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_AbilityGroup = new PrefabGUID(1541929232); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_Cast = new PrefabGUID(-1268101183); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Hard_SnowLob_Throw = new PrefabGUID(-2056478180); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_AbilityGroup = new PrefabGUID(1792964134); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_AreaThrow = new PrefabGUID(-1890218503); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Cast = new PrefabGUID(707899850); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_FreezeBuff = new PrefabGUID(548966542); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_FreezeBuffTrigger = new PrefabGUID(1688682323); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Hard_IcicleThrow = new PrefabGUID(-458867587); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_Hard_IcicleTrigger = new PrefabGUID(-1945090025); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleSpawnThrow = new PrefabGUID(-639588401); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleThrow = new PrefabGUID(767809830); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_IcicleTrigger = new PrefabGUID(-1721885814); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_LaunchBuff = new PrefabGUID(2030766507); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRecovery_PostCast = new PrefabGUID(-1214567161); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_AbilityGroup = new PrefabGUID(896963123); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_Cast = new PrefabGUID(741418411); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_FrictionBuff = new PrefabGUID(1223608696); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IceArea = new PrefabGUID(-1747849514); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IceAreaThrow = new PrefabGUID(-114379501); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleDrop_Throw1 = new PrefabGUID(-588181266); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleDrop_Throw2 = new PrefabGUID(-450242532); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IceRink_IcicleTrigger = new PrefabGUID(-2059503476); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_AbilityGroup = new PrefabGUID(1964067196); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Cast = new PrefabGUID(1616224499); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Hit = new PrefabGUID(-918751193); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_IcicleThrow = new PrefabGUID(-2078632331); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Projectile01 = new PrefabGUID(640106499); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_IcicleField_Projectile02 = new PrefabGUID(-1125134197); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_AbilityGroup = new PrefabGUID(526997488); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_AggroBuff = new PrefabGUID(60850608); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Cast = new PrefabGUID(2002922051); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Dash = new PrefabGUID(883512545); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_DownedStun = new PrefabGUID(-608251310); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_HasteBuff = new PrefabGUID(-1916256107); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_LaunchBuff = new PrefabGUID(1798162675); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_PostDash = new PrefabGUID(-191913809); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_AbilityGroup = new PrefabGUID(88026855); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_Cast = new PrefabGUID(2002903984); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_LanceCharge_Swing_Hit = new PrefabGUID(1846291150); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_AbilityGroup = new PrefabGUID(-1973550282); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Cast = new PrefabGUID(-310802745); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_EndImpact = new PrefabGUID(-1305978383); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_FakeTarget = new PrefabGUID(-2059791223); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_GrabbedBuff = new PrefabGUID(1045272422); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_GrabbingBuff = new PrefabGUID(1049863088); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Phase = new PrefabGUID(-343967306); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_StopPause = new PrefabGUID(577992298); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_AbilityGroup = new PrefabGUID(493409764); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_Cast = new PrefabGUID(1782710052); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_LaunchBuff = new PrefabGUID(-1142017589); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_PiercingCharge_Throw_StunBuff = new PrefabGUID(466039625); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_AbilityGroup = new PrefabGUID(1823825002); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_Cast = new PrefabGUID(-1457114265); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_Reinforcement_Summon = new PrefabGUID(1310226881); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_AbilityGroup = new PrefabGUID(-985136954); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Cast = new PrefabGUID(830730797); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Channel = new PrefabGUID(-1743979096); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_HitBuff = new PrefabGUID(1971533839); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_Projectile = new PrefabGUID(1784339505); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hard_SpinnerBuff = new PrefabGUID(-1987830486); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_Hit = new PrefabGUID(-1015785362); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SpinAttack_PostCast = new PrefabGUID(511192765); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_AbilityGroup = new PrefabGUID(613355091); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Cast01 = new PrefabGUID(1485005080); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Cast02 = new PrefabGUID(1537811769); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Hit01 = new PrefabGUID(-976784484); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Hit02 = new PrefabGUID(-944896771); public static readonly PrefabGUID AB_ChurchOfLight_Overseer_SwingAttack_Projectile = new PrefabGUID(600760760); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_AbilityGroup = new PrefabGUID(-422683973); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_Cast = new PrefabGUID(1499698779); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_Travel = new PrefabGUID(-1758775507); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_AngelicAscent_TravelEnd = new PrefabGUID(-2052154037); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_AbilityGroup = new PrefabGUID(1145861576); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_Cast = new PrefabGUID(993452398); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_CentreTravel_Phase = new PrefabGUID(1170970544); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_AbilityGroup = new PrefabGUID(922419960); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_Cast = new PrefabGUID(1634116878); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_ChargedSwing_Hit = new PrefabGUID(246466673); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_AbilityGroup = new PrefabGUID(-1720407974); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_Cast = new PrefabGUID(-2133295894); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_Phase = new PrefabGUID(1378579418); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Dash_TrailProjectile = new PrefabGUID(334620903); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_AbilityGroup = new PrefabGUID(51772774); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_BeamSpawnerBuff = new PrefabGUID(2007361446); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_DivineRays_Cast = new PrefabGUID(-719765896); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_AbilityGroup = new PrefabGUID(-947518364); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast01 = new PrefabGUID(-697413038); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast02 = new PrefabGUID(-2097945594); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast03 = new PrefabGUID(-89562779); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Cast04 = new PrefabGUID(397691284); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit01 = new PrefabGUID(1930437870); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit02 = new PrefabGUID(126214137); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_Hit04 = new PrefabGUID(-1041912276); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_EmpoweredMelee_MainProjectile = new PrefabGUID(-207975116); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_AbilityGroup = new PrefabGUID(-1172099204); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_Cast = new PrefabGUID(-1793771282); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_Phase = new PrefabGUID(-1117458568); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Hard_Dash_TrailProjectile = new PrefabGUID(1069164714); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_AbilityGroup = new PrefabGUID(-552723816); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_Cast = new PrefabGUID(1904468920); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HealAngel_HealBuff = new PrefabGUID(210470); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam = new PrefabGUID(-1618178798); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_AbilityGroup = new PrefabGUID(998464144); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_Cast = new PrefabGUID(-1414061814); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_Beam_HitBuff = new PrefabGUID(-1257730808); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_BeamSpawnerBuff = new PrefabGUID(-500693743); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_BeamTrigger = new PrefabGUID(-104940321); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_HealBuff = new PrefabGUID(-621772718); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyBubble_InvulnerableBuff = new PrefabGUID(358972271); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_AbilityGroup = new PrefabGUID(834886466); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Cast = new PrefabGUID(-949919142); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_ChannelBuff = new PrefabGUID(-443754441); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_AbilityGroup = new PrefabGUID(699013677); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Cast = new PrefabGUID(-1298826028); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_ChannelBuff = new PrefabGUID(-1471487774); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Projectile01 = new PrefabGUID(-476659597); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Projectile02 = new PrefabGUID(-1874919568); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Spinner01 = new PrefabGUID(485865847); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Hard_Spinner02 = new PrefabGUID(-1847076350); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Projectile01 = new PrefabGUID(760919643); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Projectile02 = new PrefabGUID(-48649580); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Spinner01 = new PrefabGUID(297275019); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolyFlackCannon_Spinner02 = new PrefabGUID(512131254); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_AbilityGroup = new PrefabGUID(-1852467646); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Cast = new PrefabGUID(24236018); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_ChannelBuff = new PrefabGUID(311723714); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Hard_Spinner01 = new PrefabGUID(1665262881); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Hard_Spinner02 = new PrefabGUID(-789871960); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Projectile = new PrefabGUID(370174465); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Spinner01 = new PrefabGUID(-785356046); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HolySpinners_Spinner02 = new PrefabGUID(596149743); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_HomePosSpawn = new PrefabGUID(506662132); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_AbilityGroup = new PrefabGUID(1673497547); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Cast01 = new PrefabGUID(1639685226); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Cast02 = new PrefabGUID(-297122786); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hard_HorizontalProjectile01 = new PrefabGUID(-452282789); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hard_HorizontalProjectile02 = new PrefabGUID(-1289009115); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hit01 = new PrefabGUID(348884445); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_Hit02 = new PrefabGUID(32333759); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_HitBuff = new PrefabGUID(893060518); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_MainProjectile = new PrefabGUID(390812503); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_ReturnProjectile01 = new PrefabGUID(-133618863); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_Melee_ReturnProjectile02 = new PrefabGUID(122683115); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_AbilityGroup = new PrefabGUID(1825130923); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Area = new PrefabGUID(1996768730); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Cast = new PrefabGUID(-1447111028); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonAngel_Trigger = new PrefabGUID(-1664243827); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonDivineAngel_DeathBuff = new PrefabGUID(-1934189109); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonDivineAngel_SpawnBuff = new PrefabGUID(390920678); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonFallenAngel_AggroBuff = new PrefabGUID(1643631401); public static readonly PrefabGUID AB_ChurchOfLight_Paladin_SummonFallenAngel_SpawnBuff = new PrefabGUID(55472502); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_AbilityGroup = new PrefabGUID(-1282606238); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_Buff = new PrefabGUID(-1133938228); public static readonly PrefabGUID AB_ChurchOfLight_Priest_HealBomb_Cast = new PrefabGUID(1487622444); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile = new PrefabGUID(1521005516); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile_AbilityGroup = new PrefabGUID(-292542362); public static readonly PrefabGUID AB_ChurchOfLight_Priest_Projectile_Cast = new PrefabGUID(-2023960376); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_AbilityGroup = new PrefabGUID(943885425); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Cast = new PrefabGUID(1451711522); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_LifeTimeBuff = new PrefabGUID(246620725); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Minion_Buff = new PrefabGUID(-466524518); public static readonly PrefabGUID AB_ChurchOfLight_Priest_SummonPillar_Summon = new PrefabGUID(1272513330); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_Cast_UNUSED = new PrefabGUID(-2110353406); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_Group_UNUSED = new PrefabGUID(-1326377581); public static readonly PrefabGUID AB_ChurchOfLight_Rifleman_SpreadShot_UNUSED = new PrefabGUID(-1431227036); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_AbilityGroup = new PrefabGUID(-1684687653); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_Area = new PrefabGUID(1688066724); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_Cast = new PrefabGUID(683679778); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_AbilityGroup = new PrefabGUID(-1599671939); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_Buff = new PrefabGUID(-652924018); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_HasAlly_Cast = new PrefabGUID(-1082916719); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_AoEBuff_RageBuff = new PrefabGUID(1578414219); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_AbilityGroup = new PrefabGUID(-1879864480); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_Area = new PrefabGUID(-1548192735); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_KnockbackWhip_Cast = new PrefabGUID(-2134276443); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_Roll_AbilityGroup = new PrefabGUID(-1255881274); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_Roll_CastAndRoll = new PrefabGUID(403910096); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_AbilityGroup = new PrefabGUID(-1276648449); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_Area = new PrefabGUID(1522821650); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_Cast = new PrefabGUID(-703377646); public static readonly PrefabGUID AB_ChurchOfLight_SlaveMaster_VisualSlaveWhip_HitBuff = new PrefabGUID(-1905544641); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_AbilityGroup = new PrefabGUID(2005435470); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_Cast = new PrefabGUID(1248157588); public static readonly PrefabGUID AB_ChurchOfLight_SmiteOrb_Smite_Throw = new PrefabGUID(2133702245); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_AbilityGroup = new PrefabGUID(1587195740); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Cast = new PrefabGUID(-293717845); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Channel_Buff = new PrefabGUID(2113270604); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_DropDown_AoE = new PrefabGUID(1722490059); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_Throw02 = new PrefabGUID(1168788309); public static readonly PrefabGUID AB_ChurchOfLight_Sommelier_BarrelMinion_TriggerObject = new PrefabGUID(-1641644591); public static readonly PrefabGUID AB_ChurchOfLight_VillagerFemale_OnAggro_AbilityGroup_01 = new PrefabGUID(-119427343); public static readonly PrefabGUID AB_ChurchOfLight_VillagerFemale_OnAggro_Cast_01 = new PrefabGUID(-1073207311); public static readonly PrefabGUID AB_ChurchOfLight_VillagerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(1055785998); public static readonly PrefabGUID AB_ChurchOfLight_VillagerMale_OnAggro_Cast_01 = new PrefabGUID(-785726393); public static readonly PrefabGUID AB_ConstrainingPole_Projectile_Hard_Buff = new PrefabGUID(-514310125); public static readonly PrefabGUID AB_ConstrainingPole_Projectile_Hard_HitBuff = new PrefabGUID(406589190); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_AbilityGroup = new PrefabGUID(1250098443); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_Buff = new PrefabGUID(-1495388131); public static readonly PrefabGUID AB_Consumable_BarrelDisguise_Cast = new PrefabGUID(-322814108); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_AbilityGroup = new PrefabGUID(102790706); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_Activate = new PrefabGUID(984453223); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyBottle_Cast = new PrefabGUID(1859095350); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_AbilityGroup = new PrefabGUID(-1047692800); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_Activate = new PrefabGUID(1930734244); public static readonly PrefabGUID AB_Consumable_Bottle_EmptyWaterskin_Cast = new PrefabGUID(1545901732); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_AbilityGroup = new PrefabGUID(-245435862); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Activate = new PrefabGUID(-932656733); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Cast = new PrefabGUID(1368552679); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Exquisite_Heal = new PrefabGUID(-251374520); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_AbilityGroup = new PrefabGUID(-1648249846); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Activate = new PrefabGUID(-180761359); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Cast = new PrefabGUID(-1028407485); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Pristine_Heal = new PrefabGUID(1955090947); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_AbilityGroup = new PrefabGUID(-1888981494); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Activate = new PrefabGUID(88734054); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Cast = new PrefabGUID(175786372); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Tainted_Heal = new PrefabGUID(113134257); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_AbilityGroup = new PrefabGUID(1959283631); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Activate = new PrefabGUID(5776828); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Cast = new PrefabGUID(616733471); public static readonly PrefabGUID AB_Consumable_Eat_Heart_Unsullied_Heal = new PrefabGUID(404145821); public static readonly PrefabGUID AB_Consumable_Eat_Rat_AbilityGroup = new PrefabGUID(2034689434); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Activate = new PrefabGUID(1195320878); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Cast = new PrefabGUID(1445535569); public static readonly PrefabGUID AB_Consumable_Eat_Rat_Heal = new PrefabGUID(-1203538885); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_AbilityGroup = new PrefabGUID(-1072457678); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Activate = new PrefabGUID(1495017287); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Buff = new PrefabGUID(-177895450); public static readonly PrefabGUID AB_Consumable_Eat_TrippyShroom_Cast = new PrefabGUID(476025843); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_AbilityGroup = new PrefabGUID(1639330095); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Activate = new PrefabGUID(-483066689); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Buff = new PrefabGUID(-706770454); public static readonly PrefabGUID AB_Consumable_FireResistancePotion_T01_Cast = new PrefabGUID(573639888); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_AbilityGroup = new PrefabGUID(2030125327); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Activate = new PrefabGUID(877825423); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Buff = new PrefabGUID(-1731982445); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T01_Cast = new PrefabGUID(290062581); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_AbilityGroup = new PrefabGUID(1875280201); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Activate = new PrefabGUID(-1077520069); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Buff = new PrefabGUID(-1796828440); public static readonly PrefabGUID AB_Consumable_GarlicResistancePotion_T02_Cast = new PrefabGUID(834299611); public static readonly PrefabGUID AB_Consumable_HealingPotion_Debuff = new PrefabGUID(346407733); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_AbilityGroup = new PrefabGUID(2142882097); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Activate = new PrefabGUID(-1489109223); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Cast = new PrefabGUID(-1588345532); public static readonly PrefabGUID AB_Consumable_HealingPotion_T01_Heal = new PrefabGUID(1083649443); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_AbilityGroup = new PrefabGUID(-618850823); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Activate = new PrefabGUID(635603587); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Cast = new PrefabGUID(1765706200); public static readonly PrefabGUID AB_Consumable_HealingPotion_T02_Heal = new PrefabGUID(648923369); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_AbilityGroup = new PrefabGUID(1898092173); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Activate = new PrefabGUID(1371307540); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Buff = new PrefabGUID(1234155086); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T01_Cast = new PrefabGUID(-2001272949); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_AbilityGroup = new PrefabGUID(-1861621769); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Activate = new PrefabGUID(572282504); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Buff = new PrefabGUID(2099221856); public static readonly PrefabGUID AB_Consumable_HolyResistancePotion_T02_Cast = new PrefabGUID(-1902500211); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_AbilityGroup = new PrefabGUID(-1156226621); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_Activate = new PrefabGUID(-519547442); public static readonly PrefabGUID AB_Consumable_IrradiantGruel_Cast = new PrefabGUID(-1705971848); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_AbilityGroup = new PrefabGUID(-1506728203); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Activate = new PrefabGUID(-164308939); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Buff = new PrefabGUID(-1954355403); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T01_Cast = new PrefabGUID(573641304); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_AbilityGroup = new PrefabGUID(1195333673); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Activate = new PrefabGUID(1316696914); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Buff = new PrefabGUID(-1591883586); public static readonly PrefabGUID AB_Consumable_PhysicalPowerPotion_T02_Cast = new PrefabGUID(21073476); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_AbilityGroup = new PrefabGUID(974235336); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_Activate = new PrefabGUID(1745215583); public static readonly PrefabGUID AB_Consumable_PrisonBloodPotion_Cast = new PrefabGUID(-159878578); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_AbilityGroup = new PrefabGUID(-895081056); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Activate = new PrefabGUID(-679434043); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Cast = new PrefabGUID(-375307780); public static readonly PrefabGUID AB_Consumable_Salve_Vermin_Heal = new PrefabGUID(366350841); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_AbilityGroup = new PrefabGUID(1062857775); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Activate = new PrefabGUID(-638558421); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Buff = new PrefabGUID(-1461096907); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T01_Cast = new PrefabGUID(-994793300); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_AbilityGroup = new PrefabGUID(-805514691); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Activate = new PrefabGUID(-468447626); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Buff = new PrefabGUID(1984795569); public static readonly PrefabGUID AB_Consumable_SilverResistancePotion_T02_Cast = new PrefabGUID(-392824840); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_AbilityGroup = new PrefabGUID(452822121); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Activate = new PrefabGUID(1167807223); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Buff = new PrefabGUID(-819103704); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T01_Cast = new PrefabGUID(660430815); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_AbilityGroup = new PrefabGUID(-2008977590); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Activate = new PrefabGUID(-33411080); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Buff = new PrefabGUID(-1591827622); public static readonly PrefabGUID AB_Consumable_SpellPowerPotion_T02_Cast = new PrefabGUID(1873681604); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_AbilityGroup = new PrefabGUID(-603849198); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Activate = new PrefabGUID(514644490); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Buff = new PrefabGUID(112008974); public static readonly PrefabGUID AB_Consumable_SunResistancePotion_T01_Cast = new PrefabGUID(1187975687); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_AbilityGroup = new PrefabGUID(-1801222341); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_Activate = new PrefabGUID(1763295534); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Bite_Cast = new PrefabGUID(-67474168); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_AbilityGroup = new PrefabGUID(-304507736); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_Activate = new PrefabGUID(769624058); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level01_Cast = new PrefabGUID(-1084444535); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_AbilityGroup = new PrefabGUID(-2018732849); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_Activate = new PrefabGUID(-2016817915); public static readonly PrefabGUID AB_Consumable_Tech_Ability_Charm_Level02_Cast = new PrefabGUID(-738520437); public static readonly PrefabGUID AB_Consumable_Tech_Memory_AbilityGroup = new PrefabGUID(1484354243); public static readonly PrefabGUID AB_Consumable_Tech_Memory_Activate = new PrefabGUID(-204726490); public static readonly PrefabGUID AB_Consumable_Tech_Memory_Cast = new PrefabGUID(-1954763306); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_AbilityGroup = new PrefabGUID(1575781217); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_Activate = new PrefabGUID(-120713987); public static readonly PrefabGUID AB_Consumable_Tech_Recipe_Cast = new PrefabGUID(1313960443); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_AbilityGroup = new PrefabGUID(-2027014613); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_Activate = new PrefabGUID(2082559658); public static readonly PrefabGUID AB_Consumable_ToxicSludgeCanister_Cast = new PrefabGUID(-125605708); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_AbilityGroup = new PrefabGUID(1743540461); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_Activate = new PrefabGUID(-256327508); public static readonly PrefabGUID AB_Consumable_WaterCanteen_T01_Cast = new PrefabGUID(204798150); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_AbilityGroup = new PrefabGUID(1293091219); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Activate = new PrefabGUID(-2075162541); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Buff = new PrefabGUID(387154469); public static readonly PrefabGUID AB_Consumable_WranglerPotion_T01_Cast = new PrefabGUID(-407881459); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_AbilityGroup = new PrefabGUID(1369843173); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_Buff = new PrefabGUID(630211818); public static readonly PrefabGUID AB_Corrupted_Wolf_CorruptionCharged_Cast = new PrefabGUID(730303038); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_AbilityGroup = new PrefabGUID(-1720952746); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_Cast = new PrefabGUID(227492828); public static readonly PrefabGUID AB_Corrupted_Wolf_SlaveringBite_Hit = new PrefabGUID(2118909752); public static readonly PrefabGUID AB_CorruptedCrow_Aggro_Buff = new PrefabGUID(-130394187); public static readonly PrefabGUID AB_CorruptedCrow_Aggro_Hit = new PrefabGUID(-1459988579); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_AbilityGroup = new PrefabGUID(-1095356108); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_AoeIndicator = new PrefabGUID(1586786621); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Cast = new PrefabGUID(532487911); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Travel = new PrefabGUID(-1566952957); public static readonly PrefabGUID AB_CorruptedCrow_FlyEnd_Travel_End = new PrefabGUID(1303346774); public static readonly PrefabGUID AB_CorruptedCrow_FlyEndTrigger = new PrefabGUID(1824774605); public static readonly PrefabGUID AB_CorruptedCrow_Flying_Buff = new PrefabGUID(-308357861); public static readonly PrefabGUID AB_CorruptedCrow_Flying_IdleBuff = new PrefabGUID(14629861); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_AbilityGroup = new PrefabGUID(61265236); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_AbilityGroup_ALREADY_EXISTS_2 = new PrefabGUID(-1698500590); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Cast = new PrefabGUID(-548375015); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Cast_ALREADY_EXISTS_2 = new PrefabGUID(-1174157515); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Hit = new PrefabGUID(-1533050127); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Travel = new PrefabGUID(-62076129); public static readonly PrefabGUID AB_CorruptedCrow_FlyStart_Travel_ALREADY_EXISTS_2 = new PrefabGUID(-2001013568); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_AbilityGroup = new PrefabGUID(304685414); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Cast = new PrefabGUID(70052349); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Hit = new PrefabGUID(775969354); public static readonly PrefabGUID AB_CorruptedCrow_IdleFlyStart_Travel = new PrefabGUID(826655304); public static readonly PrefabGUID AB_CorruptedCrow_SlowDown_Buff = new PrefabGUID(-1990530610); public static readonly PrefabGUID AB_CorruptedCrow_Spawn_FlyDown = new PrefabGUID(-915937278); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_AbilityGroup = new PrefabGUID(-195896692); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Cast = new PrefabGUID(1638561320); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Travel = new PrefabGUID(533421153); public static readonly PrefabGUID AB_CorruptedCrow_StrafeBomb_Travel_End = new PrefabGUID(-1267021569); public static readonly PrefabGUID AB_CorruptedCrow_Throw = new PrefabGUID(-1040401062); public static readonly PrefabGUID AB_CorruptedWindGust_AbilityGroup = new PrefabGUID(1918468442); public static readonly PrefabGUID AB_CorruptedWindGust_Cast = new PrefabGUID(223642444); public static readonly PrefabGUID AB_CorruptedWindGust_Hit = new PrefabGUID(966720559); public static readonly PrefabGUID AB_CorruptedWindGust_Trigger = new PrefabGUID(408327112); public static readonly PrefabGUID AB_Corruption_EnemySpawner = new PrefabGUID(530364652); public static readonly PrefabGUID AB_Cultist_FireBlast_AbilityGroup = new PrefabGUID(14947666); public static readonly PrefabGUID AB_Cultist_FireBlast_Cast = new PrefabGUID(-1925423665); public static readonly PrefabGUID AB_Cultist_FireBlast_Throw = new PrefabGUID(-2138805270); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Cast01 = new PrefabGUID(927632051); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Group01 = new PrefabGUID(-1512916174); public static readonly PrefabGUID AB_Cultist_MeleeAttack01_Hit1 = new PrefabGUID(-1293227574); public static readonly PrefabGUID AB_Cultist_MeleeAttack02_Cast01 = new PrefabGUID(2050040698); public static readonly PrefabGUID AB_Cultist_MeleeAttack02_Group01 = new PrefabGUID(-2095410919); public static readonly PrefabGUID AB_Cultist_MeleeAttack03_Cast01 = new PrefabGUID(1426816576); public static readonly PrefabGUID AB_Cultist_MeleeAttack03_Group01 = new PrefabGUID(249896389); public static readonly PrefabGUID AB_Cultist_Projectile = new PrefabGUID(1657911047); public static readonly PrefabGUID AB_Cultist_Projectile_Cast01 = new PrefabGUID(-2088525277); public static readonly PrefabGUID AB_Cultist_Projectile_Group = new PrefabGUID(1238091894); public static readonly PrefabGUID AB_Cultist_ShapeShift_AbilityGroup = new PrefabGUID(-1951127647); public static readonly PrefabGUID AB_Cultist_ShapeShift_Cast = new PrefabGUID(-1322481847); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_AbilityGroup = new PrefabGUID(-1684997624); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Cast = new PrefabGUID(-1802399768); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_End = new PrefabGUID(-772899095); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Phase = new PrefabGUID(-2078346794); public static readonly PrefabGUID AB_Cursed_MonsterToad_LeapAttack_Travel_Phase_ToadKing_Vomit = new PrefabGUID(26169042); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_AbilityGroup = new PrefabGUID(750606882); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_Cast = new PrefabGUID(435795094); public static readonly PrefabGUID AB_Cursed_MonsterToad_Swallow_Hit = new PrefabGUID(2094802783); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_AbilityGroup = new PrefabGUID(2015521421); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Cast = new PrefabGUID(-2063503194); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Hit1 = new PrefabGUID(-1098362696); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueGrab_Hit2 = new PrefabGUID(1587644704); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_AbilityGroup = new PrefabGUID(736733073); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_Cast = new PrefabGUID(-203631072); public static readonly PrefabGUID AB_Cursed_MonsterToad_TongueSlap_Hit = new PrefabGUID(-232947967); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_AbilityGroup = new PrefabGUID(-1979483677); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_Cast = new PrefabGUID(-12886920); public static readonly PrefabGUID AB_Cursed_Mosquito_DashAttack_Phase = new PrefabGUID(400542729); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_AbilityGroup = new PrefabGUID(1451199905); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_Cast = new PrefabGUID(1227224850); public static readonly PrefabGUID AB_Cursed_Mosquito_MeleeAttack_Hit = new PrefabGUID(-1609712778); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_AbilityGroup = new PrefabGUID(556335075); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_Cast = new PrefabGUID(-1491024547); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_Phase = new PrefabGUID(-1216986584); public static readonly PrefabGUID AB_Cursed_MountainBeast_DashAttack_TargetedBuff = new PrefabGUID(287532724); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_AggroBuff = new PrefabGUID(1162403144); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_PhaseOutBuff = new PrefabGUID(-950518260); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_PhaseOutEndingBuff = new PrefabGUID(1897798638); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_RageBuff = new PrefabGUID(1091231925); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Scream = new PrefabGUID(-756360759); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_ScreamEffectDebuff = new PrefabGUID(1498838250); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_AbilityGroup = new PrefabGUID(1439273397); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_Cast = new PrefabGUID(-1777058490); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_End = new PrefabGUID(1847558121); public static readonly PrefabGUID AB_Cursed_MountainBeast_Enrage_Travel_Phase = new PrefabGUID(675891131); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_AbilityGroup = new PrefabGUID(-1574537639); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_AggroBuff = new PrefabGUID(-533730502); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Cast = new PrefabGUID(1024619394); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_GhostBuff = new PrefabGUID(815688358); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile03 = new PrefabGUID(-219080756); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile04 = new PrefabGUID(431155413); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile05 = new PrefabGUID(-2097440624); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Projectile06 = new PrefabGUID(-1536116248); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_RageBuff = new PrefabGUID(454963821); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Scream = new PrefabGUID(-2120528767); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner03 = new PrefabGUID(-983266649); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner04 = new PrefabGUID(1826840133); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner05 = new PrefabGUID(-761142217); public static readonly PrefabGUID AB_Cursed_MountainBeast_GhostCall_Spinner06 = new PrefabGUID(-894502870); public static readonly PrefabGUID AB_Cursed_Mountainbeast_HornFlick_AbilityGroup = new PrefabGUID(-749389155); public static readonly PrefabGUID AB_Cursed_Mountainbeast_HornFlick_Cast = new PrefabGUID(677715926); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_LaunchBuff = new PrefabGUID(363733786); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_Phase = new PrefabGUID(-1194452347); public static readonly PrefabGUID AB_Cursed_MountainBeast_HornFlick_PostAttackBuff = new PrefabGUID(-90276801); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_AbilityGroup = new PrefabGUID(2067796423); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_AreaThrow = new PrefabGUID(-1299904251); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Cast = new PrefabGUID(-1732213047); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Hit = new PrefabGUID(1409534403); public static readonly PrefabGUID AB_Cursed_MountainBeast_KongPound_Projectile = new PrefabGUID(284085426); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_AggroBuff = new PrefabGUID(1826885843); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_AbilityGroup = new PrefabGUID(-130931989); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_Cast = new PrefabGUID(-1461990482); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_End = new PrefabGUID(-1865784935); public static readonly PrefabGUID AB_Cursed_MountainBeast_LeapAttack_Travel_Phase = new PrefabGUID(881475206); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_AbilityGroup = new PrefabGUID(-453331838); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_Cast = new PrefabGUID(612816399); public static readonly PrefabGUID AB_Cursed_Mountainbeast_MeleeStraight_Hit = new PrefabGUID(900655664); public static readonly PrefabGUID AB_Cursed_MountainBeast_MeleeStraight_TargetedBuff = new PrefabGUID(-1704661869); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_AbilityGroup = new PrefabGUID(-430375110); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_Cast = new PrefabGUID(-298006658); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_AbilityGroup = new PrefabGUID(2091042632); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_Buff = new PrefabGUID(-1672574757); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_EngageCircling_Cast = new PrefabGUID(844277355); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_Scream = new PrefabGUID(2000464560); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritBuff = new PrefabGUID(-1483505218); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritScream = new PrefabGUID(-2046991216); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SpiritStunBuff = new PrefabGUID(-1361638263); public static readonly PrefabGUID AB_Cursed_MountainBeast_SpiritDouble_SummonBuff = new PrefabGUID(1123566272); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_AbilityGroup = new PrefabGUID(-1771783202); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast1 = new PrefabGUID(-1279975872); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast2 = new PrefabGUID(1476800652); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Cast3 = new PrefabGUID(594618804); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit1 = new PrefabGUID(707875358); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit2 = new PrefabGUID(1095908228); public static readonly PrefabGUID AB_Cursed_Mountainbeast_TrippleAttack_Hit3 = new PrefabGUID(248767088); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_AbilityGroup = new PrefabGUID(1221980502); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_AggroBuff = new PrefabGUID(-387360817); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast01 = new PrefabGUID(-2036918810); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast02 = new PrefabGUID(-1040870307); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Cast03 = new PrefabGUID(-1709974873); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit1 = new PrefabGUID(1437696661); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit2 = new PrefabGUID(1002020841); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVamp_Hit3 = new PrefabGUID(1635067990); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_AbilityGroup = new PrefabGUID(756139644); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_Buff = new PrefabGUID(446453312); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_Cast = new PrefabGUID(-163700765); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_InteruptBuff = new PrefabGUID(-1693341097); public static readonly PrefabGUID AB_Cursed_MountainBeast_WhackAVampBuff_StunBuff = new PrefabGUID(1924509105); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_AbilityGroup = new PrefabGUID(1718898538); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Cast01 = new PrefabGUID(1843199011); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Cast02 = new PrefabGUID(-1327324332); public static readonly PrefabGUID AB_Cursed_ToadKing_DoubleTongueSlap_Hit = new PrefabGUID(1325933973); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_MinionTravel = new PrefabGUID(-1853054623); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_MinionTravel_End = new PrefabGUID(-1060906431); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_AbilityGroup = new PrefabGUID(1808492070); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_Cast = new PrefabGUID(-1913620890); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_End = new PrefabGUID(-941321510); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogSplit_Travel_Phase = new PrefabGUID(1393320637); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Cast = new PrefabGUID(-789537003); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Group = new PrefabGUID(1421967280); public static readonly PrefabGUID AB_Cursed_ToadKing_FrogVomit_Summon = new PrefabGUID(739606115); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Area = new PrefabGUID(359779991); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Throw = new PrefabGUID(570542179); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_AbilityGroup = new PrefabGUID(1790744720); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_Cast = new PrefabGUID(849090462); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_End = new PrefabGUID(-1041517934); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonLeap_Travel_Phase = new PrefabGUID(-1229521536); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_AbilityGroup = new PrefabGUID(-1864096491); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Buff = new PrefabGUID(1329219727); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Cast = new PrefabGUID(917745068); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_InitialThrow = new PrefabGUID(-1854898448); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_PlayerTargetTrigger = new PrefabGUID(1819038131); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Throw = new PrefabGUID(-172239336); public static readonly PrefabGUID AB_Cursed_ToadKing_PoisonRain_Trigger = new PrefabGUID(-933062954); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_AbilityGroup = new PrefabGUID(-1238687119); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_Cast = new PrefabGUID(107004412); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_HideHUDCastBuff = new PrefabGUID(-1976656728); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_LaunchBuff = new PrefabGUID(1750172438); public static readonly PrefabGUID AB_Cursed_ToadKing_Spit_StunBuff = new PrefabGUID(41392389); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_AbilityGroup = new PrefabGUID(1292896032); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_Cast = new PrefabGUID(-1163091757); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_HasSwallowedBuff = new PrefabGUID(1457576969); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_Hit = new PrefabGUID(1465793397); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_OnHitTravel = new PrefabGUID(2092842659); public static readonly PrefabGUID AB_Cursed_ToadKing_Swallow_TargetSwallowedBuff = new PrefabGUID(-915145807); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_AbilityGroup = new PrefabGUID(-514415940); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Cast = new PrefabGUID(1041279611); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Hit1 = new PrefabGUID(-1240825455); public static readonly PrefabGUID AB_Cursed_ToadKing_TongueGrab_Hit2 = new PrefabGUID(1745055074); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_AbilityGroup = new PrefabGUID(193936844); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_Cast = new PrefabGUID(280831224); public static readonly PrefabGUID AB_Cursed_ToadSpitter_PoisonRain_Throw = new PrefabGUID(633294112); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile = new PrefabGUID(-886762999); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_AoE = new PrefabGUID(-1359146192); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_Cast = new PrefabGUID(806308812); public static readonly PrefabGUID AB_Cursed_ToadSpitter_Projectile_Group = new PrefabGUID(-2117925151); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_AbilityGroup = new PrefabGUID(2107853915); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Cast = new PrefabGUID(-177794527); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Channel_Buff = new PrefabGUID(-988427258); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Throw = new PrefabGUID(1678932465); public static readonly PrefabGUID AB_Cursed_Witch_AoeChannel_Trigger = new PrefabGUID(1522897860); public static readonly PrefabGUID AB_Cursed_Witch_ConeAttack_Projectile = new PrefabGUID(1873326186); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_AbilityGroup = new PrefabGUID(1898980277); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_Cast = new PrefabGUID(-1273467464); public static readonly PrefabGUID AB_Cursed_Witch_CorruptedGhouls_Summon = new PrefabGUID(-156913225); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_AbilityGroup = new PrefabGUID(1628136011); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_AggroBuff = new PrefabGUID(62437250); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Cast = new PrefabGUID(-1403266432); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Channel_Buff = new PrefabGUID(420273293); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_PostCastBuff = new PrefabGUID(-365052233); public static readonly PrefabGUID AB_Cursed_Witch_DeathSquad_Trigger = new PrefabGUID(-675115629); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_AbilityGroup = new PrefabGUID(-1729075022); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_Buff = new PrefabGUID(1661677234); public static readonly PrefabGUID AB_Cursed_Witch_ExplodeMosquito_Cast = new PrefabGUID(1056001110); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_AbilityGroup = new PrefabGUID(1603735911); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Cast = new PrefabGUID(-973149407); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Channel_Buff = new PrefabGUID(-2058329265); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Throw = new PrefabGUID(-1694263304); public static readonly PrefabGUID AB_Cursed_Witch_ExplodingMushrooms_Trigger = new PrefabGUID(-848284681); public static readonly PrefabGUID AB_Cursed_Witch_Hex_AbilityGroup = new PrefabGUID(429807295); public static readonly PrefabGUID AB_Cursed_Witch_Hex_Cast = new PrefabGUID(1089714367); public static readonly PrefabGUID AB_Cursed_Witch_Hex_Throw = new PrefabGUID(1926094413); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_AbilityGroup = new PrefabGUID(1860769470); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_Cast = new PrefabGUID(1598051500); public static readonly PrefabGUID AB_Cursed_Witch_Hex_VBlood_Trigger = new PrefabGUID(570785050); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_AbilityGroup = new PrefabGUID(2025233638); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_Cast = new PrefabGUID(-1591659318); public static readonly PrefabGUID AB_Cursed_Witch_MeleeAttack_Hit = new PrefabGUID(316962546); public static readonly PrefabGUID AB_Cursed_Witch_Projectile = new PrefabGUID(627053549); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_AbilityGroup = new PrefabGUID(1915605718); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_Cast = new PrefabGUID(98245092); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_CorruptionBuff = new PrefabGUID(1772638973); public static readonly PrefabGUID AB_Cursed_Witch_Projectile_CorruptionThrow = new PrefabGUID(-832698023); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_AbilityGroup = new PrefabGUID(1294766036); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_Cast = new PrefabGUID(-561783854); public static readonly PrefabGUID AB_Cursed_Witch_WickedWhisps_Projectile = new PrefabGUID(514604229); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_AbilityGroup = new PrefabGUID(1511001063); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Cast = new PrefabGUID(182162144); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_CorruptionBuff = new PrefabGUID(1343911070); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_CorruptionThrow = new PrefabGUID(-432877712); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Projectile = new PrefabGUID(-792966888); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_Projectile_Hex = new PrefabGUID(1778250003); public static readonly PrefabGUID AB_Cursed_Witch_WitchBolt_ReturnProjectile = new PrefabGUID(-1326100812); public static readonly PrefabGUID AB_CursedWanderer_FakeMeleeAttack_Cast01 = new PrefabGUID(1754192336); public static readonly PrefabGUID AB_CursedWanderer_FakeMeleeAttack_Group = new PrefabGUID(-1512616160); public static readonly PrefabGUID AB_CursedWanderer_Gossip_Cast01 = new PrefabGUID(-237791814); public static readonly PrefabGUID AB_CursedWanderer_Gossip_Group = new PrefabGUID(-1137336047); public static readonly PrefabGUID AB_CursedWanderer_Gossip_WispSpawn = new PrefabGUID(-1788065271); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Cast01 = new PrefabGUID(147412025); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Group = new PrefabGUID(-127603789); public static readonly PrefabGUID AB_CursedWanderer_MeleeAttack_Hit = new PrefabGUID(-1579386481); public static readonly PrefabGUID AB_CursedWanderer_OnAggro_AbilityGroup = new PrefabGUID(-852195329); public static readonly PrefabGUID AB_CursedWanderer_OnAggro_Cast = new PrefabGUID(1162538176); public static readonly PrefabGUID AB_Dash_Demount_Roll = new PrefabGUID(744300418); public static readonly PrefabGUID AB_Dash_Demount_Roll_AbilityGroup = new PrefabGUID(-290102537); public static readonly PrefabGUID AB_Dash_Demount_Roll_Cast = new PrefabGUID(-1179619555); public static readonly PrefabGUID AB_Dasher_Dash_AbilityGroup = new PrefabGUID(437523703); public static readonly PrefabGUID AB_Dasher_Dash_Cast = new PrefabGUID(-339051869); public static readonly PrefabGUID AB_Dasher_Dash_Phase = new PrefabGUID(-9760183); public static readonly PrefabGUID AB_Dasher_Dive_AbilityGroup = new PrefabGUID(705089395); public static readonly PrefabGUID AB_Dasher_Dive_Cast = new PrefabGUID(-754622499); public static readonly PrefabGUID AB_Dasher_Dive_Travel = new PrefabGUID(1214009606); public static readonly PrefabGUID AB_Dasher_Launcher_AbilityGroup = new PrefabGUID(191219781); public static readonly PrefabGUID AB_Dasher_Launcher_Cast = new PrefabGUID(-433038899); public static readonly PrefabGUID AB_Dasher_Launcher_Hit = new PrefabGUID(583701694); public static readonly PrefabGUID AB_Dasher_Melee_AbilityGroup = new PrefabGUID(1524767753); public static readonly PrefabGUID AB_Dasher_Melee_Cast = new PrefabGUID(1905296682); public static readonly PrefabGUID AB_Dasher_Melee_Hit = new PrefabGUID(985926021); public static readonly PrefabGUID AB_Debug_NukeAll_Area = new PrefabGUID(1135899694); public static readonly PrefabGUID AB_Debug_NukeAll_Cast = new PrefabGUID(1891713486); public static readonly PrefabGUID AB_Debug_NukeAll_Group = new PrefabGUID(-1563062700); public static readonly PrefabGUID AB_Degallop = new PrefabGUID(1342602129); public static readonly PrefabGUID AB_Degallop_AbilityGroup = new PrefabGUID(162388614); public static readonly PrefabGUID AB_Degallop_Cast01 = new PrefabGUID(1639961897); public static readonly PrefabGUID AB_Demount_AbilityGroup = new PrefabGUID(-230952990); public static readonly PrefabGUID AB_Demount_Cast = new PrefabGUID(1314482060); public static readonly PrefabGUID AB_Demount_Roll_AbilityGroup = new PrefabGUID(172828642); public static readonly PrefabGUID AB_Demount_Roll_Cast = new PrefabGUID(94016139); public static readonly PrefabGUID AB_Devoted_BasicAttack_Cast01 = new PrefabGUID(-69613706); public static readonly PrefabGUID AB_Devoted_BasicAttack_Cast02 = new PrefabGUID(1117520096); public static readonly PrefabGUID AB_Devoted_BasicAttack_Group = new PrefabGUID(2034438314); public static readonly PrefabGUID AB_Devoted_BasicAttack_Group02 = new PrefabGUID(-1204182143); public static readonly PrefabGUID AB_Devoted_BasicAttack_Hit = new PrefabGUID(-2110102661); public static readonly PrefabGUID AB_Devoted_Block_AbilityGroup = new PrefabGUID(1214148146); public static readonly PrefabGUID AB_Devoted_Block_Buff = new PrefabGUID(1122643505); public static readonly PrefabGUID AB_Devoted_Block_Cast = new PrefabGUID(-1208093184); public static readonly PrefabGUID AB_Devoted_Smite_Cast = new PrefabGUID(-793993210); public static readonly PrefabGUID AB_Devoted_Smite_Group = new PrefabGUID(474075607); public static readonly PrefabGUID AB_Devoted_Smite_Throw = new PrefabGUID(-1299572057); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_AbilityGroup = new PrefabGUID(-1768784526); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_Cast = new PrefabGUID(-42255788); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_ConsumeBuff = new PrefabGUID(1618606137); public static readonly PrefabGUID AB_Dracula_BloodSoul_Absorb_Trigger = new PrefabGUID(-477149617); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_AbilityGroup = new PrefabGUID(1767074088); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_Cast = new PrefabGUID(1596076542); public static readonly PrefabGUID AB_Dracula_BloodSoul_ChannelHeal_ChannelBuff = new PrefabGUID(478901515); public static readonly PrefabGUID AB_Dracula_BloodSoul_Heart_MoveTowardsOwnerBuff = new PrefabGUID(1540104932); public static readonly PrefabGUID AB_Dracula_BloodSoul_Heart_SpawnTravel = new PrefabGUID(-1860630814); public static readonly PrefabGUID AB_Dracula_BloodSoul_LandBuff = new PrefabGUID(-1208148037); public static readonly PrefabGUID AB_Dracula_BloodSoul_MoveTowardsOwnerBuff = new PrefabGUID(1593366305); public static readonly PrefabGUID AB_Dracula_BloodSoul_SpawnTravel = new PrefabGUID(-724674530); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_Buff = new PrefabGUID(2127839743); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_HomingProjectile = new PrefabGUID(472374870); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_SetupTrigger = new PrefabGUID(210161630); public static readonly PrefabGUID AB_Dracula_Final_BloodBolts_StartupBuff = new PrefabGUID(-1480733950); public static readonly PrefabGUID AB_Dracula_Final_Channel_00_InitializePhase = new PrefabGUID(1269681960); public static readonly PrefabGUID AB_Dracula_Final_Channel_01_BleedingPhase = new PrefabGUID(-1334644133); public static readonly PrefabGUID AB_Dracula_Final_Channel_02_SummonBloodSouls = new PrefabGUID(344852790); public static readonly PrefabGUID AB_Dracula_Final_Channel_03_SummonHeart = new PrefabGUID(2013697540); public static readonly PrefabGUID AB_Dracula_Final_Channel_04_SummonBloodSoulWave = new PrefabGUID(-683309186); public static readonly PrefabGUID AB_Dracula_Final_Channel_05_FinalStage = new PrefabGUID(1512871984); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_Area = new PrefabGUID(-346299479); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_ChannelBuff = new PrefabGUID(1734244072); public static readonly PrefabGUID AB_Dracula_Final_CrimsonNova_StartupBuff = new PrefabGUID(-703178613); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Area = new PrefabGUID(352433617); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_AreaDebuff = new PrefabGUID(-189825441); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_DummyBuff = new PrefabGUID(1831533112); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_OrbitingBuff = new PrefabGUID(1850441894); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_TargetedBuff = new PrefabGUID(1231883895); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Throw = new PrefabGUID(-500580519); public static readonly PrefabGUID AB_Dracula_Final_EtherialSword_Trigger = new PrefabGUID(-1260837437); public static readonly PrefabGUID AB_Dracula_Final_Stage00_BloodRainBuff = new PrefabGUID(-582698784); public static readonly PrefabGUID AB_Dracula_Final_Stage01_SummonBloodSoul_BaselineTrigger = new PrefabGUID(-459496828); public static readonly PrefabGUID AB_Dracula_Final_Stage01_SummonBloodSoul_ScalingTrigger = new PrefabGUID(-2073343268); public static readonly PrefabGUID AB_Dracula_Final_Stage02_SummonBloodSoul_Heart_Trigger = new PrefabGUID(282874839); public static readonly PrefabGUID AB_Dracula_Final_Stage03_SummonBloodSoulWave_Trigger = new PrefabGUID(2487828); public static readonly PrefabGUID AB_Dracula_Final_Stage04_TransitionToFinalPhase = new PrefabGUID(-58450867); public static readonly PrefabGUID AB_Dracula_Final_Stage05_BloodStormBuff = new PrefabGUID(741867216); public static readonly PrefabGUID AB_Dracula_Final_Stage05_DamageAmpBuff = new PrefabGUID(1462199463); public static readonly PrefabGUID AB_Dracula_Final_Stage05_FinalStagePlayerBuff = new PrefabGUID(-900688162); public static readonly PrefabGUID AB_Dracula_Final_Stage05_RingAreaTrigger = new PrefabGUID(819482992); public static readonly PrefabGUID AB_Dracula_Final_Stage05_ShrinkingStormRingAoE = new PrefabGUID(-2073658795); public static readonly PrefabGUID AB_Dracula_Final_Stage05_StaticStormRingBuff = new PrefabGUID(-1382797065); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_FlyPhase = new PrefabGUID(-1961466676); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Hard_LandPhase = new PrefabGUID(-1722767889); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Normal_BloodRainBuff = new PrefabGUID(-9720388); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_Normal_LandPhase = new PrefabGUID(874892017); public static readonly PrefabGUID AB_Dracula_Final_TravelToCenter_SetupTrigger = new PrefabGUID(-569610298); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_AbilityGroup = new PrefabGUID(-1099406988); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_Cast = new PrefabGUID(-1232798739); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_Dash_Phase = new PrefabGUID(-1333453780); public static readonly PrefabGUID AB_Dracula_ShadowBatSwarm_SpawnTravel = new PrefabGUID(-1935151884); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_AbilityGroup = new PrefabGUID(1957691133); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Buff = new PrefabGUID(-877173379); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Cast = new PrefabGUID(-1651386524); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_Projectile = new PrefabGUID(1547603134); public static readonly PrefabGUID AB_Dracula_SpellStone_BoltSpray_StartupBuff = new PrefabGUID(-1989513093); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_AbilityGroup = new PrefabGUID(2079740557); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_Buff01 = new PrefabGUID(2040173960); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_Cast = new PrefabGUID(-970742791); public static readonly PrefabGUID AB_Dracula_SpellStone_CirclingBlood_HitBuff = new PrefabGUID(1342249512); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_AbilityGroup = new PrefabGUID(-1552626046); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff01 = new PrefabGUID(-1686378107); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff02 = new PrefabGUID(-1306359474); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff03 = new PrefabGUID(-603907675); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff04 = new PrefabGUID(2143179196); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Buff05 = new PrefabGUID(-1775216837); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_Cast = new PrefabGUID(-1098931978); public static readonly PrefabGUID AB_Dracula_SpellStone_OrbitingBlood_HitBuff = new PrefabGUID(-962417409); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_AbilityGroup = new PrefabGUID(-1924032736); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Cast = new PrefabGUID(-141011341); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Channel = new PrefabGUID(-359582465); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_FinalHit = new PrefabGUID(-1925548393); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_ForwardHit_First = new PrefabGUID(-63238360); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Detection = new PrefabGUID(1364965952); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Fifth = new PrefabGUID(-1193351662); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Fourth = new PrefabGUID(-1571010866); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Second = new PrefabGUID(-380434350); public static readonly PrefabGUID AB_Dreadhorn_AreaAttack_Hit_Third = new PrefabGUID(-1703042228); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_AbilityGroup = new PrefabGUID(-1362226779); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Cast = new PrefabGUID(-52344201); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Cast01 = new PrefabGUID(-771432519); public static readonly PrefabGUID AB_Dreadhorn_MeleeAttack_Hit = new PrefabGUID(952829157); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_AbilityGroup = new PrefabGUID(-1450279612); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_AggroBuff = new PrefabGUID(1489461671); public static readonly PrefabGUID AB_Dreadhorn_TargetSwitch_Cast = new PrefabGUID(2137075732); public static readonly PrefabGUID AB_Dreadhorn_Trample_AbilityGroup = new PrefabGUID(-2081714952); public static readonly PrefabGUID AB_Dreadhorn_Trample_AggroBuff = new PrefabGUID(-1435714402); public static readonly PrefabGUID AB_Dreadhorn_Trample_Cast = new PrefabGUID(2021452628); public static readonly PrefabGUID AB_Dreadhorn_Trample_Channel = new PrefabGUID(-1315031642); public static readonly PrefabGUID AB_Dreadhorn_Trample_DisableEvaluation_Buff = new PrefabGUID(-541538259); public static readonly PrefabGUID AB_Dreadhorn_Trample_Init_AbilityGroup = new PrefabGUID(-1670440585); public static readonly PrefabGUID AB_Dreadhorn_Trample_Init_Cast = new PrefabGUID(918875818); public static readonly PrefabGUID AB_Dreadhorn_Trample_PostChannel_Buff = new PrefabGUID(-2085773091); public static readonly PrefabGUID AB_Dreadhorn_Trample_Second_Init_AbilityGroup = new PrefabGUID(1236214928); public static readonly PrefabGUID AB_Dreadhorn_Trample_StunBuff = new PrefabGUID(-1613037028); public static readonly PrefabGUID AB_Dreadhorn_Trample_WallImpact_Throw = new PrefabGUID(-893054303); public static readonly PrefabGUID AB_Dreadhorn_Trample_WallImpact_Trigger = new PrefabGUID(861110087); public static readonly PrefabGUID AB_Dreadhorn_TramplePostLanding_StunBuff = new PrefabGUID(-1848189861); public static readonly PrefabGUID AB_DualHammers_Thunderclap_AbilityGroup = new PrefabGUID(1600917906); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Cast = new PrefabGUID(-1585117361); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Hit = new PrefabGUID(-962956267); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Travel_End = new PrefabGUID(2026595574); public static readonly PrefabGUID AB_DualHammers_Thunderclap_Travel_Phase = new PrefabGUID(-1486020333); public static readonly PrefabGUID AB_Elixir_Bat_T01_AbilityGroup = new PrefabGUID(211394464); public static readonly PrefabGUID AB_Elixir_Bat_T01_Activate = new PrefabGUID(1583830465); public static readonly PrefabGUID AB_Elixir_Bat_T01_Buff = new PrefabGUID(167927584); public static readonly PrefabGUID AB_Elixir_Bat_T01_Cast = new PrefabGUID(367600723); public static readonly PrefabGUID AB_Elixir_Beast_T01_AbilityGroup = new PrefabGUID(-2024596663); public static readonly PrefabGUID AB_Elixir_Beast_T01_Activate = new PrefabGUID(-841270116); public static readonly PrefabGUID AB_Elixir_Beast_T01_Buff = new PrefabGUID(495759678); public static readonly PrefabGUID AB_Elixir_Beast_T01_Cast = new PrefabGUID(-675319105); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_AbilityGroup = new PrefabGUID(-759138830); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Activate = new PrefabGUID(-1676433061); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Buff = new PrefabGUID(-1522497022); public static readonly PrefabGUID AB_Elixir_Blasphemous_T01_Cast = new PrefabGUID(-1254077911); public static readonly PrefabGUID AB_Elixir_Crow_T01_AbilityGroup = new PrefabGUID(248404806); public static readonly PrefabGUID AB_Elixir_Crow_T01_Activate = new PrefabGUID(-1236058066); public static readonly PrefabGUID AB_Elixir_Crow_T01_Buff = new PrefabGUID(-262239794); public static readonly PrefabGUID AB_Elixir_Crow_T01_Cast = new PrefabGUID(1833031427); public static readonly PrefabGUID AB_Elixir_Prowler_T01_AbilityGroup = new PrefabGUID(1454652495); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Activate = new PrefabGUID(1458832411); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Buff = new PrefabGUID(1578287607); public static readonly PrefabGUID AB_Elixir_Prowler_T01_Cast = new PrefabGUID(-941740484); public static readonly PrefabGUID AB_Elixir_Raven_T01_AbilityGroup = new PrefabGUID(1357870002); public static readonly PrefabGUID AB_Elixir_Raven_T01_Activate = new PrefabGUID(930970987); public static readonly PrefabGUID AB_Elixir_Raven_T01_Buff = new PrefabGUID(-1130881359); public static readonly PrefabGUID AB_Elixir_Raven_T01_Cast = new PrefabGUID(-972231569); public static readonly PrefabGUID AB_Elixir_Twisted_T01_AbilityGroup = new PrefabGUID(-591813536); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Activate = new PrefabGUID(-1126469103); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Buff = new PrefabGUID(-1038676496); public static readonly PrefabGUID AB_Elixir_Twisted_T01_Cast = new PrefabGUID(-621554371); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_AbilityGroup = new PrefabGUID(-332244204); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_Activate = new PrefabGUID(-916786673); public static readonly PrefabGUID AB_Elixir_Werewolf_T01_Cast = new PrefabGUID(-1707864536); public static readonly PrefabGUID AB_Elixir_WerewolfT01_Buff = new PrefabGUID(1427072099); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Object = new PrefabGUID(1751162820); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Throw = new PrefabGUID(-1863440410); public static readonly PrefabGUID AB_Emery_Erruption_Elemental_Trigger = new PrefabGUID(329359508); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Object = new PrefabGUID(925499603); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Throw = new PrefabGUID(-259043549); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Throw_Elemental = new PrefabGUID(146353945); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Trigger = new PrefabGUID(779420131); public static readonly PrefabGUID AB_Emery_Erruption_Golem_Trigger_Elemental = new PrefabGUID(868188883); public static readonly PrefabGUID AB_Emery_Erruption_Object = new PrefabGUID(-1896442615); public static readonly PrefabGUID AB_Emery_Erruption_Throw = new PrefabGUID(1092520472); public static readonly PrefabGUID AB_Emery_Erruption_Trigger = new PrefabGUID(-623231983); public static readonly PrefabGUID AB_EmeryElemental_Awake_AbilityGroup = new PrefabGUID(-992391256); public static readonly PrefabGUID AB_EmeryElemental_Awake_Cast = new PrefabGUID(124775061); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_AbilityGroup = new PrefabGUID(261951503); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_Cast = new PrefabGUID(-1589369133); public static readonly PrefabGUID AB_EmeryElemental_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1884710039); public static readonly PrefabGUID AB_EmeryElemental_Leap_AbilityGroup = new PrefabGUID(488481150); public static readonly PrefabGUID AB_EmeryElemental_Leap_Cast = new PrefabGUID(1141486897); public static readonly PrefabGUID AB_EmeryElemental_Leap_End = new PrefabGUID(1908004166); public static readonly PrefabGUID AB_EmeryElemental_Leap_Phase = new PrefabGUID(-398934011); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_AbilityGroup = new PrefabGUID(1903010945); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_Cast = new PrefabGUID(-1042118284); public static readonly PrefabGUID AB_EmeryElemental_MeleeAttack_Hit = new PrefabGUID(1257272268); public static readonly PrefabGUID AB_EmeryElemental_Rollout_AbilityGroup = new PrefabGUID(1262525269); public static readonly PrefabGUID AB_EmeryElemental_Rollout_Cast = new PrefabGUID(-1961482499); public static readonly PrefabGUID AB_EmeryElemental_Rollout_Phase = new PrefabGUID(354355471); public static readonly PrefabGUID AB_EmeryElemental_Rollout_PostDashBuff = new PrefabGUID(176209028); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_AbilityGroup = new PrefabGUID(2110769437); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_Cast = new PrefabGUID(656924719); public static readonly PrefabGUID AB_EmeryElemental_SelfDetonate_Trigger = new PrefabGUID(523948114); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_Cast = new PrefabGUID(-402246445); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_Group = new PrefabGUID(2080406227); public static readonly PrefabGUID AB_EmeryGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-601313684); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_AbilityGroup = new PrefabGUID(107764414); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Cast = new PrefabGUID(804381838); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_DownedStun = new PrefabGUID(167866718); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Hit = new PrefabGUID(-1880660691); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_LaunchBuff = new PrefabGUID(1983271229); public static readonly PrefabGUID AB_EmeryGolem_GroundSlam_Trigger = new PrefabGUID(282542452); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-705534828); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Cast01 = new PrefabGUID(1725526282); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Cast02 = new PrefabGUID(1685781032); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Hit01 = new PrefabGUID(-1852208789); public static readonly PrefabGUID AB_EmeryGolem_MeleeAttack_Hit02 = new PrefabGUID(974434563); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_AbilityGroup = new PrefabGUID(-1882115765); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Cast = new PrefabGUID(-1831353731); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_LaunchBuff = new PrefabGUID(-1517764067); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Projectile = new PrefabGUID(1713307649); public static readonly PrefabGUID AB_EmeryGolem_RockSlam_Trigger = new PrefabGUID(40567962); public static readonly PrefabGUID AB_Emote_Buff_Default_NoAnimation = new PrefabGUID(-988102043); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_AbilityGroup = new PrefabGUID(-658066984); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_Buff = new PrefabGUID(1698676746); public static readonly PrefabGUID AB_Emote_Vampire_Beckon_Cast = new PrefabGUID(-2082580927); public static readonly PrefabGUID AB_Emote_Vampire_Bow_AbilityGroup = new PrefabGUID(-1462274656); public static readonly PrefabGUID AB_Emote_Vampire_Bow_Buff = new PrefabGUID(-1441363163); public static readonly PrefabGUID AB_Emote_Vampire_Bow_Cast = new PrefabGUID(2105164651); public static readonly PrefabGUID AB_Emote_Vampire_Clap_AbilityGroup = new PrefabGUID(-26826346); public static readonly PrefabGUID AB_Emote_Vampire_Clap_Buff = new PrefabGUID(1850366409); public static readonly PrefabGUID AB_Emote_Vampire_Clap_Cast = new PrefabGUID(-1232216724); public static readonly PrefabGUID AB_Emote_Vampire_Cry_AbilityGroup = new PrefabGUID(889811193); public static readonly PrefabGUID AB_Emote_Vampire_Cry_Buff = new PrefabGUID(-2126160241); public static readonly PrefabGUID AB_Emote_Vampire_Cry_Cast = new PrefabGUID(1331385563); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_AbilityGroup = new PrefabGUID(604121141); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_Buff = new PrefabGUID(-1398118066); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle01_Cast = new PrefabGUID(417599345); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_AbilityGroup = new PrefabGUID(-925169006); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_Buff = new PrefabGUID(-2064936255); public static readonly PrefabGUID AB_Emote_Vampire_DanceSingle02_Cast = new PrefabGUID(-17315649); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_AbilityGroup = new PrefabGUID(-1685517289); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_Buff = new PrefabGUID(24204068); public static readonly PrefabGUID AB_Emote_Vampire_Laugh_Cast = new PrefabGUID(-1661855385); public static readonly PrefabGUID AB_Emote_Vampire_No_AbilityGroup = new PrefabGUID(-53273186); public static readonly PrefabGUID AB_Emote_Vampire_No_Buff = new PrefabGUID(-553346908); public static readonly PrefabGUID AB_Emote_Vampire_No_Cast = new PrefabGUID(168757271); public static readonly PrefabGUID AB_Emote_Vampire_Point_AbilityGroup = new PrefabGUID(-452406649); public static readonly PrefabGUID AB_Emote_Vampire_Point_Buff = new PrefabGUID(538423466); public static readonly PrefabGUID AB_Emote_Vampire_Point_Cast = new PrefabGUID(-2046586504); public static readonly PrefabGUID AB_Emote_Vampire_Salute_AbilityGroup = new PrefabGUID(-370061286); public static readonly PrefabGUID AB_Emote_Vampire_Salute_Buff = new PrefabGUID(1276841926); public static readonly PrefabGUID AB_Emote_Vampire_Salute_Cast = new PrefabGUID(346240125); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_AbilityGroup = new PrefabGUID(-578764388); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_Buff = new PrefabGUID(738606026); public static readonly PrefabGUID AB_Emote_Vampire_Shrug_Cast = new PrefabGUID(-1861609629); public static readonly PrefabGUID AB_Emote_Vampire_Sit_AbilityGroup = new PrefabGUID(808904257); public static readonly PrefabGUID AB_Emote_Vampire_Sit_Buff = new PrefabGUID(-198823786); public static readonly PrefabGUID AB_Emote_Vampire_Sit_Cast = new PrefabGUID(-107106084); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_AbilityGroup = new PrefabGUID(-1064533554); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_Buff = new PrefabGUID(1983064823); public static readonly PrefabGUID AB_Emote_Vampire_Surrender_Cast = new PrefabGUID(145204275); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_AbilityGroup = new PrefabGUID(-158502505); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_Buff = new PrefabGUID(-508293388); public static readonly PrefabGUID AB_Emote_Vampire_Taunt_Cast = new PrefabGUID(306992792); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_AbilityGroup = new PrefabGUID(-133703992); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_Buff = new PrefabGUID(-656365687); public static readonly PrefabGUID AB_Emote_Vampire_ThankYou_Cast = new PrefabGUID(-442218149); public static readonly PrefabGUID AB_Emote_Vampire_Walk_AbilityGroup = new PrefabGUID(1489736348); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Buff = new PrefabGUID(-1360254138); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Cast = new PrefabGUID(-1947401842); public static readonly PrefabGUID AB_Emote_Vampire_Walk_Trigger = new PrefabGUID(-2016424051); public static readonly PrefabGUID AB_Emote_Vampire_Wave_AbilityGroup = new PrefabGUID(1177797340); public static readonly PrefabGUID AB_Emote_Vampire_Wave_Buff = new PrefabGUID(2052904221); public static readonly PrefabGUID AB_Emote_Vampire_Wave_Cast = new PrefabGUID(682157248); public static readonly PrefabGUID AB_Emote_Vampire_Yes_AbilityGroup = new PrefabGUID(-1525577000); public static readonly PrefabGUID AB_Emote_Vampire_Yes_Buff = new PrefabGUID(2105188695); public static readonly PrefabGUID AB_Emote_Vampire_Yes_Cast = new PrefabGUID(-561656902); public static readonly PrefabGUID AB_EnchantedCross_LightWave_AbilityGroup = new PrefabGUID(-401259144); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Cast = new PrefabGUID(-350106834); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Projectile = new PrefabGUID(-255201725); public static readonly PrefabGUID AB_EnchantedCross_LightWave_Trigger = new PrefabGUID(330143141); public static readonly PrefabGUID AB_ExitCoffin_Travel_AbilityGroup_Base = new PrefabGUID(-1492032516); public static readonly PrefabGUID AB_ExitCoffin_Travel_AbilityGroup_Stone = new PrefabGUID(1639668286); public static readonly PrefabGUID AB_ExitCoffin_Travel_Cast_Base = new PrefabGUID(770599352); public static readonly PrefabGUID AB_ExitCoffin_Travel_Cast_Stone = new PrefabGUID(-1636766189); public static readonly PrefabGUID AB_ExitCoffin_Travel_End_Base = new PrefabGUID(1659231166); public static readonly PrefabGUID AB_ExitCoffin_Travel_End_Stone = new PrefabGUID(-1965770337); public static readonly PrefabGUID AB_ExitCoffin_Travel_Phase_Base = new PrefabGUID(-997204628); public static readonly PrefabGUID AB_ExitCoffin_Travel_Phase_Stone = new PrefabGUID(-162820429); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Cast01 = new PrefabGUID(1915903764); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Group = new PrefabGUID(1850515789); public static readonly PrefabGUID AB_Farmlands_Farmer_MeleeAttack_Hit = new PrefabGUID(1407091573); public static readonly PrefabGUID AB_Feed_01_EnemyTarget_Debuff = new PrefabGUID(-1114937852); public static readonly PrefabGUID AB_Feed_01_Initiate_AbilityGroup = new PrefabGUID(-376210658); public static readonly PrefabGUID AB_Feed_01_Initiate_Cast = new PrefabGUID(1535667383); public static readonly PrefabGUID AB_Feed_01_Initiate_DashChannel = new PrefabGUID(1231644507); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_AbilityGroup = new PrefabGUID(-2068632541); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_Cast = new PrefabGUID(-1414476683); public static readonly PrefabGUID AB_Feed_02_Bite_Abort_Trigger = new PrefabGUID(366323518); public static readonly PrefabGUID AB_Feed_03_Complete_AbilityGroup = new PrefabGUID(1548379114); public static readonly PrefabGUID AB_Feed_03_Complete_Cast = new PrefabGUID(1787637039); public static readonly PrefabGUID AB_Feed_03_Complete_Trigger = new PrefabGUID(-1106009274); public static readonly PrefabGUID AB_Feed_04_DashAwayFromTarget = new PrefabGUID(-1948299363); public static readonly PrefabGUID AB_Feed_Trigger_Base = new PrefabGUID(-139079478); public static readonly PrefabGUID AB_FeedBoss_01_EnemyTarget_Debuff = new PrefabGUID(1418642324); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_AbilityGroup = new PrefabGUID(-948311829); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_Cast = new PrefabGUID(1851942548); public static readonly PrefabGUID AB_FeedBoss_01_Initiate_DashChannel = new PrefabGUID(697172810); public static readonly PrefabGUID AB_FeedBoss_03_Complete_AbilityGroup = new PrefabGUID(-1347356700); public static readonly PrefabGUID AB_FeedBoss_03_Complete_AreaDamage = new PrefabGUID(-1797102561); public static readonly PrefabGUID AB_FeedBoss_03_Complete_Cast = new PrefabGUID(-1031870834); public static readonly PrefabGUID AB_FeedBoss_03_Complete_Trigger = new PrefabGUID(958508368); public static readonly PrefabGUID AB_FeedBoss_04_Complete_AreaTriggerBuff = new PrefabGUID(1233405326); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_EnemyTarget_Debuff = new PrefabGUID(-670750933); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_AbilityGroup = new PrefabGUID(1790847128); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_Cast = new PrefabGUID(-649630224); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_01_Initiate_DashChannel = new PrefabGUID(51055185); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_AbilityGroup = new PrefabGUID(-1560986745); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_AreaDamage = new PrefabGUID(1340086775); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_Cast = new PrefabGUID(1306418337); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_03_Complete_Trigger = new PrefabGUID(1229263634); public static readonly PrefabGUID AB_FeedBoss_FeedOnDracula_04_Complete_AreaTriggerBuff = new PrefabGUID(1186118159); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_EnemyTarget_Debuff = new PrefabGUID(-206231665); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_AbilityGroup = new PrefabGUID(1491658671); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_Cast = new PrefabGUID(-1573506596); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_01_Initiate_DashChannel = new PrefabGUID(-1044861452); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_AbilityGroup = new PrefabGUID(-1565434117); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_AreaDamage = new PrefabGUID(250152500); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_Cast = new PrefabGUID(713711633); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_03_Complete_Trigger = new PrefabGUID(-1889378229); public static readonly PrefabGUID AB_FeedDraculaBloodSoul_04_Complete_AreaTriggerBuff = new PrefabGUID(-331003702); public static readonly PrefabGUID AB_FeedDraculaOrb_01_EnemyTarget_Debuff = new PrefabGUID(1815101964); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_AbilityGroup = new PrefabGUID(1393329717); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_Cast = new PrefabGUID(-1529850854); public static readonly PrefabGUID AB_FeedDraculaOrb_01_Initiate_DashChannel = new PrefabGUID(-1551286374); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_AbilityGroup = new PrefabGUID(253163764); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_AreaDamage = new PrefabGUID(1301390971); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_Cast = new PrefabGUID(-1212689323); public static readonly PrefabGUID AB_FeedDraculaOrb_03_Complete_Trigger = new PrefabGUID(-526712042); public static readonly PrefabGUID AB_FeedDraculaOrb_04_Complete_AreaTriggerBuff = new PrefabGUID(-604904760); public static readonly PrefabGUID AB_FeedEnemyVampire_01_EnemyTarget_Debuff = new PrefabGUID(-1581547715); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_AbilityGroup = new PrefabGUID(391943159); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_Cast = new PrefabGUID(1283732362); public static readonly PrefabGUID AB_FeedEnemyVampire_01_Initiate_DashChannel = new PrefabGUID(1798838621); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_AbilityGroup = new PrefabGUID(-1365570044); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_Cast = new PrefabGUID(950997250); public static readonly PrefabGUID AB_FeedEnemyVampire_02_Bite_Abort_Trigger = new PrefabGUID(-1399190295); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_AbilityGroup = new PrefabGUID(-578672354); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_Cast = new PrefabGUID(-1213188934); public static readonly PrefabGUID AB_FeedEnemyVampire_03_Complete_Trigger = new PrefabGUID(-1006431398); public static readonly PrefabGUID AB_FeedEnemyVampire_04_DashAwayFromTarget = new PrefabGUID(-856042777); public static readonly PrefabGUID AB_FeedFriendly_01_EnemyTarget_Debuff = new PrefabGUID(-264516260); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_AbilityGroup = new PrefabGUID(1501158829); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_Cast = new PrefabGUID(-877555015); public static readonly PrefabGUID AB_FeedFriendly_01_Initiate_DashChannel = new PrefabGUID(1690123127); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_AbilityGroup = new PrefabGUID(-1278121774); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_Cast = new PrefabGUID(-316716610); public static readonly PrefabGUID AB_FeedFriendly_02_Bite_Abort_Trigger = new PrefabGUID(236713613); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_AbilityGroup = new PrefabGUID(117247654); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_Cast = new PrefabGUID(1739570447); public static readonly PrefabGUID AB_FeedFriendly_03_Complete_Trigger = new PrefabGUID(-1275273993); public static readonly PrefabGUID AB_FeedFriendly_04_DashAwayFromTarget = new PrefabGUID(-1745004158); public static readonly PrefabGUID AB_FeedGateBoss_01_EnemyTarget_Debuff = new PrefabGUID(585228944); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_AbilityGroup = new PrefabGUID(-1695763915); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_Cast = new PrefabGUID(-234803016); public static readonly PrefabGUID AB_FeedGateBoss_01_Initiate_DashChannel = new PrefabGUID(-1335827123); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_AbilityGroup = new PrefabGUID(-1446310610); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_AreaDamage = new PrefabGUID(402061920); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_Cast = new PrefabGUID(1289149810); public static readonly PrefabGUID AB_FeedGateBoss_03_Complete_Trigger = new PrefabGUID(-1669827947); public static readonly PrefabGUID AB_FeedGateBoss_04_Complete_AreaTriggerBuff = new PrefabGUID(-354622715); public static readonly PrefabGUID AB_FeedRevive_01_AllyTarget_Debuff = new PrefabGUID(579690183); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_AbilityGroup = new PrefabGUID(1754040702); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_Cast = new PrefabGUID(1525766239); public static readonly PrefabGUID AB_FeedRevive_01_Initiate_DashChannel = new PrefabGUID(-595871655); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_AbilityGroup = new PrefabGUID(1586616867); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_Cast = new PrefabGUID(1508231357); public static readonly PrefabGUID AB_FeedRevive_02_Bite_Abort_Trigger = new PrefabGUID(-205830402); public static readonly PrefabGUID AB_FeedRevive_03_Complete_AbilityGroup = new PrefabGUID(2072201164); public static readonly PrefabGUID AB_FeedRevive_03_Complete_Cast = new PrefabGUID(-1354315272); public static readonly PrefabGUID AB_FeedRevive_03_Complete_Trigger = new PrefabGUID(-938281780); public static readonly PrefabGUID AB_FeedRevive_04_DashAwayFromTarget = new PrefabGUID(-179005483); public static readonly PrefabGUID AB_Fishing_AbilityGroup = new PrefabGUID(-1016182556); public static readonly PrefabGUID AB_Fishing_AbilityGroup_Debug = new PrefabGUID(-1245963301); public static readonly PrefabGUID AB_Fishing_Cast = new PrefabGUID(1010344901); public static readonly PrefabGUID AB_Fishing_Cast_Debug = new PrefabGUID(802290089); public static readonly PrefabGUID AB_Fishing_Draw_AbilityGroup = new PrefabGUID(2122998237); public static readonly PrefabGUID AB_Fishing_Draw_Buff = new PrefabGUID(552896431); public static readonly PrefabGUID AB_Fishing_Draw_Cast = new PrefabGUID(-849143290); public static readonly PrefabGUID AB_Fishing_Draw_TravelToTarget = new PrefabGUID(-1130746976); public static readonly PrefabGUID AB_Fishing_Owner_Buff = new PrefabGUID(-1353936983); public static readonly PrefabGUID AB_Fishing_Target_Buff = new PrefabGUID(-272166760); public static readonly PrefabGUID AB_Fishing_Target_Buff_Debug = new PrefabGUID(2043992976); public static readonly PrefabGUID AB_Fishing_Target_ReadyBuff = new PrefabGUID(1753229314); public static readonly PrefabGUID AB_Fishing_Unit_Idle_Buff = new PrefabGUID(1817495522); public static readonly PrefabGUID AB_Footman_Hook_Cast = new PrefabGUID(-1450589308); public static readonly PrefabGUID AB_Footman_Hook_Group_UNUSED = new PrefabGUID(-249023543); public static readonly PrefabGUID AB_Footman_Hook_Hit = new PrefabGUID(451091970); public static readonly PrefabGUID AB_Footman_Lunge_Cast = new PrefabGUID(1928070176); public static readonly PrefabGUID AB_Footman_Lunge_Group_UNUSED = new PrefabGUID(1685753538); public static readonly PrefabGUID AB_Footman_Lunge_Hit = new PrefabGUID(-2014805228); public static readonly PrefabGUID AB_Footman_OnAggro_AbilityGroup = new PrefabGUID(530843430); public static readonly PrefabGUID AB_Footman_OnAggro_Cast = new PrefabGUID(744601799); public static readonly PrefabGUID AB_Footman_SideStep_Back_AbilityGroup = new PrefabGUID(-153669671); public static readonly PrefabGUID AB_Footman_SideStep_Back_Cast = new PrefabGUID(-1537633942); public static readonly PrefabGUID AB_Footman_SideStep_Left_AbilityGroup = new PrefabGUID(680715401); public static readonly PrefabGUID AB_Footman_SideStep_Left_Cast = new PrefabGUID(-1984867987); public static readonly PrefabGUID AB_Footman_SideStep_Right_AbilityGroup = new PrefabGUID(30220474); public static readonly PrefabGUID AB_Footman_SideStep_Right_Cast = new PrefabGUID(-14910786); public static readonly PrefabGUID AB_Footman_Swing_Cast = new PrefabGUID(-1594635277); public static readonly PrefabGUID AB_Footman_Swing_Group_UNUSED = new PrefabGUID(-588647240); public static readonly PrefabGUID AB_Footman_Swing_Hit = new PrefabGUID(383124589); public static readonly PrefabGUID AB_Footman_Thrust_Cast = new PrefabGUID(869694524); public static readonly PrefabGUID AB_Footman_Thrust_Group = new PrefabGUID(979394873); public static readonly PrefabGUID AB_Footman_Thrust_Hit = new PrefabGUID(-591201574); public static readonly PrefabGUID AB_Frost_ArcticLeap_AbilityGroup = new PrefabGUID(1966330719); public static readonly PrefabGUID AB_Frost_ArcticLeap_Cast = new PrefabGUID(-1308029200); public static readonly PrefabGUID AB_Frost_ArcticLeap_End = new PrefabGUID(-1291400494); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_01 = new PrefabGUID(124726296); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_02 = new PrefabGUID(858582540); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_03 = new PrefabGUID(-69063176); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_04 = new PrefabGUID(1152767858); public static readonly PrefabGUID AB_Frost_ArcticLeap_FrostSpikes_Base = new PrefabGUID(-1228711097); public static readonly PrefabGUID AB_Frost_ArcticLeap_NoHitBuff = new PrefabGUID(1301065117); public static readonly PrefabGUID AB_Frost_ArcticLeap_Phase = new PrefabGUID(1611866499); public static readonly PrefabGUID AB_Frost_ArcticLeap_RingNova = new PrefabGUID(-668118822); public static readonly PrefabGUID AB_Frost_ColdBlood_Buff = new PrefabGUID(-1855512845); public static readonly PrefabGUID AB_Frost_ColdSnap_AbilityGroup = new PrefabGUID(-1000260252); public static readonly PrefabGUID AB_Frost_ColdSnap_Area = new PrefabGUID(-1314524417); public static readonly PrefabGUID AB_Frost_ColdSnap_Buff = new PrefabGUID(685701454); public static readonly PrefabGUID AB_Frost_ColdSnap_Cast = new PrefabGUID(842159268); public static readonly PrefabGUID AB_Frost_ColdSnap_ImmaterialBuff = new PrefabGUID(2082543045); public static readonly PrefabGUID AB_Frost_ColdSnap_Shield = new PrefabGUID(-557933420); public static readonly PrefabGUID AB_Frost_CrystalLance_AbilityGroup = new PrefabGUID(295045820); public static readonly PrefabGUID AB_Frost_CrystalLance_Cast = new PrefabGUID(1360996740); public static readonly PrefabGUID AB_Frost_CrystalLance_Projectile = new PrefabGUID(-1339830868); public static readonly PrefabGUID AB_Frost_CrystalLance_Projectile_SpellMod_Pierce = new PrefabGUID(1173883084); public static readonly PrefabGUID AB_Frost_FrostBat_AbilityGroup = new PrefabGUID(78384915); public static readonly PrefabGUID AB_Frost_FrostBat_AoE = new PrefabGUID(-1549688841); public static readonly PrefabGUID AB_Frost_FrostBat_Cast = new PrefabGUID(220122942); public static readonly PrefabGUID AB_Frost_FrostBat_Projectile = new PrefabGUID(661536530); public static readonly PrefabGUID AB_Frost_FrostWeapon_Buff = new PrefabGUID(620130895); public static readonly PrefabGUID AB_Frost_IceBlockVortex_AbilityGroup = new PrefabGUID(1887600892); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_AreaDamageTrigger = new PrefabGUID(-1766133599); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_Chill = new PrefabGUID(-862934976); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Buff_IceBlock = new PrefabGUID(1374658841); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Cast = new PrefabGUID(-1854250832); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Delay = new PrefabGUID(-1113758269); public static readonly PrefabGUID AB_Frost_IceBlockVortex_Throw = new PrefabGUID(1786670136); public static readonly PrefabGUID AB_Frost_IceNova_AbilityGroup = new PrefabGUID(91249849); public static readonly PrefabGUID AB_Frost_IceNova_Cast = new PrefabGUID(-1901852538); public static readonly PrefabGUID AB_Frost_IceNova_RingArea = new PrefabGUID(863046621); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_AbilityGroup = new PrefabGUID(1473095785); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Buff = new PrefabGUID(-369121853); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Cast = new PrefabGUID(-799654122); public static readonly PrefabGUID AB_Frost_IceNova_SpellMod_Recast_Throw = new PrefabGUID(861860875); public static readonly PrefabGUID AB_Frost_IceNova_Throw = new PrefabGUID(806451467); public static readonly PrefabGUID AB_Frost_Passive_FrostNova = new PrefabGUID(-496226129); public static readonly PrefabGUID AB_Frost_Passive_FrostNova_ChillWeave = new PrefabGUID(-39715442); public static readonly PrefabGUID AB_Frost_Shared_SpellMod_FrostWeapon_Buff = new PrefabGUID(-1510452092); public static readonly PrefabGUID AB_FrostBarrier_AbilityGroup = new PrefabGUID(1293609465); public static readonly PrefabGUID AB_FrostBarrier_Buff = new PrefabGUID(-146943441); public static readonly PrefabGUID AB_FrostBarrier_Cast = new PrefabGUID(1399619536); public static readonly PrefabGUID AB_FrostBarrier_Pulse = new PrefabGUID(340904767); public static readonly PrefabGUID AB_FrostBarrier_Recast_AbilityGroup = new PrefabGUID(-1198075389); public static readonly PrefabGUID AB_FrostBarrier_Recast_Cast = new PrefabGUID(1382820959); public static readonly PrefabGUID AB_FrostBarrier_Recast_Cone = new PrefabGUID(722096580); public static readonly PrefabGUID AB_FrostBarrier_SpellMod_SpellPowerBuff = new PrefabGUID(1663992026); public static readonly PrefabGUID AB_FrostCone_AbilityGroup = new PrefabGUID(1119012588); public static readonly PrefabGUID AB_FrostCone_Buff = new PrefabGUID(-1285185439); public static readonly PrefabGUID AB_FrostCone_Cast = new PrefabGUID(-1655280244); public static readonly PrefabGUID AB_FrostCone_Cone = new PrefabGUID(1298763769); public static readonly PrefabGUID AB_FrostCone_Cone_SpellMod_FrostWave = new PrefabGUID(855985036); public static readonly PrefabGUID AB_FrostCone_ConeEnd = new PrefabGUID(701417059); public static readonly PrefabGUID AB_Gallop_AbilityGroup = new PrefabGUID(-1360906203); public static readonly PrefabGUID AB_Gallop_Buff = new PrefabGUID(1156367321); public static readonly PrefabGUID AB_Gallop_Cast = new PrefabGUID(1362070909); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_AbilityGroup = new PrefabGUID(1563014858); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Cast = new PrefabGUID(-274441063); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_AbilityGroup = new PrefabGUID(1551140710); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Cast = new PrefabGUID(2018132221); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_ChaosBurn_Area = new PrefabGUID(-962479578); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Travel = new PrefabGUID(1426601552); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Tailor_Hard_Travel_End = new PrefabGUID(2105297766); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Travel = new PrefabGUID(970176924); public static readonly PrefabGUID AB_Gargoyle_FlyEnd_Travel_End = new PrefabGUID(1674519087); public static readonly PrefabGUID AB_Gargoyle_Flying_Buff = new PrefabGUID(-716094309); public static readonly PrefabGUID AB_Gargoyle_FlyStart_AbilityGroup = new PrefabGUID(-382913708); public static readonly PrefabGUID AB_Gargoyle_FlyStart_Cast = new PrefabGUID(1610616192); public static readonly PrefabGUID AB_Gargoyle_FlyStart_Travel = new PrefabGUID(-1908688359); public static readonly PrefabGUID AB_Gargoyle_StoneForm_SpawnTrigger = new PrefabGUID(-1659853306); public static readonly PrefabGUID AB_Gargoyle_WingShield_AbilityGroup = new PrefabGUID(1460741503); public static readonly PrefabGUID AB_Gargoyle_WingShield_Buff = new PrefabGUID(-528753799); public static readonly PrefabGUID AB_Gargoyle_WingShield_Cast = new PrefabGUID(783049582); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_AbilityGroup = new PrefabGUID(88850785); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_Cast = new PrefabGUID(1192779639); public static readonly PrefabGUID AB_Gargoyle_WingShield_Emerge_WingSlam = new PrefabGUID(-672551340); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_AbilityGroup = new PrefabGUID(1529659981); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_Cast = new PrefabGUID(430464121); public static readonly PrefabGUID AB_Gargoyle_WingShield_EmergeSpawn_WingSlam = new PrefabGUID(-1243410559); public static readonly PrefabGUID AB_General_BloodOrb_Dracula_Object_AutoPickup = new PrefabGUID(-273077376); public static readonly PrefabGUID AB_General_Falling_Travel_Phase = new PrefabGUID(44708726); public static readonly PrefabGUID AB_General_HealingOrb_AbilityGroup = new PrefabGUID(-1977998485); public static readonly PrefabGUID AB_General_HealingOrb_Cast = new PrefabGUID(1200022436); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Object = new PrefabGUID(-1962166889); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Object_AutoPickup = new PrefabGUID(1948357334); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Throw = new PrefabGUID(1951858055); public static readonly PrefabGUID AB_General_HealingOrb_Leech_Trigger = new PrefabGUID(-510158054); public static readonly PrefabGUID AB_General_HealingOrb_Object = new PrefabGUID(2036146072); public static readonly PrefabGUID AB_General_HealingOrb_Object_AutoPickup = new PrefabGUID(993942419); public static readonly PrefabGUID AB_General_HealingOrb_Throw = new PrefabGUID(239606141); public static readonly PrefabGUID AB_General_HealingOrb_Trigger = new PrefabGUID(1814704876); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Buff = new PrefabGUID(-1873937633); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Cast = new PrefabGUID(155874902); public static readonly PrefabGUID AB_Generic_BehaviourVariationApproch_Group = new PrefabGUID(-447578631); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Buff = new PrefabGUID(650956122); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Cast = new PrefabGUID(-2056565435); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleClose_Group = new PrefabGUID(-2125818102); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Buff = new PrefabGUID(702064685); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Cast = new PrefabGUID(-1251722046); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleFar_Group = new PrefabGUID(903306477); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Buff = new PrefabGUID(1035162540); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Cast = new PrefabGUID(-1378558491); public static readonly PrefabGUID AB_Generic_BehaviourVariationCircleMid_Group = new PrefabGUID(-1357699119); public static readonly PrefabGUID AB_Geomancer_Awake_AbilityGroup = new PrefabGUID(-394948183); public static readonly PrefabGUID AB_Geomancer_Awake_Cast = new PrefabGUID(-1597502319); public static readonly PrefabGUID AB_Geomancer_AwakeBuff = new PrefabGUID(1144293329); public static readonly PrefabGUID AB_Geomancer_BreakForm_Travel = new PrefabGUID(33805998); public static readonly PrefabGUID AB_Geomancer_Enrage_AbilityGroup = new PrefabGUID(-1204505053); public static readonly PrefabGUID AB_Geomancer_Enrage_Buff = new PrefabGUID(-647366263); public static readonly PrefabGUID AB_Geomancer_Enrage_Cast = new PrefabGUID(956142591); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_AbilityGroup = new PrefabGUID(1079488801); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Cast = new PrefabGUID(1052376507); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Hard_Projectile = new PrefabGUID(395344242); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Hard_Trigger = new PrefabGUID(1339796748); public static readonly PrefabGUID AB_Geomancer_EnragedSmash_Projectile = new PrefabGUID(1782146440); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_AbilityGroup = new PrefabGUID(-598112885); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Beam_Buff = new PrefabGUID(1600206992); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Cast = new PrefabGUID(-783849486); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Minion_Buff = new PrefabGUID(-1915869313); public static readonly PrefabGUID AB_Geomancer_Golem_RaiseGuardians_Summon = new PrefabGUID(-1339882396); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Cast = new PrefabGUID(168326080); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Group = new PrefabGUID(2106422510); public static readonly PrefabGUID AB_Geomancer_GroundSlam_Hit = new PrefabGUID(-272098488); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Cast = new PrefabGUID(-831307685); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Group = new PrefabGUID(-1635892700); public static readonly PrefabGUID AB_Geomancer_Human_Projectile_Projectile = new PrefabGUID(-248955567); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Cast = new PrefabGUID(2025119960); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Group = new PrefabGUID(1500843923); public static readonly PrefabGUID AB_Geomancer_MeleeAttack_Hit = new PrefabGUID(-195572384); public static readonly PrefabGUID AB_Geomancer_RockSlam_AbilityGroup = new PrefabGUID(-221719333); public static readonly PrefabGUID AB_Geomancer_RockSlam_Area = new PrefabGUID(-143959701); public static readonly PrefabGUID AB_Geomancer_RockSlam_Cast = new PrefabGUID(831931293); public static readonly PrefabGUID AB_Geomancer_RockSlam_Hard_ElementalMinionTrigger = new PrefabGUID(-633974703); public static readonly PrefabGUID AB_Geomancer_RockSlam_Hard_GolemSpawnBuff = new PrefabGUID(239480532); public static readonly PrefabGUID AB_Geomancer_RockSlam_Normal_MinionTrigger = new PrefabGUID(986290597); public static readonly PrefabGUID AB_Geomancer_RockSlam_Throw = new PrefabGUID(-475192322); public static readonly PrefabGUID AB_Geomancer_RockSlam_Throw_SpawnGolem = new PrefabGUID(-1069113760); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_AbilityGroup = new PrefabGUID(1925592126); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_Buff = new PrefabGUID(174249800); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_Cast = new PrefabGUID(1962093398); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_AbilityGroup = new PrefabGUID(-2084016434); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_Buff = new PrefabGUID(1704488108); public static readonly PrefabGUID AB_Geomancer_Transform_ToGolem_SecondTime_Cast = new PrefabGUID(1624823778); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_AbilityGroup = new PrefabGUID(-716557249); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_Buff = new PrefabGUID(-1114509240); public static readonly PrefabGUID AB_Geomancer_Transform_ToHuman_Cast = new PrefabGUID(1484136519); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_AbilityGroup = new PrefabGUID(-1148606177); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Cast = new PrefabGUID(-882939899); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Channel = new PrefabGUID(-969545560); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Throw = new PrefabGUID(18696225); public static readonly PrefabGUID AB_Geomancer_UndergroundTremmors_Trigger = new PrefabGUID(-1158810522); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_AbilityGroup = new PrefabGUID(1589627808); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_Cast = new PrefabGUID(-1536563925); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_Phase = new PrefabGUID(-1766269602); public static readonly PrefabGUID AB_GiantCrow_CorruptedDash_PostCorruptedDash = new PrefabGUID(-668896341); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_AbilityGroup = new PrefabGUID(-1884419467); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_Cast = new PrefabGUID(-549765015); public static readonly PrefabGUID AB_GiantCrow_CorruptedPeck_Hit = new PrefabGUID(-2128145646); public static readonly PrefabGUID AB_GiantCrow_Dash_AbilityGroup = new PrefabGUID(1854645901); public static readonly PrefabGUID AB_GiantCrow_Dash_Cast = new PrefabGUID(2126903454); public static readonly PrefabGUID AB_GiantCrow_Dash_Phase = new PrefabGUID(-957116534); public static readonly PrefabGUID AB_GiantCrow_Dash_PostDash = new PrefabGUID(446490900); public static readonly PrefabGUID AB_GiantCrow_Peck_AbilityGroup = new PrefabGUID(898033701); public static readonly PrefabGUID AB_GiantCrow_Peck_Cast = new PrefabGUID(-895541867); public static readonly PrefabGUID AB_GiantCrow_Peck_Hit = new PrefabGUID(-1062130087); public static readonly PrefabGUID AB_GiantCrow_Spawn_FlyDownSmoothly = new PrefabGUID(1793230259); public static readonly PrefabGUID AB_GiantCrow_Taunt_AbilityGroup = new PrefabGUID(1333250097); public static readonly PrefabGUID AB_GiantCrow_Taunt_Cast = new PrefabGUID(2085157449); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_AbilityGroup = new PrefabGUID(-1954926268); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_Cast = new PrefabGUID(1869268921); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_FireArea = new PrefabGUID(-886692844); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_Travel = new PrefabGUID(-2008438104); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_TravelEnd = new PrefabGUID(-1215804632); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_CarpetIncineration_TravelStart = new PrefabGUID(783082148); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_AbilityGroup = new PrefabGUID(-297165667); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_Cast = new PrefabGUID(1053139414); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameShot_Projectile = new PrefabGUID(-1125133251); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_AbilityGroup = new PrefabGUID(-1462866563); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_Cast = new PrefabGUID(-955800212); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_EndBuff = new PrefabGUID(986717476); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_HitBuff = new PrefabGUID(-794872385); public static readonly PrefabGUID AB_Gloomrot_AceIncinerator_FlameSpreader_Spinner = new PrefabGUID(1389395307); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_AbilityGroup = new PrefabGUID(1311267272); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Cast01 = new PrefabGUID(-1730584647); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Cast02 = new PrefabGUID(1081274708); public static readonly PrefabGUID AB_Gloomrot_Batoon_MeleeAttack_Hit = new PrefabGUID(1848288471); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_SingleActivateTrigger = new PrefabGUID(1028297438); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_StaggeredTrigger = new PrefabGUID(-2011515052); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateAllBeams_Trigger = new PrefabGUID(-1400063911); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_AbilityGroup = new PrefabGUID(1484650418); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_Cast = new PrefabGUID(-137131655); public static readonly PrefabGUID AB_Gloomrot_Monster_ActivateBeams_Trigger = new PrefabGUID(626039201); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStep_EndPhase = new PrefabGUID(-1752888370); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_AbilityGroup = new PrefabGUID(-1280314509); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_Cast = new PrefabGUID(-2059048583); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepForward_Phase = new PrefabGUID(1691132580); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_AbilityGroup = new PrefabGUID(927872126); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_BuffLeft = new PrefabGUID(-278249734); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_BuffRight = new PrefabGUID(-1211764864); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_Cast = new PrefabGUID(230471096); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeProjectileLeft = new PrefabGUID(552241592); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeProjectileRight = new PrefabGUID(385902419); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepInit_FakeTarget = new PrefabGUID(411367309); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_AbilityGroup = new PrefabGUID(-570933441); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_Cast = new PrefabGUID(-467224095); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepLeft_Phase = new PrefabGUID(-1818717159); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_AbilityGroup = new PrefabGUID(1808542763); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_Cast = new PrefabGUID(967638725); public static readonly PrefabGUID AB_Gloomrot_Monster_SideStepRight_Phase = new PrefabGUID(1878152931); public static readonly PrefabGUID AB_Gloomrot_MonsterCastle_Breakable_Lever01_TriggerEffect = new PrefabGUID(706473627); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_AbilityGroup = new PrefabGUID(-635085409); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Cast = new PrefabGUID(2009840201); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Channel = new PrefabGUID(2062177006); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_PostChannel = new PrefabGUID(2041877089); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameLine_Projectile = new PrefabGUID(1092340098); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_AbilityGroup = new PrefabGUID(288608511); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_Buff = new PrefabGUID(1664831793); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_Cast = new PrefabGUID(-917475906); public static readonly PrefabGUID AB_Gloomrot_Pyro_FlameStrafer_HitBuff = new PrefabGUID(1377256347); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_AbilityGroup = new PrefabGUID(101220113); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_Buff = new PrefabGUID(1361823193); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Cloak_Cast = new PrefabGUID(290945473); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_AbilityGroup = new PrefabGUID(1779758273); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_Cast = new PrefabGUID(1948219540); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_Projectile = new PrefabGUID(459499791); public static readonly PrefabGUID AB_Gloomrot_Railgunner_Snipe_SelfKnockback = new PrefabGUID(-1598227601); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_AbilityGroup = new PrefabGUID(286182923); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_Cast = new PrefabGUID(-570449030); public static readonly PrefabGUID AB_Gloomrot_Railgunner_WideShot_Hit = new PrefabGUID(1541318205); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_AbilityGroup = new PrefabGUID(-948735477); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_Cast = new PrefabGUID(1728074161); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CallAdds_SpawnMinions = new PrefabGUID(-2077678230); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_AbilityGroup = new PrefabGUID(1623874343); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Buff = new PrefabGUID(389657884); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Cast = new PrefabGUID(217522295); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_EvaluateCastImpair = new PrefabGUID(-1566545834); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_IdleBuff = new PrefabGUID(-1527408583); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_InitTrigger = new PrefabGUID(1056196434); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_MinionBuff = new PrefabGUID(-293512280); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloakField_Trigger = new PrefabGUID(2139211512); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_EndPhase = new PrefabGUID(-649549290); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_PostTravelBuff = new PrefabGUID(-1147191436); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarp_SharedHealthBuff = new PrefabGUID(354441520); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpLeft_InitPhase = new PrefabGUID(-1422752609); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpLeft_Phase = new PrefabGUID(-1688368506); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_AbilityGroup = new PrefabGUID(-1220318405); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_Cast = new PrefabGUID(1949236453); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_InitPhase = new PrefabGUID(314949045); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_MinionSpawn = new PrefabGUID(1926609225); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_CloneWarpRight_Phase = new PrefabGUID(-18946372); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_AbilityGroup = new PrefabGUID(-1187406748); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Cast = new PrefabGUID(-480103837); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Channel = new PrefabGUID(729954206); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_ChannelV2 = new PrefabGUID(660995569); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_ChannelV2_Hard = new PrefabGUID(-373612965); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_HitBuff = new PrefabGUID(-1217551483); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_PostCast = new PrefabGUID(-901041664); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_EnergyBurst_Projectile = new PrefabGUID(1419132893); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HealingOrb_Trigger = new PrefabGUID(-1220760235); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomePosSpawn = new PrefabGUID(-415573136); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_AbilityGroup = new PrefabGUID(-1733128159); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Cast = new PrefabGUID(1410738); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_HitBuff = new PrefabGUID(-2114345630); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_InitOrbCastedBuff = new PrefabGUID(649053615); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_InitTrigger = new PrefabGUID(-1305946610); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Projectile = new PrefabGUID(1703795056); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_TargetedBuff = new PrefabGUID(457793380); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_HomingOrb_Trigger = new PrefabGUID(-1771636157); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_AbilityGroup = new PrefabGUID(978386280); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Cast = new PrefabGUID(909375776); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_HitBuff = new PrefabGUID(1518871214); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Object = new PrefabGUID(1407590180); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_StationBuff = new PrefabGUID(-167853768); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw01 = new PrefabGUID(1067690371); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw02 = new PrefabGUID(1340315458); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_LightningWall_Throw03 = new PrefabGUID(-1730813353); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_AbilityGroup = new PrefabGUID(-1308520526); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_Cast = new PrefabGUID(-933399278); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_EndPhase = new PrefabGUID(56562009); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_Warp_Phase = new PrefabGUID(1668823622); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_AbilityGroup = new PrefabGUID(-1717533555); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_Cast = new PrefabGUID(-1500917125); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeProjectile = new PrefabGUID(1080842952); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeProjectileShort = new PrefabGUID(2052570628); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WarpInit_FakeTarget = new PrefabGUID(-757145234); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_AbilityGroup = new PrefabGUID(-900859351); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Cast = new PrefabGUID(-1276909985); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Hit = new PrefabGUID(707131029); public static readonly PrefabGUID AB_Gloomrot_RailgunSergeant_WideShot_Projectile = new PrefabGUID(451191608); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_AbilityGroup = new PrefabGUID(1971068020); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Cast01 = new PrefabGUID(-35518613); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Cast02 = new PrefabGUID(1777950778); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_MeleeAttack_Hit = new PrefabGUID(227038617); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_AbilityGroup = new PrefabGUID(2052063970); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_Cast = new PrefabGUID(989758231); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_LifetimeBuff = new PrefabGUID(-2145711652); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_MinionSpawn = new PrefabGUID(457111010); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_PlaceTurret_SpawnBuff = new PrefabGUID(726255647); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_AbilityGroup = new PrefabGUID(-466422619); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_Cast = new PrefabGUID(-323729001); public static readonly PrefabGUID AB_Gloomrot_SentryOfficer_ShockGrenade_Throw = new PrefabGUID(-495382656); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_AbilityGroup = new PrefabGUID(-325335847); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_Buff = new PrefabGUID(1463216562); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerDown_Cast = new PrefabGUID(-913026768); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_AbilityGroup = new PrefabGUID(-1060298293); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_Cast = new PrefabGUID(172770500); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_BunkerUp_Trigger = new PrefabGUID(2065070406); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_AbilityGroup = new PrefabGUID(1024156492); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_Cast = new PrefabGUID(2030383324); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_RangedAttack_Projectile = new PrefabGUID(-776860092); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_AbilityGroup = new PrefabGUID(342417296); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_Area = new PrefabGUID(-1848156807); public static readonly PrefabGUID AB_Gloomrot_SentryTurret_ShockField_Cast = new PrefabGUID(-1575106294); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_AbilityGroup = new PrefabGUID(2142399697); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Buff = new PrefabGUID(399425423); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Cast = new PrefabGUID(-1898964293); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_Hit = new PrefabGUID(551004086); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_Drill_PostBuff = new PrefabGUID(-726135055); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_AbilityGroup = new PrefabGUID(-892447725); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_Cast = new PrefabGUID(-1874493120); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_ChannelBuff = new PrefabGUID(1847506631); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Driller_EarthQuake_Hit = new PrefabGUID(-229329932); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_AbilityGroup = new PrefabGUID(257841890); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_BombThrow = new PrefabGUID(-1909476005); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_Cast = new PrefabGUID(600234590); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_PilotBuff = new PrefabGUID(84575741); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_PilotTrigger = new PrefabGUID(30671144); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_BombHatch_TickBuff = new PrefabGUID(1032571050); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_AbilityGroup = new PrefabGUID(-633982282); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Cast = new PrefabGUID(-1588131597); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Channel = new PrefabGUID(-1732268884); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Projectile01 = new PrefabGUID(951283456); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Gattler_Minigun_Projectile02 = new PrefabGUID(1487971166); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_AbilityGroup = new PrefabGUID(574933909); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_Cast = new PrefabGUID(931483413); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_Channel = new PrefabGUID(-1398883224); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_HitBuff = new PrefabGUID(2070705068); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_HeavyBeam_PostBuff = new PrefabGUID(-1021194695); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_AbilityGroup = new PrefabGUID(-1537394790); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Cast = new PrefabGUID(-451382874); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Explosion = new PrefabGUID(-1983385396); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_LightningRod_LightShot_Projectile = new PrefabGUID(1923616274); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_AbilityGroup = new PrefabGUID(-1126624947); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_BombThrow = new PrefabGUID(33131505); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_BombTrigger = new PrefabGUID(1552172886); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_Cast = new PrefabGUID(1602542447); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_PilotBuff = new PrefabGUID(20995075); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_PilotTrigger = new PrefabGUID(-953046129); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_BombHatch_TickBuff = new PrefabGUID(-425020231); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_AbilityGroup = new PrefabGUID(-730217983); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_Cast = new PrefabGUID(971050267); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_MainProjectile = new PrefabGUID(1156886082); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_MoveBuff = new PrefabGUID(-554336743); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_HeavyShot_SideProjectile = new PrefabGUID(-1014509529); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_AbilityGroup = new PrefabGUID(-568845499); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_BombGround = new PrefabGUID(-827088612); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_BombThrow = new PrefabGUID(-433790922); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_Cast = new PrefabGUID(-1127621357); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_MoveBuff = new PrefabGUID(-1633459560); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_PilotBuff = new PrefabGUID(-1381450465); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_IncinerationBomb_PilotTrigger = new PrefabGUID(833973196); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_AbilityGroup = new PrefabGUID(-1081890077); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast01 = new PrefabGUID(735387572); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast02 = new PrefabGUID(754939425); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Cast03 = new PrefabGUID(1390292942); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Explosion = new PrefabGUID(2026954584); public static readonly PrefabGUID AB_Gloomrot_SpiderTank_Zapper_RapidShot_Projectile = new PrefabGUID(2016365206); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_AbilityGroup = new PrefabGUID(73467714); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_Cast = new PrefabGUID(-547251218); public static readonly PrefabGUID AB_Gloomrot_Tazer_RangedAttack_Projectile = new PrefabGUID(147429836); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_AbilityGroup = new PrefabGUID(1485838951); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_Cast01 = new PrefabGUID(197978642); public static readonly PrefabGUID AB_Gloomrot_Technician_Fiddle_Cast02 = new PrefabGUID(-749784555); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_AbilityGroup = new PrefabGUID(-749335766); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Cast01 = new PrefabGUID(-1517906669); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Cast02 = new PrefabGUID(-1212225997); public static readonly PrefabGUID AB_Gloomrot_Technician_MeleeAttack_Hit = new PrefabGUID(51613105); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_AbilityGroup = new PrefabGUID(98352404); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Buff = new PrefabGUID(96235016); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Cast = new PrefabGUID(-1087923572); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_PreTravel = new PrefabGUID(309362800); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_PreTravel_Second = new PrefabGUID(829978520); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Travel = new PrefabGUID(1279640586); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_Travel_Second = new PrefabGUID(-1877095617); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_Discharge_TravelEnd = new PrefabGUID(-1659722160); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Area = new PrefabGUID(-453981619); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Cast = new PrefabGUID(-1805100612); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Channel_Buff = new PrefabGUID(668049426); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ElectricPush_Group = new PrefabGUID(1142491430); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Cast = new PrefabGUID(-913519531); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Group = new PrefabGUID(1957366402); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_FewBeams_Trigger = new PrefabGUID(1586976974); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Area = new PrefabGUID(1592022037); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Cast = new PrefabGUID(1345178156); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Group = new PrefabGUID(-506564570); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ImplodingOrb_Projectile = new PrefabGUID(-1355631149); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Cast = new PrefabGUID(-1250418460); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Group = new PrefabGUID(-841469184); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Cast = new PrefabGUID(660275555); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Group = new PrefabGUID(1379672205); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Hard_Trigger = new PrefabGUID(811737987); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_ManyBeams_Trigger = new PrefabGUID(1849768379); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_AbilityGroup = new PrefabGUID(-2097618568); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Cast = new PrefabGUID(-1664716277); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_AbilityGroup = new PrefabGUID(922412053); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Cast = new PrefabGUID(-633627968); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_01 = new PrefabGUID(713915490); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_02 = new PrefabGUID(-393998335); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_03 = new PrefabGUID(437291488); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Hard_Projectile_04 = new PrefabGUID(-1039861337); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_01 = new PrefabGUID(435849363); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_02 = new PrefabGUID(-1892950511); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_03 = new PrefabGUID(-60897631); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_MultiLazer_Projectile_04 = new PrefabGUID(559619826); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_AbilityGroup = new PrefabGUID(-1904011556); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Cast = new PrefabGUID(-1102261329); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Channel = new PrefabGUID(1556815281); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_Channel = new PrefabGUID(-1433407263); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_OrbBuff = new PrefabGUID(-1876409000); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Hard_Projectile = new PrefabGUID(-314385730); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_OrbBuff = new PrefabGUID(-1900411265); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_OverloadOrb_Projectile = new PrefabGUID(-1127890719); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Cast = new PrefabGUID(-1591210303); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Group = new PrefabGUID(-727882902); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Immaterial = new PrefabGUID(-924837566); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_PermaBeams_Trigger = new PrefabGUID(-888582520); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_AbilityGroup = new PrefabGUID(-559662270); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_Cast = new PrefabGUID(-1985115715); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_PreTravel = new PrefabGUID(107073123); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_Travel = new PrefabGUID(1657467665); public static readonly PrefabGUID AB_Gloomrot_TheProfessor_TeleportMid_TravelEnd = new PrefabGUID(1064339042); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_AbilityGroup = new PrefabGUID(2100724308); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_Buff = new PrefabGUID(-603967180); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_Cast = new PrefabGUID(1434448130); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_DirectionalShield_PullArea = new PrefabGUID(105855568); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_AbilityGroup = new PrefabGUID(-607666302); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_Cast = new PrefabGUID(1901494574); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeAttack_Hit = new PrefabGUID(192129816); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_AbilityGroup = new PrefabGUID(-349738324); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_Cast = new PrefabGUID(1084293768); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_DownedStun = new PrefabGUID(-2012844698); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_MeleeFollowUp_Hit = new PrefabGUID(-1546064675); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_AbilityGroup = new PrefabGUID(1653116246); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_Cast = new PrefabGUID(-1443156712); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_Hit = new PrefabGUID(-1256271477); public static readonly PrefabGUID AB_Gloomrot_TractorBeamer_ShieldBeam_HitBuff = new PrefabGUID(2006937312); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_AbilityGroup = new PrefabGUID(72734316); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_Buff = new PrefabGUID(-1489846876); public static readonly PrefabGUID AB_GoldGolem_AggroTarget_Cast = new PrefabGUID(-1838517125); public static readonly PrefabGUID AB_GoldGolem_Awake_Cast = new PrefabGUID(-1276782249); public static readonly PrefabGUID AB_GoldGolem_Awake_Group = new PrefabGUID(-1656534946); public static readonly PrefabGUID AB_GoldGolem_Enrage_AbilityGroup = new PrefabGUID(-963623992); public static readonly PrefabGUID AB_GoldGolem_Enrage_Buff = new PrefabGUID(127536152); public static readonly PrefabGUID AB_GoldGolem_Enrage_Cast = new PrefabGUID(-453379334); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_AbilityGroup = new PrefabGUID(-645101263); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast01 = new PrefabGUID(-1974855908); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast02 = new PrefabGUID(1192389322); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Cast03 = new PrefabGUID(612544982); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit01 = new PrefabGUID(-1462695081); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit02 = new PrefabGUID(1417275299); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Hit03 = new PrefabGUID(-837988058); public static readonly PrefabGUID AB_GoldGolem_Enrage_FistSlam_Stun = new PrefabGUID(2139290707); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_AbilityGroup = new PrefabGUID(-685952199); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_Cast = new PrefabGUID(-1242887667); public static readonly PrefabGUID AB_GoldGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-336211519); public static readonly PrefabGUID AB_GoldGolem_Invulnerability_Buff = new PrefabGUID(-748498013); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_AbilityGroup = new PrefabGUID(1770841962); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_Cast = new PrefabGUID(1897346919); public static readonly PrefabGUID AB_GoldGolem_MeleeAttack_Hit = new PrefabGUID(-1154292407); public static readonly PrefabGUID AB_GoldGolem_Molten_Buff = new PrefabGUID(36716419); public static readonly PrefabGUID AB_GoldGolem_PostVulnerableBuff = new PrefabGUID(848542975); public static readonly PrefabGUID AB_GoldGolem_RockSlam_AbilityGroup = new PrefabGUID(92820140); public static readonly PrefabGUID AB_GoldGolem_RockSlam_Cast = new PrefabGUID(1359059929); public static readonly PrefabGUID AB_GoldGolem_RockSlam_Projectile = new PrefabGUID(188459696); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_AbilityGroup = new PrefabGUID(-1181502209); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Cast = new PrefabGUID(-1171039965); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Dash = new PrefabGUID(-488123464); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_DashStrike_Strike = new PrefabGUID(-1581829410); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_Hit_01 = new PrefabGUID(-810252484); public static readonly PrefabGUID AB_GreatSword_GreatCleaver_LaunchBuff = new PrefabGUID(586091216); public static readonly PrefabGUID AB_GreatSword_LeapAttack_AbilityGroup = new PrefabGUID(-2095151729); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Cast = new PrefabGUID(-2140721739); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Hit = new PrefabGUID(-1878919289); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Travel_End = new PrefabGUID(385249651); public static readonly PrefabGUID AB_GreatSword_LeapAttack_Travel_Phase = new PrefabGUID(-1977246826); public static readonly PrefabGUID AB_Harpy_AoE_AbilityGroup = new PrefabGUID(-325952371); public static readonly PrefabGUID AB_Harpy_AoE_Cast = new PrefabGUID(1073376086); public static readonly PrefabGUID AB_Harpy_AoE_Throw = new PrefabGUID(-1147637314); public static readonly PrefabGUID AB_Harpy_Dash_AbilityGroup = new PrefabGUID(-1850037222); public static readonly PrefabGUID AB_Harpy_Dash_Cast = new PrefabGUID(-29200376); public static readonly PrefabGUID AB_Harpy_Dash_Phase = new PrefabGUID(1912060269); public static readonly PrefabGUID AB_Harpy_Dive_AbilityGroup = new PrefabGUID(1629100793); public static readonly PrefabGUID AB_Harpy_Dive_Cast = new PrefabGUID(-343251965); public static readonly PrefabGUID AB_Harpy_Dive_Travel = new PrefabGUID(-2072258220); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_AbilityGroup = new PrefabGUID(1678557149); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Cast = new PrefabGUID(31841610); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Channel = new PrefabGUID(-1392281122); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_Hit = new PrefabGUID(-1909501253); public static readonly PrefabGUID AB_Harpy_FeatherDuster_Spin_HitBuff = new PrefabGUID(536353365); public static readonly PrefabGUID AB_Harpy_Launcher_AbilityGroup = new PrefabGUID(1721154667); public static readonly PrefabGUID AB_Harpy_Launcher_Cast = new PrefabGUID(1530803110); public static readonly PrefabGUID AB_Harpy_Launcher_Hit = new PrefabGUID(261910822); public static readonly PrefabGUID AB_Harpy_Launcher_LaunchBuff = new PrefabGUID(781339893); public static readonly PrefabGUID AB_Harpy_Melee_AbilityGroup = new PrefabGUID(-317399619); public static readonly PrefabGUID AB_Harpy_Melee_Cast = new PrefabGUID(-1479157943); public static readonly PrefabGUID AB_Harpy_Melee_Hit = new PrefabGUID(-1107495654); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDown = new PrefabGUID(888932733); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDownLand = new PrefabGUID(-765194689); public static readonly PrefabGUID AB_Harpy_Spawn_FlyDownSmoothly = new PrefabGUID(2038513138); public static readonly PrefabGUID AB_Harpy_Spawn_SideCharge = new PrefabGUID(-1105315493); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AbilityGroup = new PrefabGUID(1006960825); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AreaThrow = new PrefabGUID(-616249927); public static readonly PrefabGUID AB_HighLord_CorpseStorm_AreaThrowBasic = new PrefabGUID(-1369346104); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Cast = new PrefabGUID(2016926455); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Channel_Buff = new PrefabGUID(-11300078); public static readonly PrefabGUID AB_HighLord_CorpseStorm_Projectile = new PrefabGUID(2144484523); public static readonly PrefabGUID AB_HighLord_GroundSword_ConnectBuff_Sword = new PrefabGUID(667903561); public static readonly PrefabGUID AB_HighLord_GroundSword_PermaBuff_Boss = new PrefabGUID(-916946628); public static readonly PrefabGUID AB_HighLord_GroundSword_PermaBuff_Sword = new PrefabGUID(1761702199); public static readonly PrefabGUID AB_HighLord_GroundSword_SilenceBuff_Boss = new PrefabGUID(-6635580); public static readonly PrefabGUID AB_HighLord_LeapStrike_AbilityGroup = new PrefabGUID(938684260); public static readonly PrefabGUID AB_HighLord_LeapStrike_Cast = new PrefabGUID(900477321); public static readonly PrefabGUID AB_HighLord_LeapStrike_End = new PrefabGUID(1836176758); public static readonly PrefabGUID AB_HighLord_LeapStrike_Phase = new PrefabGUID(-562800978); public static readonly PrefabGUID AB_HighLord_PBAE_AbilityGroup = new PrefabGUID(-1139777657); public static readonly PrefabGUID AB_HighLord_PBAE_Cast = new PrefabGUID(1422112401); public static readonly PrefabGUID AB_HighLord_PBAE_Trigger = new PrefabGUID(-1412912205); public static readonly PrefabGUID AB_HighLord_PullPlayers_AbilityGroup = new PrefabGUID(851287157); public static readonly PrefabGUID AB_HighLord_PullPlayers_Cast = new PrefabGUID(-2071145161); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff = new PrefabGUID(121142925); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff_End = new PrefabGUID(-1657967639); public static readonly PrefabGUID AB_HighLord_PullPlayers_TeleportBuff_Start = new PrefabGUID(-746290494); public static readonly PrefabGUID AB_HighLord_PullPlayers_Trigger = new PrefabGUID(-1426491749); public static readonly PrefabGUID AB_HighLord_RaiseDead_AbilityGroup = new PrefabGUID(416744805); public static readonly PrefabGUID AB_HighLord_RaiseDead_Cast = new PrefabGUID(778419454); public static readonly PrefabGUID AB_HighLord_RaiseDead_Trigger = new PrefabGUID(740452052); public static readonly PrefabGUID AB_HighLord_Summon_Buff = new PrefabGUID(-323966648); public static readonly PrefabGUID AB_HighLord_SwordCarve_AbilityGroup = new PrefabGUID(1115425417); public static readonly PrefabGUID AB_HighLord_SwordCarve_Cast = new PrefabGUID(1771625149); public static readonly PrefabGUID AB_HighLord_SwordCarve_Phase = new PrefabGUID(-2114190267); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_AbilityGroup = new PrefabGUID(-2126197617); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Cast = new PrefabGUID(1286990437); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Dash = new PrefabGUID(505601630); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_DashStrike_Strike = new PrefabGUID(158607802); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_Hit_01 = new PrefabGUID(-1380045742); public static readonly PrefabGUID AB_HighLord_SwordDashCleave_LaunchBuff = new PrefabGUID(1298495819); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_AbilityGroup = new PrefabGUID(-328302080); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Cast01 = new PrefabGUID(761892370); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Cast02 = new PrefabGUID(-560217827); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Hit01 = new PrefabGUID(49816890); public static readonly PrefabGUID AB_HighLord_SwordPrimary_MeleeAttack_Hit02 = new PrefabGUID(1433379105); public static readonly PrefabGUID AB_HighLord_UnholySkill_AbilityGroup = new PrefabGUID(-1298764600); public static readonly PrefabGUID AB_HighLord_UnholySkill_Cast = new PrefabGUID(9780843); public static readonly PrefabGUID AB_HighLord_UnholySkill_Projectile = new PrefabGUID(-2026828098); public static readonly PrefabGUID AB_HighLord_UnholyWarp_AbilityGroup = new PrefabGUID(-604910466); public static readonly PrefabGUID AB_HighLord_UnholyWarp_Cast = new PrefabGUID(-350485426); public static readonly PrefabGUID AB_HighLord_UnholyWarp_Phase = new PrefabGUID(957699556); public static readonly PrefabGUID AB_HighLord_UnholyWarp_PostTravelBuff = new PrefabGUID(1093661673); public static readonly PrefabGUID AB_HighLordSword_SelfStun_AbilityGroup = new PrefabGUID(-1430256354); public static readonly PrefabGUID AB_HighLordSword_SelfStun_BossStunBuff = new PrefabGUID(-1007572634); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Buff = new PrefabGUID(-226187750); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Cast = new PrefabGUID(1322883841); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Channel = new PrefabGUID(1515973621); public static readonly PrefabGUID AB_HighLordSword_SelfStun_DeadBuff = new PrefabGUID(104224016); public static readonly PrefabGUID AB_HighLordSword_SelfStun_End = new PrefabGUID(-476632286); public static readonly PrefabGUID AB_HighLordSword_SelfStun_Projectile = new PrefabGUID(-2063241265); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_AbilityGroup = new PrefabGUID(436038744); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_AbilityGroup = new PrefabGUID(-842785205); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Buff = new PrefabGUID(985538529); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Cast = new PrefabGUID(1938218550); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_End = new PrefabGUID(-802269107); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Blackfang_Phase = new PrefabGUID(842087260); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Buff = new PrefabGUID(307775055); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Cast = new PrefabGUID(437005070); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_End = new PrefabGUID(-17369676); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_AbilityGroup = new PrefabGUID(445289088); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Buff = new PrefabGUID(-1593300903); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Cast = new PrefabGUID(-1319599432); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_End = new PrefabGUID(407003044); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Gloomrot_Phase = new PrefabGUID(-494679061); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_Phase = new PrefabGUID(1693465568); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_AbilityGroup = new PrefabGUID(-20922272); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Buff = new PrefabGUID(-1718116915); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Cast = new PrefabGUID(-114006154); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_End = new PrefabGUID(214919869); public static readonly PrefabGUID AB_Horse_Vampire_Leap_Travel_PMK_Phase = new PrefabGUID(-1552400564); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_AbilityGroup = new PrefabGUID(-880319836); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_Buff = new PrefabGUID(279976255); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_Cast = new PrefabGUID(379512250); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_HitBuff = new PrefabGUID(-1945705965); public static readonly PrefabGUID AB_Horse_Vampire_Thrust_TriggerArea = new PrefabGUID(157851389); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_AbilityGroup = new PrefabGUID(-1691591896); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Cast01 = new PrefabGUID(-1895935994); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Cast02 = new PrefabGUID(-402827280); public static readonly PrefabGUID AB_HostileVillager_ClubAttack_Hit = new PrefabGUID(1317396763); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_AbilityGroup = new PrefabGUID(664138263); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Cast01 = new PrefabGUID(-2122390453); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Cast02 = new PrefabGUID(-366179076); public static readonly PrefabGUID AB_HostileVillager_FryingPanAttack_Hit = new PrefabGUID(4800258); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_AbilityGroup = new PrefabGUID(-650192545); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_Cast01 = new PrefabGUID(1135214466); public static readonly PrefabGUID AB_HostileVillager_PitchforkAttack_Hit = new PrefabGUID(1776025361); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_AbilityGroup = new PrefabGUID(477397109); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_Cast01 = new PrefabGUID(-1628753347); public static readonly PrefabGUID AB_HostileVillager_ShovelAttack_Hit = new PrefabGUID(662540137); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_AbilityGroup = new PrefabGUID(2136688539); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Cast01 = new PrefabGUID(-989897898); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Cast02 = new PrefabGUID(-1270029941); public static readonly PrefabGUID AB_HostileVillager_TorchAttack_Hit = new PrefabGUID(-1372149622); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_AbilityGroup = new PrefabGUID(1850527627); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_Cast = new PrefabGUID(932713456); public static readonly PrefabGUID AB_HostileVillager_TorchThrow_Throw = new PrefabGUID(-1080628286); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_AbilityGroup = new PrefabGUID(446999227); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Cast01 = new PrefabGUID(418655964); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Cast02 = new PrefabGUID(-1370213189); public static readonly PrefabGUID AB_HostileVillager_UnarmedAttack_Hit = new PrefabGUID(-2009814307); public static readonly PrefabGUID AB_HoundMaster_SpawnHit = new PrefabGUID(-473294933); public static readonly PrefabGUID AB_IceRanger_BloodMend_AbilityGroup = new PrefabGUID(-1710744334); public static readonly PrefabGUID AB_IceRanger_BloodMend_Buff = new PrefabGUID(-1669745744); public static readonly PrefabGUID AB_IceRanger_BloodMend_Cast = new PrefabGUID(-1539256101); public static readonly PrefabGUID AB_IceRanger_ColdSnap_AbilityGroup = new PrefabGUID(-926355648); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Area = new PrefabGUID(-979014326); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Buff = new PrefabGUID(1626068605); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Cast = new PrefabGUID(-888561363); public static readonly PrefabGUID AB_IceRanger_ColdSnap_ImmaterialBuff = new PrefabGUID(-117571063); public static readonly PrefabGUID AB_IceRanger_ColdSnap_Shield = new PrefabGUID(416837213); public static readonly PrefabGUID AB_IceRanger_IceNova_AbilityGroup = new PrefabGUID(953519927); public static readonly PrefabGUID AB_IceRanger_IceNova_Cast = new PrefabGUID(-2129830878); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_AbilityGroup = new PrefabGUID(1691254929); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_Cast = new PrefabGUID(-449308522); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_RingArea = new PrefabGUID(1266086536); public static readonly PrefabGUID AB_IceRanger_IceNova_Large_Throw = new PrefabGUID(1209509351); public static readonly PrefabGUID AB_IceRanger_IceNova_RingArea = new PrefabGUID(-75630114); public static readonly PrefabGUID AB_IceRanger_IceNova_Throw = new PrefabGUID(240075362); public static readonly PrefabGUID AB_IceRanger_JumpDown_AbilityGroup = new PrefabGUID(1064969109); public static readonly PrefabGUID AB_IceRanger_JumpDown_Buff = new PrefabGUID(516505385); public static readonly PrefabGUID AB_IceRanger_JumpDown_Cast = new PrefabGUID(-1965997143); public static readonly PrefabGUID AB_IceRanger_JumpDown_Travel = new PrefabGUID(1937056675); public static readonly PrefabGUID AB_IceRanger_JumpDown_Travel_Land = new PrefabGUID(-21518537); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_AbilityGroup = new PrefabGUID(1766924388); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_AreaThrow = new PrefabGUID(1659543847); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Cast = new PrefabGUID(-2025527763); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Projectile = new PrefabGUID(1442361283); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_AbilityGroup = new PrefabGUID(-808864212); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_AreaThrow = new PrefabGUID(488206767); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_Cast = new PrefabGUID(1868900578); public static readonly PrefabGUID AB_IceRanger_LurkerSpikes_Split_Projectile = new PrefabGUID(801218059); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_AbilityGroup = new PrefabGUID(1431473799); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Area = new PrefabGUID(-317564656); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_AttachBuff = new PrefabGUID(-2036645637); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Cast = new PrefabGUID(1668005661); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_IcicleSpawnThrow = new PrefabGUID(1573363803); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_LowHealth_AbilityGroup = new PrefabGUID(2057952818); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_RingArea = new PrefabGUID(-379708760); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_SelfStun = new PrefabGUID(-182838302); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_SpawnBuff = new PrefabGUID(-1706093146); public static readonly PrefabGUID AB_IceRanger_TowerOfFrost_Travel = new PrefabGUID(2017147638); public static readonly PrefabGUID AB_Illusion_Curse_Arc = new PrefabGUID(218990010); public static readonly PrefabGUID AB_Illusion_Curse_Cast = new PrefabGUID(609428826); public static readonly PrefabGUID AB_Illusion_Curse_Debuff = new PrefabGUID(569697629); public static readonly PrefabGUID AB_Illusion_Curse_Debuff_Slow = new PrefabGUID(-1809520); public static readonly PrefabGUID AB_Illusion_Curse_DummyAimpreview = new PrefabGUID(1072377410); public static readonly PrefabGUID AB_Illusion_Curse_Group = new PrefabGUID(-1432758970); public static readonly PrefabGUID AB_Illusion_Curse_Projectile = new PrefabGUID(-1625798509); public static readonly PrefabGUID AB_Illusion_MistTrance_AbilityGroup = new PrefabGUID(110097606); public static readonly PrefabGUID AB_Illusion_MistTrance_Buff = new PrefabGUID(-844883320); public static readonly PrefabGUID AB_Illusion_MistTrance_Cast = new PrefabGUID(1202983170); public static readonly PrefabGUID AB_Illusion_MistTrance_PreTravel = new PrefabGUID(436253770); public static readonly PrefabGUID AB_Illusion_MistTrance_SpellMod_DamageOnAttackBuff = new PrefabGUID(-1633277893); public static readonly PrefabGUID AB_Illusion_MistTrance_SpellMod_Haste = new PrefabGUID(-1210432418); public static readonly PrefabGUID AB_Illusion_MistTrance_Travel = new PrefabGUID(1512549350); public static readonly PrefabGUID AB_Illusion_MistTrance_TravelEnd = new PrefabGUID(1299792911); public static readonly PrefabGUID AB_Illusion_Mosquito_AbilityGroup = new PrefabGUID(268059675); public static readonly PrefabGUID AB_Illusion_Mosquito_Area_Explosion = new PrefabGUID(2123590060); public static readonly PrefabGUID AB_Illusion_Mosquito_Cast_Target = new PrefabGUID(-348776938); public static readonly PrefabGUID AB_Illusion_Mosquito_ExplodeBuff = new PrefabGUID(-1120131759); public static readonly PrefabGUID AB_Illusion_Mosquito_SpellMod_HealthAndSpeed = new PrefabGUID(1813132792); public static readonly PrefabGUID AB_Illusion_Mosquito_Summon = new PrefabGUID(-2124923660); public static readonly PrefabGUID AB_Illusion_PhantomAegis_AbilityGroup = new PrefabGUID(-2053450457); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Buff = new PrefabGUID(1050324275); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Buff_MagicSource = new PrefabGUID(1433921398); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Cast = new PrefabGUID(1485010433); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_AbilityGroup = new PrefabGUID(1852992863); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_Buff = new PrefabGUID(-695515598); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_Cast = new PrefabGUID(1643258338); public static readonly PrefabGUID AB_Illusion_PhantomAegis_Recast_TriggerBuff = new PrefabGUID(-180128064); public static readonly PrefabGUID AB_Illusion_PhantomAegis_SpellMod_Explode = new PrefabGUID(-211309361); public static readonly PrefabGUID AB_Illusion_Serpent_AbilityGroup = new PrefabGUID(-286223348); public static readonly PrefabGUID AB_Illusion_Serpent_Area = new PrefabGUID(834863145); public static readonly PrefabGUID AB_Illusion_Serpent_Cast = new PrefabGUID(1466221371); public static readonly PrefabGUID AB_Illusion_Serpent_Projectile = new PrefabGUID(-1687982393); public static readonly PrefabGUID AB_Illusion_Serpent_Wisp_Projectile = new PrefabGUID(1008847881); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_AbilityGroup = new PrefabGUID(1650878435); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_ApplyShieldAoE = new PrefabGUID(1800964994); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_ChannelShield = new PrefabGUID(-1820757085); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_CooldownBuff = new PrefabGUID(723969820); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_EndShield = new PrefabGUID(573122271); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_SpawnBuff = new PrefabGUID(696081555); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_Summon_Cast = new PrefabGUID(1419608225); public static readonly PrefabGUID AB_Illusion_SpectralGuardian_Summon_Throw = new PrefabGUID(574130531); public static readonly PrefabGUID AB_Illusion_SpectralWolf_AbilityGroup = new PrefabGUID(247896794); public static readonly PrefabGUID AB_Illusion_SpectralWolf_BounceDelay_Buff = new PrefabGUID(-1253153799); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Cast = new PrefabGUID(-1246428843); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_Bouncing = new PrefabGUID(714958891); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_First = new PrefabGUID(-1640018550); public static readonly PrefabGUID AB_Illusion_SpectralWolf_Projectile_Owner_Homing = new PrefabGUID(1141944685); public static readonly PrefabGUID AB_Illusion_WispDance_AbilityGroup = new PrefabGUID(-1745021468); public static readonly PrefabGUID AB_Illusion_WispDance_Buff01 = new PrefabGUID(1112914174); public static readonly PrefabGUID AB_Illusion_WispDance_Buff02 = new PrefabGUID(-876669750); public static readonly PrefabGUID AB_Illusion_WispDance_Buff03 = new PrefabGUID(1794443302); public static readonly PrefabGUID AB_Illusion_WispDance_Cast = new PrefabGUID(1017168458); public static readonly PrefabGUID AB_Illusion_WispDance_HitBuff = new PrefabGUID(1845149357); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_AbilityGroup = new PrefabGUID(-1249437419); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Cast = new PrefabGUID(-570986876); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Channel = new PrefabGUID(-2042876438); public static readonly PrefabGUID AB_Illusion_WispDance_Recast_Projectile = new PrefabGUID(-172977631); public static readonly PrefabGUID AB_Illusion_WispDance_RecastBuff = new PrefabGUID(1282593497); public static readonly PrefabGUID AB_Illusion_WraithSpear_AbilityGroup = new PrefabGUID(-242769430); public static readonly PrefabGUID AB_Illusion_WraithSpear_Buff = new PrefabGUID(217067911); public static readonly PrefabGUID AB_Illusion_WraithSpear_Cast = new PrefabGUID(1980757401); public static readonly PrefabGUID AB_Illusion_WraithSpear_Projectile = new PrefabGUID(654227177); public static readonly PrefabGUID AB_InkCrawler_Melee_AbilityGroup = new PrefabGUID(-117718548); public static readonly PrefabGUID AB_InkCrawler_Melee_Cast01 = new PrefabGUID(104865438); public static readonly PrefabGUID AB_InkCrawler_Melee_Hit = new PrefabGUID(-591343493); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_AbilityGroup = new PrefabGUID(-312796240); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_Buff = new PrefabGUID(878094916); public static readonly PrefabGUID AB_Interact_ArenaFlag_Leave_Cast = new PrefabGUID(922839367); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_AbilityGroup = new PrefabGUID(-926110853); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_Buff = new PrefabGUID(353518193); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team01_Cast = new PrefabGUID(-786428143); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_AbilityGroup = new PrefabGUID(270247647); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_Buff = new PrefabGUID(-551716582); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team02_Cast = new PrefabGUID(-1493032237); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_AbilityGroup = new PrefabGUID(-723874886); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_Buff = new PrefabGUID(-429685047); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team03_Cast = new PrefabGUID(-974690111); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_AbilityGroup = new PrefabGUID(919946085); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_Buff = new PrefabGUID(450184126); public static readonly PrefabGUID AB_Interact_ArenaFlag_Team04_Cast = new PrefabGUID(1661416845); public static readonly PrefabGUID AB_Interact_ArenaStation_AbilityGroup = new PrefabGUID(1864378264); public static readonly PrefabGUID AB_Interact_ArenaStation_Cast = new PrefabGUID(1623165510); public static readonly PrefabGUID AB_Interact_ArenaStation_Use = new PrefabGUID(-641398928); public static readonly PrefabGUID AB_Interact_ArmorRack_AbilityGroup = new PrefabGUID(-440165167); public static readonly PrefabGUID AB_Interact_ArmorRack_Buff = new PrefabGUID(1598717568); public static readonly PrefabGUID AB_Interact_ArmorRack_Cast = new PrefabGUID(1957897463); public static readonly PrefabGUID AB_Interact_BellRing_AbilityGroup = new PrefabGUID(1104157543); public static readonly PrefabGUID AB_Interact_BellRing_Buff = new PrefabGUID(948361860); public static readonly PrefabGUID AB_Interact_BellRing_Cast = new PrefabGUID(-2140743797); public static readonly PrefabGUID AB_Interact_BellRing_Trigger = new PrefabGUID(175271266); public static readonly PrefabGUID AB_Interact_BindCoffin = new PrefabGUID(1824438241); public static readonly PrefabGUID AB_Interact_BindCoffin_AbilityGroup = new PrefabGUID(1372470796); public static readonly PrefabGUID AB_Interact_BindCoffin_Cast = new PrefabGUID(557507477); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone = new PrefabGUID(1153186740); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone_AbilityGroup = new PrefabGUID(-1020324236); public static readonly PrefabGUID AB_Interact_BindCoffin_Stone_Cast = new PrefabGUID(118491170); public static readonly PrefabGUID AB_Interact_CoffinSleeping = new PrefabGUID(845443603); public static readonly PrefabGUID AB_Interact_Construct_Long_AbilityGroup = new PrefabGUID(2099812790); public static readonly PrefabGUID AB_Interact_Construct_Long_Cast = new PrefabGUID(895690552); public static readonly PrefabGUID AB_Interact_Curse_Wisp_AbilityGroup = new PrefabGUID(1606718216); public static readonly PrefabGUID AB_Interact_Curse_Wisp_Buff = new PrefabGUID(969375416); public static readonly PrefabGUID AB_Interact_Curse_Wisp_Cast = new PrefabGUID(1242020823); public static readonly PrefabGUID AB_Interact_CustomizationMirror = new PrefabGUID(1804568126); public static readonly PrefabGUID AB_Interact_CustomizationMirror_AbilityGroup = new PrefabGUID(-1711588061); public static readonly PrefabGUID AB_Interact_CustomizationMirror_Cast = new PrefabGUID(-357358319); public static readonly PrefabGUID AB_Interact_Dismantle_Long_AbilityGroup = new PrefabGUID(34416775); public static readonly PrefabGUID AB_Interact_Dismantle_Long_Cast = new PrefabGUID(-444552879); public static readonly PrefabGUID AB_Interact_Dismantle_Medium_AbilityGroup = new PrefabGUID(-449872140); public static readonly PrefabGUID AB_Interact_Dismantle_Medium_Cast = new PrefabGUID(258697778); public static readonly PrefabGUID AB_Interact_Dismantle_Short_AbilityGroup = new PrefabGUID(-310753479); public static readonly PrefabGUID AB_Interact_Dismantle_Short_Cast = new PrefabGUID(-919079192); public static readonly PrefabGUID AB_Interact_DoorKnock_AbilityGroup = new PrefabGUID(-931708593); public static readonly PrefabGUID AB_Interact_DoorKnock_Buff = new PrefabGUID(149319704); public static readonly PrefabGUID AB_Interact_DoorKnock_Cast = new PrefabGUID(414262188); public static readonly PrefabGUID AB_Interact_DoorKnock_DecayKnock = new PrefabGUID(181609412); public static readonly PrefabGUID AB_Interact_DoorKnock_Trigger = new PrefabGUID(1095531563); public static readonly PrefabGUID AB_Interact_DraculaDoor_AbilityGroup = new PrefabGUID(1306041529); public static readonly PrefabGUID AB_Interact_DraculaDoor_Cast = new PrefabGUID(-491951961); public static readonly PrefabGUID AB_Interact_DraculaDoor_Impact = new PrefabGUID(1622682048); public static readonly PrefabGUID AB_Interact_DraculaDoor_Travel = new PrefabGUID(896167570); public static readonly PrefabGUID AB_Interact_DraculaDoorFail_AbilityGroup = new PrefabGUID(302896371); public static readonly PrefabGUID AB_Interact_DraculaDoorFail_Cast = new PrefabGUID(-2059015055); public static readonly PrefabGUID AB_Interact_DuelFlag_AbilityGroup = new PrefabGUID(-1114643812); public static readonly PrefabGUID AB_Interact_DuelFlag_Buff = new PrefabGUID(-1801874471); public static readonly PrefabGUID AB_Interact_DuelFlag_Cast = new PrefabGUID(1678263736); public static readonly PrefabGUID AB_Interact_General_LayDown_AbilityGroup = new PrefabGUID(-1712538598); public static readonly PrefabGUID AB_Interact_General_LayDown_Buff = new PrefabGUID(-1732425629); public static readonly PrefabGUID AB_Interact_General_LayDown_Cast = new PrefabGUID(1794833271); public static readonly PrefabGUID AB_Interact_General_LayDown_Travel = new PrefabGUID(2144165849); public static readonly PrefabGUID AB_Interact_General_LayDown_Travel_Out_Stand_Up = new PrefabGUID(486395870); public static readonly PrefabGUID AB_Interact_General_Sit_AbilityGroup = new PrefabGUID(-91023537); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_01 = new PrefabGUID(-945727908); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_02 = new PrefabGUID(585047249); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_03 = new PrefabGUID(2023418266); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_04 = new PrefabGUID(-1086680683); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_05 = new PrefabGUID(823301546); public static readonly PrefabGUID AB_Interact_General_Sit_Buff_Sit_06 = new PrefabGUID(924519404); public static readonly PrefabGUID AB_Interact_General_Sit_Cast = new PrefabGUID(-68701593); public static readonly PrefabGUID AB_Interact_General_Sit_Travel = new PrefabGUID(694774762); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_01 = new PrefabGUID(1924146075); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_02 = new PrefabGUID(-1218802961); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_03 = new PrefabGUID(-1351027059); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_04 = new PrefabGUID(1588481526); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_05 = new PrefabGUID(-74402832); public static readonly PrefabGUID AB_Interact_General_Sit_Travel_Out_Stand_Up_06 = new PrefabGUID(-1149702315); public static readonly PrefabGUID AB_Interact_GetInside_AbilityGroup_Base = new PrefabGUID(1013114237); public static readonly PrefabGUID AB_Interact_GetInside_AbilityGroup_Stone = new PrefabGUID(1335616296); public static readonly PrefabGUID AB_Interact_GetInside_Cast_Base = new PrefabGUID(-1518265217); public static readonly PrefabGUID AB_Interact_GetInside_Cast_Stone = new PrefabGUID(-554673480); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Buff_Base = new PrefabGUID(381160212); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Buff_Stone = new PrefabGUID(569692162); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Init_Buff_Base = new PrefabGUID(-785333140); public static readonly PrefabGUID AB_Interact_GetInside_Owner_Init_Buff_Stone = new PrefabGUID(1956875482); public static readonly PrefabGUID AB_Interact_GetInside_Target_Buff_Base = new PrefabGUID(-2068156603); public static readonly PrefabGUID AB_Interact_GetInside_Target_Buff_Stone = new PrefabGUID(-2072683514); public static readonly PrefabGUID AB_Interact_GetInside_Travel_Base = new PrefabGUID(-1194613929); public static readonly PrefabGUID AB_Interact_GetInside_Travel_Stone = new PrefabGUID(-342726392); public static readonly PrefabGUID AB_Interact_HealingOrb_AbilityGroup = new PrefabGUID(1214299173); public static readonly PrefabGUID AB_Interact_HealingOrb_Buff = new PrefabGUID(1294634937); public static readonly PrefabGUID AB_Interact_HealingOrb_Cast = new PrefabGUID(1025740289); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_AbilityGroup = new PrefabGUID(-1329891521); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_Buff = new PrefabGUID(470402533); public static readonly PrefabGUID AB_Interact_HealingOrb_Leech_Cast = new PrefabGUID(-32784135); public static readonly PrefabGUID AB_Interact_HideInObject_AbilityGroup = new PrefabGUID(-1154891994); public static readonly PrefabGUID AB_Interact_HideInObject_Buff_Owner = new PrefabGUID(-2059756080); public static readonly PrefabGUID AB_Interact_HideInObject_Buff_Target = new PrefabGUID(-1696380191); public static readonly PrefabGUID AB_Interact_HideInObject_Cast = new PrefabGUID(-766432381); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_AbilityGroup = new PrefabGUID(-188185340); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_Cast = new PrefabGUID(-101228576); public static readonly PrefabGUID AB_Interact_HideInObject_Recast_M1_Trigger = new PrefabGUID(857764330); public static readonly PrefabGUID AB_Interact_HideInObject_Travel = new PrefabGUID(-1937575866); public static readonly PrefabGUID AB_Interact_HideInObject_Travel_Out = new PrefabGUID(533645066); public static readonly PrefabGUID AB_Interact_Inspect = new PrefabGUID(222103866); public static readonly PrefabGUID AB_Interact_Inspect_AbilityGroup = new PrefabGUID(-1160664147); public static readonly PrefabGUID AB_Interact_Inspect_Cast = new PrefabGUID(-382695720); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_AbilityGroup = new PrefabGUID(1550864188); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_Cast = new PrefabGUID(-155879739); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Blue_Trigger = new PrefabGUID(-1168056185); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_AbilityGroup = new PrefabGUID(98022305); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_Cast = new PrefabGUID(-1644954585); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Red_Trigger = new PrefabGUID(-241373186); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Travel_Shared = new PrefabGUID(1000740726); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_AbilityGroup = new PrefabGUID(1088859718); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_Cast = new PrefabGUID(-211215583); public static readonly PrefabGUID AB_Interact_LocalCastleTeleport_Yellow_Trigger = new PrefabGUID(-480263579); public static readonly PrefabGUID AB_Interact_MonsterGenerator_AbilityGroup = new PrefabGUID(1689119503); public static readonly PrefabGUID AB_Interact_MonsterGenerator_Cast = new PrefabGUID(1723562682); public static readonly PrefabGUID AB_Interact_MonsterGenerator_Transition = new PrefabGUID(1318259684); public static readonly PrefabGUID AB_Interact_Mount_AbilityGroup = new PrefabGUID(1734264526); public static readonly PrefabGUID AB_Interact_Mount_Cast = new PrefabGUID(-372722894); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff = new PrefabGUID(2112789321); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse = new PrefabGUID(854656674); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire = new PrefabGUID(-978792376); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_Blackfang = new PrefabGUID(-2000859158); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_Gloomrot = new PrefabGUID(-1936451181); public static readonly PrefabGUID AB_Interact_Mount_Owner_Buff_Horse_Vampire_PMKSkeleton = new PrefabGUID(-1627838818); public static readonly PrefabGUID AB_Interact_Mount_Owner_Init_Buff = new PrefabGUID(2114973567); public static readonly PrefabGUID AB_Interact_Mount_Revive = new PrefabGUID(2091165171); public static readonly PrefabGUID AB_Interact_Mount_Revive_AbilityGroup = new PrefabGUID(544227616); public static readonly PrefabGUID AB_Interact_Mount_Revive_Cast = new PrefabGUID(1505005210); public static readonly PrefabGUID AB_Interact_Mount_Target_Buff = new PrefabGUID(-8223667); public static readonly PrefabGUID AB_Interact_Mount_Target_LastOwner_BuffIcon = new PrefabGUID(-1476191492); public static readonly PrefabGUID AB_Interact_Mount_Travel = new PrefabGUID(1848617499); public static readonly PrefabGUID AB_Interact_OpenContainer = new PrefabGUID(1405487786); public static readonly PrefabGUID AB_Interact_OpenContainer_AbilityGroup = new PrefabGUID(-1662046920); public static readonly PrefabGUID AB_Interact_OpenContainer_Blood_NoEssence_AbilityGroup = new PrefabGUID(-576906626); public static readonly PrefabGUID AB_Interact_OpenContainer_Cast = new PrefabGUID(-305054665); public static readonly PrefabGUID AB_Interact_OpenContainer_DisabledDummy_AbilityGroup = new PrefabGUID(1039955663); public static readonly PrefabGUID AB_Interact_OpenContainer_Dummy_Cast = new PrefabGUID(737749360); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold = new PrefabGUID(1551798297); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold_AbilityGroup = new PrefabGUID(421907078); public static readonly PrefabGUID AB_Interact_OpenContainer_Hold_Cast = new PrefabGUID(-1778721184); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap = new PrefabGUID(1771112861); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap_AbilityGroup = new PrefabGUID(1137335620); public static readonly PrefabGUID AB_Interact_OpenContainer_HoldToTap_Cast = new PrefabGUID(420840336); public static readonly PrefabGUID AB_Interact_OpenDoor = new PrefabGUID(1395794834); public static readonly PrefabGUID AB_Interact_OpenDoor_AbilityGroup = new PrefabGUID(-1934538221); public static readonly PrefabGUID AB_Interact_OpenDoor_Cast = new PrefabGUID(1746391295); public static readonly PrefabGUID AB_Interact_OpenGate = new PrefabGUID(-41614405); public static readonly PrefabGUID AB_Interact_OpenGate_AbilityGroup = new PrefabGUID(-2057340406); public static readonly PrefabGUID AB_Interact_OpenGate_Cast = new PrefabGUID(1675434358); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_AbilityGroup = new PrefabGUID(-876908134); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_Activate = new PrefabGUID(871983993); public static readonly PrefabGUID AB_Interact_OpenMonster_EnergyBeam_Cast = new PrefabGUID(107873219); public static readonly PrefabGUID AB_Interact_PickDisconnected_AbilityGroup = new PrefabGUID(345138892); public static readonly PrefabGUID AB_Interact_PickDisconnected_Cast = new PrefabGUID(-6288240); public static readonly PrefabGUID AB_Interact_PickDisconnected_Owner_Buff = new PrefabGUID(-1930363607); public static readonly PrefabGUID AB_Interact_PickDisconnected_Owner_Init_Buff = new PrefabGUID(-1204937944); public static readonly PrefabGUID AB_Interact_PickDisconnected_Target_Buff = new PrefabGUID(-1839902827); public static readonly PrefabGUID AB_Interact_PickDisconnected_Travel = new PrefabGUID(-1976208593); public static readonly PrefabGUID AB_Interact_Pickup = new PrefabGUID(-472155364); public static readonly PrefabGUID AB_Interact_Pickup_AbilityGroup = new PrefabGUID(-1732463804); public static readonly PrefabGUID AB_Interact_Pickup_Cast = new PrefabGUID(1651771089); public static readonly PrefabGUID AB_Interact_Pickup_Destroy = new PrefabGUID(1300807528); public static readonly PrefabGUID AB_Interact_Pickup_Resource_AbilityGroup = new PrefabGUID(165220777); public static readonly PrefabGUID AB_Interact_Pickup_Resource_Cast = new PrefabGUID(736994552); public static readonly PrefabGUID AB_Interact_PlaceTileModel_AbilityGroup_Long = new PrefabGUID(1399369255); public static readonly PrefabGUID AB_Interact_PlaceTileModel_Cast_Long = new PrefabGUID(-1587789246); public static readonly PrefabGUID AB_Interact_RatHole_AbilityGroup = new PrefabGUID(-1428855842); public static readonly PrefabGUID AB_Interact_RatHole_Cast = new PrefabGUID(-1115775715); public static readonly PrefabGUID AB_Interact_Repair_Medium_AbilityGroup = new PrefabGUID(109530037); public static readonly PrefabGUID AB_Interact_Repair_Medium_Cast = new PrefabGUID(-701769181); public static readonly PrefabGUID AB_Interact_RetrieveRelic_AbilityGroup = new PrefabGUID(1654467658); public static readonly PrefabGUID AB_Interact_RetrieveRelic_Cast = new PrefabGUID(1144010242); public static readonly PrefabGUID AB_Interact_RetrieveRelic_Destroy = new PrefabGUID(-1818035017); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard = new PrefabGUID(-907469238); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard_AbilityGroup = new PrefabGUID(1687099904); public static readonly PrefabGUID AB_Interact_SelectStartGraveyard_Cast = new PrefabGUID(-1729326776); public static readonly PrefabGUID AB_Interact_Servant_AbilityGroup = new PrefabGUID(-1509344340); public static readonly PrefabGUID AB_Interact_Servant_Buff = new PrefabGUID(-127008514); public static readonly PrefabGUID AB_Interact_Servant_Cast = new PrefabGUID(-593508661); public static readonly PrefabGUID AB_Interact_Servant_TargetBuff = new PrefabGUID(-435793813); public static readonly PrefabGUID AB_Interact_ServantCoffinSpawn_Travel = new PrefabGUID(509296401); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_AbilityGroup = new PrefabGUID(-1803981405); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_Activate = new PrefabGUID(440049814); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_Cast = new PrefabGUID(-1788036690); public static readonly PrefabGUID AB_Interact_Siege_Structure_T02_PlayerBuff = new PrefabGUID(183782290); public static readonly PrefabGUID AB_Interact_StoneCoffinSpawn_Travel = new PrefabGUID(-1276482574); public static readonly PrefabGUID AB_Interact_StoneCoffinSpawn_Travel_Delay = new PrefabGUID(1290990039); public static readonly PrefabGUID AB_Interact_Throne_AbilityGroup = new PrefabGUID(1651864139); public static readonly PrefabGUID AB_Interact_Throne_Buff_Sit = new PrefabGUID(211319841); public static readonly PrefabGUID AB_Interact_Throne_Cast = new PrefabGUID(1832821794); public static readonly PrefabGUID AB_Interact_Throne_DestroySit_Shared_Buff = new PrefabGUID(-493220526); public static readonly PrefabGUID AB_Interact_Throne_DisableCollision = new PrefabGUID(-554773229); public static readonly PrefabGUID AB_Interact_Throne_Dracula_AbilityGroup = new PrefabGUID(935984304); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Buff_Sit = new PrefabGUID(-13752172); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Cast = new PrefabGUID(-953937900); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_AbilityGroup = new PrefabGUID(1234809194); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_Cast = new PrefabGUID(1649922542); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Recast_Return = new PrefabGUID(-2124138742); public static readonly PrefabGUID AB_Interact_Throne_Dracula_Travel = new PrefabGUID(559608494); public static readonly PrefabGUID AB_Interact_Throne_Recast_Shared_AbilityGroup = new PrefabGUID(-1385465144); public static readonly PrefabGUID AB_Interact_Throne_Recast_Shared_Cast = new PrefabGUID(301365911); public static readonly PrefabGUID AB_Interact_Throne_Travel = new PrefabGUID(1193440335); public static readonly PrefabGUID AB_Interact_Throne_Travel_Out_Stand_Up = new PrefabGUID(1822430824); public static readonly PrefabGUID AB_Interact_ThrowSword_AbilityGroup = new PrefabGUID(-1041665194); public static readonly PrefabGUID AB_Interact_ThrowSword_Buff = new PrefabGUID(-92043824); public static readonly PrefabGUID AB_Interact_ThrowSword_Cast = new PrefabGUID(1236182680); public static readonly PrefabGUID AB_Interact_TombCoffinSpawn_Travel = new PrefabGUID(722466953); public static readonly PrefabGUID AB_Interact_TombCoffinSpawn_Travel_Delay = new PrefabGUID(-165284501); public static readonly PrefabGUID AB_Interact_Trade = new PrefabGUID(-700487455); public static readonly PrefabGUID AB_Interact_Trade_AbilityGroup = new PrefabGUID(2141326610); public static readonly PrefabGUID AB_Interact_Trade_Cast = new PrefabGUID(985054525); public static readonly PrefabGUID AB_Interact_Trade_Target = new PrefabGUID(1878427249); public static readonly PrefabGUID AB_Interact_UseBloodAltar = new PrefabGUID(-664265769); public static readonly PrefabGUID AB_Interact_UseBloodAltar_AbilityGroup = new PrefabGUID(-927251534); public static readonly PrefabGUID AB_Interact_UseBloodAltar_Cast = new PrefabGUID(34523318); public static readonly PrefabGUID AB_Interact_UseBloodMixer = new PrefabGUID(-2130966171); public static readonly PrefabGUID AB_Interact_UseBloodMixer_AbilityGroup = new PrefabGUID(922855296); public static readonly PrefabGUID AB_Interact_UseBloodMixer_Cast = new PrefabGUID(93988676); public static readonly PrefabGUID AB_Interact_UseCastleHeart = new PrefabGUID(-600929294); public static readonly PrefabGUID AB_Interact_UseCastleHeart_AbilityGroup = new PrefabGUID(-801968342); public static readonly PrefabGUID AB_Interact_UseCastleHeart_AbilityGroup_Enemy = new PrefabGUID(1473393531); public static readonly PrefabGUID AB_Interact_UseCastleHeart_Cast = new PrefabGUID(918894490); public static readonly PrefabGUID AB_Interact_UseCastleHeart_Cast_Enemy = new PrefabGUID(2081035392); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding = new PrefabGUID(-959419771); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_AbilityGroup = new PrefabGUID(910704281); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_AbilityGroup_Enemy = new PrefabGUID(-650664522); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_Cast = new PrefabGUID(-329739313); public static readonly PrefabGUID AB_Interact_UseCastleHeartRebuilding_Cast_Enemy = new PrefabGUID(-717835667); public static readonly PrefabGUID AB_Interact_UseEntryway = new PrefabGUID(-2012423771); public static readonly PrefabGUID AB_Interact_UseEntryway_Cast = new PrefabGUID(134201779); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave = new PrefabGUID(1393214003); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_AbilityGroup = new PrefabGUID(-501592674); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_Cast = new PrefabGUID(1662032955); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_PostTravel = new PrefabGUID(-1450875414); public static readonly PrefabGUID AB_Interact_UseEntryway_Cave_Travel = new PrefabGUID(83453710); public static readonly PrefabGUID AB_Interact_UseEntryway_Enter_AbilityGroup = new PrefabGUID(2024460612); public static readonly PrefabGUID AB_Interact_UseEntryway_Exit_AbilityGroup = new PrefabGUID(592600719); public static readonly PrefabGUID AB_Interact_UseEntryway_PostTravel = new PrefabGUID(-691754762); public static readonly PrefabGUID AB_Interact_UseEntryway_Travel = new PrefabGUID(2033937156); public static readonly PrefabGUID AB_Interact_UseEntryway_Travel_Graveyard = new PrefabGUID(-1297892367); public static readonly PrefabGUID AB_Interact_UseEntrywayExit_AbilityGroup = new PrefabGUID(-739563600); public static readonly PrefabGUID AB_Interact_UseForge = new PrefabGUID(-1503163472); public static readonly PrefabGUID AB_Interact_UseForge_Ability_Group = new PrefabGUID(-827928543); public static readonly PrefabGUID AB_Interact_UseForge_Cast = new PrefabGUID(1642946196); public static readonly PrefabGUID AB_Interact_UseFusionForge = new PrefabGUID(228023731); public static readonly PrefabGUID AB_Interact_UseFusionForge_Ability_Group = new PrefabGUID(1022555711); public static readonly PrefabGUID AB_Interact_UseFusionForge_Cast = new PrefabGUID(2115555303); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation = new PrefabGUID(895902045); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation_AbilityGroup = new PrefabGUID(-341552237); public static readonly PrefabGUID AB_Interact_UseInventoryRouteStation_Cast = new PrefabGUID(1081392595); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation = new PrefabGUID(-1418887294); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation_AbilityGroup = new PrefabGUID(-191894025); public static readonly PrefabGUID AB_Interact_UseJewelCraftingStation_Cast = new PrefabGUID(-1397956718); public static readonly PrefabGUID AB_Interact_UseLightningRodStation = new PrefabGUID(84062433); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_AbilityGroup = new PrefabGUID(-1339620791); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Cast = new PrefabGUID(-2128586073); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Overloaded_AbilityGroup = new PrefabGUID(-80003337); public static readonly PrefabGUID AB_Interact_UseLightningRodStation_Overloaded_Cast = new PrefabGUID(1728893004); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation = new PrefabGUID(-1124266463); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation_AbilityGroup = new PrefabGUID(2145896190); public static readonly PrefabGUID AB_Interact_UseMusicPlayerStation_Cast = new PrefabGUID(1522881987); public static readonly PrefabGUID AB_Interact_UseNoctemRadar = new PrefabGUID(-1430472112); public static readonly PrefabGUID AB_Interact_UseNoctemRadar_AbilityGroup = new PrefabGUID(-857675545); public static readonly PrefabGUID AB_Interact_UseNoctemRadar_Cast = new PrefabGUID(1724072860); public static readonly PrefabGUID AB_Interact_UsePortal = new PrefabGUID(709355532); public static readonly PrefabGUID AB_Interact_UsePortal_AbilityGroup = new PrefabGUID(-2136524530); public static readonly PrefabGUID AB_Interact_UsePortal_Cast = new PrefabGUID(-909210409); public static readonly PrefabGUID AB_Interact_UsePrisonStation = new PrefabGUID(-1853175090); public static readonly PrefabGUID AB_Interact_UsePrisonStation_AbilityGroup = new PrefabGUID(-2143553487); public static readonly PrefabGUID AB_Interact_UsePrisonstation_Cast = new PrefabGUID(-202892455); public static readonly PrefabGUID AB_Interact_UseRefinementStation = new PrefabGUID(-361611703); public static readonly PrefabGUID AB_Interact_UseRefinementStation_AbilityGroup = new PrefabGUID(897325595); public static readonly PrefabGUID AB_Interact_UseRefinementstation_Cast = new PrefabGUID(-1610167208); public static readonly PrefabGUID AB_Interact_UseRefinementStationBloodpress = new PrefabGUID(-1845994379); public static readonly PrefabGUID AB_Interact_UseRefinementStationBloodpress_AbilityGroup = new PrefabGUID(-2139983264); public static readonly PrefabGUID AB_Interact_UseRefinementstationBloodpress_Cast = new PrefabGUID(1766341726); public static readonly PrefabGUID AB_Interact_UseRefinementStationGrinder = new PrefabGUID(-871253843); public static readonly PrefabGUID AB_Interact_UseRefinementStationGrinder_AbilityGroup = new PrefabGUID(-2120286823); public static readonly PrefabGUID AB_Interact_UseRefinementstationGrinder_Cast = new PrefabGUID(-1978921983); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_AbilityGroup = new PrefabGUID(1883675026); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_Buff = new PrefabGUID(-1703886455); public static readonly PrefabGUID AB_Interact_UseRelic_Behemoth_Cast = new PrefabGUID(-1568934921); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_AbilityGroup = new PrefabGUID(-2054010438); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_Buff = new PrefabGUID(-238197495); public static readonly PrefabGUID AB_Interact_UseRelic_Manticore_Cast = new PrefabGUID(-1644726473); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_AbilityGroup = new PrefabGUID(-2064810948); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_Buff = new PrefabGUID(1068709119); public static readonly PrefabGUID AB_Interact_UseRelic_Monster_Cast = new PrefabGUID(-1863913590); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_AbilityGroup = new PrefabGUID(546136204); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_Buff = new PrefabGUID(-1161197991); public static readonly PrefabGUID AB_Interact_UseRelic_Paladin_Cast = new PrefabGUID(-69591182); public static readonly PrefabGUID AB_Interact_UseRelicRadar = new PrefabGUID(-893499048); public static readonly PrefabGUID AB_Interact_UseRelicRadar_AbilityGroup = new PrefabGUID(-1337273957); public static readonly PrefabGUID AB_Interact_UseRelicRadar_Cast = new PrefabGUID(1534984668); public static readonly PrefabGUID AB_Interact_UseResearchstation = new PrefabGUID(-81291263); public static readonly PrefabGUID AB_Interact_UseResearchstation_AbilityGroup = new PrefabGUID(14271023); public static readonly PrefabGUID AB_Interact_UseResearchstation_Cast = new PrefabGUID(-83188602); public static readonly PrefabGUID AB_Interact_UseRespecStation = new PrefabGUID(-1415375000); public static readonly PrefabGUID AB_Interact_UseRespecStation_Ability_Group = new PrefabGUID(1277638345); public static readonly PrefabGUID AB_Interact_UseRespecStation_Cast = new PrefabGUID(656515510); public static readonly PrefabGUID AB_Interact_UseSalvageStation = new PrefabGUID(1604883320); public static readonly PrefabGUID AB_Interact_UseSalvageStation_AbilityGroup = new PrefabGUID(-3758365); public static readonly PrefabGUID AB_Interact_UseSalvagestation_Cast = new PrefabGUID(1580451102); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation = new PrefabGUID(1436404278); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation_Ability_Group = new PrefabGUID(1866448125); public static readonly PrefabGUID AB_Interact_UseServantCoffinstation_Cast = new PrefabGUID(-1901236946); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation = new PrefabGUID(42314700); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation_AbilityGroup = new PrefabGUID(2063732211); public static readonly PrefabGUID AB_Interact_UseSpellSchoolPassiveStation_Cast = new PrefabGUID(-49981718); public static readonly PrefabGUID AB_Interact_UseStables = new PrefabGUID(1726129309); public static readonly PrefabGUID AB_Interact_UseStables_AbilityGroup = new PrefabGUID(-1309114324); public static readonly PrefabGUID AB_Interact_UseStables_Cast = new PrefabGUID(-587833951); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation = new PrefabGUID(-1535456867); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation_Ability_Group = new PrefabGUID(-523365900); public static readonly PrefabGUID AB_Interact_UseUnitSpawnerstation_Cast = new PrefabGUID(1119412283); public static readonly PrefabGUID AB_Interact_UseWaypoint = new PrefabGUID(-986064531); public static readonly PrefabGUID AB_Interact_UseWaypoint_AbilityGroup = new PrefabGUID(893332545); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked = new PrefabGUID(1189493948); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked_AbilityGroup = new PrefabGUID(-1696712851); public static readonly PrefabGUID AB_Interact_UseWaypoint_Blocked_Cast = new PrefabGUID(98141265); public static readonly PrefabGUID AB_Interact_UseWaypoint_Cast = new PrefabGUID(-402025199); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle = new PrefabGUID(985937733); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle_AbilityGroup = new PrefabGUID(695067846); public static readonly PrefabGUID AB_Interact_UseWaypoint_Castle_Cast = new PrefabGUID(-1252882299); public static readonly PrefabGUID AB_Interact_UseWorkstation = new PrefabGUID(-1129881827); public static readonly PrefabGUID AB_Interact_UseWorkstation_AbilityGroup = new PrefabGUID(2038916168); public static readonly PrefabGUID AB_Interact_UseWorkstation_Cast = new PrefabGUID(434360908); public static readonly PrefabGUID AB_Interact_VampirePull_AbilityGroup = new PrefabGUID(4267150); public static readonly PrefabGUID AB_Interact_VampirePull_Cast = new PrefabGUID(288650884); public static readonly PrefabGUID AB_Interact_VampirePull_Owner_Buff = new PrefabGUID(-1390150901); public static readonly PrefabGUID AB_Interact_VampirePull_Target_Buff = new PrefabGUID(-1347981489); public static readonly PrefabGUID AB_Interact_WarpRift_AbilityGroup = new PrefabGUID(33571279); public static readonly PrefabGUID AB_Interact_WarpRift_Buff = new PrefabGUID(1461625260); public static readonly PrefabGUID AB_Interact_WarpRift_Cast = new PrefabGUID(2099141143); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_AbilityGroup = new PrefabGUID(-646168524); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_Buff = new PrefabGUID(-757873625); public static readonly PrefabGUID AB_Interact_WarpRift_EndGame_Exit_Cast = new PrefabGUID(-1947897481); public static readonly PrefabGUID AB_Interact_WarpRiftExit_AbilityGroup = new PrefabGUID(-1190925292); public static readonly PrefabGUID AB_Interact_WarpRiftExit_Buff = new PrefabGUID(-1096120792); public static readonly PrefabGUID AB_Interact_WarpRiftExit_Cast = new PrefabGUID(-238260988); public static readonly PrefabGUID AB_Interact_WaypointSpawn_Travel = new PrefabGUID(-66432447); public static readonly PrefabGUID AB_Interact_WaypointSpawn_Travel_Delay = new PrefabGUID(1521207380); public static readonly PrefabGUID AB_Interact_WoodenCoffinSpawn_Travel = new PrefabGUID(-1705977973); public static readonly PrefabGUID AB_Interact_WoodenCoffinSpawn_Travel_Delay = new PrefabGUID(-246207628); public static readonly PrefabGUID AB_InvisibilityAndImmaterial_Buff = new PrefabGUID(-1144825660); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_Cast = new PrefabGUID(-709834335); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_Group = new PrefabGUID(1510954952); public static readonly PrefabGUID AB_IronGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(261157859); public static readonly PrefabGUID AB_IronGolem_GroundSlam_AbilityGroup = new PrefabGUID(1749064378); public static readonly PrefabGUID AB_IronGolem_GroundSlam_Cast = new PrefabGUID(1053556192); public static readonly PrefabGUID AB_IronGolem_GroundSlam_DownedStun = new PrefabGUID(-638330945); public static readonly PrefabGUID AB_IronGolem_GroundSlam_Hit = new PrefabGUID(1137710018); public static readonly PrefabGUID AB_IronGolem_GroundSlam_LaunchBuff = new PrefabGUID(2066294579); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-2060534730); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Cast01 = new PrefabGUID(4483790); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Cast02 = new PrefabGUID(-517284371); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Hit01 = new PrefabGUID(1959059566); public static readonly PrefabGUID AB_IronGolem_MeleeAttack_Hit02 = new PrefabGUID(697854104); public static readonly PrefabGUID AB_IronGolem_RockSlam_AbilityGroup = new PrefabGUID(-1660458588); public static readonly PrefabGUID AB_IronGolem_RockSlam_Cast = new PrefabGUID(1987282896); public static readonly PrefabGUID AB_IronGolem_RockSlam_Projectile = new PrefabGUID(-2057416891); public static readonly PrefabGUID AB_Iva_Autofire_AbilityGroup = new PrefabGUID(-580940152); public static readonly PrefabGUID AB_Iva_Autofire_AggroBuff = new PrefabGUID(1713781158); public static readonly PrefabGUID AB_Iva_Autofire_Cast = new PrefabGUID(1954950048); public static readonly PrefabGUID AB_Iva_Autofire_Channel = new PrefabGUID(-1483089104); public static readonly PrefabGUID AB_Iva_Autofire_Projectile = new PrefabGUID(1641555845); public static readonly PrefabGUID AB_Iva_BallLightning_AbilityGroup = new PrefabGUID(870237772); public static readonly PrefabGUID AB_Iva_BallLightning_AreaImpact = new PrefabGUID(-682262393); public static readonly PrefabGUID AB_Iva_BallLightning_Cast = new PrefabGUID(1478041683); public static readonly PrefabGUID AB_Iva_BallLightning_HitBuff = new PrefabGUID(-1081333706); public static readonly PrefabGUID AB_Iva_BallLightning_HomingProjectile = new PrefabGUID(137592567); public static readonly PrefabGUID AB_Iva_BallLightning_Throw = new PrefabGUID(-973800311); public static readonly PrefabGUID AB_Iva_BallLightning_Trigger = new PrefabGUID(-1143637949); public static readonly PrefabGUID AB_Iva_BFG_Orb_AbilityGroup = new PrefabGUID(-786900742); public static readonly PrefabGUID AB_Iva_BFG_Orb_AreaImpact = new PrefabGUID(-277607253); public static readonly PrefabGUID AB_Iva_BFG_Orb_Cast = new PrefabGUID(-1630014884); public static readonly PrefabGUID AB_Iva_BFG_Orb_HitBuff = new PrefabGUID(1810543061); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile01 = new PrefabGUID(-734245337); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile02 = new PrefabGUID(1723625875); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile03 = new PrefabGUID(402723255); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile04 = new PrefabGUID(-336157222); public static readonly PrefabGUID AB_Iva_BFG_Orb_HomingProjectile05 = new PrefabGUID(1526471541); public static readonly PrefabGUID AB_Iva_BFG_Orb_Throw = new PrefabGUID(-1865739553); public static readonly PrefabGUID AB_Iva_BFG_Orb_Trigger = new PrefabGUID(-776487262); public static readonly PrefabGUID AB_Iva_BFGLightningFire_AbilityGroup = new PrefabGUID(1524772628); public static readonly PrefabGUID AB_Iva_BFGLightningFire_AggroBuff = new PrefabGUID(1981607554); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Cast = new PrefabGUID(1128127702); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Channel = new PrefabGUID(-405754773); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Projectile01 = new PrefabGUID(2037487373); public static readonly PrefabGUID AB_Iva_BFGLightningFire_Projectile02 = new PrefabGUID(-1220995634); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_AbilityGroup = new PrefabGUID(-1715136284); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_AggroBuff = new PrefabGUID(591917862); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_Cast = new PrefabGUID(1411838706); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_HasteBuff = new PrefabGUID(-992946595); public static readonly PrefabGUID AB_Iva_BomberJetpack_ChaseTarget_TargetedBuff = new PrefabGUID(1887608621); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_AbilityGroup = new PrefabGUID(-577179884); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_Cast = new PrefabGUID(771283414); public static readonly PrefabGUID AB_Iva_BomberJetpack_Land_Phase = new PrefabGUID(-503852392); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_AbilityGroup = new PrefabGUID(-1770586075); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_BombThrow = new PrefabGUID(-1645145758); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_Cast = new PrefabGUID(-1194965669); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_FlightBuff = new PrefabGUID(-149348905); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_MinionBuff = new PrefabGUID(1276542148); public static readonly PrefabGUID AB_Iva_BomberJetpack_TakeOff_Phase = new PrefabGUID(-64994941); public static readonly PrefabGUID AB_Iva_Burn_AbilityGroup = new PrefabGUID(-247423777); public static readonly PrefabGUID AB_Iva_Burn_Cast = new PrefabGUID(-1036714450); public static readonly PrefabGUID AB_Iva_Burn_Channel = new PrefabGUID(1359707601); public static readonly PrefabGUID AB_Iva_Burn_HitBuff = new PrefabGUID(-2081372792); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_AbilityGroup = new PrefabGUID(1517447626); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Cast = new PrefabGUID(-1526329231); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_EndBuff = new PrefabGUID(1242706173); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_HitBuff = new PrefabGUID(1986068722); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Small_FireArea = new PrefabGUID(1580741463); public static readonly PrefabGUID AB_Iva_BurningRingOfFire_Spinner = new PrefabGUID(-643666578); public static readonly PrefabGUID AB_Iva_JetDash_AbilityGroup = new PrefabGUID(-639593760); public static readonly PrefabGUID AB_Iva_JetDash_Cast = new PrefabGUID(-701697265); public static readonly PrefabGUID AB_Iva_JetDash_DashEnd = new PrefabGUID(-486321065); public static readonly PrefabGUID AB_Iva_JetDash_RelocateImpairBuff = new PrefabGUID(347954374); public static readonly PrefabGUID AB_Iva_JetDash_Travel = new PrefabGUID(346690109); public static readonly PrefabGUID AB_Iva_JetEscape_AbilityGroup = new PrefabGUID(-309871879); public static readonly PrefabGUID AB_Iva_JetEscape_Cast = new PrefabGUID(-568577001); public static readonly PrefabGUID AB_Iva_JetEscape_DashEnd = new PrefabGUID(-445395785); public static readonly PrefabGUID AB_Iva_JetEscape_Travel = new PrefabGUID(-1974015491); public static readonly PrefabGUID AB_Iva_ShotgunBlast_AbilityGroup = new PrefabGUID(1450987113); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast01 = new PrefabGUID(1311759468); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast02 = new PrefabGUID(-1677864); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Cast03 = new PrefabGUID(-1491962841); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Hit = new PrefabGUID(-1845842317); public static readonly PrefabGUID AB_Iva_ShotgunBlast_Projectile = new PrefabGUID(506478410); public static readonly PrefabGUID AB_Iva_Tazer_AbilityGroup = new PrefabGUID(891644945); public static readonly PrefabGUID AB_Iva_Tazer_Cast = new PrefabGUID(-971002557); public static readonly PrefabGUID AB_Iva_Tazer_Projectile01 = new PrefabGUID(-1335472990); public static readonly PrefabGUID AB_Iva_Tazer_Projectile02 = new PrefabGUID(-221353825); public static readonly PrefabGUID AB_Iva_Tazer_SelfKnockback = new PrefabGUID(-814883978); public static readonly PrefabGUID AB_Iva_WeaponEquip_Base_AbilityGroup = new PrefabGUID(205884718); public static readonly PrefabGUID AB_Iva_WeaponEquip_Base_Cast = new PrefabGUID(1690912215); public static readonly PrefabGUID AB_Iva_WeaponEquip_BFG_AbilityGroup = new PrefabGUID(948730951); public static readonly PrefabGUID AB_Iva_WeaponEquip_BFG_Cast = new PrefabGUID(-654973710); public static readonly PrefabGUID AB_Iva_WeaponEquip_Flamer_AbilityGroup = new PrefabGUID(-2020699185); public static readonly PrefabGUID AB_Iva_WeaponEquip_Flamer_Cast = new PrefabGUID(1642953750); public static readonly PrefabGUID AB_Iva_WeaponEquip_Shotgun_AbilityGroup = new PrefabGUID(-420570478); public static readonly PrefabGUID AB_Iva_WeaponEquip_Shotgun_Cast = new PrefabGUID(-691142716); public static readonly PrefabGUID AB_Iva_WeaponEquip_Tazer_AbilityGroup = new PrefabGUID(-1409019914); public static readonly PrefabGUID AB_Iva_WeaponEquip_Tazer_Cast = new PrefabGUID(784056246); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Base_AbilityGroup = new PrefabGUID(980772169); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Base_PostCast = new PrefabGUID(1303684524); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_AbilityGroup = new PrefabGUID(2013545793); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_Cast = new PrefabGUID(-9583499); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_BFG_PostCast = new PrefabGUID(768371860); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_AbilityGroup = new PrefabGUID(49364370); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_Cast = new PrefabGUID(-586446924); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Flamer_PostCast = new PrefabGUID(444191812); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_AbilityGroup = new PrefabGUID(-680856467); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_Cast = new PrefabGUID(1609832009); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Shotgun_PostCast = new PrefabGUID(685090209); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_AbilityGroup = new PrefabGUID(1149489416); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_Cast = new PrefabGUID(-115460435); public static readonly PrefabGUID AB_Iva_WeaponMalfunction_Tazer_PostCast = new PrefabGUID(-900527911); public static readonly PrefabGUID AB_Knight_2H_AttackChain_AbilityGroup = new PrefabGUID(-557111974); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Down = new PrefabGUID(-1987021418); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Left = new PrefabGUID(337497895); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Right = new PrefabGUID(2080516440); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Cast_Up = new PrefabGUID(-1702216501); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Hit = new PrefabGUID(-1212196786); public static readonly PrefabGUID AB_Knight_2H_AttackChain_Hit_Narrow = new PrefabGUID(-1605361666); public static readonly PrefabGUID AB_Knight_2H_BackRoll_AbilityGroup = new PrefabGUID(-1175617299); public static readonly PrefabGUID AB_Knight_2H_BackRoll_Cast = new PrefabGUID(1983526499); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_AbilityGroup = new PrefabGUID(-1108325193); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_Cast = new PrefabGUID(-475337423); public static readonly PrefabGUID AB_Knight_2H_BasicAttack_Hit = new PrefabGUID(-835020164); public static readonly PrefabGUID AB_Knight_2H_Charge_AbilityGroup = new PrefabGUID(-1462154593); public static readonly PrefabGUID AB_Knight_2H_Charge_Cast = new PrefabGUID(194178334); public static readonly PrefabGUID AB_Knight_2H_Charge_Dash = new PrefabGUID(-1341411385); public static readonly PrefabGUID AB_Knight_2H_Charge_DashEnd = new PrefabGUID(-386772603); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_AbilityGroup = new PrefabGUID(349423116); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Accurate_AbilityGroup = new PrefabGUID(-1449279362); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Accurate_Cast = new PrefabGUID(846574497); public static readonly PrefabGUID AB_Knight_2H_ForwardRoll_Cast = new PrefabGUID(842126825); public static readonly PrefabGUID AB_Knight_2H_OnAggro_AbilityGroup = new PrefabGUID(-1873002975); public static readonly PrefabGUID AB_Knight_2H_OnAggro_Cast = new PrefabGUID(-790816247); public static readonly PrefabGUID AB_Knight_2H_OnAggro_Group = new PrefabGUID(1124815062); public static readonly PrefabGUID AB_Knight_2H_SideStep_Left_AbilityGroup = new PrefabGUID(-2127256282); public static readonly PrefabGUID AB_Knight_2H_SideStep_Left_Cast = new PrefabGUID(1220962192); public static readonly PrefabGUID AB_Knight_2H_StepAttack_AbilityGroup = new PrefabGUID(-1330909978); public static readonly PrefabGUID AB_Knight_2H_StepAttack_Cast = new PrefabGUID(-916692099); public static readonly PrefabGUID AB_Knight_2H_StepAttack_Hit = new PrefabGUID(1950127942); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Cast01 = new PrefabGUID(-226963367); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Cast02 = new PrefabGUID(-927795851); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Group = new PrefabGUID(-1900214847); public static readonly PrefabGUID AB_Knight_Shield_MeleeAttack_Hit = new PrefabGUID(338618408); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Cast01 = new PrefabGUID(865933855); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Group = new PrefabGUID(-56422536); public static readonly PrefabGUID AB_Knight_Shield_ShieldAttack_Hit = new PrefabGUID(1986123263); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Cast01 = new PrefabGUID(771994741); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Group = new PrefabGUID(377144854); public static readonly PrefabGUID AB_Knight_Shield_ShieldHeavyAttack_Hit = new PrefabGUID(-2046773707); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_AbilityGroup = new PrefabGUID(-386968650); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_Buff = new PrefabGUID(-500398965); public static readonly PrefabGUID AB_KnightShield_DirectionalShield_Cast = new PrefabGUID(598798313); public static readonly PrefabGUID AB_KnightShield_OnAggro_AbilityGroup = new PrefabGUID(-1950156342); public static readonly PrefabGUID AB_KnightShield_OnAggro_Cast = new PrefabGUID(-1673875198); public static readonly PrefabGUID AB_KnightShield_SideStep_Back_AbilityGroup = new PrefabGUID(157070105); public static readonly PrefabGUID AB_KnightShield_SideStep_Back_Cast = new PrefabGUID(-1849130383); public static readonly PrefabGUID AB_KnightShield_SideStep_Left_AbilityGroup = new PrefabGUID(-2012449382); public static readonly PrefabGUID AB_KnightShield_SideStep_Left_Cast = new PrefabGUID(1459143672); public static readonly PrefabGUID AB_KnightShield_SideStep_Right_AbilityGroup = new PrefabGUID(1703351456); public static readonly PrefabGUID AB_KnightShield_SideStep_Right_Cast = new PrefabGUID(-219670953); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_AbilityGroup = new PrefabGUID(329043640); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast01 = new PrefabGUID(-1984309696); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast02 = new PrefabGUID(1946843120); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Cast03 = new PrefabGUID(-1515294055); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Hit01 = new PrefabGUID(-412076080); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrike_Hit02 = new PrefabGUID(798041263); public static readonly PrefabGUID AB_Legion_Assassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(2138222166); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_AbilityGroup = new PrefabGUID(-2049927912); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_Cast = new PrefabGUID(-903208525); public static readonly PrefabGUID AB_Legion_Assassin_HeavyAttack_Hit = new PrefabGUID(1562631558); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackward_AbilityGroup = new PrefabGUID(-1762655324); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackWard_Buff = new PrefabGUID(-332623450); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackward_Cast = new PrefabGUID(-2067118250); public static readonly PrefabGUID AB_Legion_Assassin_JumpBackWard_Dash = new PrefabGUID(4813542); public static readonly PrefabGUID AB_Legion_Assassin_JumpForward_AbilityGroup = new PrefabGUID(-55735320); public static readonly PrefabGUID AB_Legion_Assassin_JumpForward_Dash = new PrefabGUID(212866404); public static readonly PrefabGUID AB_Legion_Assassin_Teleport_DurationBuff = new PrefabGUID(364379291); public static readonly PrefabGUID AB_Legion_Assassin_TeleportInit_AbilityGroup = new PrefabGUID(-1401138411); public static readonly PrefabGUID AB_Legion_Assassin_TeleportInit_Cast = new PrefabGUID(2003040289); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_AbilityGroup = new PrefabGUID(-53726244); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_Cast = new PrefabGUID(-151293675); public static readonly PrefabGUID AB_Legion_Assassin_TeleportLeft_Phase = new PrefabGUID(-1845717626); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_AbilityGroup = new PrefabGUID(-294731102); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_Cast = new PrefabGUID(-2008772874); public static readonly PrefabGUID AB_Legion_Assassin_TeleportRight_Phase = new PrefabGUID(-1879030997); public static readonly PrefabGUID AB_Legion_Assassin_Throw_AbilityGroup = new PrefabGUID(352570759); public static readonly PrefabGUID AB_Legion_Assassin_Throw_Cast = new PrefabGUID(663997624); public static readonly PrefabGUID AB_Legion_Assassin_Throw_Projectile = new PrefabGUID(1235292090); public static readonly PrefabGUID AB_Legion_Asssasin_JumpForward_Cast = new PrefabGUID(800554551); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_AbilityGroup = new PrefabGUID(-1717961213); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_Cast = new PrefabGUID(946480219); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_HomingProjectile = new PrefabGUID(618919317); public static readonly PrefabGUID AB_Legion_BloodProphet_BloodBurn_Spawner = new PrefabGUID(-1721267843); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_AbilityGroup = new PrefabGUID(-347082762); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Area = new PrefabGUID(-708632203); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Cast = new PrefabGUID(-1442746874); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Debuff = new PrefabGUID(-155974681); public static readonly PrefabGUID AB_Legion_BloodProphet_ProjectileAOE_Projectile = new PrefabGUID(-394289116); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_AbilityGroup = new PrefabGUID(-915929892); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Cast01 = new PrefabGUID(1950660322); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Cast02 = new PrefabGUID(-2065391730); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Hit01 = new PrefabGUID(-1082969325); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_Hit02 = new PrefabGUID(-1747652793); public static readonly PrefabGUID AB_Legion_Gargoyle_ForwardSwipe_SlowOnHitBuff = new PrefabGUID(1736079539); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_AbilityGroup = new PrefabGUID(1741189817); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_AggroBuff = new PrefabGUID(-759178950); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_Cast = new PrefabGUID(1178515572); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_End = new PrefabGUID(-1856041720); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_Phase = new PrefabGUID(1419206335); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_Forward_Travel_RemoveTargetBuff_Buff = new PrefabGUID(1650190545); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_AbilityGroup = new PrefabGUID(701450949); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_AbilityGroup = new PrefabGUID(183752077); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetBuff_Area = new PrefabGUID(356894558); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_Buff = new PrefabGUID(144280740); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_ApplyTargetbuff_Cast = new PrefabGUID(584203454); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_Cast = new PrefabGUID(-160268834); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_FakeProjectileRight = new PrefabGUID(310890332); public static readonly PrefabGUID AB_Legion_Gargoyle_Relocate_ForwardInit_FakeTarget = new PrefabGUID(-603059466); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Cast_Over = new PrefabGUID(1878915188); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Cast_Right = new PrefabGUID(-1771125415); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Down_Stun = new PrefabGUID(-1781199261); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Group = new PrefabGUID(-350642638); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Hit = new PrefabGUID(1237943156); public static readonly PrefabGUID AB_Legion_Guardian_AttackChain_Hit_Narrow = new PrefabGUID(-789869076); public static readonly PrefabGUID AB_Legion_Guardian_Block_AbilityGroup = new PrefabGUID(-1794315213); public static readonly PrefabGUID AB_Legion_Guardian_Block_Area = new PrefabGUID(1420287648); public static readonly PrefabGUID AB_Legion_Guardian_Block_Buff = new PrefabGUID(-555399799); public static readonly PrefabGUID AB_Legion_Guardian_Block_Cast = new PrefabGUID(-895724561); public static readonly PrefabGUID AB_Legion_Guardian_BlockBuff_Buff = new PrefabGUID(-365991522); public static readonly PrefabGUID AB_Legion_Guardian_Charge_AbilityGroup = new PrefabGUID(-321918794); public static readonly PrefabGUID AB_Legion_Guardian_Charge_Cast = new PrefabGUID(1092576853); public static readonly PrefabGUID AB_Legion_Guardian_Charge_Dash = new PrefabGUID(760903377); public static readonly PrefabGUID AB_Legion_Guardian_Charge_PostDashBuff = new PrefabGUID(826269213); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(-1989618782); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_Cast = new PrefabGUID(-635031955); public static readonly PrefabGUID AB_Legion_Guardian_ChargeFollowUp_Hit = new PrefabGUID(-184112023); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_AbilityGroup_01 = new PrefabGUID(-2042076580); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_AbilityGroup_02 = new PrefabGUID(-809908964); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Cast_01 = new PrefabGUID(606113171); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Cast_02 = new PrefabGUID(-1368838399); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Down_Stun = new PrefabGUID(1774931122); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Hit_01 = new PrefabGUID(-969363440); public static readonly PrefabGUID AB_Legion_Guardian_MinionAttackChain_Hit_02 = new PrefabGUID(1467787106); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_AbilityGroup = new PrefabGUID(-639471262); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_Cast = new PrefabGUID(934251909); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_Phase = new PrefabGUID(1399112719); public static readonly PrefabGUID AB_Legion_Guardian_NecroWarp_PostWarpBuff = new PrefabGUID(874662882); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_AbilityGroup = new PrefabGUID(-2036638378); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_Cast = new PrefabGUID(-193071296); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_End = new PrefabGUID(1660955704); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlide_Travel_Phase = new PrefabGUID(202513681); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_AbilityGroup = new PrefabGUID(951198708); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_Cast = new PrefabGUID(-1862737063); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeProjectileLeft = new PrefabGUID(836480447); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeProjectileRight = new PrefabGUID(-1855067328); public static readonly PrefabGUID AB_Legion_NightMaiden_EvadeGlideInit_FakeTarget = new PrefabGUID(128231546); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackward_AbilityGroup = new PrefabGUID(-1262881470); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackward_Cast = new PrefabGUID(1339302981); public static readonly PrefabGUID AB_Legion_Nightmaiden_JumpBackWard_Dash = new PrefabGUID(1420846288); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_AbilityGroup = new PrefabGUID(-1498306516); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Cast = new PrefabGUID(-673637610); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_ChannelingBuff = new PrefabGUID(-1953209523); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_EndTargetBuff = new PrefabGUID(-613944680); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_AbilityGroup = new PrefabGUID(1941093851); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Cast = new PrefabGUID(-1228698821); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_ChannelingBuff = new PrefabGUID(-56075190); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_EndTargetBuff = new PrefabGUID(2063053331); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Projectile = new PrefabGUID(-822734490); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_Projectile_ChannelingBuff = new PrefabGUID(-1740357453); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_TargetBuff = new PrefabGUID(-1942510877); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Lesser_TargetBuff_Delay = new PrefabGUID(1575793893); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Projectile = new PrefabGUID(363718492); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_Projectile_ChannelingBuff = new PrefabGUID(1168055351); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_RecastPrevention_Buff = new PrefabGUID(1190823686); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_TargetBuff = new PrefabGUID(-398835659); public static readonly PrefabGUID AB_Legion_NightMaiden_Seduce_TargetBuff_Delay = new PrefabGUID(-1380922715); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_AbilityGroup = new PrefabGUID(-324538848); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_Cast = new PrefabGUID(1495658666); public static readonly PrefabGUID AB_Legion_NightMaiden_WhipTwirl_Hit = new PrefabGUID(790833499); public static readonly PrefabGUID AB_Legion_Nightmare_AbilityGroup = new PrefabGUID(-1526010521); public static readonly PrefabGUID AB_Legion_Nightmare_Cast1 = new PrefabGUID(478866250); public static readonly PrefabGUID AB_Legion_Nightmare_Cast2 = new PrefabGUID(-1360885648); public static readonly PrefabGUID AB_Legion_Nightmare_Hit = new PrefabGUID(2095363240); public static readonly PrefabGUID AB_Legion_Nightmare_Hit2 = new PrefabGUID(-188675893); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_AbilityGroup = new PrefabGUID(-740078985); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_Buff = new PrefabGUID(1363656805); public static readonly PrefabGUID AB_Legion_Nightmare_Taunt_Cast = new PrefabGUID(2104884190); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_AbilityGroup = new PrefabGUID(1617928948); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_Cast = new PrefabGUID(1097217187); public static readonly PrefabGUID AB_Legion_Shadowkin_MeleeAttack_Hit = new PrefabGUID(-1746160426); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_AbilityGroup = new PrefabGUID(-968445725); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_Buff = new PrefabGUID(-770340709); public static readonly PrefabGUID AB_Legion_Vargulf_Approach_Cast = new PrefabGUID(1670924570); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_AbilityGroup = new PrefabGUID(-634705694); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_AbilityGroup_Lesser = new PrefabGUID(1131137826); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Cast = new PrefabGUID(903569133); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Cast_Lesser = new PrefabGUID(-494560823); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_ChannelBuff = new PrefabGUID(-1413844406); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_ChannelBuff_Lesser = new PrefabGUID(-1568733509); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Phase = new PrefabGUID(776801430); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_Phase_Lesser = new PrefabGUID(-1015417297); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostAttackBuff = new PrefabGUID(-1424814067); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostAttackBuff_Lesser = new PrefabGUID(1732150765); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostChannelBuff = new PrefabGUID(1370350247); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_PostChannelBuff_Lesser = new PrefabGUID(1371733748); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_StunBuff = new PrefabGUID(1596283104); public static readonly PrefabGUID AB_Legion_Vargulf_MaulKnockdown_StunBuff_Lesser = new PrefabGUID(1772748887); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AbilityGroup = new PrefabGUID(86533405); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AbilityGroup_Followup = new PrefabGUID(-1915922151); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_AggroBuff = new PrefabGUID(267863357); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_Cast = new PrefabGUID(1993389565); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_DisableRelocate = new PrefabGUID(-882658420); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeProjectileLeft = new PrefabGUID(178669065); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeProjectileRight = new PrefabGUID(-1228913539); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_Init_FakeTarget = new PrefabGUID(-1822958543); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_AbilityGroup = new PrefabGUID(-1229087512); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_Cast = new PrefabGUID(1752934321); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_End = new PrefabGUID(1494605172); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelLeft_Phase = new PrefabGUID(1613900293); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_AbilityGroup = new PrefabGUID(1166812757); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_Cast = new PrefabGUID(1547930915); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_End = new PrefabGUID(1403070340); public static readonly PrefabGUID AB_Legion_Vargulf_MaulSetup_TravelRight_Phase = new PrefabGUID(799090530); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_AbilityGroup = new PrefabGUID(523087989); public static readonly PrefabGUID AB_Legion_vargulf_SlicingArm_ApproachBuff = new PrefabGUID(300462306); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_BleedBuff = new PrefabGUID(1581496399); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Cast01 = new PrefabGUID(344646534); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Cast02 = new PrefabGUID(1434709206); public static readonly PrefabGUID AB_Legion_Vargulf_SlicingArm_Hit = new PrefabGUID(-43822092); public static readonly PrefabGUID AB_LegionVargulf_MaulSetup_PostTravelBuff = new PrefabGUID(1587121585); public static readonly PrefabGUID AB_LightningStorm_Debug_Cast = new PrefabGUID(1607776143); public static readonly PrefabGUID AB_LightningStorm_Debug_Group = new PrefabGUID(646443134); public static readonly PrefabGUID AB_LightningStorm_Throw = new PrefabGUID(2066163170); public static readonly PrefabGUID AB_LightningStorm_Throw_Big = new PrefabGUID(-811096034); public static readonly PrefabGUID AB_LightningStorm_Throw_RodConsume = new PrefabGUID(-856735567); public static readonly PrefabGUID AB_LightningStorm_Throw_RodConsume_SpiderTank = new PrefabGUID(-1770079230); public static readonly PrefabGUID AB_LightningStorm_Throw_Spawner = new PrefabGUID(1542291148); public static readonly PrefabGUID AB_LightningStrike = new PrefabGUID(2061937604); public static readonly PrefabGUID AB_LightningStrike_LightMood_Buff = new PrefabGUID(1317604597); public static readonly PrefabGUID AB_LightningStrike_LightMoodTrigger = new PrefabGUID(-268718160); public static readonly PrefabGUID AB_LightningStrike_RodHit_AreaTrigger = new PrefabGUID(1341705512); public static readonly PrefabGUID AB_LightningStrike_RodHit_EmpowerTankBuff = new PrefabGUID(946767917); public static readonly PrefabGUID AB_LightningStrike_RodHit_StrikeAntipBuff = new PrefabGUID(1817037486); public static readonly PrefabGUID AB_LightningStrike_RodHit_WasHitBuff = new PrefabGUID(-1130377813); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_AbilityGroup = new PrefabGUID(1761660947); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_Cast = new PrefabGUID(-1585538060); public static readonly PrefabGUID AB_Lightweaver_HolyBolt_Projectile = new PrefabGUID(866128446); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_AbilityGroup = new PrefabGUID(-839571202); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Cast = new PrefabGUID(-10388420); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Projectile = new PrefabGUID(-774293391); public static readonly PrefabGUID AB_Lightweaver_HolyBoltSpray_Spinner = new PrefabGUID(-1719179243); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_AbilityGroup = new PrefabGUID(1876841142); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Cast = new PrefabGUID(-240143955); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Throw = new PrefabGUID(-1776684593); public static readonly PrefabGUID AB_Lightweaver_HolyTrinity_Trigger = new PrefabGUID(-126683236); public static readonly PrefabGUID AB_Lightweaver_Teleport_DurationBuff = new PrefabGUID(-239009375); public static readonly PrefabGUID AB_Lightweaver_TeleportInit_AbilityGroup = new PrefabGUID(-284360089); public static readonly PrefabGUID AB_Lightweaver_TeleportInit_Cast = new PrefabGUID(1220839396); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_AbilityGroup = new PrefabGUID(1891756809); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_Cast = new PrefabGUID(610437727); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_EndPhase = new PrefabGUID(-1509082012); public static readonly PrefabGUID AB_Lightweaver_TeleportLeft_Phase = new PrefabGUID(1215686150); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_AbilityGroup = new PrefabGUID(-281576382); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_Cast = new PrefabGUID(-884141479); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_EndPhase = new PrefabGUID(2128353737); public static readonly PrefabGUID AB_Lightweaver_TeleportRight_Phase = new PrefabGUID(-185954772); public static readonly PrefabGUID AB_Longbow_MultiShot_AbilityGroup = new PrefabGUID(-1142698587); public static readonly PrefabGUID AB_Longbow_MultiShot_Arc = new PrefabGUID(-405585506); public static readonly PrefabGUID AB_Longbow_MultiShot_Cast = new PrefabGUID(243674495); public static readonly PrefabGUID AB_Longbow_MultiShot_DummyAimpreview = new PrefabGUID(545642034); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff = new PrefabGUID(384972514); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus01 = new PrefabGUID(-1676260710); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus02 = new PrefabGUID(-1269924820); public static readonly PrefabGUID AB_Longbow_MultiShot_HitBuff_Focus03 = new PrefabGUID(2077738201); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile = new PrefabGUID(-2020696846); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus01 = new PrefabGUID(833584871); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus02 = new PrefabGUID(-553762142); public static readonly PrefabGUID AB_Longbow_MultiShot_Projectile_Focus03 = new PrefabGUID(-1360993098); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_AbilityGroup = new PrefabGUID(-1617880256); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Buff = new PrefabGUID(-775728558); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Cast = new PrefabGUID(-1685283682); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_ContinousArea = new PrefabGUID(-992342367); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_PostChannelBuff = new PrefabGUID(1951058273); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_SetupBuff = new PrefabGUID(1573313696); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Throw = new PrefabGUID(-2126397104); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_Channel_Trigger = new PrefabGUID(-512906087); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_AbilityGroup = new PrefabGUID(550876706); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_Cast = new PrefabGUID(-1217377991); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_Trigger = new PrefabGUID(761541083); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_TriggerBuff = new PrefabGUID(-793409093); public static readonly PrefabGUID AB_Lucie_AlchemicMadness_WalkToPos_WalkToPosBuff = new PrefabGUID(-1650287115); public static readonly PrefabGUID AB_Lucie_Barrier_AbilityGroup = new PrefabGUID(1628835400); public static readonly PrefabGUID AB_Lucie_Barrier_Buff = new PrefabGUID(-412969916); public static readonly PrefabGUID AB_Lucie_Barrier_Cast = new PrefabGUID(-1402082130); public static readonly PrefabGUID AB_Lucie_Barrier_HasHadBarrier = new PrefabGUID(1962565411); public static readonly PrefabGUID AB_Lucie_ClarityPotion_AbilityGroup = new PrefabGUID(1310557060); public static readonly PrefabGUID AB_Lucie_ClarityPotion_Cast = new PrefabGUID(1930880741); public static readonly PrefabGUID AB_Lucie_ClarityPotion_Throw = new PrefabGUID(2084005838); public static readonly PrefabGUID AB_Lucie_CripplingGoo_AbilityGroup = new PrefabGUID(1501543883); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Area = new PrefabGUID(520427449); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Cast = new PrefabGUID(-102572711); public static readonly PrefabGUID AB_Lucie_CripplingGoo_LineupBuff = new PrefabGUID(-938225396); public static readonly PrefabGUID AB_Lucie_CripplingGoo_PoisonDebuff = new PrefabGUID(1382025211); public static readonly PrefabGUID AB_Lucie_CripplingGoo_Throw = new PrefabGUID(2132566996); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_AbilityGroup = new PrefabGUID(973975627); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_AreaImpact = new PrefabGUID(1070313123); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Buff = new PrefabGUID(1950409780); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Cast = new PrefabGUID(-569744009); public static readonly PrefabGUID AB_Lucie_DeadlyInjection_Projectile = new PrefabGUID(-659405741); public static readonly PrefabGUID AB_Lucie_DeAggroGolems_Buff = new PrefabGUID(606249494); public static readonly PrefabGUID AB_Lucie_DeAggroGolems_Trigger = new PrefabGUID(203592090); public static readonly PrefabGUID AB_Lucie_HealingBrew_AbilityGroup = new PrefabGUID(466462408); public static readonly PrefabGUID AB_Lucie_HealingBrew_Buff = new PrefabGUID(44786898); public static readonly PrefabGUID AB_Lucie_HealingBrew_Cast = new PrefabGUID(31591934); public static readonly PrefabGUID AB_Lucie_HealingBrew_ClaritySelfThrow = new PrefabGUID(684598909); public static readonly PrefabGUID AB_Lucie_HealingBrew_HasHadHealing = new PrefabGUID(2023257617); public static readonly PrefabGUID AB_Lucie_LiquidFire_AbilityGroup = new PrefabGUID(846507754); public static readonly PrefabGUID AB_Lucie_LiquidFire_Cast = new PrefabGUID(-405141432); public static readonly PrefabGUID AB_Lucie_LiquidFire_Throw = new PrefabGUID(1467836221); public static readonly PrefabGUID AB_Lucie_PanicShot_AbilityGroup = new PrefabGUID(2041625587); public static readonly PrefabGUID AB_Lucie_PanicShot_Buff = new PrefabGUID(677638731); public static readonly PrefabGUID AB_Lucie_PanicShot_Cast = new PrefabGUID(-1416803366); public static readonly PrefabGUID AB_Lucie_PanicShot_Projectile = new PrefabGUID(1052579549); public static readonly PrefabGUID AB_Lucie_PickUpPotion_HasHadBarrier = new PrefabGUID(914424936); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_AbilityGroup = new PrefabGUID(505640659); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_Cast = new PrefabGUID(1258576628); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_PotionPickBuff = new PrefabGUID(-1623929928); public static readonly PrefabGUID AB_Lucie_PickUpPotion_Pickup_Trigger = new PrefabGUID(1301458752); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_AbilityGroup = new PrefabGUID(385165207); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_Cast = new PrefabGUID(-1458752682); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_TargetedPotionBuff = new PrefabGUID(1931278377); public static readonly PrefabGUID AB_Lucie_PickUpPotion_WalkToPotion_WalkToPosBuff = new PrefabGUID(-1341107993); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_HoldingBuff = new PrefabGUID(914569852); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-2147238865); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_Cast = new PrefabGUID(-528603798); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Interact_Pickup_Trigger = new PrefabGUID(-213168325); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Resource_Drop = new PrefabGUID(1003758020); public static readonly PrefabGUID AB_Lucie_Player_ClarityPotion_Resource_Throw = new PrefabGUID(778857257); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_HoldingBuff = new PrefabGUID(1909143965); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-1858007153); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_Cast = new PrefabGUID(-1176748285); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Interact_Pickup_Trigger = new PrefabGUID(601684430); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Resource_Drop = new PrefabGUID(-1806255555); public static readonly PrefabGUID AB_Lucie_Player_LiquidFirePotion_Resource_Throw = new PrefabGUID(1845884699); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_HoldingBuff = new PrefabGUID(-377632550); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-700139030); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_Cast = new PrefabGUID(-625108783); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Interact_Pickup_Trigger = new PrefabGUID(831996130); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Resource_Drop = new PrefabGUID(103203334); public static readonly PrefabGUID AB_Lucie_Player_LiquidLuckPotion_Resource_Throw = new PrefabGUID(-1711132237); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_HoldingBuff = new PrefabGUID(-543993484); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(1328627408); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_Cast = new PrefabGUID(696233917); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Interact_Pickup_Trigger = new PrefabGUID(1701500093); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Resource_Drop = new PrefabGUID(1138129197); public static readonly PrefabGUID AB_Lucie_Player_PolymorphPotion_Resource_Throw = new PrefabGUID(1881468430); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_HoldingBuff = new PrefabGUID(-2071478868); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_AbilityGroup = new PrefabGUID(1524554505); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_Cast = new PrefabGUID(-1314809742); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Interact_Pickup_Trigger = new PrefabGUID(1224643252); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Resource_Drop = new PrefabGUID(-304560288); public static readonly PrefabGUID AB_Lucie_Player_Potion_Base_Resource_Throw = new PrefabGUID(-1963588609); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_HoldingBuff = new PrefabGUID(759716563); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_AbilityGroup = new PrefabGUID(-964075599); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_Cast = new PrefabGUID(1430939024); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Interact_Pickup_Trigger = new PrefabGUID(-826541903); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Resource_Drop = new PrefabGUID(-1423960159); public static readonly PrefabGUID AB_Lucie_Player_WondrousHealingPotion_Resource_Throw = new PrefabGUID(-1960893454); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_AbilityGroup = new PrefabGUID(2026199659); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_Cast = new PrefabGUID(-1648425136); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_FakeBuff = new PrefabGUID(187534835); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drink_Trigger = new PrefabGUID(-125440500); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_AbilityGroup = new PrefabGUID(-1427506356); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_Cast = new PrefabGUID(1859311958); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Drop_Trigger = new PrefabGUID(176807893); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_AbilityGroup = new PrefabGUID(-933544131); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_Cast = new PrefabGUID(-121556512); public static readonly PrefabGUID AB_Lucie_PlayerAbility_ClarityPotion_Throw_Throw = new PrefabGUID(-1323531014); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_AbilityGroup = new PrefabGUID(-984481115); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_Cast = new PrefabGUID(632343334); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_FirebreathBuff = new PrefabGUID(327089035); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_FirebreathHitBuff = new PrefabGUID(-1831964076); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_LuciePickupBuff = new PrefabGUID(394947550); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drink_Trigger = new PrefabGUID(-1044358838); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_AbilityGroup = new PrefabGUID(992060171); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_Cast = new PrefabGUID(342475970); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Drop_Trigger = new PrefabGUID(1332080011); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_AbilityGroup = new PrefabGUID(1738354598); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_Cast = new PrefabGUID(-154512499); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidFirePotion_Throw_Throw = new PrefabGUID(2017446928); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Buff = new PrefabGUID(-288972673); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_AbilityGroup = new PrefabGUID(1340177024); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_Cast = new PrefabGUID(-1459367067); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drink_Trigger = new PrefabGUID(-625395605); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_AbilityGroup = new PrefabGUID(1404029255); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_Cast = new PrefabGUID(-29556058); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Drop_Trigger = new PrefabGUID(-1625118396); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_AbilityGroup = new PrefabGUID(362512593); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_Cast = new PrefabGUID(705919193); public static readonly PrefabGUID AB_Lucie_PlayerAbility_LiquidLuckPotion_Throw_Throw = new PrefabGUID(-193907308); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_AbilityGroup = new PrefabGUID(2102890955); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_Cast = new PrefabGUID(923750600); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drink_Trigger = new PrefabGUID(1454516142); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_AbilityGroup = new PrefabGUID(1834131915); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_Cast = new PrefabGUID(2102576864); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Drop_Trigger = new PrefabGUID(562974809); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_SheepTransformation_Buff = new PrefabGUID(-75884418); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_AbilityGroup = new PrefabGUID(211300082); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_Cast = new PrefabGUID(580099485); public static readonly PrefabGUID AB_Lucie_PlayerAbility_PolymorphPotion_Throw_Throw = new PrefabGUID(821912439); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_AbilityGroup = new PrefabGUID(1808221013); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_Cast = new PrefabGUID(300404340); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drink_Trigger = new PrefabGUID(1424289041); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_AbilityGroup = new PrefabGUID(1492189086); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_Cast = new PrefabGUID(744934761); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Drop_Trigger = new PrefabGUID(1502299668); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_AbilityGroup = new PrefabGUID(1364843731); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_Cast = new PrefabGUID(-1303175575); public static readonly PrefabGUID AB_Lucie_PlayerAbility_Potion_Base_Throw_Throw = new PrefabGUID(-1042223724); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Buff = new PrefabGUID(-171678968); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_AbilityGroup = new PrefabGUID(-425763347); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_Cast = new PrefabGUID(-1353806122); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drink_Trigger = new PrefabGUID(1259161849); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_AbilityGroup = new PrefabGUID(1225529685); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_Cast = new PrefabGUID(-844049671); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Drop_Trigger = new PrefabGUID(-389633741); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_AbilityGroup = new PrefabGUID(-1111373807); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_Cast = new PrefabGUID(-939476628); public static readonly PrefabGUID AB_Lucie_PlayerAbility_WondrousHealingPotion_Throw_Throw = new PrefabGUID(1770741063); public static readonly PrefabGUID AB_Lucie_Roll_AbilityGroup = new PrefabGUID(-1358113706); public static readonly PrefabGUID AB_Lucie_Roll_CastAndDash = new PrefabGUID(-186119488); public static readonly PrefabGUID AB_Lucie_Roll_CircleBuff = new PrefabGUID(-172961156); public static readonly PrefabGUID AB_Lucie_Roll_ImmaterialBuff = new PrefabGUID(1947116110); public static readonly PrefabGUID AB_Lucie_ToxinBolt_AbilityGroup = new PrefabGUID(2053056011); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast01 = new PrefabGUID(-1128026615); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast02 = new PrefabGUID(2013892985); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Cast03 = new PrefabGUID(1760199795); public static readonly PrefabGUID AB_Lucie_ToxinBolt_ForceRotationBuff = new PrefabGUID(388301129); public static readonly PrefabGUID AB_Lucie_ToxinBolt_Projectile = new PrefabGUID(1137534512); public static readonly PrefabGUID AB_Lucie_ToxinBolt_ToxinDebuff = new PrefabGUID(-1470336876); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_AbilityGroup = new PrefabGUID(-2029137394); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_Cast = new PrefabGUID(-763589431); public static readonly PrefabGUID AB_Lucie_WakeGolemPotion_Throw = new PrefabGUID(1473384236); public static readonly PrefabGUID AB_Manticore_Airborne_Flying_Constant_Buff = new PrefabGUID(1172079590); public static readonly PrefabGUID AB_Manticore_Airborne_FlyStart_Travel = new PrefabGUID(-524144009); public static readonly PrefabGUID AB_Manticore_AirDash_AbilityGroup = new PrefabGUID(-500071289); public static readonly PrefabGUID AB_Manticore_AirDash_Cast = new PrefabGUID(-201518951); public static readonly PrefabGUID AB_Manticore_AirDash_Phase = new PrefabGUID(1898640998); public static readonly PrefabGUID AB_Manticore_AirDash_TargetBuff = new PrefabGUID(-1509249975); public static readonly PrefabGUID AB_Manticore_AirDash_Throw = new PrefabGUID(-122135712); public static readonly PrefabGUID AB_Manticore_AirDash_Throw_MinionSpawn = new PrefabGUID(1824438548); public static readonly PrefabGUID AB_Manticore_AirDash_ThrowShort = new PrefabGUID(359348925); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_AbilityGroup = new PrefabGUID(995945059); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Area = new PrefabGUID(2041479464); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Cast = new PrefabGUID(-329399189); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Throw = new PrefabGUID(1962964961); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Travel = new PrefabGUID(-1964156654); public static readonly PrefabGUID AB_Manticore_BreathFromAbove_Travel_End = new PrefabGUID(-288339443); public static readonly PrefabGUID AB_Manticore_ChaosBreath_AbilityGroup = new PrefabGUID(-627924949); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Cast = new PrefabGUID(641703489); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile = new PrefabGUID(2117195064); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_Fast = new PrefabGUID(856076233); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_Slow = new PrefabGUID(-1758744546); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Projectile_VerySlow = new PrefabGUID(-178370194); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Trigger = new PrefabGUID(-1676882162); public static readonly PrefabGUID AB_Manticore_ChaosBreath_Trigger2 = new PrefabGUID(1534857464); public static readonly PrefabGUID AB_Manticore_Dash_AbilityGroup = new PrefabGUID(-298983941); public static readonly PrefabGUID AB_Manticore_Dash_Cast = new PrefabGUID(1317217367); public static readonly PrefabGUID AB_Manticore_Dash_Downed = new PrefabGUID(146753505); public static readonly PrefabGUID AB_Manticore_Dash_EndHit = new PrefabGUID(-1004524642); public static readonly PrefabGUID AB_Manticore_Dash_Hard_AbilityGroup = new PrefabGUID(475860611); public static readonly PrefabGUID AB_Manticore_Dash_Hard_Cast = new PrefabGUID(2003309778); public static readonly PrefabGUID AB_Manticore_Dash_Hard_Phase = new PrefabGUID(-719719865); public static readonly PrefabGUID AB_Manticore_Dash_LaunchBuff = new PrefabGUID(-351105234); public static readonly PrefabGUID AB_Manticore_Dash_Phase = new PrefabGUID(-1073617148); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left = new PrefabGUID(-2438572); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left_Hard01 = new PrefabGUID(768622871); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Left_Hard02 = new PrefabGUID(-296961065); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right = new PrefabGUID(154871943); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right_Hard01 = new PrefabGUID(68662110); public static readonly PrefabGUID AB_Manticore_Dash_Projectile_Right_Hard02 = new PrefabGUID(1101708146); public static readonly PrefabGUID AB_Manticore_Flame_Area = new PrefabGUID(1591419332); public static readonly PrefabGUID AB_Manticore_Flame_Chaos_Burn_LongDebuff = new PrefabGUID(1670636401); public static readonly PrefabGUID AB_Manticore_Flame_TickDebuff = new PrefabGUID(331923109); public static readonly PrefabGUID AB_Manticore_Flame_TickDebuff_Short = new PrefabGUID(471802749); public static readonly PrefabGUID AB_Manticore_Flame_Trail = new PrefabGUID(-1387213511); public static readonly PrefabGUID AB_Manticore_FlyEnd_AbilityGroup = new PrefabGUID(-808215778); public static readonly PrefabGUID AB_Manticore_FlyEnd_Cast = new PrefabGUID(-1619580627); public static readonly PrefabGUID AB_Manticore_FlyEnd_Travel = new PrefabGUID(-438604069); public static readonly PrefabGUID AB_Manticore_FlyEnd_Travel_End = new PrefabGUID(1058963566); public static readonly PrefabGUID AB_Manticore_Flying_Buff = new PrefabGUID(-2115732274); public static readonly PrefabGUID AB_Manticore_FlyStart_AbilityGroup = new PrefabGUID(-722759857); public static readonly PrefabGUID AB_Manticore_FlyStart_Cast = new PrefabGUID(146602331); public static readonly PrefabGUID AB_Manticore_FlyStart_Travel = new PrefabGUID(-539363055); public static readonly PrefabGUID AB_Manticore_FountainOfChaos_Trigger = new PrefabGUID(-1977404982); public static readonly PrefabGUID AB_Manticore_Frost_AoE = new PrefabGUID(-1545399653); public static readonly PrefabGUID AB_Manticore_Frost_Debuff = new PrefabGUID(-1095284737); public static readonly PrefabGUID AB_Manticore_Frost_Projectile = new PrefabGUID(-755044132); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter = new PrefabGUID(-440387091); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter_TailSwipe = new PrefabGUID(-374897348); public static readonly PrefabGUID AB_Manticore_Frost_Projectile_Splinter02 = new PrefabGUID(-395784621); public static readonly PrefabGUID AB_Manticore_FrostBreath_AbilityGroup = new PrefabGUID(486569900); public static readonly PrefabGUID AB_Manticore_FrostBreath_Cast = new PrefabGUID(122788250); public static readonly PrefabGUID AB_Manticore_FrostBreath_Channel = new PrefabGUID(-130742522); public static readonly PrefabGUID AB_Manticore_FrostBreath_HitBuff = new PrefabGUID(723871450); public static readonly PrefabGUID AB_Manticore_FrostBreath_PostCast = new PrefabGUID(-2058375136); public static readonly PrefabGUID AB_Manticore_FrostVortex_AbilityGroup = new PrefabGUID(1686895005); public static readonly PrefabGUID AB_Manticore_FrostVortex_Area = new PrefabGUID(-1175926883); public static readonly PrefabGUID AB_Manticore_FrostVortex_Buff = new PrefabGUID(-1067106579); public static readonly PrefabGUID AB_Manticore_FrostVortex_Cast = new PrefabGUID(-629212698); public static readonly PrefabGUID AB_Manticore_FrostVortex_Delayed = new PrefabGUID(-1713521815); public static readonly PrefabGUID AB_Manticore_FrostVortex_Throw = new PrefabGUID(1875745365); public static readonly PrefabGUID AB_Manticore_FrostVortex_TriggerCluster = new PrefabGUID(-800152091); public static readonly PrefabGUID AB_Manticore_GoHome_Travel = new PrefabGUID(-1806629211); public static readonly PrefabGUID AB_Manticore_Home_Buff = new PrefabGUID(-1422781175); public static readonly PrefabGUID AB_Manticore_HomePosSpawn = new PrefabGUID(-454707912); public static readonly PrefabGUID AB_Manticore_JumpBack_AbilityGroup = new PrefabGUID(1690919489); public static readonly PrefabGUID AB_Manticore_JumpBack_Cast = new PrefabGUID(1716315280); public static readonly PrefabGUID AB_Manticore_Stagger_AbilityGroup = new PrefabGUID(1806701827); public static readonly PrefabGUID AB_Manticore_Stagger_Cast = new PrefabGUID(-95408249); public static readonly PrefabGUID AB_Manticore_TailSpin_AbilityGroup = new PrefabGUID(2115527946); public static readonly PrefabGUID AB_Manticore_TailSpin_Cast = new PrefabGUID(-1489826027); public static readonly PrefabGUID AB_Manticore_TailSpin_MeleeHit = new PrefabGUID(-1078078391); public static readonly PrefabGUID AB_Manticore_TailSpin_ProjectileSpawner = new PrefabGUID(-1457015851); public static readonly PrefabGUID AB_Manticore_TailStrike_AbilityGroup = new PrefabGUID(-1744671763); public static readonly PrefabGUID AB_Manticore_TailStrike_Cast = new PrefabGUID(-1269021822); public static readonly PrefabGUID AB_Manticore_TailStrike_MeleeHit = new PrefabGUID(77443250); public static readonly PrefabGUID AB_Manticore_TailStrike_ProjectileSpawner = new PrefabGUID(691897112); public static readonly PrefabGUID AB_Manticore_TargetSwitch_AbilityGroup = new PrefabGUID(1254689969); public static readonly PrefabGUID AB_Manticore_TargetSwitch_AggroBuff = new PrefabGUID(-1530493963); public static readonly PrefabGUID AB_Manticore_TargetSwitch_Cast = new PrefabGUID(-1466413942); public static readonly PrefabGUID AB_Manticore_Turn180Left_AbilityGroup = new PrefabGUID(-1547108554); public static readonly PrefabGUID AB_Manticore_Turn180Left_Cast = new PrefabGUID(1401891474); public static readonly PrefabGUID AB_Manticore_Turn180Left_MeleeHit = new PrefabGUID(-1568678759); public static readonly PrefabGUID AB_Manticore_Turn180Left_ProjectileSpawner = new PrefabGUID(-1682766144); public static readonly PrefabGUID AB_Manticore_Turn180Right_AbilityGroup = new PrefabGUID(1373056433); public static readonly PrefabGUID AB_Manticore_Turn180Right_Cast = new PrefabGUID(-604324214); public static readonly PrefabGUID AB_Manticore_Turn180Right_MeleeHit = new PrefabGUID(945519225); public static readonly PrefabGUID AB_Manticore_Turn180Right_ProjectileSpawner = new PrefabGUID(-398274046); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_AbilityGroup = new PrefabGUID(45443379); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_Cast = new PrefabGUID(1366892358); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_MeleeHit = new PrefabGUID(84210889); public static readonly PrefabGUID AB_Manticore_TurnSwipeLeft_ProjectileSpawner = new PrefabGUID(1757976740); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_AbilityGroup = new PrefabGUID(1625958933); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_Cast = new PrefabGUID(1573039480); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_MeleeHit = new PrefabGUID(751756165); public static readonly PrefabGUID AB_Manticore_TurnSwipeRight_ProjectileSpawner = new PrefabGUID(603993577); public static readonly PrefabGUID AB_Manticore_WingStorm_AbilityGroup = new PrefabGUID(-418737686); public static readonly PrefabGUID AB_Manticore_WingStorm_Cast = new PrefabGUID(1353691548); public static readonly PrefabGUID AB_Manticore_WingStorm_Channel = new PrefabGUID(-1855133289); public static readonly PrefabGUID AB_Manticore_WingStorm_Hit = new PrefabGUID(-1069525126); public static readonly PrefabGUID AB_Manticore_WingStorm_Projectile = new PrefabGUID(-510016994); public static readonly PrefabGUID AB_Manticore_WingStorm_TriggerLeft = new PrefabGUID(-27093903); public static readonly PrefabGUID AB_Manticore_WingStorm_TriggerRight = new PrefabGUID(1782002185); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(998806487); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_Cast = new PrefabGUID(1486889239); public static readonly PrefabGUID AB_ManTrap_Corrupted_MeleeAttack_Hit = new PrefabGUID(-907924028); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_AbilityGroup = new PrefabGUID(544237275); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_Cast = new PrefabGUID(1185001957); public static readonly PrefabGUID AB_ManTrap_Corrupted_Projectile_Projectile = new PrefabGUID(674299738); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_AbilityGroup = new PrefabGUID(1026449575); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Cast = new PrefabGUID(1994684330); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_SpawnBuff = new PrefabGUID(1268530841); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Summon01 = new PrefabGUID(1490149155); public static readonly PrefabGUID AB_Mantrap_Corrupted_SpawnSaplings_Summon02 = new PrefabGUID(910313018); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_AbilityGroup = new PrefabGUID(1033948100); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast01 = new PrefabGUID(-962223769); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast02 = new PrefabGUID(-1843338005); public static readonly PrefabGUID AB_ManTrap_CorruptedTrippleProjectile_Cast03 = new PrefabGUID(172749816); public static readonly PrefabGUID AB_ManTrap_Dull_MeleeAttack_Cast = new PrefabGUID(-2139239977); public static readonly PrefabGUID AB_ManTrap_Dull_MeleeAttack_Group = new PrefabGUID(105274396); public static readonly PrefabGUID AB_Mantrap_Immaterial_Buff = new PrefabGUID(-1702571933); public static readonly PrefabGUID AB_Mantrap_InCombat_Buff = new PrefabGUID(1981009430); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Cast = new PrefabGUID(-874474293); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Group = new PrefabGUID(1238529741); public static readonly PrefabGUID AB_ManTrap_MeleeAttack_Hit = new PrefabGUID(1815258946); public static readonly PrefabGUID AB_Mantrap_Poison_Debuff = new PrefabGUID(830003240); public static readonly PrefabGUID AB_ManTrap_Projectile = new PrefabGUID(1707381891); public static readonly PrefabGUID AB_ManTrap_Projectile_Cast = new PrefabGUID(-1638198301); public static readonly PrefabGUID AB_ManTrap_Projectile_Group = new PrefabGUID(780372716); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast01 = new PrefabGUID(-1636729042); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast02 = new PrefabGUID(631192081); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Cast03 = new PrefabGUID(-1650372909); public static readonly PrefabGUID AB_ManTrap_TrippleProjectile_Group = new PrefabGUID(-359326766); public static readonly PrefabGUID AB_Mantrap_Wakeup_Buff = new PrefabGUID(1972665713); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(-267258900); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_Cast = new PrefabGUID(-1404773805); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_MeleeAttack_Hit = new PrefabGUID(-1730474619); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_AbilityGroup = new PrefabGUID(-581209791); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_Cast = new PrefabGUID(725994358); public static readonly PrefabGUID AB_MantrapSapling_Corrupted_Projectile_Projectile = new PrefabGUID(-1396928276); public static readonly PrefabGUID AB_Matriarch_AoE_AbilityGroup = new PrefabGUID(-424388071); public static readonly PrefabGUID AB_Matriarch_AoE_Buff = new PrefabGUID(1251215494); public static readonly PrefabGUID AB_Matriarch_AoE_Cast = new PrefabGUID(1670605272); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Main01 = new PrefabGUID(838371191); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Main02 = new PrefabGUID(650179127); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Scatter01 = new PrefabGUID(-1389644878); public static readonly PrefabGUID AB_Matriarch_AoE_Throw_Scatter02 = new PrefabGUID(207088116); public static readonly PrefabGUID AB_Matriarch_Dash_AbilityGroup = new PrefabGUID(-12917778); public static readonly PrefabGUID AB_Matriarch_Dash_Cast = new PrefabGUID(-2122272537); public static readonly PrefabGUID AB_Matriarch_Dash_HARD_AbilityGroup = new PrefabGUID(1088363798); public static readonly PrefabGUID AB_Matriarch_Dash_HARD_Cast = new PrefabGUID(2057134722); public static readonly PrefabGUID AB_Matriarch_Dash_Phase = new PrefabGUID(1989001748); public static readonly PrefabGUID AB_Matriarch_Launcher_AbilityGroup = new PrefabGUID(341041700); public static readonly PrefabGUID AB_Matriarch_Launcher_Cast = new PrefabGUID(-398314800); public static readonly PrefabGUID AB_Matriarch_Launcher_Hit = new PrefabGUID(92048037); public static readonly PrefabGUID AB_Matriarch_Launcher_LaunchBuff = new PrefabGUID(1660981118); public static readonly PrefabGUID AB_Matriarch_Melee_AbilityGroup = new PrefabGUID(-1389186216); public static readonly PrefabGUID AB_Matriarch_Melee_Cast = new PrefabGUID(1468111716); public static readonly PrefabGUID AB_Matriarch_Melee_Hit = new PrefabGUID(-2066012358); public static readonly PrefabGUID AB_Matriarch_Projectile = new PrefabGUID(581492277); public static readonly PrefabGUID AB_Matriarch_Projectile_AbilityGroup = new PrefabGUID(-514516956); public static readonly PrefabGUID AB_Matriarch_Projectile_Cast = new PrefabGUID(180075577); public static readonly PrefabGUID AB_Matriarch_Projectile_Channel = new PrefabGUID(-677026453); public static readonly PrefabGUID AB_Matriarch_Projectile_Channel_HARD = new PrefabGUID(892399465); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_DeSpawnBuff = new PrefabGUID(-17499135); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_SpawnDecend = new PrefabGUID(-1221149647); public static readonly PrefabGUID AB_Matriarch_Soar_Minion_SpawnDive = new PrefabGUID(769030120); public static readonly PrefabGUID AB_Matriarch_Soar_Summon = new PrefabGUID(-907804974); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_AbilityGroup = new PrefabGUID(1212947823); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_Cast = new PrefabGUID(-397091035); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_End = new PrefabGUID(-217542894); public static readonly PrefabGUID AB_Matriarch_Soar_Travel_Phase = new PrefabGUID(849664401); public static readonly PrefabGUID AB_Matriarch_SpinAttack_AbilityGroup = new PrefabGUID(494176178); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Cast = new PrefabGUID(970992076); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Channel = new PrefabGUID(339508844); public static readonly PrefabGUID AB_Matriarch_SpinAttack_HARD_Channel = new PrefabGUID(1905744001); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Hit = new PrefabGUID(-1621531039); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Homing_HARD_Projectile = new PrefabGUID(-202133203); public static readonly PrefabGUID AB_Matriarch_SpinAttack_Homing_Projectile = new PrefabGUID(2085874945); public static readonly PrefabGUID AB_Matriarch_SpinAttack_SummonDash = new PrefabGUID(877457615); public static readonly PrefabGUID AB_Mech_Activate_Explosive_Buff = new PrefabGUID(597124880); public static readonly PrefabGUID AB_Mech_Activate_Explosive_Trigger = new PrefabGUID(1051384420); public static readonly PrefabGUID AB_Militia_BellRinger_RingBell_AbilityGroup = new PrefabGUID(2073002423); public static readonly PrefabGUID AB_Militia_BellRinger_RingBell_Cast = new PrefabGUID(1538215473); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AbilityGroup = new PrefabGUID(1611191665); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_AbilityGroup = new PrefabGUID(-1049539886); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_Buff = new PrefabGUID(-841121993); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_AggroBuff_Cast = new PrefabGUID(-536713174); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Area_Knockback = new PrefabGUID(-1124194001); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Cast = new PrefabGUID(-1691121147); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_Channel = new PrefabGUID(-875312828); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_HitBuff = new PrefabGUID(-937972599); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_AbilityGroup = new PrefabGUID(-1957047297); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Buff = new PrefabGUID(-1848432780); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Cast = new PrefabGUID(105916215); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyBeam_TargetBuff_Trigger = new PrefabGUID(310961964); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_AbilityGroup = new PrefabGUID(-545560531); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Cast = new PrefabGUID(-859264405); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Throw = new PrefabGUID(1157220997); public static readonly PrefabGUID AB_Militia_BishopOfDunley_HolyCircles_Trigger = new PrefabGUID(1599230924); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Idle_Buff = new PrefabGUID(198181165); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile = new PrefabGUID(-544287626); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Area = new PrefabGUID(-1310138228); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Cast = new PrefabGUID(-259533161); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Group = new PrefabGUID(368122726); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard = new PrefabGUID(222846819); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Area = new PrefabGUID(-1406495074); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Cast = new PrefabGUID(846585356); public static readonly PrefabGUID AB_Militia_BishopOfDunley_Projectile_Hard_Group = new PrefabGUID(-88118341); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_AbilityGroup = new PrefabGUID(1674395967); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Cast = new PrefabGUID(1980954566); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Channel = new PrefabGUID(1100265033); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Minion_Buff = new PrefabGUID(75980902); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonEyeOfGod_Summon = new PrefabGUID(507392848); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_AbilityGroup = new PrefabGUID(296313928); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Cast = new PrefabGUID(761214925); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Minion_Buff = new PrefabGUID(-1428021510); public static readonly PrefabGUID AB_Militia_BishopOfDunley_SummonPillar_Summon = new PrefabGUID(-1660773689); public static readonly PrefabGUID AB_Militia_BombThrow_AbilityGroup = new PrefabGUID(1232856473); public static readonly PrefabGUID AB_Militia_BombThrow_Cast = new PrefabGUID(-935905787); public static readonly PrefabGUID AB_Militia_BombThrow_Explosion_Delayed = new PrefabGUID(732165342); public static readonly PrefabGUID AB_Militia_BombThrow_Throw = new PrefabGUID(-2134151205); public static readonly PrefabGUID AB_Militia_BombThrow_Throw_Cluster = new PrefabGUID(-255736072); public static readonly PrefabGUID AB_Militia_CallAdds_AbilityGroup = new PrefabGUID(1870073064); public static readonly PrefabGUID AB_Militia_CallAdds_Cast = new PrefabGUID(385539763); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_AbilityGroup = new PrefabGUID(1244670975); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_Cast = new PrefabGUID(-435692819); public static readonly PrefabGUID AB_Militia_CallAdds_Legion_SpawnMinions = new PrefabGUID(-273839084); public static readonly PrefabGUID AB_Militia_CallAdds_SpawnMinions = new PrefabGUID(1392323465); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_AbilityGroup = new PrefabGUID(-893194478); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_Area = new PrefabGUID(841457); public static readonly PrefabGUID AB_Militia_ConstrainingPole_MeleeAttack_Cast = new PrefabGUID(942221944); public static readonly PrefabGUID AB_Militia_Crossbow_Cast = new PrefabGUID(1169594249); public static readonly PrefabGUID AB_Militia_Crossbow_Group = new PrefabGUID(-1802963726); public static readonly PrefabGUID AB_Militia_Crossbow_Projectile = new PrefabGUID(-1838257649); public static readonly PrefabGUID AB_Militia_EyeOfGod_AggroBuff = new PrefabGUID(1452462104); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaDamageBuff = new PrefabGUID(1612771592); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaEffectBuff = new PrefabGUID(838368210); public static readonly PrefabGUID AB_Militia_EyeOfGod_AreaInitBuff = new PrefabGUID(933561205); public static readonly PrefabGUID AB_Militia_EyeOfGod_Haste_Hard = new PrefabGUID(-1850436869); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_AbilityGroup = new PrefabGUID(-409778117); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_AoESpawnerBuff = new PrefabGUID(1050595055); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_Cast = new PrefabGUID(1184643154); public static readonly PrefabGUID AB_Militia_Fabian_CallLightning_Trigger = new PrefabGUID(-1853602850); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_AbilityGroup = new PrefabGUID(1631838527); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Cast01 = new PrefabGUID(2060866908); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Cast02 = new PrefabGUID(-41130002); public static readonly PrefabGUID AB_Militia_Fabian_LightningOrb_Projectile = new PrefabGUID(-280091016); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_AbilityGroup = new PrefabGUID(-1379598377); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Cast = new PrefabGUID(-1843693678); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Hit = new PrefabGUID(-669400666); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Left_Trigger = new PrefabGUID(1801016041); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_MountForceCastTrigger = new PrefabGUID(1491333787); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_AbilityGroup = new PrefabGUID(-618550771); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Cast = new PrefabGUID(1597770220); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Hit = new PrefabGUID(-538988374); public static readonly PrefabGUID AB_Militia_Fabian_MountedSwing_Right_Trigger = new PrefabGUID(1351545111); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_AbilityGroup = new PrefabGUID(-1623080868); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_Cast = new PrefabGUID(-1682625133); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_SpawnMount = new PrefabGUID(1615695021); public static readonly PrefabGUID AB_Militia_Fabian_Mountup_Travel_Phase = new PrefabGUID(-1988219418); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_AbilityGroup = new PrefabGUID(-715615220); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_AggroBuff = new PrefabGUID(-13181636); public static readonly PrefabGUID AB_Militia_FabiansSteed_AggroTarget_Cast = new PrefabGUID(-752382300); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_AbilityGroup = new PrefabGUID(1246326726); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_Cast = new PrefabGUID(-267421443); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_ChargingBuff = new PrefabGUID(328706422); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_Phase = new PrefabGUID(-219976787); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_RiderBuff = new PrefabGUID(-1988917472); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeAoE = new PrefabGUID(361876424); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger01 = new PrefabGUID(-2080797217); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger02 = new PrefabGUID(-1108207344); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger03 = new PrefabGUID(1365581986); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger04 = new PrefabGUID(1895978220); public static readonly PrefabGUID AB_Militia_FabiansSteed_Charge_WakeTrigger05 = new PrefabGUID(1453459652); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_AbilityGroup = new PrefabGUID(1220301459); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Buff = new PrefabGUID(-1492616746); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Cast = new PrefabGUID(-450565827); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_DynamicCollisionBuff = new PrefabGUID(1261865310); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_End = new PrefabGUID(-1564254360); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_Phase = new PrefabGUID(-1946670460); public static readonly PrefabGUID AB_Militia_FabiansSteed_Leap_RiderBuff = new PrefabGUID(2054840798); public static readonly PrefabGUID AB_Militia_FabiansSteed_LeapMovement_AbilityGroup = new PrefabGUID(975866147); public static readonly PrefabGUID AB_Militia_FabiansSteed_LeapMovement_Cast = new PrefabGUID(-2018268572); public static readonly PrefabGUID AB_Militia_FabiansSteed_MountedSwingMovement_AbilityGroup = new PrefabGUID(-59488185); public static readonly PrefabGUID AB_Militia_FabiansSteed_MountedSwingMovement_Cast = new PrefabGUID(-1499052014); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_AbilityGroup = new PrefabGUID(325658714); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_MinionEffectBuff = new PrefabGUID(-1604026473); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_RotationBuff = new PrefabGUID(1328632900); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion01 = new PrefabGUID(-656099471); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion02 = new PrefabGUID(-1968939693); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion03 = new PrefabGUID(1972989794); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_SpawnMinion04 = new PrefabGUID(104024742); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Brutal_Trigger = new PrefabGUID(1492766921); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Cast = new PrefabGUID(-1499593072); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_CastTrackerBuff = new PrefabGUID(151863819); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_ChargingBuff = new PrefabGUID(1688233876); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_LyingStunBuff = new PrefabGUID(-533793439); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_Phase = new PrefabGUID(1110707350); public static readonly PrefabGUID AB_Militia_FabiansSteed_MultiCharge_RiderBuff = new PrefabGUID(1478782911); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_AbilityGroup = new PrefabGUID(644410055); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_Buff = new PrefabGUID(1772398791); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostCharge_Cast = new PrefabGUID(1510593370); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_AbilityGroup = new PrefabGUID(1207495983); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_Buff = new PrefabGUID(-966704283); public static readonly PrefabGUID AB_Militia_FabiansSteed_PostMultiCharge_Cast = new PrefabGUID(2028296730); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_AbilityGroup = new PrefabGUID(-469608333); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_Buff = new PrefabGUID(-38800429); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_Cast = new PrefabGUID(-617347533); public static readonly PrefabGUID AB_Militia_FabiansSteed_RunClose_MounterBuff = new PrefabGUID(-863496809); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_AbilityGroup = new PrefabGUID(-719487446); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_Buff = new PrefabGUID(-1499420269); public static readonly PrefabGUID AB_Militia_Glassblower_Approach_Cast = new PrefabGUID(-1212587679); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_AbilityGroup = new PrefabGUID(-29584300); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Cast = new PrefabGUID(795472923); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_AbilityGroup = new PrefabGUID(317399990); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_Cast = new PrefabGUID(-1085065672); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Hard_Projectile = new PrefabGUID(-1121865614); public static readonly PrefabGUID AB_Militia_Glassblower_Cyclone_Projectile = new PrefabGUID(-552770626); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_AbilityGroup = new PrefabGUID(800186323); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Cast = new PrefabGUID(-733931221); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_ChannelBuff = new PrefabGUID(1274118179); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_AbilityGroup = new PrefabGUID(-1174644772); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_Cast = new PrefabGUID(-1202196448); public static readonly PrefabGUID AB_Militia_Glassblower_DeepBreath_Hard_ChannelBuff = new PrefabGUID(-2004538338); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_AbilityGroup = new PrefabGUID(-348862907); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_Buff = new PrefabGUID(681813764); public static readonly PrefabGUID AB_Militia_Glassblower_Emote_Idle_Cast = new PrefabGUID(382843220); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_AbilityGroup = new PrefabGUID(-212014657); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Cast = new PrefabGUID(-1666493342); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_TargetTrigger = new PrefabGUID(484167491); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Throw = new PrefabGUID(-543136108); public static readonly PrefabGUID AB_Militia_Glassblower_GlassRain_Trigger = new PrefabGUID(892476052); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_AbilityGroup = new PrefabGUID(890007919); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Buff = new PrefabGUID(1312286201); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Cast = new PrefabGUID(-574135336); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_HitBuff = new PrefabGUID(604006167); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_Projectile = new PrefabGUID(706976478); public static readonly PrefabGUID AB_Militia_Glassblower_MirrorShield_RotationBuff = new PrefabGUID(796519131); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Cast = new PrefabGUID(-454402264); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Dash = new PrefabGUID(1502309335); public static readonly PrefabGUID AB_Militia_Glassblower_WindDash_Group = new PrefabGUID(-225237355); public static readonly PrefabGUID AB_Militia_GlassBreakable_CoolingTransition_Buff = new PrefabGUID(1173675117); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_01 = new PrefabGUID(404189245); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_02 = new PrefabGUID(-37316700); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Buff_03 = new PrefabGUID(1899203717); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_01 = new PrefabGUID(-1421529641); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_02 = new PrefabGUID(-650348335); public static readonly PrefabGUID AB_Militia_GlassBreakable_DelayDestroy_Hard_Buff_03 = new PrefabGUID(-1859953993); public static readonly PrefabGUID AB_Militia_GlassBreakable_HitTarget_Buff = new PrefabGUID(-129444122); public static readonly PrefabGUID AB_Militia_GlassBreakable_Projectile = new PrefabGUID(-1341014040); public static readonly PrefabGUID AB_Militia_GlassBreakableHot_Lifetime_Buff = new PrefabGUID(1353811141); public static readonly PrefabGUID AB_Militia_GlassBreakableHot_Summon = new PrefabGUID(953109020); public static readonly PrefabGUID AB_Militia_Guard_Block_AbilityGroup = new PrefabGUID(-485166585); public static readonly PrefabGUID AB_Militia_Guard_Block_Buff = new PrefabGUID(-1127662277); public static readonly PrefabGUID AB_Militia_Guard_Block_Cast = new PrefabGUID(1593328493); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Cast01 = new PrefabGUID(-573899745); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Cast02 = new PrefabGUID(351513532); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Group = new PrefabGUID(931534835); public static readonly PrefabGUID AB_Militia_Guard_MeleeAttack_Hit = new PrefabGUID(965049893); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Cast01 = new PrefabGUID(192620323); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Group = new PrefabGUID(-668603830); public static readonly PrefabGUID AB_Militia_Guard_ShieldAttack_Hit = new PrefabGUID(-1135846637); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Area = new PrefabGUID(445894978); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Cast = new PrefabGUID(174230189); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostNova_Group = new PrefabGUID(1624827356); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostPresence_Hard_Debuff = new PrefabGUID(1023788437); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostPresence_Hard_Trigger = new PrefabGUID(-479873253); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_AbilityGroup = new PrefabGUID(308360499); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_Buff = new PrefabGUID(788971409); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_Cast = new PrefabGUID(-970634100); public static readonly PrefabGUID AB_Militia_Guard_VBlood_FrostShield_IceCone = new PrefabGUID(-841278979); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Cast = new PrefabGUID(-923781186); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Group = new PrefabGUID(-1110188840); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Cast = new PrefabGUID(-707993837); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Group = new PrefabGUID(-1634136571); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Hard_Projectile = new PrefabGUID(-414888089); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBoltsThrow_Projectile = new PrefabGUID(-1598751634); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_AbilityGroup = new PrefabGUID(-743963442); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_Cast = new PrefabGUID(-324287935); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_Hit = new PrefabGUID(628554069); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreaker_WasTargetedBuff = new PrefabGUID(-411910491); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_AbilityGroup = new PrefabGUID(1607170837); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_Cast = new PrefabGUID(-1354845346); public static readonly PrefabGUID AB_Militia_Guard_VBlood_IceBreakerInit_IceBreakerBuff = new PrefabGUID(-959722752); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_AbilityGroup = new PrefabGUID(-841402173); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Cast01 = new PrefabGUID(2037904539); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Cast02 = new PrefabGUID(53607009); public static readonly PrefabGUID AB_Militia_Guard_VBlood_MeleeAttack_Hit = new PrefabGUID(423899989); public static readonly PrefabGUID AB_Militia_Heavy_Dash_AbilityGroup = new PrefabGUID(892342913); public static readonly PrefabGUID AB_Militia_Heavy_Dash_Cast = new PrefabGUID(-1683497788); public static readonly PrefabGUID AB_Militia_Heavy_Dash_Phase = new PrefabGUID(1329828024); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_AbilityGroup = new PrefabGUID(940440404); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_Buff = new PrefabGUID(-1181427780); public static readonly PrefabGUID AB_Militia_Heavy_DirectionalShield_Cast = new PrefabGUID(-1895487398); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Cast = new PrefabGUID(-1873368898); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Group = new PrefabGUID(-1528770669); public static readonly PrefabGUID AB_Militia_Heavy_MeleeAttack_Hit = new PrefabGUID(213579884); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Cast = new PrefabGUID(2095640768); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Group = new PrefabGUID(951831242); public static readonly PrefabGUID AB_Militia_Heavy_ShieldBash_Hit = new PrefabGUID(734492476); public static readonly PrefabGUID AB_Militia_Horseman_AbilityGroup = new PrefabGUID(-1077139800); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_AbilityGroup = new PrefabGUID(-1843850355); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_ApproachBuff = new PrefabGUID(589883804); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Cast = new PrefabGUID(-464739015); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Hit = new PrefabGUID(1946864385); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_AbilityGroup = new PrefabGUID(1660777757); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_ApproachBuff = new PrefabGUID(850080231); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_Cast = new PrefabGUID(576955485); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Left_Hit = new PrefabGUID(1849140734); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_AbilityGroup = new PrefabGUID(262116525); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_Cast = new PrefabGUID(-1796589505); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Right_Hit = new PrefabGUID(-1957148417); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Side_Trigger = new PrefabGUID(395023610); public static readonly PrefabGUID AB_Militia_Horseman_AttackChain_Trigger = new PrefabGUID(1191742412); public static readonly PrefabGUID AB_Militia_Horseman_Cast = new PrefabGUID(-1683127942); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_AbilityGroup = new PrefabGUID(-1630648333); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_Cast = new PrefabGUID(-1920135116); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_Phase = new PrefabGUID(-1524980318); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_RiderBuff = new PrefabGUID(1039139361); public static readonly PrefabGUID AB_Militia_Horseman_Mount_Charge_RiderTrigger = new PrefabGUID(-547258856); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_AbilityGroup = new PrefabGUID(-680710725); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_Buff = new PrefabGUID(1942991761); public static readonly PrefabGUID AB_Militia_Horseman_Mount_RunAway_Cast = new PrefabGUID(-1384842305); public static readonly PrefabGUID AB_Militia_Horseman_Projectile = new PrefabGUID(-958364971); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_AbilityGroup = new PrefabGUID(-342380924); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_Cast = new PrefabGUID(1708061035); public static readonly PrefabGUID AB_Militia_Horseman_StepAttack_Hit = new PrefabGUID(1254730673); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_AbilityGroup = new PrefabGUID(-1162366175); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_Cast = new PrefabGUID(-221807068); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_SelfBuff = new PrefabGUID(2140175849); public static readonly PrefabGUID AB_Militia_Horseman_UnlockRotation_TargetBuff = new PrefabGUID(2103090040); public static readonly PrefabGUID AB_Militia_Hound_Alert_Buff = new PrefabGUID(-1132928988); public static readonly PrefabGUID AB_Militia_Hound_Bite_AbilityGroup = new PrefabGUID(340577476); public static readonly PrefabGUID AB_Militia_Hound_Bite_Cast = new PrefabGUID(-297222494); public static readonly PrefabGUID AB_Militia_Hound_Bite_Hit = new PrefabGUID(199486033); public static readonly PrefabGUID AB_Militia_Hound_DashAttack = new PrefabGUID(1506455250); public static readonly PrefabGUID AB_Militia_Hound_DashAttack_AbilityGroup = new PrefabGUID(-215712550); public static readonly PrefabGUID AB_Militia_Hound_DashAttack_Cast = new PrefabGUID(-645622724); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_AbilityGroup = new PrefabGUID(-1280459867); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Buff = new PrefabGUID(662242066); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Cast = new PrefabGUID(-22951360); public static readonly PrefabGUID AB_Militia_Hound_HoundMark_Hit = new PrefabGUID(1283034946); public static readonly PrefabGUID AB_Militia_Hound_Howl_AbilityGroup = new PrefabGUID(-1055527085); public static readonly PrefabGUID AB_Militia_Hound_Howl_Cast = new PrefabGUID(1067524861); public static readonly PrefabGUID AB_Militia_Hound_Howl_Channel = new PrefabGUID(-499038542); public static readonly PrefabGUID AB_Militia_Hound_Howl_Hit = new PrefabGUID(-455939255); public static readonly PrefabGUID AB_Militia_Hound_QuickDash_AbilityGroup = new PrefabGUID(2031950279); public static readonly PrefabGUID AB_Militia_Hound_QuickDash_Cast = new PrefabGUID(620616091); public static readonly PrefabGUID AB_Militia_Hound_Rage_Buff = new PrefabGUID(-478396623); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AbilityGroup = new PrefabGUID(1707593926); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AllyBuff = new PrefabGUID(-1245007017); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_AllyHit = new PrefabGUID(-28502485); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_Cast = new PrefabGUID(-58463973); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_Hit = new PrefabGUID(-1267678631); public static readonly PrefabGUID AB_Militia_Hound_RequestAid_TargetBuff = new PrefabGUID(-873378712); public static readonly PrefabGUID AB_Militia_Hound_StepBack_AbilityGroup = new PrefabGUID(-1291643146); public static readonly PrefabGUID AB_Militia_Hound_StepBack_Cast = new PrefabGUID(1513148856); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_AbilityGroup = new PrefabGUID(-91811178); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Buff = new PrefabGUID(935288403); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Cast = new PrefabGUID(-2072247581); public static readonly PrefabGUID AB_Militia_HoundMaster_Command_Hit = new PrefabGUID(1445596591); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_AbilityGroup = new PrefabGUID(-1449494345); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_Cast = new PrefabGUID(-305287896); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_ChannelBuff = new PrefabGUID(-888209286); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_Dash = new PrefabGUID(1475180815); public static readonly PrefabGUID AB_Militia_HoundMaster_Heal_TargetBuff = new PrefabGUID(1939626064); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_AbilityGroup = new PrefabGUID(1219885177); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Buff = new PrefabGUID(1520432556); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Cast = new PrefabGUID(-1877352340); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Cast_Repetition = new PrefabGUID(588443066); public static readonly PrefabGUID AB_Militia_HoundMaster_QuickShot_Projectile = new PrefabGUID(2026550367); public static readonly PrefabGUID AB_Militia_HoundMaster_Roll_AbilityGroup = new PrefabGUID(-1416105872); public static readonly PrefabGUID AB_Militia_HoundMaster_Roll_CastAndRoll = new PrefabGUID(161433905); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_AbilityGroup = new PrefabGUID(-367310449); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_Cast = new PrefabGUID(163497335); public static readonly PrefabGUID AB_Militia_HoundMaster_Shove_Hit = new PrefabGUID(-1463095875); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_AbilityGroup = new PrefabGUID(479773974); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_Cast = new PrefabGUID(332470331); public static readonly PrefabGUID AB_Militia_HoundMaster_SpreadShot_Projectile = new PrefabGUID(1463179857); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_AbilityGroup = new PrefabGUID(1648996357); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_Cast = new PrefabGUID(1571738183); public static readonly PrefabGUID AB_Militia_HoundMaster_Tackel_Dash = new PrefabGUID(1463506513); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_AbilityGroup = new PrefabGUID(-1843696472); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_Cast = new PrefabGUID(1691670833); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_Dash = new PrefabGUID(-1248926133); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Left_PostCastBuff = new PrefabGUID(-455882178); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_AbilityGroup = new PrefabGUID(1946568656); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_Cast = new PrefabGUID(180216083); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_Dash = new PrefabGUID(-1281589671); public static readonly PrefabGUID AB_Militia_Leader_DodgeRoll_Right_PostCastBuff = new PrefabGUID(-808968507); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_AbilityGroup = new PrefabGUID(-930424159); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Cast = new PrefabGUID(396234093); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_AbilityGroup = new PrefabGUID(-2003945269); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_Cast = new PrefabGUID(-1166416993); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_Travel = new PrefabGUID(-1484576719); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_TravelEnd = new PrefabGUID(993943966); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Hard_TravelHit = new PrefabGUID(-417501080); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_AbilityGroup = new PrefabGUID(-2015856259); public static readonly PrefabGUID Ab_Militia_Leader_LeapAttack_Init_Buff = new PrefabGUID(1185694153); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_Cast = new PrefabGUID(-1006504748); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Init_Hit = new PrefabGUID(-1269635519); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_Travel = new PrefabGUID(494773823); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_TravelEnd = new PrefabGUID(471452481); public static readonly PrefabGUID AB_Militia_Leader_LeapAttack_TravelHit = new PrefabGUID(-531409417); public static readonly PrefabGUID Ab_Militia_Leader_LeapAttack_WasTargetedBuff = new PrefabGUID(1012806549); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_Hard_SmallFireArea = new PrefabGUID(-1570706124); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_AbilityGroup = new PrefabGUID(-213757827); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Cast = new PrefabGUID(-1606487203); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Channel = new PrefabGUID(158253791); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Hit = new PrefabGUID(-449678721); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_AbilityGroup = new PrefabGUID(-1802655130); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_Cast = new PrefabGUID(-2020799175); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_Init_Trigger = new PrefabGUID(-1043699905); public static readonly PrefabGUID AB_Militia_Leader_Whirlwind_v2_SelfKnockback = new PrefabGUID(-268526092); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Cast01 = new PrefabGUID(-1637687485); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Cast02 = new PrefabGUID(674787677); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Group = new PrefabGUID(994921501); public static readonly PrefabGUID AB_Militia_Light_MeleeAttack_Hit = new PrefabGUID(1917511902); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_AbilityGroup = new PrefabGUID(764619540); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Cast = new PrefabGUID(-1057332181); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Group = new PrefabGUID(-1689067072); public static readonly PrefabGUID AB_Militia_LightArrow_BasicShot_Projectile = new PrefabGUID(1407622008); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_AbilityGroup = new PrefabGUID(-202704002); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Cast = new PrefabGUID(1533808657); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Group = new PrefabGUID(1714996121); public static readonly PrefabGUID AB_Militia_LightArrow_Dash_Phase = new PrefabGUID(-1767824623); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_AbilityGroup = new PrefabGUID(1181965808); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_Cast = new PrefabGUID(210514978); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_Projectile = new PrefabGUID(1827936279); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup = new PrefabGUID(-909814249); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup2 = new PrefabGUID(-519858706); public static readonly PrefabGUID AB_Militia_LightArrow_Hard_GuidedArrow_ProjectileFollowup3 = new PrefabGUID(1811893830); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_AbilityGroup = new PrefabGUID(-1509483896); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_Cast = new PrefabGUID(-270716581); public static readonly PrefabGUID AB_Militia_LightArrow_HealShot_Projectile = new PrefabGUID(1694590705); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_AbilityGroup = new PrefabGUID(1574404388); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_Cast = new PrefabGUID(-333790766); public static readonly PrefabGUID AB_Militia_LightArrow_MultiShot_Hard_Projectile = new PrefabGUID(2055611868); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_AbilityGroup = new PrefabGUID(-1282136902); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_Cast = new PrefabGUID(1122509081); public static readonly PrefabGUID AB_Militia_LightArrow_QuickShot_Projectile = new PrefabGUID(232390913); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_AbilityGroup = new PrefabGUID(-1286987800); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Amplify = new PrefabGUID(1545163783); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Cast = new PrefabGUID(-840453877); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Group = new PrefabGUID(761268127); public static readonly PrefabGUID AB_Militia_LightArrow_Snipe_Projectile = new PrefabGUID(1003207270); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_AbilityGroup = new PrefabGUID(336380612); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_Cast = new PrefabGUID(437106438); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_Summon = new PrefabGUID(-1191185326); public static readonly PrefabGUID AB_Militia_LightArrow_SpawnMinions_SummonPerPlayer = new PrefabGUID(-436382828); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_AbilityGroup = new PrefabGUID(-494771621); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Cast = new PrefabGUID(-1528004826); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_ClusterAoE = new PrefabGUID(2108594975); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Group = new PrefabGUID(-866526980); public static readonly PrefabGUID AB_Militia_LightArrow_Throw_Throw = new PrefabGUID(-1734694879); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyQuickShot_Cast = new PrefabGUID(-1922271934); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyQuickShot_Group = new PrefabGUID(-708850140); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyShot_Cast = new PrefabGUID(-1138817994); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyShot_Group = new PrefabGUID(617823552); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Cast = new PrefabGUID(878744625); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_ClusterAoE = new PrefabGUID(1810579004); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Group = new PrefabGUID(-891060764); public static readonly PrefabGUID AB_Militia_LightArrow_UnsteadyThrow_Throw = new PrefabGUID(1451985039); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Cast = new PrefabGUID(1747170224); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Group = new PrefabGUID(-1102042167); public static readonly PrefabGUID AB_Militia_Longbow_FireArrow_Projectile = new PrefabGUID(1235239149); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Cast = new PrefabGUID(1943859459); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Group = new PrefabGUID(-351745987); public static readonly PrefabGUID AB_Militia_Longbowman_RangedAttack_Projectile = new PrefabGUID(-83871442); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_AbilityGroup = new PrefabGUID(-241312231); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Cast = new PrefabGUID(-1198099916); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_AbilityGroup = new PrefabGUID(976341724); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Cast = new PrefabGUID(1718899753); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Hit = new PrefabGUID(-619949765); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hard_Projectile = new PrefabGUID(-2051750779); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_AbilityGroup = new PrefabGUID(-1228302737); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Cast = new PrefabGUID(1319195215); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Hit = new PrefabGUID(-995058779); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_HardFollowup_Projectile = new PrefabGUID(1258357382); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Hit = new PrefabGUID(2088724204); public static readonly PrefabGUID AB_Militia_MeleeHorizontal_Projectile = new PrefabGUID(1458430574); public static readonly PrefabGUID AB_Militia_MeleeStraight_AbilityGroup = new PrefabGUID(2142000031); public static readonly PrefabGUID AB_Militia_MeleeStraight_Cast = new PrefabGUID(760468527); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_AbilityGroup = new PrefabGUID(-746972983); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Cast = new PrefabGUID(1667340231); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Hit = new PrefabGUID(179409495); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_LaunchBuff = new PrefabGUID(-476290072); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hard_Projectile = new PrefabGUID(-847210019); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_AbilityGroup = new PrefabGUID(-735966107); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Cast = new PrefabGUID(1130550623); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Hit = new PrefabGUID(635022562); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_LaunchBuff = new PrefabGUID(1699536172); public static readonly PrefabGUID AB_Militia_MeleeStraight_HardFollowup_Projectile = new PrefabGUID(-2088994151); public static readonly PrefabGUID AB_Militia_MeleeStraight_Hit = new PrefabGUID(309989912); public static readonly PrefabGUID AB_Militia_MeleeStraight_LaunchBuff = new PrefabGUID(-992007541); public static readonly PrefabGUID AB_Militia_MeleeStraight_Projectile = new PrefabGUID(-1757482429); public static readonly PrefabGUID AB_Militia_Miner_Alert_Buff = new PrefabGUID(731131812); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Cast01 = new PrefabGUID(-1743412664); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Cast02 = new PrefabGUID(735200332); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Group01 = new PrefabGUID(-2107123661); public static readonly PrefabGUID AB_Militia_Miner_MeleeAttack_Hit01 = new PrefabGUID(1098003053); public static readonly PrefabGUID AB_Militia_Miner_Mine_AbilityGroup = new PrefabGUID(1599972576); public static readonly PrefabGUID AB_Militia_Miner_Mine_Cast = new PrefabGUID(-636478178); public static readonly PrefabGUID AB_Militia_Miner_Mine_Hit = new PrefabGUID(1523838552); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_AbilityGroup = new PrefabGUID(-1065281102); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_Buff = new PrefabGUID(1380141337); public static readonly PrefabGUID AB_Militia_Miner_OnAggro_Cast = new PrefabGUID(-1333304890); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Cast = new PrefabGUID(858823255); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Group = new PrefabGUID(-1418783710); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_HoldSteady_Buff = new PrefabGUID(-1946078755); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Projectile = new PrefabGUID(305403942); public static readonly PrefabGUID AB_Militia_Rider_Crossbow_Trigger = new PrefabGUID(191767448); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_AbilityGroup = new PrefabGUID(-198012170); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_Cast = new PrefabGUID(-103069801); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_01 = new PrefabGUID(1945387500); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_02 = new PrefabGUID(1012191762); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_03 = new PrefabGUID(703829574); public static readonly PrefabGUID AB_Militia_Scribe_CuttingParchment02_SmallProjectile_04 = new PrefabGUID(-1821199754); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_AbilityGroup = new PrefabGUID(-592301846); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_Cast = new PrefabGUID(-1103781868); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_Hit = new PrefabGUID(212570667); public static readonly PrefabGUID AB_Militia_Scribe_InkExplosion_MinionSpawn = new PrefabGUID(1597618627); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_AbilityGroup = new PrefabGUID(-1922948406); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_Cast = new PrefabGUID(-848924313); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_EnrageBuff = new PrefabGUID(1491093272); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkFinishBuff = new PrefabGUID(2088711774); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkPreTravelBuff = new PrefabGUID(204128754); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkPuddle = new PrefabGUID(369298666); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_InkTravelBuff = new PrefabGUID(-2098450523); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_PostCastBuff = new PrefabGUID(-671703185); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ScribeChannelBuff = new PrefabGUID(1947371829); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ScribeFinishBuff = new PrefabGUID(1160005762); public static readonly PrefabGUID AB_Militia_Scribe_InkFuel_ShieldBuff = new PrefabGUID(-352213790); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_AbilityGroup = new PrefabGUID(-1104025162); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Cast01 = new PrefabGUID(1307917235); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Cast02 = new PrefabGUID(764115278); public static readonly PrefabGUID AB_Militia_Scribe_QuickAttack_Projectile = new PrefabGUID(-361579486); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_AbilityGroup = new PrefabGUID(-186690512); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_Cast = new PrefabGUID(1850455899); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_MinionSpawn = new PrefabGUID(393445142); public static readonly PrefabGUID AB_Militia_Scribe_RangedAttack_Projectile = new PrefabGUID(-2132516576); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_AbilityGroup = new PrefabGUID(2019689688); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_Cast_01 = new PrefabGUID(1138860033); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_Cast_02 = new PrefabGUID(1279578598); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_HitBuff = new PrefabGUID(2117331927); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_MainProjectile_01 = new PrefabGUID(1145480062); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_MainProjectile_02 = new PrefabGUID(1333737747); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_ProjectileDelay_01 = new PrefabGUID(855984076); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_ProjectileDelay_02 = new PrefabGUID(-1826602684); public static readonly PrefabGUID AB_Militia_Scribe_RazorParchment_SmallProjectile = new PrefabGUID(-1032289114); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_AbilityGroup = new PrefabGUID(-1332977411); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_Buff = new PrefabGUID(2005485465); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Init_Cast = new PrefabGUID(-610093433); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Throw = new PrefabGUID(1697972242); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_AbilityGroup = new PrefabGUID(-1008562275); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_Cast = new PrefabGUID(1702459723); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_End = new PrefabGUID(-1582474138); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_Phase = new PrefabGUID(-90853357); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Travel_PrePhase = new PrefabGUID(-851974236); public static readonly PrefabGUID AB_Militia_Scribe_WhackAScribe_Trigger = new PrefabGUID(-1812720098); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Cast01 = new PrefabGUID(1554611074); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Cast02 = new PrefabGUID(1398618013); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Group = new PrefabGUID(471046053); public static readonly PrefabGUID AB_Militia_Torchbearer_MeleeAttack_Hit = new PrefabGUID(-365270957); public static readonly PrefabGUID AB_Militia_TorchThrow_AbilityGroup = new PrefabGUID(-116877786); public static readonly PrefabGUID AB_Militia_TorchThrow_Cast = new PrefabGUID(441300272); public static readonly PrefabGUID AB_Militia_TorchThrow_Throw = new PrefabGUID(-1324026835); public static readonly PrefabGUID AB_Militia_Whirlwind_AbilityGroup = new PrefabGUID(-1077498120); public static readonly PrefabGUID AB_Militia_Whirlwind_Cast = new PrefabGUID(1598555241); public static readonly PrefabGUID AB_Militia_Whirlwind_Channel = new PrefabGUID(-1370452228); public static readonly PrefabGUID AB_Militia_Whirlwind_Hit = new PrefabGUID(1238803703); public static readonly PrefabGUID AB_Monster_DestroyBeams_Trigger = new PrefabGUID(-795589491); public static readonly PrefabGUID AB_Monster_ElectricField_AbilityGroup = new PrefabGUID(-1503327574); public static readonly PrefabGUID AB_Monster_ElectricField_BouncerObject = new PrefabGUID(581689067); public static readonly PrefabGUID AB_Monster_ElectricField_Cast = new PrefabGUID(-698139719); public static readonly PrefabGUID AB_Monster_ElectricField_DurationBuff = new PrefabGUID(-495279978); public static readonly PrefabGUID AB_Monster_ElectricField_Hit = new PrefabGUID(-2124868463); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow1 = new PrefabGUID(-1531437559); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow2 = new PrefabGUID(-959123655); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow3 = new PrefabGUID(1144224386); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow4 = new PrefabGUID(1805905502); public static readonly PrefabGUID AB_Monster_ElectricField_OrbThrow5 = new PrefabGUID(-930442278); public static readonly PrefabGUID AB_Monster_ElectricField_PulseThrow = new PrefabGUID(-325647225); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger1 = new PrefabGUID(1083083247); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger2 = new PrefabGUID(-504585202); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger3 = new PrefabGUID(-838376627); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger4 = new PrefabGUID(461639256); public static readonly PrefabGUID AB_Monster_ElectricField_Trigger5 = new PrefabGUID(-1552062815); public static readonly PrefabGUID AB_Monster_EnergyBeam_DestroyPairedBeam = new PrefabGUID(-1312382778); public static readonly PrefabGUID AB_Monster_FinalMelee_AbilityGroup = new PrefabGUID(-1659620404); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_01 = new PrefabGUID(1701613198); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_02 = new PrefabGUID(859228072); public static readonly PrefabGUID AB_Monster_FinalMelee_Cast_03 = new PrefabGUID(1838535773); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_01 = new PrefabGUID(1819163908); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_02 = new PrefabGUID(1629951915); public static readonly PrefabGUID AB_Monster_FinalMelee_Hit_03 = new PrefabGUID(-1284189939); public static readonly PrefabGUID AB_Monster_FinalMelee_Phase = new PrefabGUID(-1823978654); public static readonly PrefabGUID AB_Monster_FinalMelee_PostTravelBuff = new PrefabGUID(1841167047); public static readonly PrefabGUID AB_Monster_FinalProjectile_AbilityGroup = new PrefabGUID(-741006712); public static readonly PrefabGUID AB_Monster_FinalProjectile_Cast = new PrefabGUID(374856501); public static readonly PrefabGUID AB_Monster_FinalProjectile_IncapacitateBuff = new PrefabGUID(208530214); public static readonly PrefabGUID AB_Monster_FinalProjectile_Projectile01 = new PrefabGUID(171128206); public static readonly PrefabGUID AB_Monster_FinalProjectile_Projectile02 = new PrefabGUID(288386871); public static readonly PrefabGUID AB_Monster_FinalStage_AreaKnockback = new PrefabGUID(-55604971); public static readonly PrefabGUID AB_Monster_Grab_AbilityGroup = new PrefabGUID(723715376); public static readonly PrefabGUID AB_Monster_Grab_Cast = new PrefabGUID(-856920180); public static readonly PrefabGUID AB_Monster_Grab_FakeProjectile = new PrefabGUID(74664835); public static readonly PrefabGUID AB_Monster_Grab_FakeTarget = new PrefabGUID(1807041512); public static readonly PrefabGUID AB_Monster_Grab_FakeTargetHighPrio = new PrefabGUID(1253385950); public static readonly PrefabGUID AB_Monster_Grab_HasGrabedBuff = new PrefabGUID(1120701436); public static readonly PrefabGUID AB_Monster_Grab_Hit = new PrefabGUID(1220632816); public static readonly PrefabGUID AB_Monster_Grab_TargetGrabedBuff = new PrefabGUID(-759087433); public static readonly PrefabGUID AB_Monster_GroundSlam_Hit = new PrefabGUID(-1683451014); public static readonly PrefabGUID AB_Monster_GroundSlam_Hitv2 = new PrefabGUID(-1325955146); public static readonly PrefabGUID AB_Monster_GroundSlam_LaunchBuff = new PrefabGUID(-419794791); public static readonly PrefabGUID AB_Monster_HomePos_FakeTarget = new PrefabGUID(1529452061); public static readonly PrefabGUID AB_Monster_LightningPillar_AggroBuff = new PrefabGUID(-1633106899); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaDamageBuff = new PrefabGUID(373120229); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaEffectBuff = new PrefabGUID(-2061047741); public static readonly PrefabGUID AB_Monster_LightningPillar_AreaInitBuff = new PrefabGUID(-682085199); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_AbilityGroup = new PrefabGUID(828954334); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_Buff = new PrefabGUID(-1108748292); public static readonly PrefabGUID AB_Monster_LightningPillar_SpeedBuff_Cast = new PrefabGUID(-2078217582); public static readonly PrefabGUID AB_Monster_LightningShield_AbilityGroup = new PrefabGUID(1065629794); public static readonly PrefabGUID AB_Monster_LightningShield_AreaKnockback = new PrefabGUID(-1639043330); public static readonly PrefabGUID AB_Monster_LightningShield_Buff = new PrefabGUID(-2118254056); public static readonly PrefabGUID AB_Monster_LightningShield_Cast = new PrefabGUID(-1330064109); public static readonly PrefabGUID AB_Monster_LightningShield_Projectile = new PrefabGUID(2064540259); public static readonly PrefabGUID AB_Monster_LightningSlam_AreaKnockback = new PrefabGUID(620098819); public static readonly PrefabGUID AB_Monster_LightningSlam_DownedIncapacitate = new PrefabGUID(1322041767); public static readonly PrefabGUID AB_Monster_LightningSlam_InAirPhase = new PrefabGUID(1890619022); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_AbilityGroup = new PrefabGUID(1492585365); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_Cast = new PrefabGUID(-269922264); public static readonly PrefabGUID AB_Monster_LightningSlam_Land_Phase = new PrefabGUID(1938864208); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_AbilityGroup = new PrefabGUID(1795073911); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_Cast = new PrefabGUID(747401276); public static readonly PrefabGUID AB_Monster_LightningSlam_LiftOff_Phase = new PrefabGUID(817492469); public static readonly PrefabGUID AB_Monster_LightningSlam_PostTravelBuff = new PrefabGUID(-519019712); public static readonly PrefabGUID AB_Monster_LightningStorm_AbilityGroup = new PrefabGUID(-820078889); public static readonly PrefabGUID AB_Monster_LightningStorm_Buff = new PrefabGUID(1904401829); public static readonly PrefabGUID AB_Monster_LightningStorm_Cast = new PrefabGUID(1050345517); public static readonly PrefabGUID AB_Monster_LightningStorm_Throw = new PrefabGUID(407145118); public static readonly PrefabGUID AB_Monster_MeleeAttack_AbilityGroup = new PrefabGUID(1853611622); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_01 = new PrefabGUID(-1589722260); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_02 = new PrefabGUID(1322396789); public static readonly PrefabGUID AB_Monster_MeleeAttack_Cast_03 = new PrefabGUID(-1368555899); public static readonly PrefabGUID AB_Monster_MeleeAttack_Hit_03 = new PrefabGUID(-432236331); public static readonly PrefabGUID AB_Monster_MeleeAttack_Shockwave_Projectile = new PrefabGUID(11146335); public static readonly PrefabGUID AB_Monster_MeleeAttack_ShockwaveWide_Projectile = new PrefabGUID(663140965); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger01 = new PrefabGUID(1065401644); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger02 = new PrefabGUID(-1229169327); public static readonly PrefabGUID AB_Monster_MeleeAttack_Trigger03 = new PrefabGUID(455342956); public static readonly PrefabGUID AB_Monster_PierceFinnish_AbilityGroup = new PrefabGUID(1693720077); public static readonly PrefabGUID AB_Monster_PierceFinnish_Cast = new PrefabGUID(724453123); public static readonly PrefabGUID AB_Monster_PierceFinnish_LaunchBuff = new PrefabGUID(-842301264); public static readonly PrefabGUID AB_Monster_PierceFinnish_StunBuff = new PrefabGUID(-357888166); public static readonly PrefabGUID AB_Monster_PierceShock_AbilityGroup = new PrefabGUID(164595507); public static readonly PrefabGUID AB_Monster_PierceShock_AggroBuff = new PrefabGUID(152635966); public static readonly PrefabGUID AB_Monster_PierceShock_Cast = new PrefabGUID(-2088048316); public static readonly PrefabGUID AB_Monster_PierceShock_DamageBuff = new PrefabGUID(-2052458973); public static readonly PrefabGUID AB_Monster_PierceShock_Dash = new PrefabGUID(1565998489); public static readonly PrefabGUID AB_Monster_PierceShock_HasGrabedBuff = new PrefabGUID(-1419903558); public static readonly PrefabGUID AB_Monster_PierceShock_PostDash = new PrefabGUID(-2000878892); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_AbilityGroup = new PrefabGUID(257418700); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_Cast = new PrefabGUID(911471600); public static readonly PrefabGUID AB_Monster_PierceShock_Swing_Hit = new PrefabGUID(348375790); public static readonly PrefabGUID AB_Monster_PierceShock_TargetGrabedBuff = new PrefabGUID(745999782); public static readonly PrefabGUID AB_Monster_Return_AbilityGroup = new PrefabGUID(540661576); public static readonly PrefabGUID AB_Monster_Return_Cast = new PrefabGUID(1004215409); public static readonly PrefabGUID AB_Monster_Stomp_AbilityGroup = new PrefabGUID(764489448); public static readonly PrefabGUID AB_Monster_Stomp_CableBuff = new PrefabGUID(-1679548310); public static readonly PrefabGUID AB_Monster_Stomp_Cast_01 = new PrefabGUID(-1303936630); public static readonly PrefabGUID AB_Monster_Stomp_Hit_01 = new PrefabGUID(1871704091); public static readonly PrefabGUID AB_Monster_Stomp_Shockwave_Projectile = new PrefabGUID(-1028027594); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_AbilityGroup = new PrefabGUID(-2127334043); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Cast = new PrefabGUID(1586504815); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Channel = new PrefabGUID(-684344508); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Minion_Buff = new PrefabGUID(68807609); public static readonly PrefabGUID AB_Monster_SummonLightningPillars_Summon = new PrefabGUID(598033946); public static readonly PrefabGUID AB_Monster_Throw_AbilityGroup = new PrefabGUID(-2066895745); public static readonly PrefabGUID AB_Monster_Throw_Cast = new PrefabGUID(-599315676); public static readonly PrefabGUID AB_Monster_Throw_LaunchBuff = new PrefabGUID(-1510240353); public static readonly PrefabGUID AB_Monster_Throw_StunBuff = new PrefabGUID(1559397587); public static readonly PrefabGUID AB_Monster_WarpSlam_AbilityGroup = new PrefabGUID(-2054557525); public static readonly PrefabGUID AB_Monster_WarpSlam_Cast = new PrefabGUID(-2017992195); public static readonly PrefabGUID AB_Monster_WarpSlam_DownedIncapacitate = new PrefabGUID(1433858254); public static readonly PrefabGUID AB_Monster_WarpSlam_Hit = new PrefabGUID(-1377688942); public static readonly PrefabGUID AB_Monster_WarpSlam_LaunchBuff = new PrefabGUID(-1637416665); public static readonly PrefabGUID AB_Monster_WarpSlam_Phase = new PrefabGUID(456846269); public static readonly PrefabGUID AB_Monster_WarpSlam_PostTravelBuff = new PrefabGUID(-1325587588); public static readonly PrefabGUID AB_Moose_AreaAttack_Cast = new PrefabGUID(-1526943133); public static readonly PrefabGUID AB_Moose_AreaAttack_Group = new PrefabGUID(-764767694); public static readonly PrefabGUID AB_Moose_AreaAttack_Hit = new PrefabGUID(-199922219); public static readonly PrefabGUID AB_Moose_Charge_AbilityGroup = new PrefabGUID(1883230955); public static readonly PrefabGUID AB_Moose_Charge_Cast = new PrefabGUID(-588309271); public static readonly PrefabGUID AB_Moose_Charge_Phase = new PrefabGUID(1922676092); public static readonly PrefabGUID AB_Moose_Charge_Winter_AbilityGroup = new PrefabGUID(250913160); public static readonly PrefabGUID AB_Moose_Charge_Winter_Cast = new PrefabGUID(992541510); public static readonly PrefabGUID AB_Moose_Charge_Winter_Phase = new PrefabGUID(1651004222); public static readonly PrefabGUID AB_Morgana_HealingOrb_Throw = new PrefabGUID(1986876497); public static readonly PrefabGUID AB_Morgana_HealingOrb_Trigger = new PrefabGUID(2117206000); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_AbilityGroup = new PrefabGUID(-79098693); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_Cast = new PrefabGUID(-168113643); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_Hit = new PrefabGUID(1802838590); public static readonly PrefabGUID AB_Mutant_FleshGolem_BodySlam_LaunchBuff = new PrefabGUID(-1435093992); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_AbilityGroup = new PrefabGUID(340686786); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Cast = new PrefabGUID(-1598726478); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_ChargeBuff = new PrefabGUID(-662560439); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Hit = new PrefabGUID(-987873399); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_PostCast = new PrefabGUID(-1196802042); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Scream_AbilityGroup = new PrefabGUID(-1766338327); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_Scream_Cast = new PrefabGUID(539707204); public static readonly PrefabGUID AB_Mutant_FleshGolem_Bulldoze_WallHitBuff = new PrefabGUID(-284417829); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_AbilityGroup = new PrefabGUID(1459248190); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Cast = new PrefabGUID(759266926); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_AbilityGroup = new PrefabGUID(-1485105952); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_Cast = new PrefabGUID(-592133725); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_DownedStun = new PrefabGUID(-1661817080); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Followup_Hit = new PrefabGUID(-610003173); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Hit01 = new PrefabGUID(-319182672); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_Hit02 = new PrefabGUID(1416844066); public static readonly PrefabGUID AB_Mutant_FleshGolem_Grab_HitBuff = new PrefabGUID(-840600586); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-736079997); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_Cast = new PrefabGUID(-1625589635); public static readonly PrefabGUID AB_Mutant_FleshGolem_MeleeAttack_Hit = new PrefabGUID(40416621); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Cast = new PrefabGUID(320549285); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Group = new PrefabGUID(-650383304); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_Hit = new PrefabGUID(240383488); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Cast = new PrefabGUID(298951273); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Group = new PrefabGUID(-822790233); public static readonly PrefabGUID AB_Mutant_Rat_Scratch_MutantBlood_Hit = new PrefabGUID(1568098360); public static readonly PrefabGUID AB_Mutant_Rat_Taunt_Cast = new PrefabGUID(2063778780); public static readonly PrefabGUID AB_Mutant_Rat_Taunt_Group = new PrefabGUID(306615743); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_AbilityGroup = new PrefabGUID(1771061239); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_Cast = new PrefabGUID(-1451329932); public static readonly PrefabGUID AB_Mutant_Spitter_Bash_Hit = new PrefabGUID(-107206286); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_AbilityGroup = new PrefabGUID(1388701732); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Area = new PrefabGUID(-1062725775); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Cast = new PrefabGUID(-1423884099); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_PoisonDebuff = new PrefabGUID(-890471139); public static readonly PrefabGUID AB_Mutant_Spitter_PoisonRain_Throw = new PrefabGUID(-2108180473); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile = new PrefabGUID(1650108830); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_AbilityGroup = new PrefabGUID(1271143604); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_AoE = new PrefabGUID(-1801334178); public static readonly PrefabGUID AB_Mutant_Spitter_Projectile_Cast = new PrefabGUID(1766367215); public static readonly PrefabGUID AB_Mutant_Spitter_Taunt_AbilityGroup = new PrefabGUID(-1038102898); public static readonly PrefabGUID AB_Mutant_Spitter_Taunt_Cast = new PrefabGUID(971867390); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_AbilityGroup = new PrefabGUID(-14207169); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_Cast = new PrefabGUID(-1425324425); public static readonly PrefabGUID AB_Nightlurker_HeavyAttack_Hit = new PrefabGUID(1611321156); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_AbilityGroup = new PrefabGUID(-195118922); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_Cast = new PrefabGUID(-1727733622); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack01_Hit = new PrefabGUID(-1809201998); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_AbilityGroup = new PrefabGUID(1708209167); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_Cast = new PrefabGUID(-1403393783); public static readonly PrefabGUID AB_Nightlurker_MeleeAttack02_Hit = new PrefabGUID(-282333695); public static readonly PrefabGUID AB_Nightlurker_Rush_AbilityGroup = new PrefabGUID(-413591328); public static readonly PrefabGUID AB_Nightlurker_Rush_Buff = new PrefabGUID(505018388); public static readonly PrefabGUID AB_Nightlurker_Rush_Cast = new PrefabGUID(430516423); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_AbilityGroup = new PrefabGUID(175670852); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_Cast = new PrefabGUID(-1947308699); public static readonly PrefabGUID AB_NightMaiden_MeleeAttack_Hit = new PrefabGUID(1733260604); public static readonly PrefabGUID AB_Noctem_Trader_Attack_AbilityGroup = new PrefabGUID(-1981491221); public static readonly PrefabGUID AB_Noctem_Trader_Attack_Cast = new PrefabGUID(1245399064); public static readonly PrefabGUID AB_Noctem_Trader_Attack_Projectile = new PrefabGUID(-1789959759); public static readonly PrefabGUID AB_Nun_AoE_AbilityGroup = new PrefabGUID(1267698255); public static readonly PrefabGUID AB_Nun_AoE_AbilityGroup_ALREADY_EXISTS_2 = new PrefabGUID(919394375); public static readonly PrefabGUID AB_Nun_AoE_ApplyLight_Buff = new PrefabGUID(-225445080); public static readonly PrefabGUID AB_Nun_AoE_Cast = new PrefabGUID(-1327158740); public static readonly PrefabGUID AB_Nun_AoE_Cast_ALREADY_EXISTS_2 = new PrefabGUID(-1056032824); public static readonly PrefabGUID AB_Nun_AoE_Ground = new PrefabGUID(-1314959120); public static readonly PrefabGUID AB_Nun_AoE_Ground_Delay = new PrefabGUID(546255861); public static readonly PrefabGUID AB_Nun_AoE_Ground_Impact = new PrefabGUID(365595489); public static readonly PrefabGUID AB_Nun_AoE_Light_Buff = new PrefabGUID(-1466712470); public static readonly PrefabGUID AB_Nun_AoE_Light_Debuff = new PrefabGUID(178225731); public static readonly PrefabGUID AB_Nun_AoE_Throw = new PrefabGUID(-525653914); public static readonly PrefabGUID AB_Nun_AoE_Throw_ALREADY_EXISTS_2 = new PrefabGUID(-1777782037); public static readonly PrefabGUID AB_Nun_Counter_AbilityGroup = new PrefabGUID(-1725804558); public static readonly PrefabGUID AB_Nun_Counter_Buff = new PrefabGUID(-309950314); public static readonly PrefabGUID AB_Nun_Counter_Cast = new PrefabGUID(-1347852248); public static readonly PrefabGUID AB_Nun_Counter_Hit = new PrefabGUID(1860577222); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_AbilityGroup = new PrefabGUID(605530795); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Cast = new PrefabGUID(124716728); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Projectile = new PrefabGUID(292536976); public static readonly PrefabGUID AB_Nun_HARD_HolyBoltSpray_Spinner = new PrefabGUID(-65352590); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup = new PrefabGUID(54266570); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup_Long = new PrefabGUID(1090673078); public static readonly PrefabGUID AB_Nun_HealingChannel_AbilityGroup_Short = new PrefabGUID(397860291); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff = new PrefabGUID(1238761918); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff_Long = new PrefabGUID(-1023972003); public static readonly PrefabGUID AB_Nun_HealingChannel_Buff_Short = new PrefabGUID(196684530); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast = new PrefabGUID(1303130448); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast_Long = new PrefabGUID(-1251225382); public static readonly PrefabGUID AB_Nun_HealingChannel_Cast_Short = new PrefabGUID(482056232); public static readonly PrefabGUID AB_Nun_HealingTarget_Buff = new PrefabGUID(-1338019725); public static readonly PrefabGUID AB_Nun_HealingTarget_Cast = new PrefabGUID(1148384259); public static readonly PrefabGUID AB_Nun_HealingTarget_Group = new PrefabGUID(-1079667900); public static readonly PrefabGUID AB_Nun_HolyProjectile_AbilityGroup = new PrefabGUID(-1581417695); public static readonly PrefabGUID AB_Nun_HolyProjectile_Cast = new PrefabGUID(1657176997); public static readonly PrefabGUID AB_Nun_HolyProjectile_Projectile = new PrefabGUID(-1266856881); public static readonly PrefabGUID AB_Nun_HolyProjectile_Trigger = new PrefabGUID(528702510); public static readonly PrefabGUID AB_Nun_MeleeAttack_Cast = new PrefabGUID(-1575119738); public static readonly PrefabGUID AB_Nun_MeleeAttack_Group = new PrefabGUID(22263894); public static readonly PrefabGUID AB_Nun_MeleeAttack_Hit = new PrefabGUID(-1296752620); public static readonly PrefabGUID AB_Nun_Projectile = new PrefabGUID(764919055); public static readonly PrefabGUID AB_Nun_Projectile_Cast = new PrefabGUID(-1501966038); public static readonly PrefabGUID AB_Nun_Projectile_Channel_Buff = new PrefabGUID(728650887); public static readonly PrefabGUID AB_Nun_Projectile_Group = new PrefabGUID(-1199987827); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_AbilityGroup = new PrefabGUID(-1756529149); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_Buff = new PrefabGUID(-1852778592); public static readonly PrefabGUID AB_Nun_VBlood_HealCommand_Cast = new PrefabGUID(199967204); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_AbilityGroup = new PrefabGUID(607644390); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Cast = new PrefabGUID(991483255); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Hit = new PrefabGUID(-2056876331); public static readonly PrefabGUID AB_Nun_Vblood_MeleeAttack_Projectile = new PrefabGUID(-1192068123); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_AbilityGroup = new PrefabGUID(-1754021382); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_Cast = new PrefabGUID(-526273546); public static readonly PrefabGUID AB_Nun_VBlood_SpawnMinions_Summon = new PrefabGUID(2101490191); public static readonly PrefabGUID AB_Ocean_Blowfish_Projectile = new PrefabGUID(1953054130); public static readonly PrefabGUID AB_Ocean_Blowfish_Swim_AbilityGroup = new PrefabGUID(177071276); public static readonly PrefabGUID AB_Ocean_Blowfish_Swim_Cast = new PrefabGUID(-1294856119); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_AbilityGroup = new PrefabGUID(-1059091794); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_BitingBuff = new PrefabGUID(-534472898); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_Cast = new PrefabGUID(315497297); public static readonly PrefabGUID AB_Ocean_Piranha_Bite_Hit = new PrefabGUID(-547080929); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_AbilityGroup = new PrefabGUID(-1763951497); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_Cast = new PrefabGUID(213628655); public static readonly PrefabGUID AB_Ocean_Piranha_Circle_StrafeBuff = new PrefabGUID(-353710736); public static readonly PrefabGUID AB_OpenMenu_BuildMenu = new PrefabGUID(628606387); public static readonly PrefabGUID AB_OpenMenu_BuildMenu_AbilityGroup = new PrefabGUID(-996493500); public static readonly PrefabGUID AB_OpenMenu_BuildMenu_Cast = new PrefabGUID(785101229); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_AbilityGroup = new PrefabGUID(-448018551); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_Cast = new PrefabGUID(-135205948); public static readonly PrefabGUID AB_Paladin_ChargeMeleeAttack_Hit = new PrefabGUID(-223424384); public static readonly PrefabGUID AB_Paladin_Dash_AbilityGroup = new PrefabGUID(413176017); public static readonly PrefabGUID AB_Paladin_Dash_Cast = new PrefabGUID(-1819508776); public static readonly PrefabGUID AB_Paladin_Dash_Cast_Unused_SharedSequence = new PrefabGUID(-1994660225); public static readonly PrefabGUID AB_Paladin_Dash_Phase = new PrefabGUID(-428120902); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_AbilityGroup = new PrefabGUID(1927100043); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Cast = new PrefabGUID(1366719412); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_ChannelBuff = new PrefabGUID(-1063438490); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Projectile01 = new PrefabGUID(1762254236); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Projectile02 = new PrefabGUID(1114471086); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Spinner01 = new PrefabGUID(1088466884); public static readonly PrefabGUID AB_Paladin_DivineAngel_AngelicFlackCannon_Spinner02 = new PrefabGUID(1493105733); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_AbilityGroup = new PrefabGUID(124285667); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Cast = new PrefabGUID(1425523189); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Phase = new PrefabGUID(-1731620709); public static readonly PrefabGUID AB_Paladin_DivineAngel_Dash_Post = new PrefabGUID(-913669419); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_AbilityGroup = new PrefabGUID(31826871); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_AggroBuff = new PrefabGUID(-224687934); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Area = new PrefabGUID(1321054427); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Cast = new PrefabGUID(2137346253); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Channel = new PrefabGUID(-1414846289); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolyBarrage_Projectile = new PrefabGUID(-2023779225); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_AbilityGroup = new PrefabGUID(985669672); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Cast = new PrefabGUID(-1853497889); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_SpawnerProjectile01 = new PrefabGUID(-161417409); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_SpawnerProjectile02 = new PrefabGUID(1939459631); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Throw = new PrefabGUID(-602633418); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_Trigger = new PrefabGUID(-1058738214); public static readonly PrefabGUID AB_Paladin_DivineAngel_HolySpearField_TriggerBuff = new PrefabGUID(1392777264); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-105601189); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast01 = new PrefabGUID(-1027110042); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast02 = new PrefabGUID(665368660); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_Cast03 = new PrefabGUID(1096657837); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit01 = new PrefabGUID(1565046753); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit02 = new PrefabGUID(31465263); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit03 = new PrefabGUID(-436653634); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit04 = new PrefabGUID(-1782361353); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_StabHit05 = new PrefabGUID(1482443640); public static readonly PrefabGUID AB_Paladin_DivineAngel_MeleeAttack_SwingHit = new PrefabGUID(-336914569); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_AbilityGroup = new PrefabGUID(1309712000); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Area = new PrefabGUID(-1260282342); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Cast = new PrefabGUID(863095122); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Channel = new PrefabGUID(-276630616); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_ImpactStun = new PrefabGUID(-780208408); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_PaladinBuff = new PrefabGUID(126325102); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_Projectile = new PrefabGUID(882224304); public static readonly PrefabGUID AB_Paladin_FallenAngel_BubblePopper_SelfBuff = new PrefabGUID(1191955967); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_AbilityGroup = new PrefabGUID(-1364891068); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_Cast = new PrefabGUID(-1841398888); public static readonly PrefabGUID AB_Paladin_FallenAngel_Dash_Phase = new PrefabGUID(-1774793471); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-8655403); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast01 = new PrefabGUID(1119948324); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast02 = new PrefabGUID(-1119950225); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_Cast03 = new PrefabGUID(-2024297160); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit01 = new PrefabGUID(-598113938); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit02 = new PrefabGUID(973030350); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit03 = new PrefabGUID(932035097); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit04 = new PrefabGUID(-117453894); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_StabHit05 = new PrefabGUID(-943197286); public static readonly PrefabGUID AB_Paladin_FallenAngel_MeleeAttack_SwingHit = new PrefabGUID(-766264377); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_AbilityGroup = new PrefabGUID(-1847055470); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Area = new PrefabGUID(-427815084); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Cast = new PrefabGUID(1624547915); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Channel = new PrefabGUID(2033792992); public static readonly PrefabGUID AB_Paladin_FallenAngel_UnholyBarrage_Projectile = new PrefabGUID(-1322577210); public static readonly PrefabGUID AB_Paladin_HolyNuke_AbilityGroup = new PrefabGUID(1926314891); public static readonly PrefabGUID AB_Paladin_HolyNuke_Buff = new PrefabGUID(-1807398295); public static readonly PrefabGUID AB_Paladin_HolyNuke_Cast = new PrefabGUID(-423326103); public static readonly PrefabGUID AB_Paladin_HolyNuke_Hit = new PrefabGUID(395569863); public static readonly PrefabGUID AB_Paladin_MeleeAttack_AbilityGroup = new PrefabGUID(1212343160); public static readonly PrefabGUID AB_Paladin_MeleeAttack_Cast = new PrefabGUID(-1722361046); public static readonly PrefabGUID AB_Paladin_MeleeAttack_Hit = new PrefabGUID(-776895691); public static readonly PrefabGUID AB_Paladin_OnAggro_AbilityGroup = new PrefabGUID(-1408189956); public static readonly PrefabGUID AB_Paladin_OnAggro_Cast = new PrefabGUID(-299486907); public static readonly PrefabGUID AB_Paladin_OnAggro_Group = new PrefabGUID(-643255566); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_AbilityGroup = new PrefabGUID(-626021308); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_Cast = new PrefabGUID(-1734736354); public static readonly PrefabGUID AB_Paladin_ShockWaveSlam_Hit = new PrefabGUID(-996778647); public static readonly PrefabGUID AB_PaladinShockWave_Projectile = new PrefabGUID(-480497639); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_AbilityGroup = new PrefabGUID(66606146); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_DashCast = new PrefabGUID(2098101392); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Immaterial = new PrefabGUID(69982784); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_AbilityGroup = new PrefabGUID(-1145923288); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Cast = new PrefabGUID(286387494); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveBuff = new PrefabGUID(-580613535); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveImpact = new PrefabGUID(728144325); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_ExplosiveImpact_DoubleBarrel = new PrefabGUID(-835895377); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_HitBuff = new PrefabGUID(-2011295261); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Projectile = new PrefabGUID(-1274932233); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_AbilityGroup = new PrefabGUID(1913579080); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_Cast = new PrefabGUID(-1783827601); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_Recast_Projectile = new PrefabGUID(-858163982); public static readonly PrefabGUID AB_Pistols_ExplosiveShot_Shot_RecastBuff = new PrefabGUID(-246775707); public static readonly PrefabGUID AB_Pistols_FanTheHammer_AbilityGroup = new PrefabGUID(760344149); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Cast = new PrefabGUID(1356553255); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Channel = new PrefabGUID(-102660349); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Channel_Move = new PrefabGUID(-1028216735); public static readonly PrefabGUID AB_Pistols_FanTheHammer_DummyAimpreview = new PrefabGUID(1807176591); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Hit = new PrefabGUID(-1238384604); public static readonly PrefabGUID AB_Pistols_FanTheHammer_Projectile = new PrefabGUID(-1279354734); public static readonly PrefabGUID AB_Pistols_Primary_Attack_AbilityGroup = new PrefabGUID(-1490887838); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast01 = new PrefabGUID(-1246832826); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast02 = new PrefabGUID(1552752232); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Cast03 = new PrefabGUID(1394076868); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_AbilityGroup = new PrefabGUID(-413053555); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast01 = new PrefabGUID(-1684142361); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast02 = new PrefabGUID(-1117218632); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Mounted_Cast03 = new PrefabGUID(-819536316); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_01 = new PrefabGUID(-736673188); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_02 = new PrefabGUID(-1103939573); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_Mounted_01 = new PrefabGUID(352611039); public static readonly PrefabGUID AB_Pistols_Primary_Attack_Projectile_Mounted_02 = new PrefabGUID(794485805); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBlood_Projectile_01 = new PrefabGUID(1169758276); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBlood_Projectile_02 = new PrefabGUID(534014665); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBones_Projectile_01 = new PrefabGUID(-992576753); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfBones_Projectile_02 = new PrefabGUID(-452996621); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfChaos_Projectile_01 = new PrefabGUID(1345961852); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfChaos_Projectile_02 = new PrefabGUID(1745574776); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfFrost_Projectile_01 = new PrefabGUID(-1905990999); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfFrost_Projectile_02 = new PrefabGUID(1215968257); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfIllusion_Projectile_01 = new PrefabGUID(-1316615675); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfIllusion_Projectile_02 = new PrefabGUID(-663318402); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfShadow_Projectile_01 = new PrefabGUID(1139820531); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfShadow_Projectile_02 = new PrefabGUID(-2075080541); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfStorm_Projectile_01 = new PrefabGUID(1902768390); public static readonly PrefabGUID AB_Pistols_Primary_Attack_VeilOfStorm_Projectile_02 = new PrefabGUID(1342140363); public static readonly PrefabGUID AB_Pixie_Projectile = new PrefabGUID(39329543); public static readonly PrefabGUID AB_Pixie_Projectile_Cast = new PrefabGUID(-2952395); public static readonly PrefabGUID AB_Pixie_Projectile_Group = new PrefabGUID(-259433272); public static readonly PrefabGUID AB_Poloma_Hard_Projectile = new PrefabGUID(-397818132); public static readonly PrefabGUID AB_Poloma_Hard_Projectile_Cast = new PrefabGUID(-1214248619); public static readonly PrefabGUID AB_Poloma_Hard_Projectile_Group = new PrefabGUID(-595482115); public static readonly PrefabGUID AB_Poloma_Otherside_AbilityGroup = new PrefabGUID(1795809188); public static readonly PrefabGUID AB_Poloma_Otherside_AbilityGroup_Ally = new PrefabGUID(2033547790); public static readonly PrefabGUID AB_Poloma_Otherside_Buff = new PrefabGUID(686250802); public static readonly PrefabGUID AB_Poloma_Otherside_Cast = new PrefabGUID(1681004179); public static readonly PrefabGUID AB_Poloma_Otherside_Cast_Ally = new PrefabGUID(655578962); public static readonly PrefabGUID AB_Poloma_Pixie_Cast = new PrefabGUID(1938657407); public static readonly PrefabGUID AB_Poloma_Pixie_Group = new PrefabGUID(-1036943907); public static readonly PrefabGUID AB_Poloma_Pixie_Summon = new PrefabGUID(-106223515); public static readonly PrefabGUID AB_Poloma_Projectile = new PrefabGUID(262129124); public static readonly PrefabGUID AB_Poloma_Projectile_Cast = new PrefabGUID(1213441760); public static readonly PrefabGUID AB_Poloma_Projectile_Group = new PrefabGUID(-914903899); public static readonly PrefabGUID AB_Poloma_SpiritRift_Cast = new PrefabGUID(-1099141658); public static readonly PrefabGUID AB_Poloma_SpiritRift_Group = new PrefabGUID(-939006306); public static readonly PrefabGUID AB_Poloma_SpiritRift_Throw = new PrefabGUID(-631223103); public static readonly PrefabGUID AB_Poloma_Wolf_AbilityGroup = new PrefabGUID(-321651703); public static readonly PrefabGUID AB_Poloma_Wolf_Cast = new PrefabGUID(829434562); public static readonly PrefabGUID AB_Poloma_Wolf_Projectile = new PrefabGUID(-1245976584); public static readonly PrefabGUID AB_Poloma_Wolf_Projectile_FirstProjectile = new PrefabGUID(429350778); public static readonly PrefabGUID AB_Prisoner_VillagerFemale_OnAggro_AbilityGroup_01 = new PrefabGUID(394173239); public static readonly PrefabGUID AB_Prisoner_VillagerFemale_OnAggro_Cast_01 = new PrefabGUID(176360765); public static readonly PrefabGUID AB_Prisoner_VillagerMale_OnAggro_AbilityGroup_01 = new PrefabGUID(-1806163577); public static readonly PrefabGUID AB_Prisoner_VillagerMale_OnAggro_Cast_01 = new PrefabGUID(1368749418); public static readonly PrefabGUID AB_PrisonInteract_AbilityGroup = new PrefabGUID(-1825390216); public static readonly PrefabGUID AB_PrisonInteract_Cast = new PrefabGUID(1292254844); public static readonly PrefabGUID AB_PrisonInteract_Hit = new PrefabGUID(1435009879); public static readonly PrefabGUID AB_Prog_Boomerang_Cast = new PrefabGUID(-1731953910); public static readonly PrefabGUID AB_Prog_Boomerang_Group = new PrefabGUID(992487676); public static readonly PrefabGUID AB_Prog_Boomerang_Return = new PrefabGUID(-110872883); public static readonly PrefabGUID AB_Prog_HomingNova_Cast = new PrefabGUID(-1107333474); public static readonly PrefabGUID AB_Prog_HomingNova_Group = new PrefabGUID(-1085783726); public static readonly PrefabGUID AB_Prog_HomingNova_Projectile = new PrefabGUID(2136487395); public static readonly PrefabGUID AB_Purifier_BackBarrier_AbilityGroup = new PrefabGUID(-41022254); public static readonly PrefabGUID AB_Purifier_BackBarrier_Cast = new PrefabGUID(119196949); public static readonly PrefabGUID AB_Purifier_BackBarrier_LeftBuff = new PrefabGUID(569251826); public static readonly PrefabGUID AB_Purifier_BackBarrier_RightBuff = new PrefabGUID(960501997); public static readonly PrefabGUID AB_Purifier_Barrier_PurgeBarriers = new PrefabGUID(-1144410559); public static readonly PrefabGUID AB_Purifier_ChaosQuake_AbilityGroup = new PrefabGUID(1922493152); public static readonly PrefabGUID AB_Purifier_ChaosQuake_AreaThrow = new PrefabGUID(-1493279308); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Cast = new PrefabGUID(1269984130); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Hit = new PrefabGUID(-1488336159); public static readonly PrefabGUID AB_Purifier_ChaosQuake_Projectile = new PrefabGUID(-1581582910); public static readonly PrefabGUID AB_Purifier_ChaosSpray_AbilityGroup = new PrefabGUID(1228457971); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Cast = new PrefabGUID(-969544598); public static readonly PrefabGUID AB_Purifier_ChaosSpray_PostCast = new PrefabGUID(385578968); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Projectile = new PrefabGUID(991462357); public static readonly PrefabGUID AB_Purifier_ChaosSpray_Spinner = new PrefabGUID(844010592); public static readonly PrefabGUID AB_Purifier_ChaosVolley_AbilityGroup = new PrefabGUID(1425686238); public static readonly PrefabGUID AB_Purifier_ChaosVolley_AggroBuff = new PrefabGUID(-1479750402); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Area = new PrefabGUID(-1286403651); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Area_Projectile = new PrefabGUID(-1180502249); public static readonly PrefabGUID AB_Purifier_ChaosVolley_BurnDebuff = new PrefabGUID(1163490655); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Cast = new PrefabGUID(-319831648); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Channel = new PrefabGUID(1984434974); public static readonly PrefabGUID AB_Purifier_ChaosVolley_PostCast = new PrefabGUID(-1907523949); public static readonly PrefabGUID AB_Purifier_ChaosVolley_Throw = new PrefabGUID(1613206303); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_AbilityGroup = new PrefabGUID(-1672126097); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_AreaKnockback = new PrefabGUID(955242202); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_Cast = new PrefabGUID(1772596288); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_LeftBuff = new PrefabGUID(593446973); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_Projectile = new PrefabGUID(930713149); public static readonly PrefabGUID AB_Purifier_ForwardBarrier_RightBuff = new PrefabGUID(1075662022); public static readonly PrefabGUID AB_Purifier_JetPunch_AbilityGroup = new PrefabGUID(698366326); public static readonly PrefabGUID AB_Purifier_JetPunch_AggroBuff = new PrefabGUID(-1063958665); public static readonly PrefabGUID AB_Purifier_JetPunch_Cast = new PrefabGUID(1517153912); public static readonly PrefabGUID AB_Purifier_JetPunch_Dash = new PrefabGUID(-982975585); public static readonly PrefabGUID AB_Purifier_JetPunch_DownedStun = new PrefabGUID(-2071551838); public static readonly PrefabGUID AB_Purifier_JetPunch_LaunchBuff = new PrefabGUID(1883832448); public static readonly PrefabGUID AB_Purifier_JetPunch_PostDash = new PrefabGUID(1482865799); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_AbilityGroup = new PrefabGUID(452849117); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_Cast = new PrefabGUID(-1702533942); public static readonly PrefabGUID AB_Purifier_JetPunch_Swing_Hit = new PrefabGUID(-1148943993); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_AbilityGroup = new PrefabGUID(-1567787423); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_Cast = new PrefabGUID(637562480); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_EndPhase = new PrefabGUID(-1391280466); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Back_Phase = new PrefabGUID(-2050984476); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_AbilityGroup = new PrefabGUID(973636261); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_Buff = new PrefabGUID(1300822575); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_FarBack_Cast = new PrefabGUID(-993971139); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_AbilityGroup = new PrefabGUID(62042854); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_Cast = new PrefabGUID(1571491196); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_EndPhase = new PrefabGUID(1038320521); public static readonly PrefabGUID AB_Purifier_JetPunchSetup_Forward_Phase = new PrefabGUID(554446938); public static readonly PrefabGUID AB_Purifier_MeleeAttack_AbilityGroup = new PrefabGUID(936625846); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Cast = new PrefabGUID(-302354289); public static readonly PrefabGUID AB_Purifier_MeleeAttack_DownedStun = new PrefabGUID(803103305); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Hit = new PrefabGUID(-71074635); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_AbilityGroup = new PrefabGUID(-825962514); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_Cast = new PrefabGUID(1964316578); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Left_Hit = new PrefabGUID(378511410); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_AbilityGroup = new PrefabGUID(1343651850); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_Cast = new PrefabGUID(145556757); public static readonly PrefabGUID AB_Purifier_MeleeAttack_Right_Hit = new PrefabGUID(-216691993); public static readonly PrefabGUID AB_Purifier_RotationBoost_AbilityGroup = new PrefabGUID(-675519112); public static readonly PrefabGUID AB_Purifier_RotationBoost_Buff = new PrefabGUID(791787133); public static readonly PrefabGUID AB_Purifier_RotationBoost_Cast = new PrefabGUID(-1381686893); public static readonly PrefabGUID AB_Purifier_ScatterLob_AbilityGroup = new PrefabGUID(718360189); public static readonly PrefabGUID AB_Purifier_ScatterLob_Cast = new PrefabGUID(-21577654); public static readonly PrefabGUID AB_Purifier_ScatterLob_Projectile = new PrefabGUID(666034998); public static readonly PrefabGUID AB_Purifier_ScatterLob_Throw = new PrefabGUID(471073242); public static readonly PrefabGUID AB_Purifier_ScatterLob_Trigger = new PrefabGUID(1190288358); public static readonly PrefabGUID AB_Purifier_VerminRepellent_AbilityGroup = new PrefabGUID(1189720448); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Cast = new PrefabGUID(-1867160935); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Projectile = new PrefabGUID(-1719650892); public static readonly PrefabGUID AB_Purifier_VerminRepellent_Throw = new PrefabGUID(891640900); public static readonly PrefabGUID AB_Rat_Immaterial_Buff = new PrefabGUID(1746259719); public static readonly PrefabGUID AB_ReleaseSlaves_AoECheck = new PrefabGUID(-1520552223); public static readonly PrefabGUID AB_Rifleman_Projectile_Cast = new PrefabGUID(-658144916); public static readonly PrefabGUID AB_Rifleman_Projectile_Group = new PrefabGUID(1622839653); public static readonly PrefabGUID AB_Rifleman_Projectile01 = new PrefabGUID(2020258727); public static readonly PrefabGUID AB_RockElemental_Awake_AbilityGroup = new PrefabGUID(-2050883182); public static readonly PrefabGUID AB_RockElemental_Awake_Cast = new PrefabGUID(1076314647); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_AbilityGroup = new PrefabGUID(-1924288461); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_Cast = new PrefabGUID(-2058809126); public static readonly PrefabGUID AB_RockElemental_FallAsleep_Buff_SleepingIdle = new PrefabGUID(218410291); public static readonly PrefabGUID AB_RockElemental_Leap_AbilityGroup = new PrefabGUID(294532069); public static readonly PrefabGUID AB_RockElemental_Leap_Cast = new PrefabGUID(650871197); public static readonly PrefabGUID AB_RockElemental_Leap_End = new PrefabGUID(2120225821); public static readonly PrefabGUID AB_RockElemental_Leap_Phase = new PrefabGUID(-430970428); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_AbilityGroup = new PrefabGUID(-560639220); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_Cast = new PrefabGUID(750705261); public static readonly PrefabGUID AB_RockElemental_MeleeAttack_Hit = new PrefabGUID(-241120205); public static readonly PrefabGUID AB_RockElemental_Rollout_AbilityGroup = new PrefabGUID(-150520781); public static readonly PrefabGUID AB_RockElemental_Rollout_Cast = new PrefabGUID(-364910199); public static readonly PrefabGUID AB_RockElemental_Rollout_Phase = new PrefabGUID(-931247281); public static readonly PrefabGUID AB_RockElemental_Rollout_PostDashBuff = new PrefabGUID(1924537261); public static readonly PrefabGUID AB_Scarecrow_Blind_Debuff = new PrefabGUID(860347517); public static readonly PrefabGUID AB_Scarecrow_Counter_AbilityGroup = new PrefabGUID(741783094); public static readonly PrefabGUID AB_Scarecrow_Counter_Buff = new PrefabGUID(48394277); public static readonly PrefabGUID AB_Scarecrow_Counter_Cast = new PrefabGUID(824723586); public static readonly PrefabGUID AB_Scarecrow_Counter_PreTravel = new PrefabGUID(-1346667899); public static readonly PrefabGUID AB_Scarecrow_Counter_Travel = new PrefabGUID(-1770136907); public static readonly PrefabGUID AB_Scarecrow_Counter_TravelEnd = new PrefabGUID(1971523772); public static readonly PrefabGUID AB_Scarecrow_Idle_Buff = new PrefabGUID(688560582); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Cast01 = new PrefabGUID(1546564020); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Cast02 = new PrefabGUID(-774011304); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Group = new PrefabGUID(-1436929556); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Hit_Fork = new PrefabGUID(372532588); public static readonly PrefabGUID AB_Scarecrow_MeleeAttack_Hit_Sickle = new PrefabGUID(719261515); public static readonly PrefabGUID AB_Scarecrow_Projectile_Cast = new PrefabGUID(-960670153); public static readonly PrefabGUID AB_Scarecrow_Projectile_Group = new PrefabGUID(594778109); public static readonly PrefabGUID AB_Scarecrow_Projectile01 = new PrefabGUID(1258810436); public static readonly PrefabGUID AB_Scarecrow_Projectile02 = new PrefabGUID(1491475964); public static readonly PrefabGUID AB_Scarecrow_Scream_Area = new PrefabGUID(-1902498305); public static readonly PrefabGUID AB_Scarecrow_Scream_Cast = new PrefabGUID(399910725); public static readonly PrefabGUID AB_Scarecrow_Scream_Group = new PrefabGUID(382761265); public static readonly PrefabGUID AB_Scratcher_Dash_AbilityGroup = new PrefabGUID(-265839081); public static readonly PrefabGUID AB_Scratcher_Dash_Cast = new PrefabGUID(-1975037660); public static readonly PrefabGUID AB_Scratcher_Dash_Phase = new PrefabGUID(-749748299); public static readonly PrefabGUID AB_Scratcher_Launcher_AbilityGroup = new PrefabGUID(1245308829); public static readonly PrefabGUID AB_Scratcher_Launcher_Cast = new PrefabGUID(75890525); public static readonly PrefabGUID AB_Scratcher_Launcher_Hit = new PrefabGUID(-321434156); public static readonly PrefabGUID AB_Scratcher_Melee_AbilityGroup = new PrefabGUID(769558056); public static readonly PrefabGUID AB_Scratcher_Melee_Cast = new PrefabGUID(-113575797); public static readonly PrefabGUID AB_Scratcher_Melee_Hit = new PrefabGUID(1305855243); public static readonly PrefabGUID AB_Scratcher_SpinAttack_AbilityGroup = new PrefabGUID(-738502538); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Cast = new PrefabGUID(432706507); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Channel = new PrefabGUID(-403803467); public static readonly PrefabGUID AB_Scratcher_SpinAttack_Hit = new PrefabGUID(1672932239); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff01 = new PrefabGUID(1953176948); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff01_Respawning = new PrefabGUID(-294186400); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff02 = new PrefabGUID(231106250); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff02_Respawning = new PrefabGUID(2064967183); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff03 = new PrefabGUID(1193543239); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_Buff03_Respawning = new PrefabGUID(-787058191); public static readonly PrefabGUID AB_Scribe_Hard_RotatingBooks_HitBuff = new PrefabGUID(738688960); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_AbilityGroup = new PrefabGUID(338593632); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_Buff = new PrefabGUID(854100969); public static readonly PrefabGUID AB_Scribe_InkCrawler_CircleDistance_Cast = new PrefabGUID(-1616350290); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_AbilityGroup = new PrefabGUID(1239155316); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Area = new PrefabGUID(-1965326732); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Cast = new PrefabGUID(-1206492862); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_PoisonDebuff = new PrefabGUID(334642283); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Projectile = new PrefabGUID(1081135899); public static readonly PrefabGUID AB_SeaSerpent_AcidPuke_Throw = new PrefabGUID(-374382921); public static readonly PrefabGUID AB_SeaSerpent_AggroArea = new PrefabGUID(2040493056); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Cast = new PrefabGUID(-911022007); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Group = new PrefabGUID(-1287271443); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Throw = new PrefabGUID(1891999992); public static readonly PrefabGUID AB_SeaSerpent_FishVomit_Trigger = new PrefabGUID(419672858); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_AbilityGroup = new PrefabGUID(1506479890); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_AoE = new PrefabGUID(884513149); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_Cast = new PrefabGUID(281240320); public static readonly PrefabGUID AB_SeaSerpent_FrostProjectile_Projectile = new PrefabGUID(-565208290); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_AbilityGroup = new PrefabGUID(1115346958); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Cast = new PrefabGUID(1011930736); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_AbilityGroup = new PrefabGUID(-938355432); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Cast = new PrefabGUID(2003762356); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Combo01_AbilityGroup = new PrefabGUID(-1470096516); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Combo02_AbilityGroup = new PrefabGUID(163224625); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hard_Hit = new PrefabGUID(24735896); public static readonly PrefabGUID AB_SeaSerpent_MeleeAttack_Hit = new PrefabGUID(567597112); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_AbilityGroup = new PrefabGUID(530484088); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_Cast = new PrefabGUID(1585495776); public static readonly PrefabGUID AB_Shadowkin_ChaosBoltSingleCast_Projectile = new PrefabGUID(1147611870); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Cast = new PrefabGUID(-588977169); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Group = new PrefabGUID(1546717070); public static readonly PrefabGUID AB_Shapesfhit_Golem_ExitForm_Trigger = new PrefabGUID(-1168312376); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Cast = new PrefabGUID(-596182398); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Group = new PrefabGUID(-1303418171); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Hit = new PrefabGUID(385944154); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_LoS_Check = new PrefabGUID(-1528045058); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_FistSlam_Stun = new PrefabGUID(179778755); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Cast = new PrefabGUID(1045370357); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Group = new PrefabGUID(-27840697); public static readonly PrefabGUID AB_Shapesfhit_Golem_T02_MeleeAttack_Hit = new PrefabGUID(106246702); public static readonly PrefabGUID AB_Shapeshift_Bat_Group = new PrefabGUID(-104327922); public static readonly PrefabGUID AB_Shapeshift_Bat_Land_AbilityGroup = new PrefabGUID(1558475957); public static readonly PrefabGUID AB_Shapeshift_Bat_Land_PreCast = new PrefabGUID(1835868090); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_AbilityGroup = new PrefabGUID(1679087496); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Cast = new PrefabGUID(-1608204145); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Travel = new PrefabGUID(-371745443); public static readonly PrefabGUID AB_Shapeshift_Bat_Landing_Travel_End = new PrefabGUID(-2001733587); public static readonly PrefabGUID AB_Shapeshift_Bat_PreCast = new PrefabGUID(618866625); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Buff = new PrefabGUID(1205505492); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Cast = new PrefabGUID(2072057913); public static readonly PrefabGUID AB_Shapeshift_Bat_TakeFlight_Group = new PrefabGUID(576026408); public static readonly PrefabGUID AB_Shapeshift_Bear_Buff = new PrefabGUID(-1569370346); public static readonly PrefabGUID AB_Shapeshift_Bear_Cast = new PrefabGUID(1820111391); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash = new PrefabGUID(3728954); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash_Cast = new PrefabGUID(-1595304562); public static readonly PrefabGUID AB_Shapeshift_Bear_Dash_Group = new PrefabGUID(1873182450); public static readonly PrefabGUID AB_Shapeshift_Bear_Group = new PrefabGUID(341866865); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Cast01 = new PrefabGUID(-393228351); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Cast02 = new PrefabGUID(1062263110); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Group = new PrefabGUID(-1259884575); public static readonly PrefabGUID AB_Shapeshift_Bear_MeleeAttack_Hit = new PrefabGUID(55046940); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_AbilityGroup = new PrefabGUID(-840954076); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_Cast = new PrefabGUID(-1494177431); public static readonly PrefabGUID AB_Shapeshift_Bear_Roar_Trigger = new PrefabGUID(1285947050); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Buff = new PrefabGUID(-858273386); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Cast = new PrefabGUID(269629884); public static readonly PrefabGUID AB_Shapeshift_Bear_Skin01_Group = new PrefabGUID(-631049507); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Buff = new PrefabGUID(1199823151); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Cast = new PrefabGUID(1141075594); public static readonly PrefabGUID AB_Shapeshift_BloodHunger_BloodSight_Group = new PrefabGUID(-1863241708); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Buff = new PrefabGUID(-72081294); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Cast = new PrefabGUID(-422465852); public static readonly PrefabGUID AB_Shapeshift_BloodMend_Group = new PrefabGUID(-1996241419); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Buff = new PrefabGUID(-222170350); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Cast = new PrefabGUID(-1718455019); public static readonly PrefabGUID AB_Shapeshift_CommandingPresence_Group = new PrefabGUID(589136658); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Buff = new PrefabGUID(-1447419822); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Cast = new PrefabGUID(19187526); public static readonly PrefabGUID AB_Shapeshift_DominatingPresence_PsychicForm_Group = new PrefabGUID(-1908054166); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_AwakeBuff = new PrefabGUID(-2111422455); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Buff = new PrefabGUID(914043867); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Cast = new PrefabGUID(-1054873057); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Cast = new PrefabGUID(2106313675); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Group = new PrefabGUID(1216522353); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_GroundSlam_Hit = new PrefabGUID(548495076); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Group = new PrefabGUID(-1193297071); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_AbilityGroup = new PrefabGUID(-1130363778); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_Cast = new PrefabGUID(395411669); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Ranged_Projectile = new PrefabGUID(2058619860); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_AbilityGroup = new PrefabGUID(-223453383); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Area = new PrefabGUID(-1698616433); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Buff = new PrefabGUID(-1842466470); public static readonly PrefabGUID AB_Shapeshift_Golem_T02_Roar_Cast = new PrefabGUID(-1302891872); public static readonly PrefabGUID AB_Shapeshift_Human_Buff = new PrefabGUID(-53860211); public static readonly PrefabGUID AB_Shapeshift_Human_Cast = new PrefabGUID(1484365948); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Buff = new PrefabGUID(-434940480); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Cast = new PrefabGUID(-118310719); public static readonly PrefabGUID AB_Shapeshift_Human_Grandma_Skin01_Group = new PrefabGUID(1167119356); public static readonly PrefabGUID AB_Shapeshift_Human_Group = new PrefabGUID(-980532804); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Buff = new PrefabGUID(-868350144); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Cast = new PrefabGUID(-2084233337); public static readonly PrefabGUID AB_Shapeshift_Human_PMK_Skin02_Group = new PrefabGUID(1937597415); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Buff = new PrefabGUID(1352541204); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Cast = new PrefabGUID(1528641670); public static readonly PrefabGUID AB_Shapeshift_NormalForm_Group = new PrefabGUID(1634335063); public static readonly PrefabGUID AB_Shapeshift_Rat_Buff = new PrefabGUID(902394170); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_AbilityGroup = new PrefabGUID(1224470698); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Buff = new PrefabGUID(-2126626806); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Cast = new PrefabGUID(785510569); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Travel = new PrefabGUID(-370880069); public static readonly PrefabGUID AB_Shapeshift_Rat_Burrow_Travel_End = new PrefabGUID(1011458245); public static readonly PrefabGUID AB_Shapeshift_Rat_Cast = new PrefabGUID(-1297441333); public static readonly PrefabGUID AB_Shapeshift_Rat_Group = new PrefabGUID(784029872); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Buff = new PrefabGUID(-979543195); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Cast = new PrefabGUID(1686380967); public static readonly PrefabGUID AB_Shapeshift_ShareBlood_ExposeVein_Group = new PrefabGUID(-1648128560); public static readonly PrefabGUID AB_Shapeshift_Spider_Buff = new PrefabGUID(124832551); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_AbilityGroup = new PrefabGUID(1089139335); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_Buff = new PrefabGUID(-1665328650); public static readonly PrefabGUID AB_Shapeshift_Spider_Burrow_Cast = new PrefabGUID(647509692); public static readonly PrefabGUID AB_Shapeshift_Spider_Cast = new PrefabGUID(-677779816); public static readonly PrefabGUID AB_Shapeshift_Spider_Group = new PrefabGUID(180580857); public static readonly PrefabGUID AB_Shapeshift_Spider_Unburrow_AbilityGroup = new PrefabGUID(1704026958); public static readonly PrefabGUID AB_Shapeshift_Spider_Unburrow_Cast = new PrefabGUID(-1735332389); public static readonly PrefabGUID AB_Shapeshift_Toad_Buff = new PrefabGUID(-1038422434); public static readonly PrefabGUID AB_Shapeshift_Toad_Cast = new PrefabGUID(-2003108222); public static readonly PrefabGUID AB_Shapeshift_Toad_Group = new PrefabGUID(-499389517); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_AbilityGroup = new PrefabGUID(-1428039996); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_Cast = new PrefabGUID(535790519); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_End = new PrefabGUID(825952968); public static readonly PrefabGUID AB_Shapeshift_Toad_Leap_Travel_Phase = new PrefabGUID(1634367442); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Buff = new PrefabGUID(332075952); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Cast = new PrefabGUID(2008964866); public static readonly PrefabGUID AB_Shapeshift_Toad_PMK_Skin01_Group = new PrefabGUID(-34533844); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Bleed_Buff = new PrefabGUID(1751486572); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Cast = new PrefabGUID(990205141); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Group = new PrefabGUID(-1262842180); public static readonly PrefabGUID AB_Shapeshift_Wolf_Bite_Hit = new PrefabGUID(424140303); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Buff = new PrefabGUID(-46579774); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Cast = new PrefabGUID(-316891652); public static readonly PrefabGUID AB_Shapeshift_Wolf_Blackfang_Skin03_Group = new PrefabGUID(430979240); public static readonly PrefabGUID AB_Shapeshift_Wolf_Buff = new PrefabGUID(-351718282); public static readonly PrefabGUID AB_Shapeshift_Wolf_Cast = new PrefabGUID(-651919260); public static readonly PrefabGUID AB_Shapeshift_Wolf_Group = new PrefabGUID(900707394); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_AbilityGroup = new PrefabGUID(875909348); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_Cast = new PrefabGUID(-1717706027); public static readonly PrefabGUID AB_Shapeshift_Wolf_Howl_Trigger = new PrefabGUID(1151266648); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_AbilityGroup = new PrefabGUID(-781549505); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_AbilityGroup = new PrefabGUID(833416928); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Buff = new PrefabGUID(-1075909278); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Cast = new PrefabGUID(722131933); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_End = new PrefabGUID(-348619675); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Blackfang_Phase = new PrefabGUID(1489317139); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Buff = new PrefabGUID(-1882904996); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Cast = new PrefabGUID(2108303474); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_End = new PrefabGUID(-2081929499); public static readonly PrefabGUID AB_Shapeshift_Wolf_Leap_Travel_Phase = new PrefabGUID(113772695); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Buff = new PrefabGUID(-1687924191); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Cast = new PrefabGUID(-41080879); public static readonly PrefabGUID AB_Shapeshift_Wolf_PMK_Skin02_Group = new PrefabGUID(-1739260908); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Buff = new PrefabGUID(-1158884666); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Cast = new PrefabGUID(1304152223); public static readonly PrefabGUID AB_Shapeshift_Wolf_Skin01_Group = new PrefabGUID(1798913199); public static readonly PrefabGUID AB_Shared_Chaos_Burn_Debuff = new PrefabGUID(-1665010680); public static readonly PrefabGUID AB_Shared_FireArea = new PrefabGUID(1005131151); public static readonly PrefabGUID AB_Shared_FireArea_ExtendedLifetime = new PrefabGUID(-610346895); public static readonly PrefabGUID AB_Shared_FireArea_FlameWhip = new PrefabGUID(2072748546); public static readonly PrefabGUID AB_Shared_FireArea_FlameWhip_Spread = new PrefabGUID(-1996209115); public static readonly PrefabGUID AB_Shared_FireArea_Large = new PrefabGUID(-1104629149); public static readonly PrefabGUID AB_Shared_FireArea_ReducedLifeTime = new PrefabGUID(-210466836); public static readonly PrefabGUID AB_Shared_FireArea_VegetationSpread = new PrefabGUID(-2134900616); public static readonly PrefabGUID AB_Shared_FireArea_VegetationSpread_Whip = new PrefabGUID(702674310); public static readonly PrefabGUID AB_Shared_Small_FireArea = new PrefabGUID(1286119415); public static readonly PrefabGUID AB_ShareVBlood_Buff = new PrefabGUID(1923696267); public static readonly PrefabGUID AB_ShareVBlood_Cast = new PrefabGUID(-1227944258); public static readonly PrefabGUID AB_ShareVBlood_Group = new PrefabGUID(-79785701); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Cast = new PrefabGUID(-781120203); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Group = new PrefabGUID(1601771862); public static readonly PrefabGUID AB_SkeletonCrossbow_Shared_Crossbow_Projectile = new PrefabGUID(-1016825785); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Cast01 = new PrefabGUID(-1962637181); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Cast02 = new PrefabGUID(-1772369761); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Group = new PrefabGUID(1772194590); public static readonly PrefabGUID AB_SkeletonSoldier_Minion_MeleeAttack_Hit = new PrefabGUID(1720725467); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Cast01 = new PrefabGUID(-331352748); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Cast02 = new PrefabGUID(-1315631229); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Group = new PrefabGUID(138513891); public static readonly PrefabGUID AB_SkeletonSoldier_Shared_Melee_Hit = new PrefabGUID(868430975); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_AbilityGroup = new PrefabGUID(401195214); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_Cast = new PrefabGUID(-1632182069); public static readonly PrefabGUID AB_SlaveMaster_ChargeAttack_Phase = new PrefabGUID(-875273610); public static readonly PrefabGUID AB_SlaveMaster_Hook_AbilityGroup = new PrefabGUID(1423169435); public static readonly PrefabGUID AB_SlaveMaster_Hook_Cast = new PrefabGUID(-1894950302); public static readonly PrefabGUID AB_SlaveMaster_Hook_Hit1 = new PrefabGUID(-208357182); public static readonly PrefabGUID AB_SlaveMaster_Hook_Hit2 = new PrefabGUID(-643010508); public static readonly PrefabGUID AB_SlaveMaster_Hook_HitBuff = new PrefabGUID(702046661); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_AbilityGroup = new PrefabGUID(-725150213); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_Cast = new PrefabGUID(857098831); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_Hit = new PrefabGUID(-2103407510); public static readonly PrefabGUID AB_SlaveMaster_Knockdown_HitBuff = new PrefabGUID(558996680); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_AbilityGroup = new PrefabGUID(97206555); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Cast = new PrefabGUID(-901615635); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Channel = new PrefabGUID(-1309867202); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Hit = new PrefabGUID(373139016); public static readonly PrefabGUID AB_SlaveMaster_PistolFan_Projectile = new PrefabGUID(-1840019479); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_AbilityGroup = new PrefabGUID(80712753); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_Cast = new PrefabGUID(358880096); public static readonly PrefabGUID AB_SlaveMaster_RangedAttack_Projectile = new PrefabGUID(1160057580); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_AbilityGroup = new PrefabGUID(-366103191); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_Cast = new PrefabGUID(-1680009881); public static readonly PrefabGUID AB_SlaveMaster_ScatterShot_Hit = new PrefabGUID(218442875); public static readonly PrefabGUID AB_SlaveMaster_Swing_AbilityGroup = new PrefabGUID(-1969627539); public static readonly PrefabGUID AB_SlaveMaster_Swing_Cast = new PrefabGUID(-121094735); public static readonly PrefabGUID AB_SlaveMaster_Swing_Hit = new PrefabGUID(1012299187); public static readonly PrefabGUID AB_SlaveRuffian_Mine_AbilityGroup = new PrefabGUID(2122592609); public static readonly PrefabGUID AB_SlaveRuffian_Mine_Cast = new PrefabGUID(-1416360601); public static readonly PrefabGUID AB_SlaveRuffian_Mine_Hit = new PrefabGUID(1702782525); public static readonly PrefabGUID AB_SlaveRuffian_Shout_AbilityGroup = new PrefabGUID(506072916); public static readonly PrefabGUID AB_SlaveRuffian_Shout_Cast = new PrefabGUID(1373997640); public static readonly PrefabGUID AB_SlaveRuffian_Swing_AbilityGroup = new PrefabGUID(-983491078); public static readonly PrefabGUID AB_SlaveRuffian_Swing_Cast = new PrefabGUID(1969205205); public static readonly PrefabGUID AB_SlaveRuffian_Swing_Hit = new PrefabGUID(2025108233); public static readonly PrefabGUID AB_Small_FireArea_FlameSpreader1 = new PrefabGUID(-411855192); public static readonly PrefabGUID AB_Sommelier_BarrelDance_AbilityGroup = new PrefabGUID(1074442576); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Buff = new PrefabGUID(467920537); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Buff_Hard = new PrefabGUID(38721678); public static readonly PrefabGUID AB_Sommelier_BarrelDance_Cast = new PrefabGUID(-1478879522); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_AbilityGroup = new PrefabGUID(-616794756); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_Buff = new PrefabGUID(-446042859); public static readonly PrefabGUID AB_Sommelier_BarrelFountain_Cast = new PrefabGUID(-2029627518); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_AbilityGroup = new PrefabGUID(-1252510507); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_Cast = new PrefabGUID(2020854722); public static readonly PrefabGUID AB_Sommelier_BarrelMinion_BarrelRoll_Phase = new PrefabGUID(-2105075242); public static readonly PrefabGUID AB_Sommelier_BloodBolt_AbilityGroup = new PrefabGUID(215933642); public static readonly PrefabGUID AB_Sommelier_BloodBolt_Cast = new PrefabGUID(600127133); public static readonly PrefabGUID AB_Sommelier_BloodBolt_Projectile = new PrefabGUID(-1107865103); public static readonly PrefabGUID AB_Sommelier_Flurry_AbilityGroup = new PrefabGUID(-1537007486); public static readonly PrefabGUID AB_Sommelier_Flurry_Buff = new PrefabGUID(1191295161); public static readonly PrefabGUID AB_Sommelier_Flurry_Cast = new PrefabGUID(-1669787634); public static readonly PrefabGUID AB_Sommelier_Flurry_Hit = new PrefabGUID(857303928); public static readonly PrefabGUID AB_Sommelier_GroundStab_AbilityGroup = new PrefabGUID(1168210403); public static readonly PrefabGUID AB_Sommelier_GroundStab_Cast = new PrefabGUID(-806737785); public static readonly PrefabGUID AB_Sommelier_GroundStab_Hit = new PrefabGUID(-927723686); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_AbilityGroup = new PrefabGUID(22199616); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Cast = new PrefabGUID(848709362); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_AbilityGroup = new PrefabGUID(1129782597); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_Cast = new PrefabGUID(-513930486); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_Projectile = new PrefabGUID(673647636); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_SpawnerDouble = new PrefabGUID(490341540); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Hard_SpawnerTripple = new PrefabGUID(216868165); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_HitBuff = new PrefabGUID(181772789); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_HitKnockdown = new PrefabGUID(533823656); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Jump = new PrefabGUID(125808617); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_Projectile = new PrefabGUID(332296669); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_SpawnerDouble = new PrefabGUID(-1940194776); public static readonly PrefabGUID AB_Sommelier_HorizontalBarrel_SpawnerTripple = new PrefabGUID(-419654644); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_AbilityGroup = new PrefabGUID(1078822594); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_Cast = new PrefabGUID(1922303328); public static readonly PrefabGUID AB_Sommelier_MeleeHorizontal_Hit = new PrefabGUID(1143646341); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_AbilityGroup = new PrefabGUID(-1157907958); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_Cast = new PrefabGUID(-482441749); public static readonly PrefabGUID AB_Sommelier_MeleeSwing_Hit = new PrefabGUID(1548312767); public static readonly PrefabGUID AB_Sorceress_AoE_AbilityGroup = new PrefabGUID(725170243); public static readonly PrefabGUID AB_Sorceress_AoE_Cast = new PrefabGUID(-549710605); public static readonly PrefabGUID AB_Sorceress_AoE_Throw = new PrefabGUID(-1132153996); public static readonly PrefabGUID AB_Sorceress_Projectile = new PrefabGUID(705255035); public static readonly PrefabGUID AB_Sorceress_Projectile_AbilityGroup = new PrefabGUID(1075000607); public static readonly PrefabGUID AB_Sorceress_Projectile_Cast = new PrefabGUID(-1771490803); public static readonly PrefabGUID AB_Sorceress_Projectile_Cast_OUTDATED = new PrefabGUID(-1634790827); public static readonly PrefabGUID AB_Sorceress_Projectile_OUTDATED = new PrefabGUID(535132128); public static readonly PrefabGUID AB_Sorceress_Relocate_AbilityGroup = new PrefabGUID(-420953378); public static readonly PrefabGUID AB_Sorceress_Relocate_Cast = new PrefabGUID(2054495461); public static readonly PrefabGUID AB_Sorceress_Relocate_Phase = new PrefabGUID(-1842717610); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Cast = new PrefabGUID(770699558); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Group = new PrefabGUID(1250277114); public static readonly PrefabGUID AB_Spear_AThousandSpears_Recast_Impale_Hit = new PrefabGUID(-169137842); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_AbilityGroup = new PrefabGUID(377778793); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_BallLightning = new PrefabGUID(1144449188); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Cast = new PrefabGUID(-451018135); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Channel = new PrefabGUID(-657549570); public static readonly PrefabGUID AB_Spear_AThousandSpears_Stab_Hit = new PrefabGUID(-1662516734); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_AbilityGroup = new PrefabGUID(1130939687); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_Cast = new PrefabGUID(2022337060); public static readonly PrefabGUID AB_Spectral_Guardian_MeleeAttack_Hit = new PrefabGUID(320741315); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_AbilityGroup = new PrefabGUID(-1298478938); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_Cast = new PrefabGUID(-1387812876); public static readonly PrefabGUID AB_Spectral_SpellSlinger_Projectile_Projectile = new PrefabGUID(338892768); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Buff = new PrefabGUID(-1899305647); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Cast = new PrefabGUID(2083925528); public static readonly PrefabGUID AB_Spider_Baneling_ChangeState_Group = new PrefabGUID(1790377808); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Area = new PrefabGUID(1828396614); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Cast = new PrefabGUID(-68475657); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Cast_OLD = new PrefabGUID(1005873034); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Debuff = new PrefabGUID(1314931922); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Group = new PrefabGUID(-891106318); public static readonly PrefabGUID AB_Spider_Baneling_Explode_Poison_Hit = new PrefabGUID(-2042355927); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_AbilityGroup = new PrefabGUID(983916408); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_Cast = new PrefabGUID(-2106352427); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_SummonThrow = new PrefabGUID(-1997270727); public static readonly PrefabGUID AB_Spider_Broodmother_SpawnAdds_Trigger = new PrefabGUID(-1238737320); public static readonly PrefabGUID AB_Spider_Forest_BackStep_AbilityGroup = new PrefabGUID(858891748); public static readonly PrefabGUID AB_Spider_Forest_BackStep_Cast = new PrefabGUID(201290141); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_AbilityGroup = new PrefabGUID(-1425167877); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Cast = new PrefabGUID(-435135295); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Channel = new PrefabGUID(2058461104); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_CircleTarget = new PrefabGUID(2072031527); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_CocoonBuff = new PrefabGUID(1172960771); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_Hit = new PrefabGUID(-1003349420); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_HitBuff = new PrefabGUID(-732214986); public static readonly PrefabGUID AB_Spider_Forest_Cocoonify_MinionLifetime = new PrefabGUID(486535223); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_AbilityGroup = new PrefabGUID(1841930998); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_Cast = new PrefabGUID(2015592533); public static readonly PrefabGUID AB_Spider_Forest_MeleeAttack_Hit = new PrefabGUID(-1491144790); public static readonly PrefabGUID AB_Spider_Forest_Webbing_AbilityGroup = new PrefabGUID(1713280509); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Area = new PrefabGUID(-732416810); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Cast = new PrefabGUID(746052462); public static readonly PrefabGUID AB_Spider_Forest_Webbing_Throw = new PrefabGUID(1884314193); public static readonly PrefabGUID AB_Spider_Forestling_Attack_AbilityGroup = new PrefabGUID(-292254536); public static readonly PrefabGUID AB_Spider_Forestling_Attack_Cast = new PrefabGUID(1823086934); public static readonly PrefabGUID AB_Spider_Forestling_Attack_Hit = new PrefabGUID(-1666093740); public static readonly PrefabGUID AB_Spider_Melee_BackStep_AbilityGroup = new PrefabGUID(792257682); public static readonly PrefabGUID AB_Spider_Melee_BackStep_Cast = new PrefabGUID(138477419); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Cast = new PrefabGUID(-1958614057); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Group = new PrefabGUID(1693120911); public static readonly PrefabGUID AB_Spider_Melee_FastMeleeAttack_Hit = new PrefabGUID(1260031697); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Cast = new PrefabGUID(-1744666997); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Group = new PrefabGUID(1820645555); public static readonly PrefabGUID AB_Spider_Melee_MeleeAttack_Hit = new PrefabGUID(-987891944); public static readonly PrefabGUID AB_Spider_Melee_Webbing_AbilityGroup = new PrefabGUID(-915534386); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Area = new PrefabGUID(1973587529); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Cast = new PrefabGUID(-1543261361); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Channel_Buff = new PrefabGUID(-1791410055); public static readonly PrefabGUID AB_Spider_Melee_Webbing_Throw = new PrefabGUID(-1559961505); public static readonly PrefabGUID AB_Spider_Queen_AoE_AbilityGroup = new PrefabGUID(1573712465); public static readonly PrefabGUID AB_Spider_Queen_AoE_Area = new PrefabGUID(-2042374404); public static readonly PrefabGUID AB_Spider_Queen_AoE_Cast = new PrefabGUID(-166678097); public static readonly PrefabGUID AB_Spider_Queen_AoE_SmallArea = new PrefabGUID(1050381015); public static readonly PrefabGUID AB_Spider_Queen_AoE_SmallThrow = new PrefabGUID(-921815119); public static readonly PrefabGUID AB_Spider_Queen_AoE_Throw = new PrefabGUID(-1467102322); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_AbilityGroup = new PrefabGUID(2130811227); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Cast = new PrefabGUID(766165279); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Channel = new PrefabGUID(-1687344116); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_CocoonBuff = new PrefabGUID(831431517); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_Hit = new PrefabGUID(-403955900); public static readonly PrefabGUID AB_Spider_Queen_Cocoonify_HitBuff = new PrefabGUID(-1679785240); public static readonly PrefabGUID AB_Spider_Queen_Hard_ExplodingPoisonArea = new PrefabGUID(-1222197876); public static readonly PrefabGUID AB_Spider_Queen_Hard_ExplodingPoisonBuff = new PrefabGUID(113363813); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_AbilityGroup = new PrefabGUID(1274762079); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_Cast = new PrefabGUID(1980911243); public static readonly PrefabGUID AB_Spider_Queen_MeleeAttack_Hit = new PrefabGUID(582407450); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_AbilityGroup = new PrefabGUID(-2109003637); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_Cast = new PrefabGUID(836784018); public static readonly PrefabGUID AB_Spider_Queen_PBAoE_Hit = new PrefabGUID(-1077599424); public static readonly PrefabGUID AB_Spider_Queen_Poison_Debuff = new PrefabGUID(154706618); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_AbilityGroup = new PrefabGUID(-1586810476); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Cast = new PrefabGUID(-683448231); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Channel = new PrefabGUID(754361238); public static readonly PrefabGUID AB_Spider_Queen_ProjectileLoop_Projectile = new PrefabGUID(-1145897844); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_AbilityGroup = new PrefabGUID(1132262199); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_Cast = new PrefabGUID(221952544); public static readonly PrefabGUID AB_Spider_Queen_RangeAttack_Projectile = new PrefabGUID(-960461822); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_AbilityGroup = new PrefabGUID(-1779071085); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Explosive = new PrefabGUID(-91153538); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Melee = new PrefabGUID(-728018205); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Ranged = new PrefabGUID(1616741584); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Cast_Small = new PrefabGUID(-1650304246); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Explosive = new PrefabGUID(-239069676); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_AbilityGroup = new PrefabGUID(-1448118517); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_Cast_Melee = new PrefabGUID(-35070703); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_GateBoss_Melee = new PrefabGUID(362299353); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Melee = new PrefabGUID(-163186017); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Ranged = new PrefabGUID(826633048); public static readonly PrefabGUID AB_Spider_Queen_SpawnAdds_Small = new PrefabGUID(426549163); public static readonly PrefabGUID AB_Spider_Queen_WebHook = new PrefabGUID(1678598978); public static readonly PrefabGUID AB_Spider_Queen_WebHook_AbilityGroup = new PrefabGUID(1499629710); public static readonly PrefabGUID AB_Spider_Queen_WebHook_Cast = new PrefabGUID(1099578860); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_AbilityGroup = new PrefabGUID(193592408); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Area = new PrefabGUID(-35324595); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Cast = new PrefabGUID(482243952); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Debuff = new PrefabGUID(-1328565762); public static readonly PrefabGUID AB_Spider_Queen_WebProjectile_Projectile = new PrefabGUID(-1971512697); public static readonly PrefabGUID AB_Spider_Range_BackStep_AbilityGroup = new PrefabGUID(-1072715636); public static readonly PrefabGUID AB_Spider_Range_BackStep_Cast = new PrefabGUID(1649891046); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Cast = new PrefabGUID(-1692933019); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Group = new PrefabGUID(-1694480301); public static readonly PrefabGUID AB_Spider_Range_CloseAttack_Hit = new PrefabGUID(-1549369887); public static readonly PrefabGUID AB_Spider_Range_Poison_Debuff = new PrefabGUID(141775141); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile = new PrefabGUID(-1111503324); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile_Cast = new PrefabGUID(-962768798); public static readonly PrefabGUID AB_Spider_Range_PoisonProjectile_Group = new PrefabGUID(464665677); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Cast = new PrefabGUID(1651443656); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Group = new PrefabGUID(-1655641312); public static readonly PrefabGUID AB_Spider_Spiderling_Attack_Hit = new PrefabGUID(-54705642); public static readonly PrefabGUID AB_StoneGolem_Awake_Cast = new PrefabGUID(-1167677688); public static readonly PrefabGUID AB_StoneGolem_Awake_Group = new PrefabGUID(-793376955); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_Cast = new PrefabGUID(-112953310); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_Group = new PrefabGUID(-352214814); public static readonly PrefabGUID AB_StoneGolem_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1072867618); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_AbilityGroup = new PrefabGUID(-1045581646); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_Cast = new PrefabGUID(-68428579); public static readonly PrefabGUID AB_StoneGolem_GroundSlam_Hit = new PrefabGUID(1400631654); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_AbilityGroup = new PrefabGUID(1272395899); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_Cast = new PrefabGUID(-1508767874); public static readonly PrefabGUID AB_StoneGolem_MeleeAttack_Hit = new PrefabGUID(-504003404); public static readonly PrefabGUID AB_StoneGolem_RockSlam_AbilityGroup = new PrefabGUID(418002062); public static readonly PrefabGUID AB_StoneGolem_RockSlam_Cast = new PrefabGUID(1492118429); public static readonly PrefabGUID AB_StoneGolem_RockSlam_Projectile = new PrefabGUID(-219578446); public static readonly PrefabGUID AB_Storm_BallLightning_AbilityGroup = new PrefabGUID(1249925269); public static readonly PrefabGUID AB_Storm_BallLightning_AreaImpact = new PrefabGUID(-78524155); public static readonly PrefabGUID AB_Storm_BallLightning_Cast = new PrefabGUID(-1829701216); public static readonly PrefabGUID AB_Storm_BallLightning_Projectile = new PrefabGUID(1330012711); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Haste = new PrefabGUID(-235064089); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Recast_AbilityGroup = new PrefabGUID(-440373841); public static readonly PrefabGUID AB_Storm_BallLightning_SpellMod_Recast_Buff = new PrefabGUID(1144591708); public static readonly PrefabGUID AB_Storm_BallLightning_Spellmod_Recast_Cast = new PrefabGUID(-537359230); public static readonly PrefabGUID AB_Storm_BallLightning_Spellmod_Recast_Trigger = new PrefabGUID(1883720601); public static readonly PrefabGUID AB_Storm_Cyclone_AbilityGroup = new PrefabGUID(-356990326); public static readonly PrefabGUID AB_Storm_Cyclone_Cast = new PrefabGUID(-159503942); public static readonly PrefabGUID AB_Storm_Cyclone_Projectile = new PrefabGUID(1147396247); public static readonly PrefabGUID AB_Storm_Discharge_AbilityGroup = new PrefabGUID(1952703098); public static readonly PrefabGUID AB_Storm_Discharge_Cast = new PrefabGUID(922224629); public static readonly PrefabGUID AB_Storm_Discharge_Counter_Buff = new PrefabGUID(-755938348); public static readonly PrefabGUID AB_Storm_Discharge_ImmaterialBuff = new PrefabGUID(868387448); public static readonly PrefabGUID AB_Storm_Discharge_Projectile = new PrefabGUID(-1748756849); public static readonly PrefabGUID AB_Storm_Discharge_SpellMod_Recast_AbilityGroup = new PrefabGUID(1816495876); public static readonly PrefabGUID AB_Storm_Discharge_Spellmod_Recast_AreaImpact = new PrefabGUID(405724396); public static readonly PrefabGUID AB_Storm_Discharge_SpellMod_Recast_Buff = new PrefabGUID(1659814621); public static readonly PrefabGUID AB_Storm_Discharge_Spellmod_Recast_Cast = new PrefabGUID(-1491956067); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_01 = new PrefabGUID(1044565673); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_01_MagicSourceVariation = new PrefabGUID(-737425100); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_02 = new PrefabGUID(-1192885497); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_02_MagicSourceVariation = new PrefabGUID(-2102306724); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_Buff_03 = new PrefabGUID(1095865904); public static readonly PrefabGUID AB_Storm_Discharge_StormShield_HitBuff = new PrefabGUID(488441349); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_AbilityGroup = new PrefabGUID(1870875931); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Buff = new PrefabGUID(1538254242); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Cast = new PrefabGUID(1368053381); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Recast_AbilityGroup = new PrefabGUID(-1355723507); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Recast_Cast = new PrefabGUID(1697734124); public static readonly PrefabGUID AB_Storm_EyeOfTheStorm_Throw = new PrefabGUID(-890953469); public static readonly PrefabGUID AB_Storm_LightningTendrils_AbilityGroup = new PrefabGUID(-1184139778); public static readonly PrefabGUID AB_Storm_LightningTendrils_Cast = new PrefabGUID(-396872793); public static readonly PrefabGUID AB_Storm_LightningTendrils_Channel_Move = new PrefabGUID(259467316); public static readonly PrefabGUID AB_Storm_LightningTendrils_DummyAimpreview = new PrefabGUID(917990176); public static readonly PrefabGUID AB_Storm_LightningTendrils_Hit = new PrefabGUID(-2055591403); public static readonly PrefabGUID AB_Storm_LightningTendrils_Projectile = new PrefabGUID(-437325088); public static readonly PrefabGUID AB_Storm_LightningTendrils_SpellMod_StunBuildup = new PrefabGUID(-820686873); public static readonly PrefabGUID AB_Storm_LightningTyphoon_AbilityGroup = new PrefabGUID(-914344112); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Cast = new PrefabGUID(1220265215); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Channel = new PrefabGUID(-896298364); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Hit = new PrefabGUID(-34882604); public static readonly PrefabGUID AB_Storm_LightningTyphoon_Projectile = new PrefabGUID(143266267); public static readonly PrefabGUID AB_Storm_LightningWall_AbilityGroup = new PrefabGUID(1071205195); public static readonly PrefabGUID AB_Storm_LightningWall_Cast = new PrefabGUID(1459814320); public static readonly PrefabGUID AB_Storm_LightningWall_HitBuff = new PrefabGUID(548424626); public static readonly PrefabGUID AB_Storm_LightningWall_Object = new PrefabGUID(-343685714); public static readonly PrefabGUID AB_Storm_LightningWall_Speed_Buff = new PrefabGUID(301339098); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Shield = new PrefabGUID(1504445802); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Shield_HitBuff = new PrefabGUID(510558669); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Snare_HitBuff = new PrefabGUID(736385119); public static readonly PrefabGUID AB_Storm_LightningWall_SpellMod_Static_HitBuff = new PrefabGUID(-1541927071); public static readonly PrefabGUID AB_Storm_LightningWall_Throw = new PrefabGUID(-281608365); public static readonly PrefabGUID AB_Storm_PolarityShift_AbilityGroup = new PrefabGUID(-987810170); public static readonly PrefabGUID AB_Storm_PolarityShift_Cast = new PrefabGUID(-1683701733); public static readonly PrefabGUID AB_Storm_PolarityShift_Projectile = new PrefabGUID(-1046657693); public static readonly PrefabGUID AB_Storm_PolarityShift_SpellMod_AreaImpactDestination = new PrefabGUID(1583251106); public static readonly PrefabGUID AB_Storm_PolarityShift_SpellMod_AreaImpactOrigin = new PrefabGUID(-832039126); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Ally = new PrefabGUID(1385593239); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Owner = new PrefabGUID(-1728012537); public static readonly PrefabGUID AB_Storm_PolarityShift_Travel_Target = new PrefabGUID(1845651754); public static readonly PrefabGUID AB_Storm_RagingTempest_AbilityGroup = new PrefabGUID(2111431121); public static readonly PrefabGUID AB_Storm_RagingTempest_Area_Hit = new PrefabGUID(1514410108); public static readonly PrefabGUID AB_Storm_RagingTempest_Cast = new PrefabGUID(1726948631); public static readonly PrefabGUID AB_Storm_RagingTempest_DashOut_Phase = new PrefabGUID(1196714737); public static readonly PrefabGUID AB_Storm_RagingTempest_LightningStrike = new PrefabGUID(120071232); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_DashOut_AbilityGroup = new PrefabGUID(2037106453); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_DashOut_Cast = new PrefabGUID(1838786050); public static readonly PrefabGUID AB_Storm_RagingTempest_Other_Self_Buff = new PrefabGUID(1648657486); public static readonly PrefabGUID AB_Storm_RagingTempest_Phase = new PrefabGUID(161600994); public static readonly PrefabGUID AB_Subdue_AbilityGroup = new PrefabGUID(965421878); public static readonly PrefabGUID AB_Subdue_Active_Capture_Buff = new PrefabGUID(685381065); public static readonly PrefabGUID AB_Subdue_CaptureBuff_Target = new PrefabGUID(-1629935116); public static readonly PrefabGUID AB_Subdue_Cast = new PrefabGUID(2122566349); public static readonly PrefabGUID AB_Subdue_Channeling = new PrefabGUID(-942018407); public static readonly PrefabGUID AB_Subdue_Channeling_Target_Debuff = new PrefabGUID(-1763457371); public static readonly PrefabGUID AB_Subdue_Completed = new PrefabGUID(503680755); public static readonly PrefabGUID AB_Subdue_Owner_HasSubdueedTarget_Buff = new PrefabGUID(-1348317488); public static readonly PrefabGUID AB_Subdue_Projectile = new PrefabGUID(430016929); public static readonly PrefabGUID AB_Subdue_RecallTarget_AbilityGroup = new PrefabGUID(1479612756); public static readonly PrefabGUID AB_Subdue_RecallTarget_Cast = new PrefabGUID(1983062393); public static readonly PrefabGUID AB_Subdue_RecallTarget_PreTravel = new PrefabGUID(-882732981); public static readonly PrefabGUID AB_Subdue_RecallTarget_Travel = new PrefabGUID(-1697229695); public static readonly PrefabGUID AB_Subdue_RecallTarget_Trigger = new PrefabGUID(-1608732309); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_AbilityGroup = new PrefabGUID(1856432305); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_Cast = new PrefabGUID(1953043495); public static readonly PrefabGUID AB_Subdue_ReleaseTarget_Trigger = new PrefabGUID(-31231435); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Cast = new PrefabGUID(-23745493); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Group = new PrefabGUID(-843384411); public static readonly PrefabGUID AB_SUMMON_Wolf_Shared_MeleeAttack_Hit = new PrefabGUID(-824691221); public static readonly PrefabGUID AB_Tailor_OnAggro_AbilityGroup = new PrefabGUID(-630967346); public static readonly PrefabGUID AB_Tailor_OnAggro_Cast = new PrefabGUID(264916641); public static readonly PrefabGUID AB_Tailor_Shapeshift_AbilityGroup = new PrefabGUID(1637511208); public static readonly PrefabGUID AB_Tailor_Shapeshift_Cast = new PrefabGUID(408292383); public static readonly PrefabGUID AB_Tailor_Shapeshift_Gargoyle_Buff = new PrefabGUID(-395216184); public static readonly PrefabGUID AB_Tailor_Shapeshift_Transition_Buff = new PrefabGUID(-728707862); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Cast = new PrefabGUID(1286493708); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Group = new PrefabGUID(1487412876); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_ChargeAttack_Hit = new PrefabGUID(-31107723); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Cast = new PrefabGUID(1030533396); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Group = new PrefabGUID(1110054537); public static readonly PrefabGUID AB_Trader_Farbane_Stalker_MeleeAttack_Hit = new PrefabGUID(751441829); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Cast = new PrefabGUID(-1577981046); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Group = new PrefabGUID(787005490); public static readonly PrefabGUID AB_Trader_Farbane_Theif_HeavyAttack_Hit = new PrefabGUID(-596922628); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Cast01 = new PrefabGUID(-234317072); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Group = new PrefabGUID(-1844993528); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack01_Hit = new PrefabGUID(1876681975); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack02_Cast02 = new PrefabGUID(1363505601); public static readonly PrefabGUID AB_Trader_Farbane_Thief_MeleeAttack02_Group = new PrefabGUID(922686381); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-293207555); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Cast = new PrefabGUID(-751795687); public static readonly PrefabGUID AB_Treant_Corrupted_FallAsleep_Group = new PrefabGUID(1957509060); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_AbilityGroup = new PrefabGUID(680554094); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_Cast = new PrefabGUID(-1533530703); public static readonly PrefabGUID AB_Treant_Corrupted_MeleeAttack_Hit = new PrefabGUID(-140135517); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile = new PrefabGUID(1542861647); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Buff_Entangle_Delay = new PrefabGUID(443548044); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Cast = new PrefabGUID(1860312672); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Channel_Buff = new PrefabGUID(-1821796035); public static readonly PrefabGUID AB_Treant_Corrupted_Projectile_Group = new PrefabGUID(-891864538); public static readonly PrefabGUID AB_Treant_Corrupted_WakeUp_Cast = new PrefabGUID(-895284846); public static readonly PrefabGUID AB_Treant_Corrupted_WakeUp_Group = new PrefabGUID(-1858935493); public static readonly PrefabGUID AB_Treant_FallAsleep_Buff_SleepingIdle = new PrefabGUID(-1206507658); public static readonly PrefabGUID AB_Treant_FallAsleep_Cast = new PrefabGUID(653983875); public static readonly PrefabGUID AB_Treant_FallAsleep_Group = new PrefabGUID(761844990); public static readonly PrefabGUID AB_Treant_MeleeAttack_Cast01 = new PrefabGUID(-852753586); public static readonly PrefabGUID AB_Treant_MeleeAttack_Group = new PrefabGUID(1671419025); public static readonly PrefabGUID AB_Treant_MeleeAttack_Hit = new PrefabGUID(-146101842); public static readonly PrefabGUID AB_Treant_Projectile = new PrefabGUID(1640843047); public static readonly PrefabGUID AB_Treant_Projectile_Buff_Entangle_Delay = new PrefabGUID(1223573631); public static readonly PrefabGUID AB_Treant_Projectile_Cast = new PrefabGUID(-1794356035); public static readonly PrefabGUID AB_Treant_Projectile_Channel_Buff = new PrefabGUID(1528844664); public static readonly PrefabGUID AB_Treant_Projectile_Group = new PrefabGUID(-968756307); public static readonly PrefabGUID AB_Treant_WakeUp_Cast = new PrefabGUID(444000313); public static readonly PrefabGUID AB_Treant_WakeUp_Group = new PrefabGUID(-573678829); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Setup_SpawnMinion01 = new PrefabGUID(1389644802); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Setup_SpawnMinion02 = new PrefabGUID(-1776466828); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_AbilityGroup = new PrefabGUID(-802865471); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Area = new PrefabGUID(-495307382); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Buff = new PrefabGUID(1584874749); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Cast = new PrefabGUID(218371843); public static readonly PrefabGUID AB_TreantMantrap_Corrupted_Spit_Throw = new PrefabGUID(1141768008); public static readonly PrefabGUID AB_Undead_AreanaChampion_CorpseBuff_AbilityGroup = new PrefabGUID(-89125940); public static readonly PrefabGUID AB_Undead_AreanaChampion_CorpseBuff_Cast = new PrefabGUID(-1282045688); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_AbilityGroup = new PrefabGUID(341647784); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_Buff = new PrefabGUID(1120504274); public static readonly PrefabGUID AB_Undead_ArenaChampion_AddToDuel_Cast = new PrefabGUID(2063024278); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_AbilityGroup = new PrefabGUID(1734337277); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_Cast = new PrefabGUID(-947257653); public static readonly PrefabGUID AB_Undead_ArenaChampion_AwakeSequence_Trigger = new PrefabGUID(-909853022); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_AbilityGroup = new PrefabGUID(-782050236); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_AreaTrigger = new PrefabGUID(1325686057); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Cast = new PrefabGUID(-931371902); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Channeling = new PrefabGUID(1727243260); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Channeling_Target_Debuff = new PrefabGUID(-471020436); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Projectile = new PrefabGUID(-230762527); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_01 = new PrefabGUID(974552890); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_02 = new PrefabGUID(2041980895); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_03 = new PrefabGUID(-1968712128); public static readonly PrefabGUID AB_Undead_ArenaChampion_ChainsOfDeath_Slow_04 = new PrefabGUID(-910154993); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_AbilityGroup = new PrefabGUID(-1810214745); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_BlockChargeBuff = new PrefabGUID(837397627); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_Cast = new PrefabGUID(163324070); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_Dash = new PrefabGUID(-1846280592); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_DashEnd = new PrefabGUID(-1125182798); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_DashEndHit = new PrefabGUID(-2119414643); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_FlightBuff = new PrefabGUID(-596907406); public static readonly PrefabGUID AB_Undead_ArenaChampion_Charge_LandBuff = new PrefabGUID(411000154); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_AbilityGroup = new PrefabGUID(-1357375516); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Buff = new PrefabGUID(-1651889429); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Cast = new PrefabGUID(-90603923); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_PostTriggerBuff = new PrefabGUID(653584327); public static readonly PrefabGUID AB_Undead_ArenaChampion_CounterStrike_Trigger = new PrefabGUID(-1435902026); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_AbilityGroup = new PrefabGUID(-1175912131); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Buff = new PrefabGUID(-585546216); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Cast = new PrefabGUID(-1181129590); public static readonly PrefabGUID AB_Undead_ArenaChampion_Disengage_Dash = new PrefabGUID(2025995166); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_AbilityGroup = new PrefabGUID(-547251580); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Cast = new PrefabGUID(-2125542371); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_PreTravel = new PrefabGUID(-491232670); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Ranged_Travel = new PrefabGUID(-440418931); public static readonly PrefabGUID AB_Undead_ArenaChampion_Fadestrike_Ranged_TravelEnd = new PrefabGUID(1600795056); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_AbilityGroup = new PrefabGUID(-1756717462); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Cast = new PrefabGUID(2076261215); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Hit = new PrefabGUID(-1389269121); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Land = new PrefabGUID(900197226); public static readonly PrefabGUID AB_Undead_ArenaChampion_Kick_Travel = new PrefabGUID(-343236951); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_AbilityGroup = new PrefabGUID(-725828654); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Buff = new PrefabGUID(212835226); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Cast = new PrefabGUID(1014635843); public static readonly PrefabGUID AB_Undead_ArenaChampion_KillDisconnected_Throw = new PrefabGUID(653704530); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_AbilityGroup = new PrefabGUID(2136656017); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_Cast = new PrefabGUID(361266273); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_Phase01 = new PrefabGUID(788333614); public static readonly PrefabGUID AB_Undead_ArenaChampion_LeapStrike_PostTravelBuff02 = new PrefabGUID(1206736661); public static readonly PrefabGUID AB_Undead_ArenaChampion_PlayerBuff = new PrefabGUID(932732549); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Left_AbilityGroup = new PrefabGUID(-1253650402); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Left_Cast = new PrefabGUID(-600654654); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Right_AbilityGroup = new PrefabGUID(-887581044); public static readonly PrefabGUID AB_Undead_ArenaChampion_SideStep_Right_Cast = new PrefabGUID(1856358525); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_AbilityGroup = new PrefabGUID(821808685); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Cast = new PrefabGUID(1095176071); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Hit = new PrefabGUID(-1432718998); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_LaunchBuff = new PrefabGUID(-845142947); public static readonly PrefabGUID AB_Undead_ArenaChampion_StabLaunch_Melee = new PrefabGUID(-2057366094); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_AbilityGroup = new PrefabGUID(-1781725233); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast01 = new PrefabGUID(-1728701394); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast02 = new PrefabGUID(1349704579); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast03 = new PrefabGUID(-1235067969); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Cast04 = new PrefabGUID(1655403100); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit01 = new PrefabGUID(1226048800); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit02 = new PrefabGUID(-408974816); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit03 = new PrefabGUID(-459060299); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Hit04 = new PrefabGUID(-1690667121); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Stab_Cast = new PrefabGUID(499002625); public static readonly PrefabGUID AB_Undead_ArenaChampion_SweepAttacks_Stab_Hit = new PrefabGUID(-1984415470); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_AbilityGroup = new PrefabGUID(1322698651); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Cast = new PrefabGUID(-215946678); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Projectile = new PrefabGUID(660830020); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_SpellObject = new PrefabGUID(-1244341833); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Throw = new PrefabGUID(599983966); public static readonly PrefabGUID AB_Undead_ArenaChampion_TwinbladeThrow_Trigger = new PrefabGUID(1647360591); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_AbilityGroup = new PrefabGUID(-2023636973); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Cast01 = new PrefabGUID(1582186993); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Cast02 = new PrefabGUID(591085978); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Projectile = new PrefabGUID(3634326); public static readonly PrefabGUID AB_Undead_ArenaChampion_Windslash_Projectile02 = new PrefabGUID(-1799332178); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_AbilityGroup = new PrefabGUID(1805214524); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast01 = new PrefabGUID(1074159953); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast02 = new PrefabGUID(-1708353334); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Cast03 = new PrefabGUID(1857753465); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Channel01 = new PrefabGUID(-2113264422); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Channel02 = new PrefabGUID(487314059); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Hit01 = new PrefabGUID(1669883558); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrike_Hit02 = new PrefabGUID(-1127583591); public static readonly PrefabGUID AB_Undead_Assassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(-1553594984); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_AbilityGroup = new PrefabGUID(561623729); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_Cast = new PrefabGUID(-42396763); public static readonly PrefabGUID AB_Undead_Assassin_HeavyAttack_Hit = new PrefabGUID(-1844549124); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackward_AbilityGroup = new PrefabGUID(-1651089042); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackWard_Buff = new PrefabGUID(793107455); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackward_Cast = new PrefabGUID(1497956578); public static readonly PrefabGUID AB_Undead_Assassin_JumpBackWard_Dash = new PrefabGUID(306606332); public static readonly PrefabGUID AB_Undead_Assassin_JumpForward_AbilityGroup = new PrefabGUID(-163679409); public static readonly PrefabGUID AB_Undead_Assassin_JumpForward_Dash = new PrefabGUID(-924298294); public static readonly PrefabGUID AB_Undead_Assassin_Rush_AbilityGroup = new PrefabGUID(-776694525); public static readonly PrefabGUID AB_Undead_Assassin_Rush_Buff = new PrefabGUID(721541922); public static readonly PrefabGUID AB_Undead_Assassin_Rush_Cast = new PrefabGUID(-2118332423); public static readonly PrefabGUID AB_Undead_Asssasin_JumpForward_Cast = new PrefabGUID(176028199); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Cast = new PrefabGUID(-854430750); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Group = new PrefabGUID(-1160883278); public static readonly PrefabGUID AB_Undead_Banshee_HeavyAttack_Hit = new PrefabGUID(1909458050); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_AbilityGroup = new PrefabGUID(-1966260928); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_Cast = new PrefabGUID(2056013475); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_EffectBuff = new PrefabGUID(-151527278); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Dash_Phase = new PrefabGUID(1296363096); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_AbilityGroup = new PrefabGUID(-1942495608); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_Cast = new PrefabGUID(986265684); public static readonly PrefabGUID AB_Undead_Banshee_MorganaDash_Strike_Hit = new PrefabGUID(-1679146272); public static readonly PrefabGUID AB_Undead_Banshee_Projectile = new PrefabGUID(-826410298); public static readonly PrefabGUID AB_Undead_Banshee_Projectile_Cast = new PrefabGUID(109620751); public static readonly PrefabGUID AB_Undead_Banshee_Projectile_Group = new PrefabGUID(-930815588); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Cast = new PrefabGUID(321771995); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Group = new PrefabGUID(633696135); public static readonly PrefabGUID AB_Undead_Banshee_Shriek_Hit = new PrefabGUID(2136091756); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_Cast = new PrefabGUID(2049375272); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_End = new PrefabGUID(1866065983); public static readonly PrefabGUID AB_Undead_Banshee_Teleport_Group = new PrefabGUID(-1398375841); public static readonly PrefabGUID AB_Undead_Banshee_TravelPhase = new PrefabGUID(1523180455); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_AbilityGroup = new PrefabGUID(-323939446); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_Cast = new PrefabGUID(-264576486); public static readonly PrefabGUID AB_Undead_BishopOfDeath_ChainBolt_Hard_Projectile = new PrefabGUID(2109917921); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_AbilityGroup = new PrefabGUID(-1272200774); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Area = new PrefabGUID(233655281); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Cast = new PrefabGUID(281036889); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_AbilityGroup = new PrefabGUID(1971375367); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_Cast = new PrefabGUID(-1611591504); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_SubThrow = new PrefabGUID(-151750616); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Hard_Throw = new PrefabGUID(-1961790068); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseExplosion_Throw = new PrefabGUID(1048039556); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_AbilityGroup = new PrefabGUID(622287046); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Cast = new PrefabGUID(974865294); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Channel_Buff = new PrefabGUID(-1911074016); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_AbilityGroup = new PrefabGUID(-184530068); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Area = new PrefabGUID(-1491675002); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Cast = new PrefabGUID(1508046494); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Channel_Buff = new PrefabGUID(631759396); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Throw = new PrefabGUID(1646976651); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Hard_Trigger = new PrefabGUID(-395577573); public static readonly PrefabGUID AB_Undead_BishopOfDeath_CorpseParty_Trigger = new PrefabGUID(225764635); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_CorpseExplosion_Throw = new PrefabGUID(-1465937654); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_CorpseExplosion_ThrowSecond = new PrefabGUID(1993088854); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_AbilityGroup = new PrefabGUID(2145809434); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_Cast = new PrefabGUID(1368776559); public static readonly PrefabGUID AB_Undead_BishopOfDeath_FleshWarp_Travel_Phase = new PrefabGUID(-2135755764); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Poison_Debuff = new PrefabGUID(697763873); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile = new PrefabGUID(1391965611); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile_Cast01 = new PrefabGUID(-796653678); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Projectile_Group = new PrefabGUID(780432315); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_AbilityGroup = new PrefabGUID(852659329); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Area = new PrefabGUID(1808496158); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast01 = new PrefabGUID(-892321021); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast02 = new PrefabGUID(-839879196); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Cast03 = new PrefabGUID(354605938); public static readonly PrefabGUID AB_Undead_BishopOfDeath_SmallExplosion_Throw = new PrefabGUID(-875784734); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Snare_Buff = new PrefabGUID(1011937658); public static readonly PrefabGUID AB_Undead_BishopOfDeath_Unholy_Debuff = new PrefabGUID(-1856022521); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_AbilityGroup = new PrefabGUID(1583944483); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_BlindBuff = new PrefabGUID(-793401762); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_Cast = new PrefabGUID(986177340); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_End = new PrefabGUID(280945763); public static readonly PrefabGUID AB_Undead_BishopOfShadows_EternalDarkness_Phase = new PrefabGUID(-2020148245); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Idle_Buff = new PrefabGUID(-1782768874); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_AbilityGroup = new PrefabGUID(787702249); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Cast = new PrefabGUID(-1692167749); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_AbilityGroup = new PrefabGUID(651637774); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Cast = new PrefabGUID(1827884481); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing01 = new PrefabGUID(1813631664); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing02 = new PrefabGUID(1403025315); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Hard_Piercing03 = new PrefabGUID(278080905); public static readonly PrefabGUID AB_Undead_BishopOfShadows_Projectile_Piercing = new PrefabGUID(-966372518); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_AbilityGroup = new PrefabGUID(461701172); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_AggroBuff = new PrefabGUID(-138162557); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_Cast = new PrefabGUID(-1668853226); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_ChannelBuff = new PrefabGUID(1365773026); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowSoldier_Summon = new PrefabGUID(-1721058902); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_AbilityGroup = new PrefabGUID(1325722355); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_Cast = new PrefabGUID(-196521795); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_End = new PrefabGUID(586391433); public static readonly PrefabGUID AB_Undead_BishopOfShadows_ShadowStep_Phase = new PrefabGUID(450546330); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_AbilityGroup = new PrefabGUID(-1795148379); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Area = new PrefabGUID(470162216); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Cast = new PrefabGUID(-868543514); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Centre = new PrefabGUID(1132277864); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Left = new PrefabGUID(159545095); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Right = new PrefabGUID(743487414); public static readonly PrefabGUID AB_Undead_BishopOfShadows_TrippleBolt_Trigger = new PrefabGUID(-1057483318); public static readonly PrefabGUID AB_Undead_CursedSmith_CircleBuff = new PrefabGUID(614926231); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_AbilityGroup = new PrefabGUID(1835500377); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Cast = new PrefabGUID(566534594); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Projectile01 = new PrefabGUID(190656604); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingAxes_XStrikeXStrike_Toss_Projectile02 = new PrefabGUID(-429163663); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_AbilityGroup = new PrefabGUID(-1713640367); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_Cast = new PrefabGUID(252483460); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_End = new PrefabGUID(872008839); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_Phase = new PrefabGUID(-679671022); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_HammerSlam_PostTravelBuff = new PrefabGUID(-563149215); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_AbilityGroup = new PrefabGUID(558343424); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast01 = new PrefabGUID(-931463264); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast02 = new PrefabGUID(1683346429); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Cast03 = new PrefabGUID(686317089); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Hit = new PrefabGUID(1717667700); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingMace_MeleeAttack_Hit03 = new PrefabGUID(880812842); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_AbilityGroup = new PrefabGUID(-544864084); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast01 = new PrefabGUID(1968008713); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast02 = new PrefabGUID(-1449706522); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast03 = new PrefabGUID(1165014121); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Cast04 = new PrefabGUID(1425163377); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_Hit = new PrefabGUID(477231707); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PhaseIn = new PrefabGUID(-741948962); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PhaseOut = new PrefabGUID(124431425); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSlashers_MeleeAttack_PostDash = new PrefabGUID(-364273826); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_AbilityGroup = new PrefabGUID(793860757); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast01 = new PrefabGUID(-1915455709); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast02 = new PrefabGUID(-697013354); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Cast03 = new PrefabGUID(-326267943); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Hit = new PrefabGUID(292942779); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_MeleeAttack_Hit03 = new PrefabGUID(1712010348); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_SpearThrust_AbilityGroup = new PrefabGUID(1166337981); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSpear_SpearThrust_Cast = new PrefabGUID(-885632624); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_AbilityGroup = new PrefabGUID(-1058201566); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_Cast = new PrefabGUID(547781512); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_DashAttack_Hit = new PrefabGUID(399471754); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_AbilityGroup = new PrefabGUID(1323999965); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast01 = new PrefabGUID(1375405525); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast02 = new PrefabGUID(1895383260); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Cast03 = new PrefabGUID(1502716109); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Hit = new PrefabGUID(-537242798); public static readonly PrefabGUID AB_Undead_CursedSmith_FloatingSword_MeleeAttack_Hit03 = new PrefabGUID(1100059704); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerBuff = new PrefabGUID(1238601516); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_AbilityGroup = new PrefabGUID(-1502523453); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Cast = new PrefabGUID(-846010733); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_End = new PrefabGUID(-421364587); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Phase = new PrefabGUID(1400962626); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_PostTravelBuff = new PrefabGUID(1480234387); public static readonly PrefabGUID AB_Undead_CursedSmith_HammerSlam_Projectile = new PrefabGUID(1814297050); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_AbilityGroup = new PrefabGUID(1700777111); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast01 = new PrefabGUID(-453439341); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast02 = new PrefabGUID(-1079010741); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast03 = new PrefabGUID(1885835242); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Cast04 = new PrefabGUID(-2025301200); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_Hit = new PrefabGUID(1493201006); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PhaseIn = new PrefabGUID(1491771145); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PhaseOut = new PrefabGUID(-1451233113); public static readonly PrefabGUID AB_Undead_CursedSmith_MeleeAttack_PostDash = new PrefabGUID(-55469760); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_AbilityGroup = new PrefabGUID(-329078808); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Buff = new PrefabGUID(-1023923222); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Cast = new PrefabGUID(141486446); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_AbilityGroup = new PrefabGUID(340003308); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_Cast = new PrefabGUID(-639624682); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Charge_Phase = new PrefabGUID(-1767716643); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_End = new PrefabGUID(-125540588); public static readonly PrefabGUID AB_Undead_CursedSmith_MultiDash_Trigger = new PrefabGUID(-211091947); public static readonly PrefabGUID AB_Undead_CursedSmith_SlashersBuff = new PrefabGUID(834835214); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearBuff = new PrefabGUID(1926914760); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_AbilityGroup = new PrefabGUID(-943061757); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_Cast = new PrefabGUID(2005022536); public static readonly PrefabGUID AB_Undead_CursedSmith_SpearThrust_Projectile = new PrefabGUID(-420853520); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_AbilityGroup = new PrefabGUID(-809284772); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_AggroBuff = new PrefabGUID(-652017630); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_Cast = new PrefabGUID(432667231); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_SpawnBuff = new PrefabGUID(881201696); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_Weapon_Trigger = new PrefabGUID(1884566141); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_AbilityGroup = new PrefabGUID(847476786); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Cast = new PrefabGUID(-1775531172); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Channel = new PrefabGUID(29874824); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_PerPlayer_Trigger = new PrefabGUID(560362268); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAll_Trigger = new PrefabGUID(-476764537); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_AbilityGroup = new PrefabGUID(-1889094547); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_Cast = new PrefabGUID(-1019895922); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponAxe_Trigger = new PrefabGUID(-1270010004); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_AbilityGroup = new PrefabGUID(546685538); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_Cast = new PrefabGUID(1213813956); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponMace_Trigger = new PrefabGUID(-1487130754); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_AbilityGroup = new PrefabGUID(151173850); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_Cast = new PrefabGUID(640660691); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSlashers_Trigger = new PrefabGUID(618637519); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_AbilityGroup = new PrefabGUID(1162725480); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_Cast = new PrefabGUID(-785427492); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSpear_Trigger = new PrefabGUID(-1721868281); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_AbilityGroup = new PrefabGUID(-332863103); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_Cast = new PrefabGUID(-1234541542); public static readonly PrefabGUID AB_Undead_CursedSmith_Summon_WeaponSword_Trigger = new PrefabGUID(856838433); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_AbilityGroup = new PrefabGUID(-668888775); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Buff = new PrefabGUID(321665990); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Cast = new PrefabGUID(1554742526); public static readonly PrefabGUID AB_Undead_CursedSmith_SwordDash_Hit = new PrefabGUID(2126017567); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_AbilityGroup = new PrefabGUID(381103028); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_ApproachBuff = new PrefabGUID(1277984216); public static readonly PrefabGUID AB_Undead_FlyingSkull_Approach_Cast = new PrefabGUID(-695641187); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_AbilityGroup = new PrefabGUID(304835919); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_AggroBuff = new PrefabGUID(2057963226); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Area = new PrefabGUID(1812451074); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Cast = new PrefabGUID(1371509529); public static readonly PrefabGUID AB_Undead_FlyingSkull_SelfDestruct_Fuse = new PrefabGUID(-514685097); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_AbilityGroup = new PrefabGUID(575048784); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast01 = new PrefabGUID(1779066530); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast02 = new PrefabGUID(-976765967); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Cast03 = new PrefabGUID(493823580); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Channel01 = new PrefabGUID(1349328654); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Channel02 = new PrefabGUID(-1075520220); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Hit01 = new PrefabGUID(1191680975); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrike_Hit02 = new PrefabGUID(-1610497794); public static readonly PrefabGUID AB_Undead_GhostAssassin_DoubleStrikeFollowUp_AbilityGroup = new PrefabGUID(57588514); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_AbilityGroup = new PrefabGUID(1791635791); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_Cast = new PrefabGUID(118469802); public static readonly PrefabGUID AB_Undead_GhostAssassin_HeavyAttack_Hit = new PrefabGUID(-190897854); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackward_AbilityGroup = new PrefabGUID(236831977); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackWard_Buff = new PrefabGUID(170780167); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackward_Cast = new PrefabGUID(-13961186); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpBackWard_Dash = new PrefabGUID(-2139753444); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpForward_AbilityGroup = new PrefabGUID(-923762386); public static readonly PrefabGUID AB_Undead_GhostAssassin_JumpForward_Dash = new PrefabGUID(831313324); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_AbilityGroup = new PrefabGUID(1365714615); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_Buff = new PrefabGUID(-1284071447); public static readonly PrefabGUID AB_Undead_GhostAssassin_Rush_Cast = new PrefabGUID(948135877); public static readonly PrefabGUID AB_Undead_GhostAsssasin_JumpForward_Cast = new PrefabGUID(-375760032); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Cast_Over = new PrefabGUID(144066311); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Cast_Right = new PrefabGUID(566726913); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Down_Stun = new PrefabGUID(-615283734); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Group = new PrefabGUID(-2092537748); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Hit = new PrefabGUID(611800697); public static readonly PrefabGUID AB_Undead_GhostGuardian_AttackChain_Hit_Narrow = new PrefabGUID(-950932560); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_AbilityGroup = new PrefabGUID(948504723); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Area = new PrefabGUID(-1821037450); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Buff = new PrefabGUID(-371204788); public static readonly PrefabGUID AB_Undead_GhostGuardian_Block_Cast = new PrefabGUID(1200888291); public static readonly PrefabGUID AB_Undead_GhostGuardian_BlockBuff_Buff = new PrefabGUID(-2071441247); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_AbilityGroup = new PrefabGUID(955484879); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_Cast = new PrefabGUID(-1992093070); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_Dash = new PrefabGUID(285986372); public static readonly PrefabGUID AB_Undead_GhostGuardian_Charge_PostDashBuff = new PrefabGUID(963672441); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(1059734295); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_Cast = new PrefabGUID(-2023682111); public static readonly PrefabGUID AB_Undead_GhostGuardian_ChargeFollowUp_Hit = new PrefabGUID(-553204750); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Cast = new PrefabGUID(-184099139); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Group = new PrefabGUID(-932485064); public static readonly PrefabGUID AB_Undead_GhostMilitia_Crossbow_Projectile = new PrefabGUID(-202201979); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Cast01 = new PrefabGUID(251770776); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Cast02 = new PrefabGUID(559126206); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Group = new PrefabGUID(-1967657578); public static readonly PrefabGUID AB_Undead_GhostMilitia_Light_MeleeAttack_Hit = new PrefabGUID(-180866207); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Cast01 = new PrefabGUID(-521296718); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Cast02 = new PrefabGUID(-373955606); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Group = new PrefabGUID(1382585346); public static readonly PrefabGUID AB_Undead_Ghoul_MeleeAttack_Hit = new PrefabGUID(-1878119365); public static readonly PrefabGUID AB_Undead_Ghoul_RiseAgain_Death_Buff = new PrefabGUID(-765776365); public static readonly PrefabGUID AB_Undead_Ghoul_RiseAgain_Vulnerable = new PrefabGUID(1480809923); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Cast_Over = new PrefabGUID(1886395231); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Cast_Right = new PrefabGUID(2142724750); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Down_Stun = new PrefabGUID(-1715674365); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Group = new PrefabGUID(1254118139); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Hit = new PrefabGUID(-1064856246); public static readonly PrefabGUID AB_Undead_Guardian_AttackChain_Hit_Narrow = new PrefabGUID(-237598679); public static readonly PrefabGUID AB_Undead_Guardian_Block_AbilityGroup = new PrefabGUID(-313746247); public static readonly PrefabGUID AB_Undead_Guardian_Block_Area = new PrefabGUID(34437260); public static readonly PrefabGUID AB_Undead_Guardian_Block_Buff = new PrefabGUID(-237299190); public static readonly PrefabGUID AB_Undead_Guardian_Block_Cast = new PrefabGUID(-1021521834); public static readonly PrefabGUID AB_Undead_Guardian_BlockBuff_Buff = new PrefabGUID(513131292); public static readonly PrefabGUID AB_Undead_Guardian_Charge_AbilityGroup = new PrefabGUID(-955554663); public static readonly PrefabGUID AB_Undead_Guardian_Charge_Cast = new PrefabGUID(65263502); public static readonly PrefabGUID AB_Undead_Guardian_Charge_Dash = new PrefabGUID(429409035); public static readonly PrefabGUID AB_Undead_Guardian_Charge_PostDashBuff = new PrefabGUID(604228851); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_AbilityGroup = new PrefabGUID(124368471); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_Cast = new PrefabGUID(-87608358); public static readonly PrefabGUID AB_Undead_Guardian_ChargeFollowUp_Hit = new PrefabGUID(521320642); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_AbilityGroup = new PrefabGUID(1294567037); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Cast_01 = new PrefabGUID(-1725903770); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Cast_02 = new PrefabGUID(1238527663); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Down_Stun = new PrefabGUID(-1682757195); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Hit_01 = new PrefabGUID(-1511573035); public static readonly PrefabGUID AB_Undead_Guardian_MinionAttackChain_Hit_02 = new PrefabGUID(2083581110); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_AbilityGroup = new PrefabGUID(-265915268); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_Cast = new PrefabGUID(799157671); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_Phase = new PrefabGUID(1315022747); public static readonly PrefabGUID AB_Undead_Guardian_NecroWarp_PostWarpBuff = new PrefabGUID(1497959076); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AbilityGroup = new PrefabGUID(-1532726733); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AggroImageBuff = new PrefabGUID(1771020451); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AggroOwnerBuff = new PrefabGUID(-229821029); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_AttackBuff = new PrefabGUID(-1558669174); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_Cast = new PrefabGUID(-286856064); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_Dash = new PrefabGUID(1412957994); public static readonly PrefabGUID AB_Undead_Infiltrator_AfterImage_MinionSpawnTrigger = new PrefabGUID(1176947186); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_AbilityGroup = new PrefabGUID(1986068244); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_BlindBuff = new PrefabGUID(978837924); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_Cast = new PrefabGUID(1760437256); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HideBuff = new PrefabGUID(975893192); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HideTrigger = new PrefabGUID(-743759578); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_HintOnCastBuff = new PrefabGUID(-607238178); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_InitBuff = new PrefabGUID(958910942); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_MinionShapeshiftBuff = new PrefabGUID(1959991342); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_RevealBuff = new PrefabGUID(1595061330); public static readonly PrefabGUID AB_Undead_Infiltrator_ArmyOfShadows_SpawnMinions = new PrefabGUID(-653733169); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_AbilityGroup = new PrefabGUID(1456136938); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Cast01 = new PrefabGUID(-1001056735); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Cast02 = new PrefabGUID(790730804); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Channel01 = new PrefabGUID(180385648); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Channel02 = new PrefabGUID(-1141170119); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Hit01 = new PrefabGUID(291851938); public static readonly PrefabGUID AB_Undead_Infiltrator_DoubleStrike_Hit02 = new PrefabGUID(1505223849); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_AbilityGroup = new PrefabGUID(-1422240708); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_Cast = new PrefabGUID(-574437319); public static readonly PrefabGUID AB_Undead_Infiltrator_HeavyAttack_Hit = new PrefabGUID(-1988679474); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_AbilityGroup = new PrefabGUID(1621601748); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast01 = new PrefabGUID(763407667); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast02 = new PrefabGUID(-1637124404); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Cast03 = new PrefabGUID(589619310); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_AbilityGroup = new PrefabGUID(-39228843); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast01 = new PrefabGUID(1461447134); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast02 = new PrefabGUID(-1664437676); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Cast03 = new PrefabGUID(899460111); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Hard_Projectile = new PrefabGUID(1816287673); public static readonly PrefabGUID AB_Undead_Infiltrator_KnifeThrow_Projectile = new PrefabGUID(1784514861); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_AbilityGroup = new PrefabGUID(-1108274345); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_BlindBuff = new PrefabGUID(343928276); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_Cast = new PrefabGUID(2070389139); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HideBuff = new PrefabGUID(1400277524); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HideTrigger = new PrefabGUID(357961330); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_HintBuff = new PrefabGUID(-1887712500); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_InitBuff = new PrefabGUID(1493773465); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_MinionSpawnBuff = new PrefabGUID(1732611570); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_MinionTimer = new PrefabGUID(-1972412497); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_RevealBuff = new PrefabGUID(-1117012711); public static readonly PrefabGUID AB_Undead_Infiltrator_MasterOfDisguise_SpawnMinions = new PrefabGUID(1091940216); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_AbilityGroup = new PrefabGUID(94933870); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_Cast = new PrefabGUID(1717054384); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowFlurry_Hit = new PrefabGUID(258177675); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_AbilityGroup = new PrefabGUID(-664569083); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_AggroBuff = new PrefabGUID(1800200320); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_BleedBuff = new PrefabGUID(-1199207940); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_Cast = new PrefabGUID(1524824733); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_TargetedBuff = new PrefabGUID(-1411423820); public static readonly PrefabGUID AB_Undead_Infiltrator_ShadowStep_Travel = new PrefabGUID(-181608834); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Cast = new PrefabGUID(-1169320466); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Group = new PrefabGUID(211628325); public static readonly PrefabGUID AB_Undead_Leader_AreaAttack_Hit = new PrefabGUID(-801963153); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile = new PrefabGUID(1297172439); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile_Cast = new PrefabGUID(247831371); public static readonly PrefabGUID AB_Undead_Leader_ChainHookProjectile_Group = new PrefabGUID(234226418); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Cast01 = new PrefabGUID(-835805149); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Cast02 = new PrefabGUID(1895747735); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Group = new PrefabGUID(346834991); public static readonly PrefabGUID AB_Undead_Leader_MeleeStandard_Hit = new PrefabGUID(434502419); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Cast = new PrefabGUID(-157443148); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Dash = new PrefabGUID(1753922607); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_Group = new PrefabGUID(948587795); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_PostCastBuff = new PrefabGUID(1745713079); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_SkeletonBomb = new PrefabGUID(2026476464); public static readonly PrefabGUID AB_Undead_Leader_SpinningDash_SkeletonImpact = new PrefabGUID(550777088); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_AbilityGroup = new PrefabGUID(-1504629350); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_Buff = new PrefabGUID(-690832324); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_Cast = new PrefabGUID(-2018651670); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawnBuff = new PrefabGUID(243240214); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawner = new PrefabGUID(804082239); public static readonly PrefabGUID AB_Undead_Leader_WardOfTheDamned_SkeletonSpawner_Solo = new PrefabGUID(-1753627847); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile = new PrefabGUID(2025050692); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile_AbilityGroup = new PrefabGUID(2021815703); public static readonly PrefabGUID AB_Undead_Necromancer_Projectile_Cast = new PrefabGUID(1193324531); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_AbilityGroup = new PrefabGUID(1687310776); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_Cast = new PrefabGUID(-1872240360); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_MinionSpawn = new PrefabGUID(-733298249); public static readonly PrefabGUID AB_Undead_Necromancer_RaiseDead_SpawnBuff = new PrefabGUID(1010121838); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_AbilityGroup = new PrefabGUID(-1800699406); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_Cast = new PrefabGUID(-731368054); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_Channel = new PrefabGUID(431798349); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_MinionSpawn = new PrefabGUID(2064604230); public static readonly PrefabGUID AB_Undead_Necromancer_SummonSkulls_SpawnBuff = new PrefabGUID(-1456149655); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_AbilityGroup = new PrefabGUID(-1153380978); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_Buff = new PrefabGUID(-1361905907); public static readonly PrefabGUID AB_Undead_Priest_Elite_Emote_Aggro_Cast = new PrefabGUID(-1659518459); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_AbilityGroup = new PrefabGUID(1338374909); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_Buff = new PrefabGUID(1967430300); public static readonly PrefabGUID AB_Undead_Priest_Elite_Idle_Cast = new PrefabGUID(737822429); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile = new PrefabGUID(1537896026); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Area = new PrefabGUID(-478817853); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Cast = new PrefabGUID(1410692395); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Group = new PrefabGUID(14728131); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Hard_Cast = new PrefabGUID(672449650); public static readonly PrefabGUID AB_Undead_Priest_Elite_Projectile_Hard_Group = new PrefabGUID(1837385563); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_AbilityGroup = new PrefabGUID(1988754598); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Cast = new PrefabGUID(-1220602184); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_ChannelBuff = new PrefabGUID(-1001091278); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_AbilityGroup = new PrefabGUID(1619461812); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_Cast = new PrefabGUID(-1446844488); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_ChannelBuff = new PrefabGUID(-461513750); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_Projectile = new PrefabGUID(-1865623176); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Hard_ProxySpawner = new PrefabGUID(-1435808132); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_Projectile = new PrefabGUID(-766139646); public static readonly PrefabGUID AB_Undead_Priest_Elite_ProjectileNova_ProxySpawner = new PrefabGUID(1249580491); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_AbilityGroup = new PrefabGUID(-2034290170); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Cast = new PrefabGUID(295510185); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_ChannelBuff = new PrefabGUID(-611324031); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Minion_Buff = new PrefabGUID(883066423); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Summon_Melee = new PrefabGUID(1907343961); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseDead_Summon_Ranged = new PrefabGUID(626506163); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_AbilityGroup = new PrefabGUID(1414167161); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_Cast = new PrefabGUID(576497231); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_ChannelBuff = new PrefabGUID(850006028); public static readonly PrefabGUID AB_Undead_Priest_Elite_RaiseHorde_Minion_Buff = new PrefabGUID(1258181143); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_AbilityGroup = new PrefabGUID(-1125894381); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_Cast = new PrefabGUID(-1136805245); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_End = new PrefabGUID(493463494); public static readonly PrefabGUID AB_Undead_Priest_Elite_Teleport_Travel_Phase = new PrefabGUID(-1350548205); public static readonly PrefabGUID AB_Undead_Priest_Projectile = new PrefabGUID(1230811096); public static readonly PrefabGUID AB_Undead_Priest_Projectile_Cast = new PrefabGUID(-1526931129); public static readonly PrefabGUID AB_Undead_Priest_Projectile_Group = new PrefabGUID(-1047491293); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_AbilityGroup = new PrefabGUID(-1742500275); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Cast = new PrefabGUID(145839750); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Minion_Buff = new PrefabGUID(-603286810); public static readonly PrefabGUID AB_Undead_Priest_RaiseDead_Summon = new PrefabGUID(26213905); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Cast01 = new PrefabGUID(-1282137109); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Group = new PrefabGUID(32629003); public static readonly PrefabGUID AB_Undead_RottingGhoul_MeleeAttack_Hit = new PrefabGUID(1842470984); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_AbilityGroup = new PrefabGUID(-22490832); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_Cast = new PrefabGUID(1323803401); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_End = new PrefabGUID(73337284); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStep_Phase = new PrefabGUID(-2041535242); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_AbilityGroup = new PrefabGUID(-200440242); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_Cast = new PrefabGUID(-513494231); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Dash_Phase = new PrefabGUID(-1716963543); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_AbilityGroup = new PrefabGUID(-660542965); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_Cast = new PrefabGUID(778738728); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_FadeOut = new PrefabGUID(-869896396); public static readonly PrefabGUID AB_Undead_ShadowSoldier_GateBoss_ShadowStrike_Strike_Hit = new PrefabGUID(-871881847); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_AbilityGroup = new PrefabGUID(1478784055); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_Cast = new PrefabGUID(1242763786); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Dash_Phase = new PrefabGUID(1593933247); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_AbilityGroup = new PrefabGUID(1435233272); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_Cast = new PrefabGUID(1295102358); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_FadeOut = new PrefabGUID(972047308); public static readonly PrefabGUID AB_Undead_ShadowSoldier_ShadowStrike_Strike_Hit = new PrefabGUID(1909934951); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile = new PrefabGUID(-855217913); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_AbilityGroup = new PrefabGUID(-818533945); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_Cast_01 = new PrefabGUID(-1135675071); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Minion_Projectile_Cast_02 = new PrefabGUID(779413087); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile = new PrefabGUID(-2097764830); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_AbilityGroup = new PrefabGUID(-20539715); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_Cast_01 = new PrefabGUID(1159669581); public static readonly PrefabGUID AB_Undead_SkeletonApprentice_Projectile_Cast_02 = new PrefabGUID(986775615); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_AbilityGroup = new PrefabGUID(2095802125); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_Cast = new PrefabGUID(454659105); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_TailBuff = new PrefabGUID(892457475); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Dig_UndergroudBuff = new PrefabGUID(580160506); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_AbilityGroup = new PrefabGUID(-1104043123); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_Cast = new PrefabGUID(-1433098728); public static readonly PrefabGUID AB_Undead_SkeletonGolem_MeleeAttack_Hit = new PrefabGUID(-153445066); public static readonly PrefabGUID AB_Undead_SkeletonGolem_SpawnMinionThrow = new PrefabGUID(-53762695); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_AbilityGroup = new PrefabGUID(-386396572); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_Cast = new PrefabGUID(-1927128094); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_LaunchBuff = new PrefabGUID(522109406); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Spit_StunBuff = new PrefabGUID(209011126); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_AbilityGroup = new PrefabGUID(937561987); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Cast = new PrefabGUID(-2000416863); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_End = new PrefabGUID(-1794709849); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_HasSwallowedBuff = new PrefabGUID(1303687336); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Hit = new PrefabGUID(-886600453); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_OnHitTravel = new PrefabGUID(-1014729642); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_Phase = new PrefabGUID(-1865259954); public static readonly PrefabGUID AB_Undead_SkeletonGolem_Swallow_TargetSwallowedBuff = new PrefabGUID(-743287512); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile = new PrefabGUID(-1904253502); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile_Cast = new PrefabGUID(-141328123); public static readonly PrefabGUID AB_Undead_SkeletonMage_Projectile_Group = new PrefabGUID(822633768); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Cast = new PrefabGUID(1921140887); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Group = new PrefabGUID(379001645); public static readonly PrefabGUID AB_Undead_SkeletonMage_UnholyBlast_Throw = new PrefabGUID(-161666976); public static readonly PrefabGUID AB_Undead_ZealousCultist_Emote_OnAggro_Buff = new PrefabGUID(1906937031); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_AbilityGroup = new PrefabGUID(-281508142); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_Cast = new PrefabGUID(-1974474964); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_ChannelBuff = new PrefabGUID(-1801060736); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_PreTravel = new PrefabGUID(-1715817194); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_Travel = new PrefabGUID(3129866); public static readonly PrefabGUID AB_Undead_ZealousCultist_GhastlyMockery_TravelEnd = new PrefabGUID(1621595488); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_AbilityGroup = new PrefabGUID(-1912093062); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_Cast = new PrefabGUID(-645536843); public static readonly PrefabGUID AB_Undead_ZealousCultist_Ghost_Possess_Dash = new PrefabGUID(172238210); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_AbilityGroup = new PrefabGUID(-552245952); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_Cast = new PrefabGUID(380712186); public static readonly PrefabGUID AB_Undead_ZealousCultist_RaiseDead_Summon = new PrefabGUID(1648548457); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_AbilityGroup = new PrefabGUID(-1441325084); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_AggroBuff = new PrefabGUID(-1143388187); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Cast = new PrefabGUID(-1995728238); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_HideBuff = new PrefabGUID(-528898382); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_AbilityGroup = new PrefabGUID(-597391921); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_Cast = new PrefabGUID(-1243095926); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_Melee_Hit = new PrefabGUID(573381998); public static readonly PrefabGUID AB_Undead_ZealousCultist_ShadowMeld_MeleeBuff = new PrefabGUID(1723269933); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_AbilityGroup_01 = new PrefabGUID(-116587794); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_AbilityGroup_02 = new PrefabGUID(-280574043); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Cast_01 = new PrefabGUID(1324777714); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Cast_02 = new PrefabGUID(1524438019); public static readonly PrefabGUID AB_Undead_ZealousCultist_Slice_Hit = new PrefabGUID(-803538080); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_AbilityGroup = new PrefabGUID(-1784566500); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_Cast = new PrefabGUID(-670440939); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_ChannelBuff = new PrefabGUID(1711575556); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_SpawnBuff = new PrefabGUID(-1680355490); public static readonly PrefabGUID AB_Undead_ZealousCultist_SummonGhosts_Summon = new PrefabGUID(-539714775); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_AbilityGroup = new PrefabGUID(-1781779733); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_Buff = new PrefabGUID(-1203200208); public static readonly PrefabGUID AB_Unholy_ArmyOfTheDead_Cast = new PrefabGUID(-1960130324); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_AbilityGroup = new PrefabGUID(-1845982676); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Cast = new PrefabGUID(-1188505466); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Channeling = new PrefabGUID(-417269477); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Channeling_Target_Debuff = new PrefabGUID(1561792386); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Projectile = new PrefabGUID(-662134544); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_01 = new PrefabGUID(-713055068); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_02 = new PrefabGUID(-1571744103); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_03 = new PrefabGUID(1152657814); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Slow_04 = new PrefabGUID(-193504257); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Spellmod_Area = new PrefabGUID(-488038318); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_Spellmod_BoneSpirit = new PrefabGUID(-1579738354); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_SpellMod_SkullNova_HitBuff = new PrefabGUID(-291699925); public static readonly PrefabGUID AB_Unholy_ChainsOfDeath_SpellMod_SkullNova_Projectile = new PrefabGUID(876172074); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_AbilityGroup = new PrefabGUID(481411985); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_Cast = new PrefabGUID(1649739922); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_DoubleImpact = new PrefabGUID(-313908726); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_SkullNova_HitBuff = new PrefabGUID(1028432996); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_SpellMod_SkullNova_Projectile = new PrefabGUID(-2113851031); public static readonly PrefabGUID AB_Unholy_CorpseExplosion_Throw = new PrefabGUID(57182092); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_AbilityGroup = new PrefabGUID(-1204819086); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Cast = new PrefabGUID(-1763499516); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile = new PrefabGUID(917769627); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile_Wave01 = new PrefabGUID(608176448); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_Projectile_Wave02 = new PrefabGUID(422968059); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_BoneSpirit = new PrefabGUID(-2065732462); public static readonly PrefabGUID AB_Unholy_CorruptedSKull_Spellmod_BoneSpirit_HitBuff = new PrefabGUID(162731987); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_DetonateSkeleton = new PrefabGUID(-244917388); public static readonly PrefabGUID AB_Unholy_CorruptedSkull_SpellMod_LesserProjectile = new PrefabGUID(761171323); public static readonly PrefabGUID AB_Unholy_DeathKnight_AbilityGroup = new PrefabGUID(1961570821); public static readonly PrefabGUID AB_Unholy_DeathKnight_Cast_Target = new PrefabGUID(-438571790); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Cast01 = new PrefabGUID(-432062352); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Cast02 = new PrefabGUID(-2132500072); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Group = new PrefabGUID(684476797); public static readonly PrefabGUID AB_Unholy_DeathKnight_MeleeCombo_Hit = new PrefabGUID(2108430385); public static readonly PrefabGUID AB_Unholy_DeathKnight_Summon = new PrefabGUID(959030936); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_AbilityGroup = new PrefabGUID(483769006); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_AggroBuff = new PrefabGUID(55497949); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_Cast = new PrefabGUID(1506843814); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_FadeOut = new PrefabGUID(-2075711030); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_Hit = new PrefabGUID(1553964211); public static readonly PrefabGUID AB_Unholy_DeathKnightStrike_HitBuff = new PrefabGUID(-618414655); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_AbilityGroup = new PrefabGUID(-1643450845); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Cast = new PrefabGUID(1210009422); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Phase = new PrefabGUID(792307863); public static readonly PrefabGUID AB_Unholy_FallenAngel_Dash_Post = new PrefabGUID(1159092890); public static readonly PrefabGUID AB_Unholy_FallenAngel_DeSpawnBuff = new PrefabGUID(1476380301); public static readonly PrefabGUID AB_Unholy_FallenAngel_InitAggroTrigger = new PrefabGUID(-613468346); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_AbilityGroup = new PrefabGUID(-1629569043); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast01 = new PrefabGUID(-980937315); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast02 = new PrefabGUID(-1475031143); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_Cast03 = new PrefabGUID(326756215); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit01 = new PrefabGUID(-1020775974); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit02 = new PrefabGUID(1175550711); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_StabHit03 = new PrefabGUID(1441770361); public static readonly PrefabGUID AB_Unholy_FallenAngel_MeleeAttack_SwingHit = new PrefabGUID(222273439); public static readonly PrefabGUID AB_Unholy_FallenAngel_SpawnBuff = new PrefabGUID(902904590); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_AbilityGroup = new PrefabGUID(-1336700473); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_AggroBuff = new PrefabGUID(-231483197); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Area = new PrefabGUID(-1040884098); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Cast = new PrefabGUID(972637370); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Channel = new PrefabGUID(-1875510860); public static readonly PrefabGUID AB_Unholy_FallenAngel_UnholyBarrage_Projectile = new PrefabGUID(1610096131); public static readonly PrefabGUID AB_Unholy_Shared_DeathKnightSpawner = new PrefabGUID(-364717473); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner = new PrefabGUID(-552454696); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Death_Buff = new PrefabGUID(-1195183882); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage = new PrefabGUID(1319537394); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage_DeathKnightJewel = new PrefabGUID(1654690407); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Mage_VeilOfBones = new PrefabGUID(1530861782); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_Owner = new PrefabGUID(-908862643); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_VeilOfBones = new PrefabGUID(48347502); public static readonly PrefabGUID AB_Unholy_Shared_SkeletonSpawner_WardOfTheDamned = new PrefabGUID(1317719472); public static readonly PrefabGUID AB_Unholy_Shared_SpellMod_SkeletonBomb_Buff = new PrefabGUID(-1089313032); public static readonly PrefabGUID AB_Unholy_Shared_SpellMod_SkeletonBomb_Impact = new PrefabGUID(1158201163); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile = new PrefabGUID(681373599); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_AbilityGroup = new PrefabGUID(604882732); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_Cast_01 = new PrefabGUID(314501028); public static readonly PrefabGUID AB_Unholy_SkeletonApprentice_Projectile_Cast_02 = new PrefabGUID(-1319556135); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Cast01 = new PrefabGUID(898935418); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Cast02 = new PrefabGUID(724168605); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Group = new PrefabGUID(537620937); public static readonly PrefabGUID AB_Unholy_SkeletonWarrior_MeleeAttack_Hit = new PrefabGUID(-1566545914); public static readonly PrefabGUID AB_Unholy_Soulburn_AbilityGroup = new PrefabGUID(2138402840); public static readonly PrefabGUID AB_Unholy_Soulburn_Area = new PrefabGUID(81992938); public static readonly PrefabGUID AB_Unholy_Soulburn_Cast = new PrefabGUID(-2054271807); public static readonly PrefabGUID AB_Unholy_Soulburn_Silence_Buff = new PrefabGUID(1387118598); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellBlock_Buff = new PrefabGUID(1552904661); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellMod_ConsumeSkeletonEmpowerBuff = new PrefabGUID(732037554); public static readonly PrefabGUID AB_Unholy_Soulburn_SpellMod_Shield = new PrefabGUID(981624853); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_AbilityGroup = new PrefabGUID(1297311521); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_Cast = new PrefabGUID(1313802242); public static readonly PrefabGUID AB_Unholy_SummonFallenAngel_Throw = new PrefabGUID(-1965470202); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_AbilityGroup = new PrefabGUID(-859352730); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Cast = new PrefabGUID(421353201); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Recast_AbilityGroup = new PrefabGUID(1351498027); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Recast_Cast = new PrefabGUID(-274736833); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_RecastBuff = new PrefabGUID(-1397728677); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Throw = new PrefabGUID(-1042746138); public static readonly PrefabGUID AB_Unholy_UnstableArachnid_Throw_Small = new PrefabGUID(-847797984); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_AbilityGroup = new PrefabGUID(-1356470853); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Cast = new PrefabGUID(-793767988); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Hit = new PrefabGUID(1712440972); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_AbilityGroup = new PrefabGUID(-1031367685); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_Cast = new PrefabGUID(824239749); public static readonly PrefabGUID AB_Unholy_UnstableArarchnid_Explode_Small_Hit = new PrefabGUID(-728541516); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_AbilityGroup = new PrefabGUID(-1136860480); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Buff = new PrefabGUID(463497101); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Cast = new PrefabGUID(685461747); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_FirstTriggerBuff = new PrefabGUID(72182581); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_AbilityGroup = new PrefabGUID(318813926); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_Cast = new PrefabGUID(-771833529); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_Recast_Cone = new PrefabGUID(1957872578); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_SpellMod_Minion_EmpowerBuff = new PrefabGUID(345491926); public static readonly PrefabGUID AB_Unholy_WardOfTheDamned_SpellMod_Minion_ShieldBuff = new PrefabGUID(1378825977); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_AbilityGroup = new PrefabGUID(-1968364229); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_Cast = new PrefabGUID(1671733210); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_FrenzyBuff = new PrefabGUID(-1256137731); public static readonly PrefabGUID AB_Vampire_Axe_Frenzy_Dash_Hit = new PrefabGUID(706730253); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1691491221); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast01 = new PrefabGUID(1215815401); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast02 = new PrefabGUID(1039072868); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Cast03 = new PrefabGUID(1822540594); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1733898626); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit02 = new PrefabGUID(-1192587580); public static readonly PrefabGUID AB_Vampire_Axe_Primary_MeleeAttack_Hit03 = new PrefabGUID(-1064937884); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_AbilityGroup = new PrefabGUID(-1439531953); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_Cast = new PrefabGUID(1716063258); public static readonly PrefabGUID AB_Vampire_Axe_Primary_Mounted_Hit = new PrefabGUID(1213681232); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_AbilityGroup = new PrefabGUID(-898001858); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Cast = new PrefabGUID(624673924); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile01 = new PrefabGUID(705543074); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile02 = new PrefabGUID(1784649791); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile03 = new PrefabGUID(-1124999751); public static readonly PrefabGUID AB_Vampire_Axe_XStrike_Toss_Projectile04 = new PrefabGUID(1047934472); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_AbilityGroup = new PrefabGUID(992015964); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Cast01 = new PrefabGUID(-2344669); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Cast02 = new PrefabGUID(-1134746195); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Hit01 = new PrefabGUID(2106390755); public static readonly PrefabGUID AB_Vampire_BloodKnight_BasicSpearDance_Hit02 = new PrefabGUID(-1041603452); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_AbilityGroup = new PrefabGUID(401668748); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_Cast = new PrefabGUID(1031815021); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_CombatMovementBuff = new PrefabGUID(897969539); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_Phase = new PrefabGUID(-875532241); public static readonly PrefabGUID AB_Vampire_BloodKnight_Dash_PostPhase = new PrefabGUID(-848293685); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_AbilityGroup = new PrefabGUID(-1730693034); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_Cast = new PrefabGUID(-254668694); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_SpawnerProjectile01 = new PrefabGUID(1547370336); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_SpawnerProjectile02 = new PrefabGUID(1946755159); public static readonly PrefabGUID AB_Vampire_BloodKnight_FieldOfSpears_Throw = new PrefabGUID(2081880481); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Abilitygroup = new PrefabGUID(-1638937811); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Cast = new PrefabGUID(594111286); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_CrimsonMaidenBuff = new PrefabGUID(-2099628778); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_Hit = new PrefabGUID(1708523254); public static readonly PrefabGUID AB_Vampire_BloodKnight_HighKick_LaunchBuff = new PrefabGUID(-96387732); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Abilitygroup = new PrefabGUID(1199769322); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Cast = new PrefabGUID(558205308); public static readonly PrefabGUID AB_Vampire_BloodKnight_HookingSpear_Projectile = new PrefabGUID(-556541412); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_AbilityGroup = new PrefabGUID(-1069881409); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_CastDash = new PrefabGUID(1412376136); public static readonly PrefabGUID AB_Vampire_BloodKnight_LineupDash_DashBuff = new PrefabGUID(-1832753737); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_AbilityGroup = new PrefabGUID(-503137581); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_Cast = new PrefabGUID(-1576352821); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_InterruptBuff = new PrefabGUID(493436999); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_PostWalkToPosBuff = new PrefabGUID(1899384474); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_WalkToPosBuff = new PrefabGUID(-128520871); public static readonly PrefabGUID AB_Vampire_BloodKnight_MaidenLineup_WalkToPosBuffSetupBuff = new PrefabGUID(-833047222); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_AbilityGroup = new PrefabGUID(1826128809); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_AreaImpact = new PrefabGUID(633578107); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Cast = new PrefabGUID(-517090394); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_AbilityGroup = new PrefabGUID(-1759227484); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_Cast = new PrefabGUID(2091608169); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Disengage_Phase = new PrefabGUID(-230111348); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_Phase = new PrefabGUID(-694017822); public static readonly PrefabGUID AB_Vampire_BloodKnight_SkeweringLeap_PostTravelBuff = new PrefabGUID(635641795); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_AbilityGroup = new PrefabGUID(1730729556); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Buff01 = new PrefabGUID(5431060); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Buff02 = new PrefabGUID(1702060331); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Cast = new PrefabGUID(1317898066); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Hit01 = new PrefabGUID(-263350064); public static readonly PrefabGUID AB_Vampire_BloodKnight_SpearTwirl_Hit02 = new PrefabGUID(-32218914); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_AbilityGroup = new PrefabGUID(-1920828971); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_Cast = new PrefabGUID(899997993); public static readonly PrefabGUID AB_Vampire_BloodKnight_SummonCrimsonMaiden_Throw = new PrefabGUID(8381436); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_AbilityGroup = new PrefabGUID(1295370119); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Cast = new PrefabGUID(1694522036); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Channel = new PrefabGUID(-2011991325); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_DashBuff = new PrefabGUID(647429443); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_Hit = new PrefabGUID(-42667970); public static readonly PrefabGUID AB_Vampire_BloodKnight_ThousandSpears_PostCastBuff = new PrefabGUID(-1843888919); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1180130515); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast01 = new PrefabGUID(1637102198); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast02 = new PrefabGUID(-1149064542); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Cast03 = new PrefabGUID(1935839696); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit01 = new PrefabGUID(658608536); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit02 = new PrefabGUID(1985792911); public static readonly PrefabGUID AB_Vampire_Claws_Primary_MeleeAttack_Hit03 = new PrefabGUID(1707080361); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_AbilityGroup = new PrefabGUID(-2092012453); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_Cast = new PrefabGUID(1355391975); public static readonly PrefabGUID AB_Vampire_Claws_Primary_Mounted_Hit = new PrefabGUID(1199194441); public static readonly PrefabGUID AB_Vampire_Claws_Puncture_Area = new PrefabGUID(-1955235420); public static readonly PrefabGUID AB_Vampire_Claws_Puncture_Buff = new PrefabGUID(588248053); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_AbilityGroup = new PrefabGUID(-621324159); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_AimIndicatorProxyObject = new PrefabGUID(556774969); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Cast = new PrefabGUID(1336763530); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_HitBox_Buff = new PrefabGUID(-1170057875); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Phase01 = new PrefabGUID(868920885); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_Phase02 = new PrefabGUID(1815234050); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff01 = new PrefabGUID(-1993803337); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff02 = new PrefabGUID(1167489575); public static readonly PrefabGUID AB_Vampire_Claws_SkeweringLeap_PostTravelBuff03 = new PrefabGUID(2127770250); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_AbilityGroup = new PrefabGUID(-496335760); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_Cast = new PrefabGUID(401022955); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_Hit = new PrefabGUID(-207925621); public static readonly PrefabGUID AB_Vampire_Claws_VaultSlash_RotationSnapBuff = new PrefabGUID(-172040706); public static readonly PrefabGUID AB_Vampire_Coating_Blood_Area = new PrefabGUID(736377251); public static readonly PrefabGUID AB_Vampire_Coating_Blood_Buff = new PrefabGUID(632067678); public static readonly PrefabGUID AB_Vampire_Coating_Chaos_Area = new PrefabGUID(-336999259); public static readonly PrefabGUID AB_Vampire_Coating_Chaos_Buff = new PrefabGUID(450980464); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Area = new PrefabGUID(827863063); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Buff = new PrefabGUID(-2035309587); public static readonly PrefabGUID AB_Vampire_Coating_Frost_Stagger_Buff = new PrefabGUID(479199152); public static readonly PrefabGUID AB_Vampire_Coating_Illusion_Area = new PrefabGUID(-1373223213); public static readonly PrefabGUID AB_Vampire_Coating_Illusion_Buff = new PrefabGUID(-2040918753); public static readonly PrefabGUID AB_Vampire_Coating_Storm_Buff = new PrefabGUID(1711652978); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_Area = new PrefabGUID(1697228430); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_BoneSpirit = new PrefabGUID(2106369097); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_BoneSpirit_HitBuff = new PrefabGUID(350089103); public static readonly PrefabGUID AB_Vampire_Coating_Unholy_Buff = new PrefabGUID(-650951987); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_Abilitygroup = new PrefabGUID(-1221546136); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_AreaHit = new PrefabGUID(1006832677); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_CrimsonVoid_Cast = new PrefabGUID(-743522369); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Abilitygroup = new PrefabGUID(560207432); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Buff = new PrefabGUID(1269197489); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_DistanceChecker_Cast = new PrefabGUID(8451661); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_AbilityGroup = new PrefabGUID(1636251764); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_Cast = new PrefabGUID(-1113824862); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_HasEntombedBuff = new PrefabGUID(-1083189016); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_Hit = new PrefabGUID(1487093447); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_PostCastBuff = new PrefabGUID(999810922); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Entomb_TargetEntombedBuff = new PrefabGUID(-1906344151); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_AbilityGroup = new PrefabGUID(444781406); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_Cast = new PrefabGUID(1261360934); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_LaunchBuff = new PrefabGUID(-382462124); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_Expunge_StunBuff = new PrefabGUID(1491083796); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Abilitygroup = new PrefabGUID(-885902431); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Buff = new PrefabGUID(-1071317519); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_LineupBuff_Cast = new PrefabGUID(-95638559); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Abilitygroup = new PrefabGUID(566224334); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Cast = new PrefabGUID(442071706); public static readonly PrefabGUID AB_Vampire_CrimsonIronMaiden_PullingChains_Projectile = new PrefabGUID(-449426218); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Cast = new PrefabGUID(-65317548); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Channel = new PrefabGUID(-2125640842); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_ForEachEnemy_Trigger = new PrefabGUID(-1841404307); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Group = new PrefabGUID(-1454951943); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Throw = new PrefabGUID(-159317484); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Throw_Center = new PrefabGUID(-1261736876); public static readonly PrefabGUID AB_Vampire_Crossbow_IceRanger_IceShard_ChannelBarrage_Trigger = new PrefabGUID(1955734498); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Cast = new PrefabGUID(1510865601); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_ForEachVampire_Trigger = new PrefabGUID(931551669); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Group = new PrefabGUID(765386506); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Throw = new PrefabGUID(929259830); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Throw_Center = new PrefabGUID(1016234872); public static readonly PrefabGUID AB_Vampire_Crossbow_IceShard_Trigger = new PrefabGUID(1565806677); public static readonly PrefabGUID AB_Vampire_Crossbow_Mark = new PrefabGUID(-1436075291); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_AttackSpeed_Buff = new PrefabGUID(-1606174818); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Buff_CritMark = new PrefabGUID(-228214637); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Cast = new PrefabGUID(1081050588); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Group = new PrefabGUID(1070827786); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Cast = new PrefabGUID(1398193255); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Group = new PrefabGUID(-187744612); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Mounted_Projectile = new PrefabGUID(-1686893077); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_Projectile = new PrefabGUID(1092920137); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfBlood_Projectile = new PrefabGUID(-795744068); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfBones_Projectile = new PrefabGUID(751971862); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1106345283); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfFrost_Projectile = new PrefabGUID(1942490597); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfIllusion_Projectile = new PrefabGUID(-1150254713); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfShadow_Projectile = new PrefabGUID(543568841); public static readonly PrefabGUID AB_Vampire_Crossbow_Primary_VeilOfStorm_Projectile = new PrefabGUID(251549069); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Cast = new PrefabGUID(-753601678); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Group = new PrefabGUID(-1760359784); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Throw = new PrefabGUID(-239491085); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Throw_Center = new PrefabGUID(1037852406); public static readonly PrefabGUID AB_Vampire_Crossbow_RainOfBolts_Trigger = new PrefabGUID(198834678); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Cast = new PrefabGUID(1364925842); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_ForkHitBuff = new PrefabGUID(2000646101); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Group = new PrefabGUID(477749225); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Projectile = new PrefabGUID(200910268); public static readonly PrefabGUID AB_Vampire_Crossbow_Snapshot_Projectile_Fork = new PrefabGUID(969385611); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_AbilityGroup = new PrefabGUID(-501371757); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_Buff = new PrefabGUID(316007177); public static readonly PrefabGUID AB_Vampire_Cultist_BloodCrystal_Cast = new PrefabGUID(-276102992); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_AbilityGroup = new PrefabGUID(1983112426); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_Buff = new PrefabGUID(-746515094); public static readonly PrefabGUID AB_Vampire_Cultist_Channel_Cast = new PrefabGUID(-1817569442); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_AbilityGroup = new PrefabGUID(-839386508); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Cast01 = new PrefabGUID(1155933423); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Cast02 = new PrefabGUID(2083659510); public static readonly PrefabGUID AB_Vampire_Cultist_MeleeAttack_Hit01 = new PrefabGUID(1469217514); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_AbilityGroup = new PrefabGUID(-2059612596); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_Buff = new PrefabGUID(-346428912); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_01_Cast = new PrefabGUID(-1417216684); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_AbilityGroup = new PrefabGUID(657450547); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_Buff = new PrefabGUID(-1400873341); public static readonly PrefabGUID AB_Vampire_Cultist_Praying_02_Cast = new PrefabGUID(282678310); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_AbilityGroup = new PrefabGUID(1210884829); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_Cast = new PrefabGUID(139302722); public static readonly PrefabGUID AB_Vampire_Cultist_StopChannel_RemoveBuff = new PrefabGUID(-214584331); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_AbilityGroup = new PrefabGUID(1814959003); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_Buff = new PrefabGUID(-1362537318); public static readonly PrefabGUID AB_Vampire_Cultist_Whittling_Cast = new PrefabGUID(1587317588); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_AbilityGroup = new PrefabGUID(1398187000); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Buff = new PrefabGUID(-1879665573); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Cast = new PrefabGUID(1394178657); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Trigger_NoSlow = new PrefabGUID(1029797703); public static readonly PrefabGUID AB_Vampire_Daggers_CallDaggers_Trigger_SlowEnemy = new PrefabGUID(1791596661); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_AbilityGroup = new PrefabGUID(1239800293); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff01 = new PrefabGUID(799431121); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff02 = new PrefabGUID(-28696696); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff03 = new PrefabGUID(1093907667); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Buff04 = new PrefabGUID(-554581022); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Cast = new PrefabGUID(-385762093); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Cast = new PrefabGUID(113706722); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Group = new PrefabGUID(873699859); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Mounted_Projectile = new PrefabGUID(-778919424); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Projectile = new PrefabGUID(1497337843); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Throw = new PrefabGUID(-984872860); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_Throw_Structure = new PrefabGUID(145651033); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfBlood_Projectile = new PrefabGUID(502934076); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfBones_Projectile = new PrefabGUID(2514746); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1283706164); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfFrost_Projectile = new PrefabGUID(473446457); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfIllusion_Projectile = new PrefabGUID(-2024930355); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfShadow_Projectile = new PrefabGUID(-1616757199); public static readonly PrefabGUID AB_Vampire_Daggers_Primary_VeilOfStorm_Projectile = new PrefabGUID(-386729745); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Cast = new PrefabGUID(579933189); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Group = new PrefabGUID(149514079); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Throw = new PrefabGUID(-1363813666); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Travel_End = new PrefabGUID(-1327716241); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Travel_Phase = new PrefabGUID(-1088240681); public static readonly PrefabGUID AB_Vampire_Daggers_RainOfDaggers_Trigger = new PrefabGUID(-527896013); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Homing = new PrefabGUID(1727095320); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Object = new PrefabGUID(-835687485); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_Primary = new PrefabGUID(684421644); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_RainOfDaggers = new PrefabGUID(267996256); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_GroundDagger_ReturnBuff = new PrefabGUID(-1593656477); public static readonly PrefabGUID AB_Vampire_Daggers_Shared_WeaponDagger_Stack_Buff = new PrefabGUID(747589337); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_AbilityGroup = new PrefabGUID(797450963); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamDamageLeftBuff = new PrefabGUID(-1354784972); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamDamageRightBuff = new PrefabGUID(-1418922545); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamInitBuff = new PrefabGUID(-1965379385); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_BeamTrigger = new PrefabGUID(1615225381); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Cast = new PrefabGUID(371463026); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ChannelBuff = new PrefabGUID(136816739); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_DummyBuff = new PrefabGUID(826236700); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_DummyBuffDeadZone = new PrefabGUID(-843864531); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_HomingTarget = new PrefabGUID(1144556881); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_PostChannelBuff = new PrefabGUID(2062960578); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Projectile = new PrefabGUID(-996124127); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ProjectileDeadZone = new PrefabGUID(-1816716930); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_ProjectileHitSlow = new PrefabGUID(-30993134); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_Trigger = new PrefabGUID(832491730); public static readonly PrefabGUID AB_Vampire_Dracula_BloodBoltSwarm_TriggerDeadZonePunish = new PrefabGUID(-622814018); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_AbilityGroup = new PrefabGUID(-1765846328); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_Cast_01 = new PrefabGUID(762545500); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_HitBuff = new PrefabGUID(1924484849); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_MainProjectile_01 = new PrefabGUID(1275775420); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_MainProjectile_02 = new PrefabGUID(252394770); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_ProjectileDelay_01 = new PrefabGUID(-1434239243); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_ProjectileDelay_02 = new PrefabGUID(10125806); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_SmallProjectile_01 = new PrefabGUID(1339264909); public static readonly PrefabGUID AB_Vampire_Dracula_BloodShower_SmallProjectile_02 = new PrefabGUID(-972904724); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_CenterSpinner01 = new PrefabGUID(-1269656471); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_CenterSpinner02 = new PrefabGUID(-1295590777); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff01 = new PrefabGUID(-1846650583); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff02 = new PrefabGUID(-309411834); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff03 = new PrefabGUID(-458630521); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_PositionBuff04 = new PrefabGUID(483865158); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Setup_AbilityGroup = new PrefabGUID(-377463117); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Setup_Cast = new PrefabGUID(1992185760); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_AbilityGroup = new PrefabGUID(2121218473); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_AttachBuff = new PrefabGUID(1650638150); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_Cast = new PrefabGUID(-1008274109); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_CooldownBuff = new PrefabGUID(1289037283); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_CooldownBuffReducer = new PrefabGUID(1857901614); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_OccupiedBuff = new PrefabGUID(-1977076036); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_SummoningBuff = new PrefabGUID(-503359065); public static readonly PrefabGUID AB_Vampire_Dracula_BloodStones_Summon_SummonTrigger = new PrefabGUID(-435574400); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_AggroBuff = new PrefabGUID(1193639264); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_CombatMovementBuff = new PrefabGUID(190708244); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_AbilityGroup = new PrefabGUID(-412600077); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_Cast = new PrefabGUID(-1924539818); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_Phase = new PrefabGUID(2121160730); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Left_PostPhase = new PrefabGUID(-1662029695); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_AbilityGroup = new PrefabGUID(411852610); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_Cast = new PrefabGUID(-263391580); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_Phase = new PrefabGUID(54404163); public static readonly PrefabGUID AB_Vampire_Dracula_Dash_Right_PostPhase = new PrefabGUID(943085785); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Abilitygroup = new PrefabGUID(-986547656); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Cast = new PrefabGUID(1753038398); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_Hit = new PrefabGUID(291587872); public static readonly PrefabGUID AB_Vampire_Dracula_DashFollowup_StartCastBuff = new PrefabGUID(2099264257); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_AbilityGroup = new PrefabGUID(-1978007923); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_Cast = new PrefabGUID(-925172731); public static readonly PrefabGUID AB_Vampire_Dracula_DestroyPillars_Trigger = new PrefabGUID(-2130424267); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Abilitygroup = new PrefabGUID(-459642635); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Cast = new PrefabGUID(-2126708738); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Hit = new PrefabGUID(-365065671); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwing_Projectile = new PrefabGUID(339536929); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Abilitygroup = new PrefabGUID(841757706); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Area01 = new PrefabGUID(7991096); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Area02 = new PrefabGUID(-1971708264); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Cast = new PrefabGUID(-1348641880); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_HitBuff = new PrefabGUID(-1105534112); public static readonly PrefabGUID AB_Vampire_Dracula_DownSwingDetonating_Projectile01 = new PrefabGUID(-2064725845); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Abilitygroup = new PrefabGUID(-1161896955); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Cast = new PrefabGUID(-1872782764); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Homing = new PrefabGUID(-2022961306); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_TargetBuff = new PrefabGUID(1805805508); public static readonly PrefabGUID AB_Vampire_Dracula_EtherialSword_Throw = new PrefabGUID(-633202440); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_AbilityGroup = new PrefabGUID(-2005193286); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Cast = new PrefabGUID(-870659793); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_EndTravel = new PrefabGUID(-1936103127); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Phase = new PrefabGUID(-1762276771); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_PostBuff = new PrefabGUID(-270468457); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_SetupTrigger = new PrefabGUID(-451706721); public static readonly PrefabGUID AB_Vampire_Dracula_Evolve_Travel = new PrefabGUID(627336618); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Abilitygroup = new PrefabGUID(27585400); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Cast = new PrefabGUID(-133668674); public static readonly PrefabGUID AB_Vampire_Dracula_EvolveComplete_Trigger = new PrefabGUID(-2068529254); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_AbilityGroup = new PrefabGUID(1128466169); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_BlindBuff = new PrefabGUID(707131139); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_Cast = new PrefabGUID(996991048); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_HiddenBuff = new PrefabGUID(-1285880026); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_MinionForceCastBuff = new PrefabGUID(-546995600); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_PrimaryTargetBuff = new PrefabGUID(-334553503); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_ShadowBatSwarmTrigger = new PrefabGUID(1948009013); public static readonly PrefabGUID AB_Vampire_Dracula_Feed_Trigger = new PrefabGUID(-1476040775); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Abilitygroup = new PrefabGUID(403738972); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Cast = new PrefabGUID(22198923); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_HasGrabedBuff = new PrefabGUID(295991134); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_Hit = new PrefabGUID(1626864909); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_InterruptedBuff = new PrefabGUID(-1842497689); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_LaunchBuff = new PrefabGUID(1548355736); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_PostChannelBuff = new PrefabGUID(-828110894); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_StartCastBuff = new PrefabGUID(-702018449); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_StunBuff = new PrefabGUID(-1162871510); public static readonly PrefabGUID AB_Vampire_Dracula_FeedAttack_TargetGrabedBuff = new PrefabGUID(123709251); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_FinalPhaseTrigger = new PrefabGUID(1051184823); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_MainProjectile_01 = new PrefabGUID(-107896611); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_MainProjectile_02 = new PrefabGUID(725398701); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_ProjectileDelay_01 = new PrefabGUID(73593071); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_ProjectileDelay_02 = new PrefabGUID(1269535310); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_SmallProjectile_01 = new PrefabGUID(307254327); public static readonly PrefabGUID AB_Vampire_Dracula_Final_BloodSlashShower_SmallProjectile_02 = new PrefabGUID(415335099); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_AbilityGroup = new PrefabGUID(-1940289109); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_Cast = new PrefabGUID(-1517569155); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_End = new PrefabGUID(2034239168); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleport_Phase = new PrefabGUID(-863790332); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_AbilityGroup = new PrefabGUID(-1589312992); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_Cast = new PrefabGUID(-1046423796); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_End = new PrefabGUID(-1296104556); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_Phase = new PrefabGUID(2084797443); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportChase_SetupTrigger = new PrefabGUID(-1730068169); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_AbilityGroup = new PrefabGUID(-703291679); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_Cast = new PrefabGUID(10737980); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_End = new PrefabGUID(-1065579429); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_Phase = new PrefabGUID(1567283220); public static readonly PrefabGUID AB_Vampire_Dracula_QuickTeleportPillar_SetupTrigger = new PrefabGUID(-947584873); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_AbilityGroup = new PrefabGUID(641943079); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_Cast = new PrefabGUID(-1418780847); public static readonly PrefabGUID AB_Vampire_Dracula_ReconstructPillars_Trigger = new PrefabGUID(2103593738); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_AbilityGroup = new PrefabGUID(-7407393); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_Cast = new PrefabGUID(-404686552); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_ChannelBuff = new PrefabGUID(-339999587); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_EndGroundImpact = new PrefabGUID(1035629642); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_ImprisonBuff = new PrefabGUID(1257496824); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_PostChannelBuff = new PrefabGUID(791291028); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_RingArea = new PrefabGUID(417050911); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_Spinner = new PrefabGUID(-513506791); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_SpinnerProjectile = new PrefabGUID(-360806952); public static readonly PrefabGUID AB_Vampire_Dracula_RingOfBlood_StunBuff = new PrefabGUID(-1485064023); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_AbilityGroup = new PrefabGUID(-1473399128); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast01 = new PrefabGUID(-772809527); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast02 = new PrefabGUID(952288992); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast03 = new PrefabGUID(-1340137049); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Cast04 = new PrefabGUID(1767267996); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_InAir = new PrefabGUID(2123856902); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile01 = new PrefabGUID(-830721072); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile02 = new PrefabGUID(-1403556180); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile03 = new PrefabGUID(-1245622953); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveFastSlash_Projectile04 = new PrefabGUID(1008897779); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_AbilityGroup = new PrefabGUID(364141768); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Cast01 = new PrefabGUID(-1572309340); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Cast02 = new PrefabGUID(1987705092); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_InAir = new PrefabGUID(906909424); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Projectile01 = new PrefabGUID(-907403588); public static readonly PrefabGUID AB_Vampire_Dracula_ShockwaveSlash_Projectile02 = new PrefabGUID(403331843); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_AggroBuff = new PrefabGUID(99830162); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_CombatMovementBuff = new PrefabGUID(400581127); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Abilitygroup = new PrefabGUID(727824809); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Cast = new PrefabGUID(-1006124756); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Followup_Hit = new PrefabGUID(84430215); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_AbilityGroup = new PrefabGUID(-618038480); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_Cast = new PrefabGUID(-1387598678); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_Phase = new PrefabGUID(1092547531); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Left_PostPhase = new PrefabGUID(-335283857); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_AbilityGroup = new PrefabGUID(1915068828); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_Cast = new PrefabGUID(515420798); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_Phase = new PrefabGUID(1198173410); public static readonly PrefabGUID AB_Vampire_Dracula_SideStep_Right_PostPhase = new PrefabGUID(-798188767); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_AggroBuff = new PrefabGUID(-1999529584); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_CombatMovementBuff = new PrefabGUID(16354075); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Abilitygroup = new PrefabGUID(-2146217789); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Cast = new PrefabGUID(1003887738); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Followup_Hit = new PrefabGUID(2041239910); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_AbilityGroup = new PrefabGUID(543365747); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_Cast = new PrefabGUID(1951405256); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_Phase = new PrefabGUID(468280254); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Left_PostPhase = new PrefabGUID(307101973); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_AbilityGroup = new PrefabGUID(-130280994); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_Cast = new PrefabGUID(1025339629); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_Phase = new PrefabGUID(1189361914); public static readonly PrefabGUID AB_Vampire_Dracula_SideStepLong_Right_PostPhase = new PrefabGUID(1318900902); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_AbilityGroup = new PrefabGUID(-847327302); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Cast01 = new PrefabGUID(915257143); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Cast02 = new PrefabGUID(954350044); public static readonly PrefabGUID AB_Vampire_Dracula_SliceNDice_Hit = new PrefabGUID(-1120685650); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Abilitygroup = new PrefabGUID(-1406000418); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Cast = new PrefabGUID(-1436464617); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_SummoningSwarm = new PrefabGUID(1879323023); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Travel = new PrefabGUID(-1267898815); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_TravelEnd = new PrefabGUID(1006279065); public static readonly PrefabGUID AB_Vampire_Dracula_SummonBats_Trigger = new PrefabGUID(1634717069); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_Abilitygroup = new PrefabGUID(532210332); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_Cast = new PrefabGUID(-1644704383); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_DummyBuff = new PrefabGUID(-291952229); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HitBuff = new PrefabGUID(371074497); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingProjectile = new PrefabGUID(1366853978); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingProjectile02 = new PrefabGUID(-157119103); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingTarget = new PrefabGUID(-1780882317); public static readonly PrefabGUID AB_Vampire_Dracula_SwordThrow_HomingTarget02 = new PrefabGUID(-865552207); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_AbilityGroup = new PrefabGUID(-1031474651); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_Cast = new PrefabGUID(-2134015139); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_End = new PrefabGUID(-565115945); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_Phase = new PrefabGUID(-1599353392); public static readonly PrefabGUID AB_Vampire_Dracula_TravelToCenter_SetupTrigger = new PrefabGUID(211431499); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_AbilityGroup = new PrefabGUID(1270706044); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_AggroBuff = new PrefabGUID(450953547); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_ApproachBuff = new PrefabGUID(647447233); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_Buff = new PrefabGUID(81888713); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_CircleBuff = new PrefabGUID(-1942308089); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_DashCast = new PrefabGUID(-1042911203); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_Hit = new PrefabGUID(-139059229); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PostCast = new PrefabGUID(1488947799); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreAbilityGroup = new PrefabGUID(-2036664505); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreCast = new PrefabGUID(-55837364); public static readonly PrefabGUID AB_Vampire_Dracula_VeilOfBats_PreTrigger = new PrefabGUID(-1951743028); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Abilitygroup = new PrefabGUID(1888098383); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Cast = new PrefabGUID(-1271478385); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_Hit = new PrefabGUID(29118071); public static readonly PrefabGUID AB_Vampire_Dracula_WolfAttack_StartCastBuff = new PrefabGUID(1681410652); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_AbilityGroup = new PrefabGUID(-1362190512); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_Cast = new PrefabGUID(-837517070); public static readonly PrefabGUID AB_Vampire_Dracula_WolfFollowup_Right_Hit = new PrefabGUID(-660546912); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_Abilitygroup = new PrefabGUID(-1287837541); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_Cast = new PrefabGUID(907728329); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterStationary_PostBuff = new PrefabGUID(-665366708); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_AbilityGroup = new PrefabGUID(837193552); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_AggroBuff = new PrefabGUID(1833168673); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_Cast = new PrefabGUID(-440680556); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_CircleBuff = new PrefabGUID(-292477174); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_End = new PrefabGUID(-1776356861); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_EnterTravel_Phase = new PrefabGUID(-1502888862); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_AbilityGroup = new PrefabGUID(-2103202975); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_Cast = new PrefabGUID(1663904542); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_End = new PrefabGUID(-327872693); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ExitTravel_Phase = new PrefabGUID(1136264320); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_ShapeshiftBuff = new PrefabGUID(-29962731); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_SummonWolfTrigger01 = new PrefabGUID(979371542); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_SummonWolfTrigger02 = new PrefabGUID(-2061647637); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_WolfEffectBuff = new PrefabGUID(-93395631); public static readonly PrefabGUID AB_Vampire_Dracula_WolfLeap_WolfSummonBuff = new PrefabGUID(-198450587); public static readonly PrefabGUID AB_Vampire_DualHammers_EmpowerBuff = new PrefabGUID(-1039306458); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(367876187); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast01 = new PrefabGUID(-1934102152); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast02 = new PrefabGUID(-457211897); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast03 = new PrefabGUID(14944627); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Cast04 = new PrefabGUID(-2120084100); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit01 = new PrefabGUID(-783943694); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit02 = new PrefabGUID(1172981822); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit03 = new PrefabGUID(-1101600490); public static readonly PrefabGUID AB_Vampire_DualHammers_Primary_MeleeAttack_Hit04 = new PrefabGUID(-1672681234); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_AbilityGroup = new PrefabGUID(-1612983976); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_Cast = new PrefabGUID(1739523711); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_EmpoweredHit = new PrefabGUID(-1399611708); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_KnockbackWallTrigger = new PrefabGUID(794780413); public static readonly PrefabGUID AB_Vampire_DualHammers_StormMace_Projectile = new PrefabGUID(888158106); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_AbilityGroup = new PrefabGUID(174655882); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_Cast = new PrefabGUID(-1816524352); public static readonly PrefabGUID AB_Vampire_GreatSword_Mounted_Hit = new PrefabGUID(2134250054); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_AbilityGroup = new PrefabGUID(-1428882023); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast01 = new PrefabGUID(-514059081); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast02 = new PrefabGUID(-1388765782); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Cast03 = new PrefabGUID(294272314); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit01 = new PrefabGUID(-1394062631); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit02 = new PrefabGUID(-1035287075); public static readonly PrefabGUID AB_Vampire_GreatSword_Primary_Moving_Hit03 = new PrefabGUID(-1026527015); public static readonly PrefabGUID AB_Vampire_Horse_Decoy_Buff = new PrefabGUID(525798474); public static readonly PrefabGUID AB_Vampire_Horse_Severance_Buff = new PrefabGUID(-735669130); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_AoE = new PrefabGUID(-554354803); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Buff = new PrefabGUID(-1577668019); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_ConfuseDummy = new PrefabGUID(-1427049295); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_DashCast = new PrefabGUID(-123221568); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Group = new PrefabGUID(-354379679); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Immaterial = new PrefabGUID(-1465627289); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_Shield = new PrefabGUID(-826786590); public static readonly PrefabGUID AB_Vampire_IceRanger_VeilOfFrost_TriggerBonusEffects = new PrefabGUID(441557111); public static readonly PrefabGUID AB_Vampire_Longbow_Focus_Buff = new PrefabGUID(785836517); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_AbilityGroup = new PrefabGUID(-149514613); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Cast = new PrefabGUID(-1622040119); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_HitBuff = new PrefabGUID(-269316428); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile = new PrefabGUID(-1787042058); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus01 = new PrefabGUID(-1702600161); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus02 = new PrefabGUID(-1403289118); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Focus03 = new PrefabGUID(1353137204); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return = new PrefabGUID(-2072236829); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus01 = new PrefabGUID(997082051); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus02 = new PrefabGUID(735119696); public static readonly PrefabGUID AB_Vampire_Longbow_GuidedArrow_Projectile_Return_Focus03 = new PrefabGUID(1861428621); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_AbilityGroup = new PrefabGUID(-8479990); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Cast = new PrefabGUID(-31853298); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Cast = new PrefabGUID(601335909); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Group = new PrefabGUID(815729526); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Mounted_Projectile = new PrefabGUID(112701587); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_Projectile = new PrefabGUID(-159061575); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfBlood_Projectile = new PrefabGUID(1016941798); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfBones_Projectile = new PrefabGUID(2034847596); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfChaos_Projectile = new PrefabGUID(-1326271119); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfFrost_Projectile = new PrefabGUID(749602528); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfIllusion_Projectile = new PrefabGUID(903216103); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfShadow_Projectile = new PrefabGUID(-222712050); public static readonly PrefabGUID AB_Vampire_Longbow_Primary_VeilOfStorm_Projectile = new PrefabGUID(-411541178); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_AbilityGroup = new PrefabGUID(1262003451); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_Cast = new PrefabGUID(1650339556); public static readonly PrefabGUID AB_Vampire_Mace_CrushingBlow_Slam_Hit = new PrefabGUID(-815273645); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(722599012); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast01 = new PrefabGUID(2094451872); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast02 = new PrefabGUID(-492074341); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Cast03 = new PrefabGUID(1014770566); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit01 = new PrefabGUID(2088529393); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit02 = new PrefabGUID(-1082055433); public static readonly PrefabGUID AB_Vampire_Mace_Primary_MeleeAttack_Hit03 = new PrefabGUID(-978853222); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_AbilityGroup = new PrefabGUID(-1874296899); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_Cast = new PrefabGUID(-693048327); public static readonly PrefabGUID AB_Vampire_Mace_Primary_Mounted_Hit = new PrefabGUID(-43419376); public static readonly PrefabGUID AB_Vampire_Mace_Smack_AbilityGroup = new PrefabGUID(1121958763); public static readonly PrefabGUID AB_Vampire_Mace_Smack_Cast = new PrefabGUID(-856181990); public static readonly PrefabGUID AB_Vampire_Mace_Smack_Hit = new PrefabGUID(-759027559); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_AbilityGroup = new PrefabGUID(131953285); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Cast = new PrefabGUID(1922346691); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_AbilityGroup = new PrefabGUID(-1209038175); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_Cast = new PrefabGUID(-1137527927); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Dash_Immaterial = new PrefabGUID(1092807604); public static readonly PrefabGUID AB_Vampire_Pollaxe_Lunge_Hit = new PrefabGUID(1635063712); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_AbilityGroup = new PrefabGUID(-655343218); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast01 = new PrefabGUID(329689845); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast02 = new PrefabGUID(586569691); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Cast03 = new PrefabGUID(-1990822209); public static readonly PrefabGUID AB_Vampire_Pollaxe_Primary_Attack_Hit01 = new PrefabGUID(673494934); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_AbilityGroup = new PrefabGUID(578807372); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Buff = new PrefabGUID(400969473); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Cast = new PrefabGUID(62714130); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Hit = new PrefabGUID(-107199836); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_AbilityGroup = new PrefabGUID(-768614933); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_Cast = new PrefabGUID(-1370960512); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Recast_Hit = new PrefabGUID(1174236120); public static readonly PrefabGUID AB_Vampire_Pollaxe_SweepAndSmash_Trigger = new PrefabGUID(13393243); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_AbilityGroup = new PrefabGUID(1461754263); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Cast = new PrefabGUID(-316825244); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Hit = new PrefabGUID(1518578059); public static readonly PrefabGUID AB_Vampire_Reaper_HowlingReaper_Projectile = new PrefabGUID(109680761); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(784360484); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast01 = new PrefabGUID(1176579852); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast02 = new PrefabGUID(363287836); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Cast03 = new PrefabGUID(-131396040); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1766314654); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit02 = new PrefabGUID(-323855182); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_MeleeAttack_Hit03 = new PrefabGUID(-318138984); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_AbilityGroup = new PrefabGUID(-1360812741); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_Cast = new PrefabGUID(666559714); public static readonly PrefabGUID AB_Vampire_Reaper_Primary_Mounted_Hit = new PrefabGUID(395001170); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_AbilityGroup = new PrefabGUID(-345652149); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_Cast = new PrefabGUID(344610321); public static readonly PrefabGUID AB_Vampire_Reaper_TendonSwing_Twist_Hit = new PrefabGUID(-1991287544); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_AbilityGroup = new PrefabGUID(1438305657); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_Buff = new PrefabGUID(252363754); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Main_Cast = new PrefabGUID(-2092408386); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_AbilityGroup = new PrefabGUID(-13231823); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_Cast = new PrefabGUID(576817260); public static readonly PrefabGUID AB_Vampire_Slashers_Camouflage_Secondary_Hit = new PrefabGUID(-1816671929); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_BloodFountain_Impact = new PrefabGUID(1782350385); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_BloodFountain_Init = new PrefabGUID(-37753615); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_AbilityGroup = new PrefabGUID(-1545438316); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_Cast = new PrefabGUID(-1731625958); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseIn = new PrefabGUID(-376195107); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseOut = new PrefabGUID(1109256146); public static readonly PrefabGUID AB_Vampire_Slashers_ElusiveStrike_Dash_PhaseOut_TripleDash = new PrefabGUID(789837952); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(1470213751); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast01 = new PrefabGUID(2138997168); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast02 = new PrefabGUID(-538471976); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Cast03 = new PrefabGUID(-553275783); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit01 = new PrefabGUID(575476860); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit02 = new PrefabGUID(-916190530); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_MeleeAttack_Hit03 = new PrefabGUID(-130408903); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_AbilityGroup = new PrefabGUID(-1315478418); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_Cast = new PrefabGUID(-799656850); public static readonly PrefabGUID AB_Vampire_Slashers_Primary_Mounted_Hit = new PrefabGUID(-1642831673); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_AbilityGroup = new PrefabGUID(830123499); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_Cast = new PrefabGUID(414243770); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_Projectile = new PrefabGUID(1649391651); public static readonly PrefabGUID AB_Vampire_Spear_Harpoon_Throw_StabBuff = new PrefabGUID(-932162694); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast01 = new PrefabGUID(-765309196); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast02 = new PrefabGUID(-69267758); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Cast03 = new PrefabGUID(-1238015847); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Attack_Group = new PrefabGUID(-208121356); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit01 = new PrefabGUID(-440626857); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit02 = new PrefabGUID(-738567452); public static readonly PrefabGUID AB_Vampire_Spear_Primary_MeleeAttack_Hit03 = new PrefabGUID(776418067); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_AbilityGroup = new PrefabGUID(409165231); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_Cast = new PrefabGUID(-717860665); public static readonly PrefabGUID AB_Vampire_Spear_Primary_Mounted_Hit = new PrefabGUID(977915645); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(-2097352908); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast01 = new PrefabGUID(-2110227527); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast02 = new PrefabGUID(1894476748); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Cast03 = new PrefabGUID(-371304967); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit01 = new PrefabGUID(-259301272); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit02 = new PrefabGUID(149968785); public static readonly PrefabGUID AB_Vampire_Sword_Primary_MeleeAttack_Hit03 = new PrefabGUID(95826761); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_AbilityGroup = new PrefabGUID(1612184116); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_Cast = new PrefabGUID(-892210814); public static readonly PrefabGUID AB_Vampire_Sword_Primary_Mounted_Hit = new PrefabGUID(2109532896); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_AbilityGroup = new PrefabGUID(1335008684); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_Cast = new PrefabGUID(804759750); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_InAir = new PrefabGUID(-1665295489); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Main_Projectile = new PrefabGUID(1283973178); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_AbilityGroup = new PrefabGUID(993583640); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Buff = new PrefabGUID(1662716694); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Cast = new PrefabGUID(1541111960); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_Hit_Trigger = new PrefabGUID(1175625395); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ImmaterialBuff = new PrefabGUID(998177393); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ReturnTravelBuff = new PrefabGUID(-1141440849); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_ReturnTriggerBuff = new PrefabGUID(864593896); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelEnd = new PrefabGUID(821686839); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetFirstStrike = new PrefabGUID(-438334309); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetSecondStrike = new PrefabGUID(1473518847); public static readonly PrefabGUID AB_Vampire_Sword_Shockwave_Recast_TravelToTargetThirdStrike = new PrefabGUID(633623772); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_AbilityGroup = new PrefabGUID(-2029046970); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Cast = new PrefabGUID(955988738); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Channel = new PrefabGUID(-947984689); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_Hit = new PrefabGUID(-791524843); public static readonly PrefabGUID AB_Vampire_Sword_Whirlwind_Spin_LastHit = new PrefabGUID(1800681949); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_AbilityGroup = new PrefabGUID(89236731); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Cast = new PrefabGUID(713894552); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_DashTriggeredBuff = new PrefabGUID(-687991518); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Projectile = new PrefabGUID(-513489536); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_AbilityGroup = new PrefabGUID(210529811); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_Cast = new PrefabGUID(2023216160); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Recast_Dash = new PrefabGUID(469216240); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_RecastBuff = new PrefabGUID(-1193660016); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_SpellObject = new PrefabGUID(-1623070578); public static readonly PrefabGUID AB_Vampire_TwinBlades_Javelin_Throw = new PrefabGUID(1080492267); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(298784800); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast01 = new PrefabGUID(-2034127456); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast02 = new PrefabGUID(1999458981); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Cast03 = new PrefabGUID(1603604088); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit01 = new PrefabGUID(-1718994272); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit02 = new PrefabGUID(-2005740545); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_MeleeAttack_Hit03 = new PrefabGUID(293630107); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_AbilityGroup = new PrefabGUID(1364381862); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_Cast = new PrefabGUID(-753800108); public static readonly PrefabGUID AB_Vampire_TwinBlades_Primary_Mounted_Hit = new PrefabGUID(1428493082); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_AbilityGroup = new PrefabGUID(-1238817965); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Cast = new PrefabGUID(-1474711270); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Hit = new PrefabGUID(2001009132); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_LaunchBuff = new PrefabGUID(-507579629); public static readonly PrefabGUID AB_Vampire_TwinBlades_SweepingStrike_Melee = new PrefabGUID(438453495); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_AbilityGroup = new PrefabGUID(-1772111618); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast01 = new PrefabGUID(-985639880); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast02 = new PrefabGUID(227980469); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Cast03 = new PrefabGUID(1497264832); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit01 = new PrefabGUID(-32506688); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit02 = new PrefabGUID(1087398180); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_MeleeAttack_Hit03 = new PrefabGUID(-598419400); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_AbilityGroup = new PrefabGUID(-57462538); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_Cast = new PrefabGUID(864166726); public static readonly PrefabGUID AB_Vampire_Unarmed_Primary_Mounted_Hit = new PrefabGUID(-1259927969); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_BloodNova = new PrefabGUID(1037148608); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Buff = new PrefabGUID(-2061378836); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_ConfuseDummy = new PrefabGUID(2006478777); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_DashCast = new PrefabGUID(1541401917); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Group = new PrefabGUID(305230608); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_Immaterial = new PrefabGUID(-1125708792); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_SpellMod_DashInflictLeechBuff = new PrefabGUID(1768402746); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_SpellMod_Empower = new PrefabGUID(934106816); public static readonly PrefabGUID AB_Vampire_VeilOfBlood_TriggerBonusEffects = new PrefabGUID(2135363194); public static readonly PrefabGUID AB_Vampire_VeilOfBones_AbilityGroup = new PrefabGUID(-498302954); public static readonly PrefabGUID AB_Vampire_VeilOfBones_BounceProjectile = new PrefabGUID(-2002550777); public static readonly PrefabGUID AB_Vampire_VeilOfBones_Buff = new PrefabGUID(204986774); public static readonly PrefabGUID AB_Vampire_VeilOfBones_ConfuseDummy = new PrefabGUID(878323192); public static readonly PrefabGUID AB_Vampire_VeilOfBones_DashCast = new PrefabGUID(-1075372945); public static readonly PrefabGUID AB_Vampire_VeilOfBones_Immaterial = new PrefabGUID(-817973910); public static readonly PrefabGUID AB_Vampire_VeilOfBones_SpellMod_DashHealMinions = new PrefabGUID(-604851435); public static readonly PrefabGUID AB_Vampire_VeilOfBones_SpellMod_DashInflictCondemnBuff = new PrefabGUID(-1699048443); public static readonly PrefabGUID AB_Vampire_VeilOfBones_TriggerBonusEffects = new PrefabGUID(208290788); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Bomb = new PrefabGUID(-1459089948); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Buff = new PrefabGUID(-2127493953); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_ConfuseDummy = new PrefabGUID(-891664509); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_DashCast = new PrefabGUID(967656807); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Group = new PrefabGUID(711231628); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Immaterial = new PrefabGUID(411590503); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Buff = new PrefabGUID(-2045383141); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_DashCast = new PrefabGUID(-1775525208); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Group = new PrefabGUID(1711943933); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_Recast_Init_Buff = new PrefabGUID(-1206989621); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_SpellMod_BonusDummy = new PrefabGUID(-1237883041); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_SpellMod_BonusDummy_Bomb = new PrefabGUID(1640449463); public static readonly PrefabGUID AB_Vampire_VeilOfChaos_TriggerBonusEffects = new PrefabGUID(506605802); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_AoE = new PrefabGUID(569397628); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Buff = new PrefabGUID(-879243806); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_ConfuseDummy = new PrefabGUID(-1896673986); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_DashCast = new PrefabGUID(-1869058934); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Group = new PrefabGUID(1709284795); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Immaterial = new PrefabGUID(-969825650); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_Shield = new PrefabGUID(1539416513); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_SpellMod_IllusionFrostBlast = new PrefabGUID(1629413464); public static readonly PrefabGUID AB_Vampire_VeilOfFrost_TriggerBonusEffects = new PrefabGUID(-1688602321); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_AbilityGroup = new PrefabGUID(-935015750); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_BlockRaidItemPickup = new PrefabGUID(-1800912008); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Buff = new PrefabGUID(-413662282); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_ConfuseDummy = new PrefabGUID(-2051088546); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_DashCast = new PrefabGUID(-1854440738); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Immaterial = new PrefabGUID(540041484); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_AbilityGroup = new PrefabGUID(1994950191); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_Buff = new PrefabGUID(1426492570); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_Cast = new PrefabGUID(1141652368); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_Recast_TravelToTargetPhase = new PrefabGUID(247596840); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_SpellMod_RecastDetonate = new PrefabGUID(890255276); public static readonly PrefabGUID AB_Vampire_VeilOfIllusion_TriggerBonusEffects = new PrefabGUID(-733228440); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Buff = new PrefabGUID(924979264); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_ConfuseDummy = new PrefabGUID(-1064609230); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_DashCast = new PrefabGUID(1414033551); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Group = new PrefabGUID(-433204738); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_Immaterial = new PrefabGUID(-834088508); public static readonly PrefabGUID AB_Vampire_VeilOfShadow_TriggerBonusEffects = new PrefabGUID(741904882); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Buff = new PrefabGUID(-612610448); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Buff_AttackSpeed = new PrefabGUID(-1515928707); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_ConfuseDummy = new PrefabGUID(1782955054); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_DashCast = new PrefabGUID(-865260859); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Group = new PrefabGUID(-84816111); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_Immaterial = new PrefabGUID(-204994091); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_LightningTriggerBuff = new PrefabGUID(812851792); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_SpellMod_SparklingIllusion = new PrefabGUID(529399706); public static readonly PrefabGUID AB_Vampire_VeilOfStorm_TriggerBonusEffects = new PrefabGUID(-1726441616); public static readonly PrefabGUID AB_Vampire_Whip_Dash_AbilityGroup = new PrefabGUID(1420346034); public static readonly PrefabGUID AB_Vampire_Whip_Dash_Cast = new PrefabGUID(1057163055); public static readonly PrefabGUID AB_Vampire_Whip_Dash_Hit = new PrefabGUID(-1875588905); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_AbilityGroup = new PrefabGUID(-313732628); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Buff = new PrefabGUID(991780070); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Cast = new PrefabGUID(1976086857); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_FlameWhip_LineOfSight_Dummy = new PrefabGUID(1182093078); public static readonly PrefabGUID AB_Vampire_Whip_Entangle_Hit = new PrefabGUID(458881440); public static readonly PrefabGUID AB_Vampire_Whip_Primary_AbilityGroup = new PrefabGUID(1752758196); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast01 = new PrefabGUID(-492732364); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast02 = new PrefabGUID(-840134858); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Cast03 = new PrefabGUID(-773581209); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Hit01 = new PrefabGUID(481928282); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Hit03 = new PrefabGUID(74248651); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_AbilityGroup = new PrefabGUID(128007572); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_Cast01 = new PrefabGUID(991446464); public static readonly PrefabGUID AB_Vampire_Whip_Primary_Mounted_Hit01 = new PrefabGUID(-222893222); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Cast = new PrefabGUID(1914334096); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Group = new PrefabGUID(-593875444); public static readonly PrefabGUID AB_Vampire_Withered_SlowAttack_Hit = new PrefabGUID(-1101950367); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_AbilityGroup = new PrefabGUID(-999342671); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_Cast = new PrefabGUID(-76116894); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_End = new PrefabGUID(-1924122124); public static readonly PrefabGUID AB_VampireCliffLeap_Travel_Phase = new PrefabGUID(-640440786); public static readonly PrefabGUID AB_VampireLeap_Travel_AbilityGroup = new PrefabGUID(1675917968); public static readonly PrefabGUID AB_VampireLeap_Travel_Cast = new PrefabGUID(-884934339); public static readonly PrefabGUID AB_VampireLeap_Travel_End = new PrefabGUID(1844838431); public static readonly PrefabGUID AB_VampireLeap_Travel_Phase = new PrefabGUID(2041070074); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_AbilityGroup = new PrefabGUID(-127510613); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Buff = new PrefabGUID(-1039310273); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Cast = new PrefabGUID(-625986880); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_End = new PrefabGUID(-1370220384); public static readonly PrefabGUID AB_VampireLeap_Travel_Recast_Phase_01 = new PrefabGUID(-2105307253); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_AbilityGroup = new PrefabGUID(859877682); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_Cast = new PrefabGUID(-934939229); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_End = new PrefabGUID(30114315); public static readonly PrefabGUID AB_VampireLeapAttack_Travel_Phase = new PrefabGUID(-839172841); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_AbilityGroup = new PrefabGUID(986693563); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_Cast = new PrefabGUID(674195926); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_End = new PrefabGUID(-1991455007); public static readonly PrefabGUID AB_VampireMountAthleticDismount_Travel_Phase_01 = new PrefabGUID(506053449); public static readonly PrefabGUID AB_VampireMountLeap_Travel_AbilityGroup = new PrefabGUID(472850370); public static readonly PrefabGUID AB_VampireMountLeap_Travel_Cast = new PrefabGUID(1600351239); public static readonly PrefabGUID AB_VampireMountLeap_Travel_End = new PrefabGUID(-944919011); public static readonly PrefabGUID AB_VampireMountLeap_Travel_Phase_01 = new PrefabGUID(-1905167211); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_AbilityGroup = new PrefabGUID(-1770479364); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Aggrobuff = new PrefabGUID(-747767123); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Cast = new PrefabGUID(485437428); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Followup_AbilityGroup = new PrefabGUID(-336633586); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Followup_Cast = new PrefabGUID(-986524867); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_Projectile = new PrefabGUID(299756620); public static readonly PrefabGUID AB_VBlood_IceRanger_Primary_VeilOfFrost_Projectile = new PrefabGUID(-2127070360); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_AbilityGroup = new PrefabGUID(-1199198217); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_Cast = new PrefabGUID(625581193); public static readonly PrefabGUID AB_Vermin_DireRat_Gnaw_Hit = new PrefabGUID(-1930371229); public static readonly PrefabGUID AB_Vermin_DireRat_Hard_Passive_AreaImpact = new PrefabGUID(-1878584557); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_AbilityGroup = new PrefabGUID(-70575944); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Buff = new PrefabGUID(933825031); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Cast = new PrefabGUID(-994660028); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnaw_Hit = new PrefabGUID(-2090130701); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnawBuff_AbilityGroup = new PrefabGUID(1450204157); public static readonly PrefabGUID AB_Vermin_DireRat_MultiGnawBuff_Cast = new PrefabGUID(457440035); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_AbilityGroup = new PrefabGUID(-1024883556); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_AreaImpact = new PrefabGUID(-992332880); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_Buff = new PrefabGUID(-682459935); public static readonly PrefabGUID AB_Vermin_DireRat_PoisonBurst_Cast = new PrefabGUID(-340764003); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_AbilityGroup = new PrefabGUID(830495620); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Cast = new PrefabGUID(-2089228057); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_ChannelBuff = new PrefabGUID(-382242631); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Minion_Buff = new PrefabGUID(847278072); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_Minion_DeSpawnBuff = new PrefabGUID(-23099846); public static readonly PrefabGUID AB_Vermin_DireRat_RatVanguard_TravelEnd_Buff = new PrefabGUID(180994592); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_AbilityGroup = new PrefabGUID(-1007898441); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_Cast = new PrefabGUID(-913776607); public static readonly PrefabGUID AB_Vermin_Rat_MeleeAttack_Hit = new PrefabGUID(-654479095); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_DaggerThrow_AbilityGroup = new PrefabGUID(1945392759); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_DaggerThrow_Cast = new PrefabGUID(-1401585282); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_Dodge_AbilityGroup = new PrefabGUID(8807466); public static readonly PrefabGUID AB_VHunter_CastleMan_BackStep_Dodge_Cast = new PrefabGUID(1005535051); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_AbilityGroup = new PrefabGUID(-1068854418); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_Cast = new PrefabGUID(1574024896); public static readonly PrefabGUID AB_VHunter_CastleMan_ChaseTargetBuff_RageBuff = new PrefabGUID(1035183129); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_AbilityGroup = new PrefabGUID(1771330790); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_Cast = new PrefabGUID(-1627940826); public static readonly PrefabGUID AB_VHunter_CastleMan_DaggerThrow_StrafeBuff = new PrefabGUID(643283588); public static readonly PrefabGUID AB_VHunter_CastleMan_FirePhase_FireStageBuff = new PrefabGUID(-2078096439); public static readonly PrefabGUID AB_VHunter_CastleMan_FirePhase_PostBuff = new PrefabGUID(-1812878201); public static readonly PrefabGUID AB_VHunter_CastleMan_Jump_EndPhase = new PrefabGUID(516378582); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_AbilityGroup = new PrefabGUID(207057426); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_Cast = new PrefabGUID(390014348); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeProjectileLeft = new PrefabGUID(1950248830); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeProjectileRight = new PrefabGUID(-1855836071); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpInit_FakeTarget = new PrefabGUID(-1053349943); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_AbilityGroup = new PrefabGUID(1122774146); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_Cast = new PrefabGUID(-42888467); public static readonly PrefabGUID AB_VHunter_CastleMan_JumpRight_Phase = new PrefabGUID(-1192684574); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_AbilityGroup = new PrefabGUID(-64218175); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Area = new PrefabGUID(-1137365939); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Cast = new PrefabGUID(-108711746); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_AbilityGroup = new PrefabGUID(504586218); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_Area = new PrefabGUID(-416419693); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_Fire_Cast = new PrefabGUID(1771926858); public static readonly PrefabGUID AB_VHunter_CastleMan_KnockbackWhip_LaunchBuff = new PrefabGUID(371476376); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_AbilityGroup = new PrefabGUID(109607953); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Area = new PrefabGUID(1719711838); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Area_IgniteHolyWater = new PrefabGUID(-1594176811); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Cast = new PrefabGUID(482129992); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_LaunchBuff = new PrefabGUID(2059862714); public static readonly PrefabGUID AB_VHunter_CastleMan_WhipAoEChangePhase_Throw = new PrefabGUID(1523629716); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Bomb = new PrefabGUID(2107447145); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Cast = new PrefabGUID(1226383020); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Group = new PrefabGUID(76767983); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_Phase = new PrefabGUID(-1323982261); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_PostTravel = new PrefabGUID(884889284); public static readonly PrefabGUID AB_VHunter_Jade_BlastVault_PreTravel = new PrefabGUID(1378150073); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Cast = new PrefabGUID(-1292054981); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Group = new PrefabGUID(-1294182358); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Cast = new PrefabGUID(-781534465); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Group = new PrefabGUID(1372353064); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Hard_Throw = new PrefabGUID(-878288024); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Object = new PrefabGUID(-623045384); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Throw = new PrefabGUID(118919744); public static readonly PrefabGUID AB_VHunter_Jade_Caltrops_Trigger = new PrefabGUID(-493871943); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Cast = new PrefabGUID(-991602260); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Group = new PrefabGUID(-526118698); public static readonly PrefabGUID AB_VHunter_Jade_DisablingShot_Projectile = new PrefabGUID(-1939067546); public static readonly PrefabGUID AB_VHunter_Jade_Emote_OnAggro_Buff = new PrefabGUID(1848994424); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Area = new PrefabGUID(-2069490191); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Cast = new PrefabGUID(10056680); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Channel_Buff = new PrefabGUID(160242883); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Group = new PrefabGUID(-453760177); public static readonly PrefabGUID AB_VHunter_Jade_ExplosiveShells_Projectile = new PrefabGUID(-1585899792); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Cast = new PrefabGUID(-83678623); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Cast2 = new PrefabGUID(1715360639); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Group = new PrefabGUID(-1783782358); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers_Projectile = new PrefabGUID(-2023066837); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast = new PrefabGUID(-489813362); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast2 = new PrefabGUID(-199320411); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Cast3 = new PrefabGUID(-71294147); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers2_Group = new PrefabGUID(-2013216961); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast = new PrefabGUID(-1789599308); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast2 = new PrefabGUID(-7302535); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Cast3 = new PrefabGUID(917052083); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers3_Group = new PrefabGUID(1196517991); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast1 = new PrefabGUID(124731264); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast2 = new PrefabGUID(2117557264); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Cast3 = new PrefabGUID(1887484149); public static readonly PrefabGUID AB_VHunter_Jade_Revolvers4_Group = new PrefabGUID(688350142); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Cast = new PrefabGUID(-1376420702); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Group = new PrefabGUID(-1884688827); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Cast = new PrefabGUID(-2072416237); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Group = new PrefabGUID(-1030552412); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Hard_Projectile = new PrefabGUID(1879712937); public static readonly PrefabGUID AB_VHunter_Jade_Snipe_Projectile = new PrefabGUID(231957557); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Buff = new PrefabGUID(1534254267); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Cast = new PrefabGUID(-371809082); public static readonly PrefabGUID AB_VHunter_Jade_Stealth_Group = new PrefabGUID(501615608); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast = new PrefabGUID(2070052426); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast_Fast = new PrefabGUID(676568621); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Cast_Hard = new PrefabGUID(871086568); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group = new PrefabGUID(-737556373); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group_Fast = new PrefabGUID(-23281706); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Group_Hard = new PrefabGUID(-1330984343); public static readonly PrefabGUID AB_VHunter_Leader_Crossbow_Projectile = new PrefabGUID(-1228092954); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Area = new PrefabGUID(-1765460971); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Buff = new PrefabGUID(338236052); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Cast = new PrefabGUID(-915237435); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_ClusterThrow = new PrefabGUID(-412946831); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Group = new PrefabGUID(985201241); public static readonly PrefabGUID AB_VHunter_Leader_FireRain_Throw = new PrefabGUID(-492541970); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Cast = new PrefabGUID(1477496524); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Group = new PrefabGUID(1501188283); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_Travel = new PrefabGUID(-306152951); public static readonly PrefabGUID AB_VHunter_Leader_LeapThrust_TravelEnd = new PrefabGUID(549083834); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Cast = new PrefabGUID(-1641038434); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Group = new PrefabGUID(1552780633); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hard_Cast = new PrefabGUID(1193298493); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hard_Group = new PrefabGUID(-1417141477); public static readonly PrefabGUID AB_VHunter_Leader_MeleeHorizontal_Hit = new PrefabGUID(1349892586); public static readonly PrefabGUID AB_VHunter_Leader_MeleeMode_Buff = new PrefabGUID(-948863305); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Cast = new PrefabGUID(-481834109); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Group = new PrefabGUID(224496996); public static readonly PrefabGUID AB_VHunter_Leader_MeleeStraight_Hit = new PrefabGUID(-1852750495); public static readonly PrefabGUID AB_VHunter_Leader_RangeMode_Buff = new PrefabGUID(368216447); public static readonly PrefabGUID AB_VHunter_Leader_Roll_AggroBuff = new PrefabGUID(1618100427); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Cast = new PrefabGUID(-890518608); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Group = new PrefabGUID(-175257190); public static readonly PrefabGUID AB_VHunter_Leader_Roll_Hit = new PrefabGUID(-98505041); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_AbilityGroup = new PrefabGUID(-1503146131); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Cast = new PrefabGUID(1928757879); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Channel = new PrefabGUID(2114888655); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Hit = new PrefabGUID(-915885442); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_AbilityGroup = new PrefabGUID(-343320686); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_Cast = new PrefabGUID(-525856624); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_Init_Trigger = new PrefabGUID(1286426228); public static readonly PrefabGUID AB_VHunter_Leader_Whirlwind_SelfKnockback = new PrefabGUID(1093848642); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Cast01 = new PrefabGUID(-85786150); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Group = new PrefabGUID(1397338806); public static readonly PrefabGUID AB_Villager_Female_MeleeAttack_Hit = new PrefabGUID(-1162225115); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Cast01 = new PrefabGUID(-821915155); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Group = new PrefabGUID(-1617717290); public static readonly PrefabGUID AB_Villager_Male_MeleeAttack_Hit = new PrefabGUID(-1760952364); public static readonly PrefabGUID AB_Voltage_ElectricRod_AbilityGroup = new PrefabGUID(-1548349308); public static readonly PrefabGUID AB_Voltage_ElectricRod_Cast = new PrefabGUID(-916278453); public static readonly PrefabGUID AB_Voltage_ElectricRod_ChannelBuff = new PrefabGUID(826536755); public static readonly PrefabGUID AB_Voltage_ElectricRod_HitBuff_HARD = new PrefabGUID(1716523710); public static readonly PrefabGUID AB_Voltage_ElectricRod_Travel_HARD = new PrefabGUID(516588505); public static readonly PrefabGUID AB_Voltage_ElectricSprint_AbilityGroup = new PrefabGUID(-177268000); public static readonly PrefabGUID AB_Voltage_ElectricSprint_Cast = new PrefabGUID(1654319550); public static readonly PrefabGUID AB_Voltage_ElectricSprint_DurationManager = new PrefabGUID(926845843); public static readonly PrefabGUID AB_Voltage_ElectricSprint_SprintBuff = new PrefabGUID(1207609590); public static readonly PrefabGUID AB_Voltage_ElectricSprint_TargetBuff = new PrefabGUID(-972644408); public static readonly PrefabGUID AB_Voltage_ElectricSprint_Trigger = new PrefabGUID(279957344); public static readonly PrefabGUID AB_Voltage_KickCombo_AbilityGroup = new PrefabGUID(1878838878); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast01 = new PrefabGUID(16406835); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast02 = new PrefabGUID(-844027985); public static readonly PrefabGUID AB_Voltage_KickCombo_Cast03 = new PrefabGUID(1946665361); public static readonly PrefabGUID AB_Voltage_KickCombo_Final_AbilityGroup = new PrefabGUID(1851411882); public static readonly PrefabGUID AB_Voltage_KickCombo_Hit = new PrefabGUID(-2129623112); public static readonly PrefabGUID AB_Voltage_KickCombo_Hit03 = new PrefabGUID(1259554051); public static readonly PrefabGUID AB_Voltage_KickCombo_ProjectileTrigger = new PrefabGUID(1777953131); public static readonly PrefabGUID AB_Voltage_KickCombo_ProjectileTrigger_HARD = new PrefabGUID(1475185297); public static readonly PrefabGUID AB_Voltage_LeapAttack_AbilityGroup = new PrefabGUID(2016544872); public static readonly PrefabGUID AB_Voltage_LeapAttack_Cast = new PrefabGUID(-323026864); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_AbilityGroup = new PrefabGUID(-1853889696); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_Cast = new PrefabGUID(-100185026); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_Travel = new PrefabGUID(1948007032); public static readonly PrefabGUID AB_Voltage_LeapAttack_Hard_TravelEnd = new PrefabGUID(-1457043201); public static readonly PrefabGUID AB_Voltage_LeapAttack_Travel = new PrefabGUID(-403532031); public static readonly PrefabGUID AB_Voltage_LeapAttack_TravelEnd = new PrefabGUID(-396619857); public static readonly PrefabGUID AB_Voltage_LeapAttack_TravelHit = new PrefabGUID(-1252014574); public static readonly PrefabGUID AB_Voltage_SprintKick_AbilityGroup = new PrefabGUID(788963695); public static readonly PrefabGUID AB_Voltage_SprintKick_AggroBuff = new PrefabGUID(97349349); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_AbilityGroup = new PrefabGUID(-1143650386); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_Cast = new PrefabGUID(-1801875745); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_RelocateImpair = new PrefabGUID(-351960871); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_Trigger = new PrefabGUID(13762758); public static readonly PrefabGUID AB_Voltage_SprintKick_Antip_TriggerAggroRemove = new PrefabGUID(1029687104); public static readonly PrefabGUID AB_Voltage_SprintKick_Buff = new PrefabGUID(-914991069); public static readonly PrefabGUID AB_Voltage_SprintKick_CastDash = new PrefabGUID(1855354556); public static readonly PrefabGUID AB_Voltage_SprintKick_PostDash = new PrefabGUID(235226103); public static readonly PrefabGUID AB_Voltage_SprintKick_StunBuff = new PrefabGUID(-313485627); public static readonly PrefabGUID AB_Voltage_Stage2_LightningRay_Projectile = new PrefabGUID(1785222437); public static readonly PrefabGUID AB_Voltage_Stage2_LightningRay_ScatterProjectile = new PrefabGUID(-993623022); public static readonly PrefabGUID AB_Voltage_Stage2_MoteOfLightning_Projectile = new PrefabGUID(-1728032237); public static readonly PrefabGUID AB_Voltage_Stage2_MoteOfLightning_WhirlwindProjectile = new PrefabGUID(468345692); public static readonly PrefabGUID AB_Voltage_Swap_AbilityGroup = new PrefabGUID(-1372140488); public static readonly PrefabGUID AB_Voltage_Swap_AoE = new PrefabGUID(-1378206778); public static readonly PrefabGUID AB_Voltage_Swap_Cast = new PrefabGUID(-1173121313); public static readonly PrefabGUID AB_Voltage_Swap_Hit = new PrefabGUID(-1757691609); public static readonly PrefabGUID AB_Voltage_Swap_HitBuff = new PrefabGUID(-514100745); public static readonly PrefabGUID AB_Voltage_Swap_OwnerHitBuff = new PrefabGUID(-178329434); public static readonly PrefabGUID AB_Voltage_Swap_Travel = new PrefabGUID(1107291914); public static readonly PrefabGUID AB_Voltage_Whip_AbilityGroup = new PrefabGUID(1191517048); public static readonly PrefabGUID AB_Voltage_Whip_Cast = new PrefabGUID(-542904245); public static readonly PrefabGUID AB_Voltage_Whip_Hit1 = new PrefabGUID(2058671022); public static readonly PrefabGUID AB_Voltage_Whip_Hit2 = new PrefabGUID(-179012073); public static readonly PrefabGUID AB_Voltage_Whip_HitBuff = new PrefabGUID(1584261104); public static readonly PrefabGUID AB_Voltage_Whirlwind_AbilityGroup = new PrefabGUID(-1243386667); public static readonly PrefabGUID AB_Voltage_Whirlwind_Cast = new PrefabGUID(1867705645); public static readonly PrefabGUID AB_Voltage_Whirlwind_Channel = new PrefabGUID(-1584250382); public static readonly PrefabGUID AB_Voltage_Whirlwind_Channel_HARD = new PrefabGUID(-1527520550); public static readonly PrefabGUID AB_Voltage_Whirlwind_Hit = new PrefabGUID(381916168); public static readonly PrefabGUID AB_Voltage_Whirlwind_PostTravel = new PrefabGUID(-505126158); public static readonly PrefabGUID AB_Voltage_Whirlwind_SpeedBuff = new PrefabGUID(236263098); public static readonly PrefabGUID AB_Voltage_Whirlwind_Travel = new PrefabGUID(-1416300207); public static readonly PrefabGUID AB_Wendigo_FrostNova_AbilityGroup = new PrefabGUID(1238313774); public static readonly PrefabGUID AB_Wendigo_FrostNova_Cast = new PrefabGUID(1881810296); public static readonly PrefabGUID AB_Wendigo_FrostNova_MoveBehaviourBuff = new PrefabGUID(325147096); public static readonly PrefabGUID AB_Wendigo_FrostNova_RingArea = new PrefabGUID(-1227952025); public static readonly PrefabGUID AB_Wendigo_IceBeam_AggroBuff = new PrefabGUID(1038174719); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_AbilityGroup = new PrefabGUID(495259674); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_Cast = new PrefabGUID(-31256703); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_Channel = new PrefabGUID(182403559); public static readonly PrefabGUID AB_Wendigo_IceBeam_First_PostChannelBuff = new PrefabGUID(-391924431); public static readonly PrefabGUID AB_Wendigo_IceBeam_HitBuff = new PrefabGUID(-1265982946); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_AbilityGroup = new PrefabGUID(1390611238); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_Cast = new PrefabGUID(1834593836); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_Channel = new PrefabGUID(617598110); public static readonly PrefabGUID AB_Wendigo_IceBeam_Second_PostChannelBuff = new PrefabGUID(908203715); public static readonly PrefabGUID AB_Wendigo_IceBeam_TargetedBuff = new PrefabGUID(668297145); public static readonly PrefabGUID AB_Wendigo_IceDash_EmpowerBuff = new PrefabGUID(-1991229776); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_AbilityGroup = new PrefabGUID(54541608); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_Cast = new PrefabGUID(-1639900640); public static readonly PrefabGUID AB_Wendigo_IceDash_Init_MoveBehaviourBuff = new PrefabGUID(-81468142); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_AbilityGroup = new PrefabGUID(203761859); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Cast = new PrefabGUID(1588496367); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_AbilityGroup = new PrefabGUID(929369353); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_Cast = new PrefabGUID(715646522); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hard_Hit = new PrefabGUID(-1340519546); public static readonly PrefabGUID AB_Wendigo_IceDash_Strike_Hit = new PrefabGUID(177876428); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_AbilityGroup = new PrefabGUID(-496233120); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_AggroBuff = new PrefabGUID(312861120); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Cast = new PrefabGUID(955349764); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_DashBuff = new PrefabGUID(1854395476); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_AbilityGroup = new PrefabGUID(-2029387940); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_Cast = new PrefabGUID(-470780429); public static readonly PrefabGUID AB_Wendigo_IceDash_Travel_Hard_DashBuff = new PrefabGUID(641607771); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AbilityGroup = new PrefabGUID(-1683730497); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AggroBuff = new PrefabGUID(2129114841); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_AoE = new PrefabGUID(1957392507); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast01 = new PrefabGUID(134028684); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast02 = new PrefabGUID(2115290037); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Cast03 = new PrefabGUID(190216402); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Projectile01 = new PrefabGUID(1412298771); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_Projectile02 = new PrefabGUID(-1012427758); public static readonly PrefabGUID AB_Wendigo_IcicleThrow_TargetedBuff = new PrefabGUID(397468784); public static readonly PrefabGUID AB_Wendigo_LeapAttack_AbilityGroup = new PrefabGUID(-1986179833); public static readonly PrefabGUID AB_Wendigo_LeapAttack_Cast = new PrefabGUID(-1381113180); public static readonly PrefabGUID AB_Wendigo_LeapAttack_Travel = new PrefabGUID(1511899753); public static readonly PrefabGUID AB_Wendigo_LeapAttack_TravelEnd = new PrefabGUID(1658674762); public static readonly PrefabGUID AB_Wendigo_LeapAttack_TravelHit = new PrefabGUID(-1576210748); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_AbilityGroup = new PrefabGUID(1568904735); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast01 = new PrefabGUID(459293600); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast02 = new PrefabGUID(-1639870083); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Cast03 = new PrefabGUID(656956232); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Hit = new PrefabGUID(-519846948); public static readonly PrefabGUID AB_Wendigo_MeleeAttack_Hit03 = new PrefabGUID(2090007752); public static readonly PrefabGUID AB_Wendigo_SnowStorm_AbilityGroup = new PrefabGUID(-2090815764); public static readonly PrefabGUID AB_Wendigo_SnowStorm_AtmosphereBuff = new PrefabGUID(1367878559); public static readonly PrefabGUID AB_Wendigo_SnowStorm_BlindBuff = new PrefabGUID(828978508); public static readonly PrefabGUID AB_Wendigo_SnowStorm_Cast = new PrefabGUID(806537037); public static readonly PrefabGUID AB_Wendigo_SnowStorm_IcicleThrow = new PrefabGUID(-1993499959); public static readonly PrefabGUID AB_Wendigo_SnowStorm_MoveBehaviourBuff = new PrefabGUID(-1834009970); public static readonly PrefabGUID AB_Wendigo_SnowStorm_TargetedBuff = new PrefabGUID(486057639); public static readonly PrefabGUID AB_Werewolf_Bite_AbilityGroup = new PrefabGUID(-1789525825); public static readonly PrefabGUID AB_Werewolf_Bite_BleedBuff = new PrefabGUID(1313262093); public static readonly PrefabGUID AB_Werewolf_Bite_Cast = new PrefabGUID(1523382598); public static readonly PrefabGUID AB_Werewolf_Bite_Hit = new PrefabGUID(-315731882); public static readonly PrefabGUID AB_Werewolf_Dash_AbilityGroup = new PrefabGUID(1063690361); public static readonly PrefabGUID AB_Werewolf_Dash_Cast = new PrefabGUID(-1132487567); public static readonly PrefabGUID AB_Werewolf_Dash_Phase = new PrefabGUID(763403604); public static readonly PrefabGUID AB_Werewolf_Dash_PostDashBuff = new PrefabGUID(760869714); public static readonly PrefabGUID AB_Werewolf_Howl_Area = new PrefabGUID(890202634); public static readonly PrefabGUID AB_Werewolf_Howl_Buff = new PrefabGUID(2108271173); public static readonly PrefabGUID AB_Werewolf_Howl_Cast = new PrefabGUID(351786732); public static readonly PrefabGUID AB_Werewolf_Howl_Group = new PrefabGUID(797495975); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Cast01 = new PrefabGUID(1169435335); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Cast02 = new PrefabGUID(-1236290481); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Group = new PrefabGUID(-831562637); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_Hit01 = new PrefabGUID(846576438); public static readonly PrefabGUID AB_Werewolf_MeleeAttack_HitBuff = new PrefabGUID(-2031749171); public static readonly PrefabGUID AB_WerewolfCheiftain_ShadowDash_MaterialBuff = new PrefabGUID(-570236147); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_AbilityGroup = new PrefabGUID(1113171592); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_Cast = new PrefabGUID(1255462149); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_Hit = new PrefabGUID(-1565884485); public static readonly PrefabGUID AB_WerewolfChieftain_Feed_PickupBuff = new PrefabGUID(-1755694069); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_AbilityGroup = new PrefabGUID(1001804923); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_Cast = new PrefabGUID(-456022310); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_OwnerBuff = new PrefabGUID(990425601); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_PostAttackBuff = new PrefabGUID(-1817888527); public static readonly PrefabGUID AB_WerewolfChieftain_FeedBuff_TargetBuff = new PrefabGUID(504866176); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Cast01 = new PrefabGUID(908422456); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Cast02 = new PrefabGUID(1415503492); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Group = new PrefabGUID(1916767891); public static readonly PrefabGUID AB_WerewolfChieftain_Human_MeleeAttack_Hit = new PrefabGUID(1786730683); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_AbilityGroup = new PrefabGUID(1445822330); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_AttackBuff = new PrefabGUID(-317372843); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_Cast = new PrefabGUID(924263813); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_Phase = new PrefabGUID(192608447); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_PostAttackBuff = new PrefabGUID(431294100); public static readonly PrefabGUID AB_WerewolfChieftain_Knockdown_StunBuff = new PrefabGUID(1499693831); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_AbilityGroup = new PrefabGUID(-988264305); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Buff01 = new PrefabGUID(1746560076); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Cast01 = new PrefabGUID(567351054); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Cast02 = new PrefabGUID(-2083676350); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Hit01 = new PrefabGUID(141148511); public static readonly PrefabGUID AB_WerewolfChieftain_MeleeAttack_Hit02 = new PrefabGUID(-516402833); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_AbilityGroup = new PrefabGUID(-174926399); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_BleedBuff = new PrefabGUID(-1515424879); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast = new PrefabGUID(-943262623); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast01 = new PrefabGUID(941701222); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast02 = new PrefabGUID(-1975235915); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Cast03 = new PrefabGUID(-805017956); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_Hit = new PrefabGUID(-2017510904); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBite_RemoveHardModeBuffTrigger = new PrefabGUID(1712419107); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_AbilityGroup = new PrefabGUID(-67893977); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Buff = new PrefabGUID(-646349605); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Cast = new PrefabGUID(-2059726287); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_AbilityGroup = new PrefabGUID(149010586); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_Buff = new PrefabGUID(55890943); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_Cast = new PrefabGUID(-742947136); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_Hard_PostAttackBuff = new PrefabGUID(-1212213169); public static readonly PrefabGUID AB_WerewolfChieftain_MultiBiteBuff_PostAttackBuff = new PrefabGUID(-237255587); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_AbilityGroup = new PrefabGUID(2030404176); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_CagesOpenedBuff = new PrefabGUID(339344687); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_Cast = new PrefabGUID(1717394077); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_MinionBuff = new PrefabGUID(794010503); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_MinionSpawn = new PrefabGUID(-1182023331); public static readonly PrefabGUID AB_WerewolfChieftain_OpenTheCages_Trigger = new PrefabGUID(562613644); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_AbilityGroup = new PrefabGUID(-566065717); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Cast = new PrefabGUID(-1790525694); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_AbilityGroup = new PrefabGUID(2096535189); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_Cast = new PrefabGUID(-295839337); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Clone_Phase = new PrefabGUID(-2055451559); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Debuff = new PrefabGUID(-986692305); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_Phase = new PrefabGUID(221191680); public static readonly PrefabGUID AB_WerewolfChieftain_ShadowDash_PostDashBuff = new PrefabGUID(1796203093); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_AbilityGroup = new PrefabGUID(-192549213); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_AggroBuff = new PrefabGUID(-2126683831); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Cast = new PrefabGUID(753956361); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfBuff = new PrefabGUID(829204234); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfSummonBuff = new PrefabGUID(-579442885); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_Hard_WolfTrigger = new PrefabGUID(-678055927); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_MinionSpawn = new PrefabGUID(136657534); public static readonly PrefabGUID AB_WerewolfChieftain_Stealth_StealthBuff = new PrefabGUID(1308277597); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_AbilityGroup = new PrefabGUID(1205896854); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Cast = new PrefabGUID(-691639859); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_1 = new PrefabGUID(177328272); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_2 = new PrefabGUID(-110826033); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_3 = new PrefabGUID(-1342245494); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_End_4 = new PrefabGUID(-341502928); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_AbilityGroup = new PrefabGUID(-1568811754); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_Cast = new PrefabGUID(1196223482); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Hard_Phase = new PrefabGUID(1497209227); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_Phase = new PrefabGUID(-1562442841); public static readonly PrefabGUID AB_Winter_Yeti_AntarcticLeap_PostTravelBuff = new PrefabGUID(1574481581); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_AbilityGroup = new PrefabGUID(151283351); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Cast = new PrefabGUID(-1702842945); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_AbilityGroup_01 = new PrefabGUID(1387986806); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_AbilityGroup_02 = new PrefabGUID(-1839296163); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_Cast_01 = new PrefabGUID(1509375736); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_Cast_02 = new PrefabGUID(-1522902732); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Hard_HomingProjectile = new PrefabGUID(1291337690); public static readonly PrefabGUID AB_Winter_Yeti_Avalanche_Projectile = new PrefabGUID(2019083657); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_AbilityGroup = new PrefabGUID(-544868559); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Cast = new PrefabGUID(800610886); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Channel_Buff = new PrefabGUID(-843763086); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_IcicleDrop_AoE = new PrefabGUID(1635667276); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_IcicleDrop_Throw = new PrefabGUID(-1120391332); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_MeleeHit = new PrefabGUID(975558618); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_StunBuff = new PrefabGUID(-984733544); public static readonly PrefabGUID AB_Winter_Yeti_CaveRumble_Trigger = new PrefabGUID(-1525275791); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_AggroBuff = new PrefabGUID(-1615043980); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_DirectBuff_AbilityGroup = new PrefabGUID(691162066); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_DirectBuff_Cast = new PrefabGUID(-75166181); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_RageBuff = new PrefabGUID(-1712484990); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Scream = new PrefabGUID(-238625203); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_ScreamEffectDebuff = new PrefabGUID(-813581577); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_AbilityGroup = new PrefabGUID(-252663641); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_Cast = new PrefabGUID(-2062435908); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_End = new PrefabGUID(-1489941049); public static readonly PrefabGUID AB_Winter_Yeti_Enrage_Travel_Phase = new PrefabGUID(-1233356526); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_AbilityGroup = new PrefabGUID(-1321161639); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_Cast = new PrefabGUID(-550770599); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_Phase = new PrefabGUID(-1115511574); public static readonly PrefabGUID AB_Winter_Yeti_FrostBite_PostAttackBuff = new PrefabGUID(-379849675); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_AbilityGroup = new PrefabGUID(1253708985); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_AbilityGroup = new PrefabGUID(430166804); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_AggroBuff = new PrefabGUID(-2108440890); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_Cast = new PrefabGUID(-402136945); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Aggro_SelfBuff = new PrefabGUID(1112756085); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Cast = new PrefabGUID(-58631054); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hard_AbilityGroup = new PrefabGUID(-1126887871); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hard_Cast = new PrefabGUID(1614720198); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Hit = new PrefabGUID(2133990995); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_AbilityGroup = new PrefabGUID(320434570); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_Cast = new PrefabGUID(538778201); public static readonly PrefabGUID AB_Winter_Yeti_GrabIcicle_Roar_Hit = new PrefabGUID(1361032873); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AbilityGroup = new PrefabGUID(1910986910); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AreaThrow = new PrefabGUID(-628920096); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_AreaThrow_Hard_Rumble = new PrefabGUID(282010982); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Cast = new PrefabGUID(-404128651); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_MeleeHit = new PrefabGUID(-286177331); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile = new PrefabGUID(989269783); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble01 = new PrefabGUID(-1882811101); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble02 = new PrefabGUID(1774233899); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble03 = new PrefabGUID(-139197974); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble04 = new PrefabGUID(-676099226); public static readonly PrefabGUID AB_Winter_Yeti_IceCrack_Projectile_Hard_Rumble05 = new PrefabGUID(2102741843); public static readonly PrefabGUID AB_Winter_Yeti_IcicleGrab_HasIcicleBuff = new PrefabGUID(8345432); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_AbilityGroup = new PrefabGUID(-1571128781); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_Cast = new PrefabGUID(-1542949990); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_HitBuff = new PrefabGUID(-2075326244); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_Projectile = new PrefabGUID(742617911); public static readonly PrefabGUID AB_Winter_Yeti_ThrowIcicle_StunBuff = new PrefabGUID(-1749597248); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_AbilityGroup = new PrefabGUID(-905574209); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast1 = new PrefabGUID(-1786572937); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast2 = new PrefabGUID(1065246268); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Cast3 = new PrefabGUID(638990515); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit1 = new PrefabGUID(2024131797); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit2 = new PrefabGUID(278359827); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit3 = new PrefabGUID(1417713273); public static readonly PrefabGUID AB_Winter_Yeti_TrippleAttack_Hit3_2 = new PrefabGUID(-533512645); public static readonly PrefabGUID AB_WinterWolf_Alert_Buff = new PrefabGUID(2137293512); public static readonly PrefabGUID AB_WinterWolf_Howl_AbilityGroup = new PrefabGUID(-689229573); public static readonly PrefabGUID AB_WinterWolf_Howl_Buff = new PrefabGUID(-91451769); public static readonly PrefabGUID AB_WinterWolf_Howl_Cast = new PrefabGUID(1407172074); public static readonly PrefabGUID AB_WinterWolf_Howl_Hit = new PrefabGUID(-370769636); public static readonly PrefabGUID AB_WinterWolf_OnAggro_Buff = new PrefabGUID(464747940); public static readonly PrefabGUID AB_Wolf_Boss_Alert_Buff = new PrefabGUID(1218136028); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Cast = new PrefabGUID(1199074158); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Enraged_Cast = new PrefabGUID(305221904); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Enraged_Group = new PrefabGUID(1558429115); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Group = new PrefabGUID(-1654954396); public static readonly PrefabGUID AB_Wolf_Boss_Bite_Hit = new PrefabGUID(1147355783); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack = new PrefabGUID(81963686); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Double_AbilityGroup = new PrefabGUID(280173050); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Final = new PrefabGUID(-2129505691); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Final_Cast = new PrefabGUID(-1029129774); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_First_Cast = new PrefabGUID(1616317869); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Second_Cast = new PrefabGUID(-1171511121); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Single_AbilityGroup = new PrefabGUID(920051497); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Single_Cast = new PrefabGUID(-1890193977); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Stagger_Debuff = new PrefabGUID(-645028648); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Stagger_Debuff_Hard = new PrefabGUID(-1331180824); public static readonly PrefabGUID AB_Wolf_Boss_DashAttack_Tripple_AbilityGroup = new PrefabGUID(-1161539168); public static readonly PrefabGUID AB_Wolf_Boss_DoNothing_AbilityGroup = new PrefabGUID(330164959); public static readonly PrefabGUID AB_Wolf_Boss_DoNothing_Cast = new PrefabGUID(-2096699565); public static readonly PrefabGUID AB_Wolf_Boss_Howl_AbilityGroup = new PrefabGUID(247740796); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Cast = new PrefabGUID(-1256537999); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Hit = new PrefabGUID(-1227386286); public static readonly PrefabGUID AB_Wolf_Boss_Howl_Summon = new PrefabGUID(-768826619); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_AbilityGroup = new PrefabGUID(2145136774); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_Cast = new PrefabGUID(-793477044); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_ChannelBuff = new PrefabGUID(1353658961); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_HitBuff = new PrefabGUID(125116486); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_Phase = new PrefabGUID(1824803129); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_PostAttackBuff = new PrefabGUID(776216107); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_PostChannelBuff = new PrefabGUID(313749764); public static readonly PrefabGUID AB_Wolf_Boss_Maul_Hard_StunBuff = new PrefabGUID(501556075); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_AbilityGroup = new PrefabGUID(640068737); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_Buff = new PrefabGUID(-2048871880); public static readonly PrefabGUID AB_Wolf_Boss_OnAggro_Cast = new PrefabGUID(-12791531); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_AbilityGroup = new PrefabGUID(-821573025); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_Cast = new PrefabGUID(514972730); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_EndPhase = new PrefabGUID(295888298); public static readonly PrefabGUID AB_Wolf_Boss_Pounce_Phase = new PrefabGUID(564871207); public static readonly PrefabGUID AB_Wolf_Boss_SpawnAdds_Debuff = new PrefabGUID(-87924839); public static readonly PrefabGUID AB_Wolf_Boss_SpawnAdds_SummonThrow = new PrefabGUID(-1568819619); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff = new PrefabGUID(-450550476); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_AbilityGroup = new PrefabGUID(544754926); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_Cast = new PrefabGUID(-1977765109); public static readonly PrefabGUID AB_Wolf_Boss_SpeedBuff_Hard = new PrefabGUID(1407651571); public static readonly PrefabGUID AB_Wolf_Boss_StepBack_AbilityGroup = new PrefabGUID(1456629565); public static readonly PrefabGUID AB_Wolf_Boss_StepBack_Cast = new PrefabGUID(1740230705); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack = new PrefabGUID(-1989526747); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack_AbilityGroup = new PrefabGUID(-1317017789); public static readonly PrefabGUID AB_Wolf_Cursed_DashAttack_Cast = new PrefabGUID(1819720729); public static readonly PrefabGUID AB_Wolf_Cursed_Death_Hit = new PrefabGUID(-1739730840); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_AbilityGroup = new PrefabGUID(1910899893); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Buff = new PrefabGUID(1425734039); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Cast = new PrefabGUID(1340300893); public static readonly PrefabGUID AB_Wolf_Cursed_Howl_Hit = new PrefabGUID(-954976377); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Cast = new PrefabGUID(-652955584); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Group = new PrefabGUID(-1601666166); public static readonly PrefabGUID AB_Wolf_Cursed_MeleeAttack_Hit = new PrefabGUID(1344919418); public static readonly PrefabGUID AB_Wolf_Mutant_ChangeState_Approach = new PrefabGUID(-729160892); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack = new PrefabGUID(1546884886); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack_AbilityGroup = new PrefabGUID(2000340068); public static readonly PrefabGUID AB_Wolf_Mutant_DashAttack_Cast = new PrefabGUID(-145867216); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_01 = new PrefabGUID(1693108850); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_02 = new PrefabGUID(-1303357680); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_03 = new PrefabGUID(-1813495704); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Cast_04 = new PrefabGUID(-162063834); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Group = new PrefabGUID(-1869011274); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Hit = new PrefabGUID(-2049893612); public static readonly PrefabGUID AB_Wolf_Mutant_MeleeAttack_Hit_LastCombo = new PrefabGUID(124818454); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack = new PrefabGUID(602160251); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack_AbilityGroup = new PrefabGUID(-744145902); public static readonly PrefabGUID AB_Wolf_Shared_DashAttack_Cast = new PrefabGUID(-2002119334); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Cast = new PrefabGUID(-1926918220); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Group = new PrefabGUID(556902791); public static readonly PrefabGUID AB_Wolf_Shared_MeleeAttack_Hit = new PrefabGUID(-1916716580); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack = new PrefabGUID(-1035394694); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack_AbilityGroup = new PrefabGUID(-83187650); public static readonly PrefabGUID AB_Wolf_Winter_DashAttack_Cast = new PrefabGUID(380460126); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Cast_01 = new PrefabGUID(103922514); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Cast_02 = new PrefabGUID(118375292); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Group = new PrefabGUID(-1267641072); public static readonly PrefabGUID AB_Wolf_Winter_MeleeAttack_Hit = new PrefabGUID(2033230283); public static readonly PrefabGUID AB_Woodcutter_Alert_Buff = new PrefabGUID(-1891893656); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Cast01 = new PrefabGUID(-779008659); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Cast02 = new PrefabGUID(-1467974095); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Group01 = new PrefabGUID(845410366); public static readonly PrefabGUID AB_Woodcutter_MeleeAttack_Hit01 = new PrefabGUID(157854516); public static readonly PrefabGUID AB_Woodcutter_OnAggro_AbilityGroup = new PrefabGUID(1878649294); public static readonly PrefabGUID AB_Woodcutter_OnAggro_Buff = new PrefabGUID(-947722044); public static readonly PrefabGUID AB_Woodcutter_OnAggro_Cast = new PrefabGUID(250761309); public static readonly PrefabGUID AB_WormTerror_AcidPuke_AbilityGroup = new PrefabGUID(-1789897775); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Area = new PrefabGUID(840723906); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Cast = new PrefabGUID(-1004647373); public static readonly PrefabGUID AB_WormTerror_AcidPuke_PoisonDebuff = new PrefabGUID(-1896295256); public static readonly PrefabGUID AB_WormTerror_AcidPuke_Throw = new PrefabGUID(-118685252); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_AbilityGroup = new PrefabGUID(1938535864); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_Cast = new PrefabGUID(-1916989126); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_End = new PrefabGUID(1665154001); public static readonly PrefabGUID AB_WormTerror_Dig_Travel_Phase = new PrefabGUID(1777711743); public static readonly PrefabGUID AB_WormTerror_Immaterial_Buff = new PrefabGUID(-1109086376); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_AbilityGroup = new PrefabGUID(1105185654); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_Cast = new PrefabGUID(-1494228034); public static readonly PrefabGUID AB_WormTerror_MeleeAttack_Hit = new PrefabGUID(-1630595705); public static readonly PrefabGUID Ability_EntanglingNet_Curve = new PrefabGUID(-2147018058); public static readonly PrefabGUID Ability_HarpyForwardMovement = new PrefabGUID(1029855610); public static readonly PrefabGUID Ability_HoundForwardMovement = new PrefabGUID(-1988207496); public static readonly PrefabGUID Ability_HoundSideMovement = new PrefabGUID(1485905762); public static readonly PrefabGUID Ability_MistStrike_Curve = new PrefabGUID(536065062); public static readonly PrefabGUID Ability_Roll_Curve = new PrefabGUID(-587238233); public static readonly PrefabGUID Ability_ShadowAssassin_Dash_Curve = new PrefabGUID(-318780647); public static readonly PrefabGUID Ability_ShadowDash_Curve = new PrefabGUID(2064867765); public static readonly PrefabGUID Ability_Step_Negative_Curve = new PrefabGUID(-233164722); public static readonly PrefabGUID Ability_Step_Positive_Curve = new PrefabGUID(-408652835); public static readonly PrefabGUID Ability_UndeadLeaderMovement = new PrefabGUID(145815111); public static readonly PrefabGUID Ability_UndeadLeaderMovement2 = new PrefabGUID(-1765048715); public static readonly PrefabGUID AbilityGroupSlot = new PrefabGUID(-633717863); public static readonly PrefabGUID AchievementDataPrefab = new PrefabGUID(1468584555); public static readonly PrefabGUID AdaptiveTriggerCollection = new PrefabGUID(-1786901006); public static readonly PrefabGUID Admin_Invulnerable_Buff = new PrefabGUID(-480024072); public static readonly PrefabGUID Admin_Observe_Ghost_Buff = new PrefabGUID(77473184); public static readonly PrefabGUID Admin_Observe_Invisible_Buff = new PrefabGUID(1880224358); public static readonly PrefabGUID AI_ArchMage_ArcaneMissile_Rotation_Curve = new PrefabGUID(-1188142516); public static readonly PrefabGUID AI_ArchMage_ArcaneMissile_Travel_Curve = new PrefabGUID(-2130655750); public static readonly PrefabGUID AI_Bandit_Thief_HeayAttack_Curve = new PrefabGUID(-1377083557); public static readonly PrefabGUID AI_BeastStep_Curve = new PrefabGUID(-64193657); public static readonly PrefabGUID AI_BeastStepSlow_Curve = new PrefabGUID(689433618); public static readonly PrefabGUID AI_BishopOfDunley_SummonPillar_Height_Curve = new PrefabGUID(-1473005341); public static readonly PrefabGUID AI_BishopOfShadow_Bolt_Hard_Curve01 = new PrefabGUID(1307462497); public static readonly PrefabGUID AI_Blackfang_CarverBoss_Whirlwind = new PrefabGUID(-1895143386); public static readonly PrefabGUID AI_BloodProphet_Projectile_Curve = new PrefabGUID(1066293021); public static readonly PrefabGUID AI_Cardinal_LightWave_Curve = new PrefabGUID(503790095); public static readonly PrefabGUID AI_Cardinal_LightWave_Curve_Backup = new PrefabGUID(-664773551); public static readonly PrefabGUID AI_Cardinal_Projectile_Curve = new PrefabGUID(1604063702); public static readonly PrefabGUID AI_CircleInRange_Curve = new PrefabGUID(2125671364); public static readonly PrefabGUID AI_CircleOutOfRange_Curve = new PrefabGUID(177153073); public static readonly PrefabGUID AI_CircleOutOfRange_Curve_MountedUnits = new PrefabGUID(924309848); public static readonly PrefabGUID AI_Circular_RiseAndFall_Curve = new PrefabGUID(1699506016); public static readonly PrefabGUID AI_Cursed_KingToad_DevourLeap_Curve = new PrefabGUID(216104832); public static readonly PrefabGUID AI_Cursed_MonsterToad_GrabCastRotation_Curve = new PrefabGUID(1925271266); public static readonly PrefabGUID AI_Cursed_MountainBeast_HornFlick_Curve = new PrefabGUID(-1047690885); public static readonly PrefabGUID AI_Cursed_MountainBeast_Leap_HeightCurve = new PrefabGUID(1262520881); public static readonly PrefabGUID AI_Cursed_MountainBeast_Leap_LengthCurve = new PrefabGUID(-1876846060); public static readonly PrefabGUID AI_Cursed_Toad_Leap_HeightCurve = new PrefabGUID(1705113667); public static readonly PrefabGUID AI_CursedSmith_ProjectileCurveX = new PrefabGUID(1345713271); public static readonly PrefabGUID AI_CursedSmith_ProjectileCurveZ = new PrefabGUID(-1829875614); public static readonly PrefabGUID AI_DireWolf_Bite_Cast = new PrefabGUID(748003037); public static readonly PrefabGUID AI_DireWolf_Dash_Cast = new PrefabGUID(-351012290); public static readonly PrefabGUID AI_DireWolf_SpeedCurve = new PrefabGUID(1353440498); public static readonly PrefabGUID AI_Dracula_EtherialSword_ThrowY_Curve = new PrefabGUID(-863705959); public static readonly PrefabGUID AI_Dracula_EtherialSword_ThrowZ_Curve = new PrefabGUID(1095346924); public static readonly PrefabGUID AI_Dracula_FinalEtherialSword_ThrowY_Curve = new PrefabGUID(-739786665); public static readonly PrefabGUID AI_Dracula_FinalEtherialSword_ThrowZ_Curve = new PrefabGUID(-1456320024); public static readonly PrefabGUID AI_Dreadhorn_TrampleMove_Curve = new PrefabGUID(-1944429868); public static readonly PrefabGUID AI_EaseIn_Heavy_Curve = new PrefabGUID(561559961); public static readonly PrefabGUID AI_EaseIn_Light_Curve = new PrefabGUID(1355113560); public static readonly PrefabGUID AI_EaseIn_Light_CurveAlt01 = new PrefabGUID(-156779734); public static readonly PrefabGUID AI_EaseIn_Light_CurveAlt02 = new PrefabGUID(2094897419); public static readonly PrefabGUID AI_EaseIn_Medium_Curve = new PrefabGUID(-301679235); public static readonly PrefabGUID AI_EaseIn_VeryHeavy_Curve = new PrefabGUID(1693808763); public static readonly PrefabGUID AI_EaseIn_VeryLight_Curve = new PrefabGUID(608040287); public static readonly PrefabGUID AI_EaseOut_Late_Curve = new PrefabGUID(414126052); public static readonly PrefabGUID AI_EaseOut_LateLight_Curve = new PrefabGUID(-924471505); public static readonly PrefabGUID AI_EaseOut_LateVeryLight_Curve = new PrefabGUID(-692374467); public static readonly PrefabGUID AI_EaseOut_Light_Curve = new PrefabGUID(848772822); public static readonly PrefabGUID AI_EaseOut_LightSharp_Curve = new PrefabGUID(-142248688); public static readonly PrefabGUID AI_EaseOut_Medium_Curve = new PrefabGUID(-362439120); public static readonly PrefabGUID AI_EaseOut_MediumSharp_Curve = new PrefabGUID(1195259041); public static readonly PrefabGUID AI_Farmlands_HoundMaster_VBlood_Ram_Curve = new PrefabGUID(2065896510); public static readonly PrefabGUID AI_FlyingSkull_RotationCurve = new PrefabGUID(2023649318); public static readonly PrefabGUID AI_Gargoyle_FlyAway_Curve = new PrefabGUID(-1558433107); public static readonly PrefabGUID AI_Gloomrot_Monster_SideStepTravel_Curve = new PrefabGUID(1940439665); public static readonly PrefabGUID AI_Gloomrot_TheProfessor_Lazer_Curve = new PrefabGUID(641519384); public static readonly PrefabGUID AI_Gloomrot_Voltage_Stage2Projectile_Oscillating_Curve = new PrefabGUID(658349860); public static readonly PrefabGUID AI_Guard_Melee_VBlood = new PrefabGUID(810959773); public static readonly PrefabGUID AI_Harpy_Dash_Curve = new PrefabGUID(-116941430); public static readonly PrefabGUID AI_Harpy_DiveLoop_Curve_Horizontal = new PrefabGUID(2145997701); public static readonly PrefabGUID AI_Harpy_DiveLoop_Curve_Vertical = new PrefabGUID(92406503); public static readonly PrefabGUID AI_Knight_2HChain_1st_Curve_BUPP = new PrefabGUID(-1197513669); public static readonly PrefabGUID AI_Knight_ChargeEnd_Curve_OLD = new PrefabGUID(-140176888); public static readonly PrefabGUID AI_Knight_NegativeDash_Curve = new PrefabGUID(-844174964); public static readonly PrefabGUID AI_Knight_PositiveDash_Curve = new PrefabGUID(1387222245); public static readonly PrefabGUID AI_Knight_StepAttack_Curve_OLD = new PrefabGUID(2006871092); public static readonly PrefabGUID AI_KnightLunge_Curve_OLD = new PrefabGUID(1841580312); public static readonly PrefabGUID AI_Manticore_BreathAttack_Rotation_Curve01 = new PrefabGUID(1772727951); public static readonly PrefabGUID AI_Manticore_ChargeProjectile_Curve = new PrefabGUID(1587442721); public static readonly PrefabGUID AI_Manticore_FlyStart_Height_Curve_BACKUP = new PrefabGUID(-1262574091); public static readonly PrefabGUID AI_Manticore_TailSpin_Rotation_Curve = new PrefabGUID(-1017451200); public static readonly PrefabGUID AI_Manticore_Turn180_HitboxRotation_Curve = new PrefabGUID(-107863745); public static readonly PrefabGUID AI_Manticore_Turn180_MoveX_Curve = new PrefabGUID(-1627468868); public static readonly PrefabGUID AI_Manticore_Turn180_MoveZ_Curve = new PrefabGUID(1458827362); public static readonly PrefabGUID AI_Manticore_Turn180_MoveZ_Curve1 = new PrefabGUID(1083043415); public static readonly PrefabGUID AI_Manticore_Turn180_Rotation_Curve = new PrefabGUID(-22162055); public static readonly PrefabGUID AI_Manticore_TurnSwipe_HitboxRotation_Curve = new PrefabGUID(1576233417); public static readonly PrefabGUID AI_Manticore_TurnSwipe_HitboxRotation_Curve_BUP = new PrefabGUID(1018645083); public static readonly PrefabGUID AI_Manticore_TurnSwipe_Movement_Curve = new PrefabGUID(1289957217); public static readonly PrefabGUID AI_Manticore_TurnSwipe_Rotation_Curve = new PrefabGUID(-1291969413); public static readonly PrefabGUID AI_Marksman_Melee_Curve = new PrefabGUID(-1421003243); public static readonly PrefabGUID AI_MeleeAttack_EaseIn = new PrefabGUID(-853573516); public static readonly PrefabGUID AI_MeleeAttack_EaseIn_Fast = new PrefabGUID(971450220); public static readonly PrefabGUID AI_MeleeAttack_EaseIn_Slow = new PrefabGUID(291942477); public static readonly PrefabGUID AI_MeleeAttack_Ghoul_Curve = new PrefabGUID(1540269545); public static readonly PrefabGUID AI_MeleeAttack_Sentinel = new PrefabGUID(-2112901029); public static readonly PrefabGUID AI_MeleeAttack_TightEnd_Curve = new PrefabGUID(-866740220); public static readonly PrefabGUID AI_Militia_Heavy_Ram_Curve = new PrefabGUID(-1204915080); public static readonly PrefabGUID AI_Militia_VBlood_Lunge_Curve = new PrefabGUID(-1684796015); public static readonly PrefabGUID AI_MilitiaCrossbow_BurstRotation = new PrefabGUID(147767616); public static readonly PrefabGUID AI_Monster_FinalProjectile_XCurve = new PrefabGUID(1169618948); public static readonly PrefabGUID AI_Monster_PierceShock_DashCurve = new PrefabGUID(590324233); public static readonly PrefabGUID AI_Monster_PierceShock_Swing_MoveCurve = new PrefabGUID(-1384720433); public static readonly PrefabGUID AI_MountainBeast_Leap_Distance = new PrefabGUID(-346863840); public static readonly PrefabGUID AI_MountainBeast_Leap_Height = new PrefabGUID(474609033); public static readonly PrefabGUID AI_MountainBeast_ProjectileCurveX = new PrefabGUID(181504325); public static readonly PrefabGUID AI_MountainBeast_ProjectileCurveZ = new PrefabGUID(889200342); public static readonly PrefabGUID AI_NightlurkerWendigo_HeavyAttackCurve = new PrefabGUID(403873499); public static readonly PrefabGUID AI_OrbitingCurveX = new PrefabGUID(-1910570157); public static readonly PrefabGUID AI_OrbitingCurveY = new PrefabGUID(1537194669); public static readonly PrefabGUID AI_Paladin_Dash_Gabriel = new PrefabGUID(1540738331); public static readonly PrefabGUID AI_Paladin_Predash = new PrefabGUID(1178910386); public static readonly PrefabGUID AI_Paladin_ProjectileCurveX = new PrefabGUID(-1436260943); public static readonly PrefabGUID AI_Paladin_ProjectileCurveZ = new PrefabGUID(-789808325); public static readonly PrefabGUID AI_Paladin_SpinnerProjectileCurveX = new PrefabGUID(-1241684347); public static readonly PrefabGUID AI_Paladin_SpinnerProjectileCurveZ = new PrefabGUID(1902495676); public static readonly PrefabGUID AI_Poloma_DeceleratingProjectile_Curve = new PrefabGUID(2068628546); public static readonly PrefabGUID AI_Raziel_ProjectileCurveX = new PrefabGUID(347640315); public static readonly PrefabGUID AI_Raziel_ProjectileCurveZ = new PrefabGUID(-1269556189); public static readonly PrefabGUID AI_ReappliedFadingBuff_Curve = new PrefabGUID(1936213046); public static readonly PrefabGUID AI_SpearLunge_Curve = new PrefabGUID(-120918319); public static readonly PrefabGUID AI_SpearRain_Rotation = new PrefabGUID(-655968432); public static readonly PrefabGUID AI_SpiderTank_StepHeight_Curve = new PrefabGUID(427150843); public static readonly PrefabGUID AI_SpiderTank_Suspension_Curve = new PrefabGUID(-72826230); public static readonly PrefabGUID AI_TwoStepSlowdown_Curve = new PrefabGUID(479434378); public static readonly PrefabGUID AI_Undead_ArenaChamp_ThrowY_Curve = new PrefabGUID(1433768951); public static readonly PrefabGUID AI_Undead_ArenaChamp_ThrowZ_Curve = new PrefabGUID(-2070870747); public static readonly PrefabGUID AI_Undead_CursedSmith_FloatingSword_DashRotation_Curve = new PrefabGUID(1381879666); public static readonly PrefabGUID AI_Undead_CursedSmith_HammerLeap_HeightCurve = new PrefabGUID(2099627221); public static readonly PrefabGUID AI_Undead_CursedSmith_SpearThrust_MoveCurve = new PrefabGUID(1445042696); public static readonly PrefabGUID AI_Undead_CursedSmith_SpearThrust_RotationCurve = new PrefabGUID(-1661193573); public static readonly PrefabGUID AI_UndeadGuardian_2HChain_1st_Curve = new PrefabGUID(-968239159); public static readonly PrefabGUID AI_Wendigo_IceBeamRotation_Curve = new PrefabGUID(567905634); public static readonly PrefabGUID AI_WerewolfCheiftain_MeleeAttack_Curve = new PrefabGUID(132821086); public static readonly PrefabGUID AI_Wildling_Bulwark_Ram_Curve = new PrefabGUID(-1546221575); public static readonly PrefabGUID AI_Winter_Yeti_Charge_Curve = new PrefabGUID(402879438); public static readonly PrefabGUID AimAssist_HardLock = new PrefabGUID(-2013813657); public static readonly PrefabGUID AimAssist_NoAssist = new PrefabGUID(-1448141185); public static readonly PrefabGUID AimAssist_SoftLock = new PrefabGUID(289787973); public static readonly PrefabGUID AimAssist_Sway = new PrefabGUID(-1949996541); public static readonly PrefabGUID AimAssistCurve_Base = new PrefabGUID(-1383375513); public static readonly PrefabGUID AimAssistCurve_HardLock = new PrefabGUID(-1367923906); public static readonly PrefabGUID AimAssistCurve_SoftLock = new PrefabGUID(-1371114609); public static readonly PrefabGUID AimAssistCurve_Sway = new PrefabGUID(-1470932594); public static readonly PrefabGUID AimDirectionPreview = new PrefabGUID(-989165409); public static readonly PrefabGUID AimPreview_Beam = new PrefabGUID(-861060961); public static readonly PrefabGUID AimPreview_Cone = new PrefabGUID(-2016093629); public static readonly PrefabGUID AimPreview_Cone_GreatswordLeapAttack = new PrefabGUID(615431526); public static readonly PrefabGUID AimPreview_Cone_old = new PrefabGUID(-134013452); public static readonly PrefabGUID AimPreview_Counter = new PrefabGUID(836540759); public static readonly PrefabGUID AimPreview_CrossProjectiles = new PrefabGUID(-759352593); public static readonly PrefabGUID AimPreview_CurvedThrow = new PrefabGUID(1970005454); public static readonly PrefabGUID AimPreview_Dash = new PrefabGUID(2012252022); public static readonly PrefabGUID AimPreview_Dash_General = new PrefabGUID(-643714821); public static readonly PrefabGUID AimPreview_DirectionalShield = new PrefabGUID(-1229861986); public static readonly PrefabGUID AimPreview_Gamepad_MeleeDash = new PrefabGUID(1969063642); public static readonly PrefabGUID AimPreview_Gamepad_Passive = new PrefabGUID(-290228763); public static readonly PrefabGUID AimPreview_Gamepad_TargetAoE = new PrefabGUID(-1968582502); public static readonly PrefabGUID AimPreview_Gamepad_TargetBuff = new PrefabGUID(-1032448993); public static readonly PrefabGUID AimPreview_LineAndCircle = new PrefabGUID(-1469898095); public static readonly PrefabGUID AimPreview_Melee = new PrefabGUID(-612553101); public static readonly PrefabGUID AimPreview_PlayerCenteredAoE = new PrefabGUID(2063523058); public static readonly PrefabGUID AimPreview_Projectile = new PrefabGUID(2134154679); public static readonly PrefabGUID AimPreview_Projectile_Narrow = new PrefabGUID(-1676376554); public static readonly PrefabGUID AimPreview_ProjectileCursor = new PrefabGUID(-90441294); public static readonly PrefabGUID AimPreview_ProjectileCursor_NoLine = new PrefabGUID(-680804649); public static readonly PrefabGUID AimPreview_ProjectileCursor_SpearArea = new PrefabGUID(1020278136); public static readonly PrefabGUID AimPreview_Quad = new PrefabGUID(-1274328037); public static readonly PrefabGUID AimPreview_Rectangle = new PrefabGUID(-429055392); public static readonly PrefabGUID AimPreview_TargetAoEWithArc = new PrefabGUID(-805970037); public static readonly PrefabGUID AimPreview_TargetAoEWithoutArc = new PrefabGUID(-283965562); public static readonly PrefabGUID AimPreview_TravelBuffWithArc = new PrefabGUID(-1492678634); public static readonly PrefabGUID AimPreview_TravelBuffWithoutArc = new PrefabGUID(1850729888); public static readonly PrefabGUID AimPreview_TravelBuffWithoutArc_NoCircle = new PrefabGUID(381941116); public static readonly PrefabGUID AimWorldTargetPreview = new PrefabGUID(457887924); public static readonly PrefabGUID AlchemyFloorBuildMenuGroup = new PrefabGUID(146476207); public static readonly PrefabGUID Alert_Quarter_Still_Rotation_Curve = new PrefabGUID(20734649); public static readonly PrefabGUID Alert_Quarter_Still_Rotation_Curve_Slower = new PrefabGUID(-1363989956); public static readonly PrefabGUID AllowJumpFromCliffsBuff = new PrefabGUID(-701914966); public static readonly PrefabGUID AmbushActivityTimer = new PrefabGUID(-1708066263); public static readonly PrefabGUID ArcticLeapMovementCurve = new PrefabGUID(-466420168); public static readonly PrefabGUID Arena_CountdownFlashCurve = new PrefabGUID(215421682); public static readonly PrefabGUID Arena01WallpaperBuildMenuGroup = new PrefabGUID(357750462); public static readonly PrefabGUID ArenaFlagBuildMenuGroup = new PrefabGUID(1595912695); public static readonly PrefabGUID AscendancyPassive_Blood_T01_BloodMend = new PrefabGUID(254413498); public static readonly PrefabGUID AscendancyPassive_Blood_T02_BloodDrain = new PrefabGUID(762152014); public static readonly PrefabGUID AscendancyPassive_Blood_T03_LeechMastery = new PrefabGUID(980613835); public static readonly PrefabGUID AscendancyPassive_Chaos_T01_VeilCooldown = new PrefabGUID(-1314793423); public static readonly PrefabGUID AscendancyPassive_Chaos_T02_UltimatePower = new PrefabGUID(-463084646); public static readonly PrefabGUID AscendancyPassive_Chaos_T03_ChaosMastery = new PrefabGUID(-974227542); public static readonly PrefabGUID AscendancyPassive_Frost_T01_ShieldEfficiency = new PrefabGUID(1401357351); public static readonly PrefabGUID AscendancyPassive_Frost_T02_AllResist = new PrefabGUID(1943795419); public static readonly PrefabGUID AscendancyPassive_Frost_T03_FrostMastery = new PrefabGUID(-1877359740); public static readonly PrefabGUID AscendancyPassive_Illusion_T01_SpellCooldown = new PrefabGUID(1380208342); public static readonly PrefabGUID AscendancyPassive_Illusion_T02_ShapeshiftSpeed = new PrefabGUID(-849582362); public static readonly PrefabGUID AscendancyPassive_Illusion_T03_IllusionMastery = new PrefabGUID(522943404); public static readonly PrefabGUID AscendancyPassive_Storm_T01_AttackSpeed = new PrefabGUID(1805361793); public static readonly PrefabGUID AscendancyPassive_Storm_T02_MountSpeed = new PrefabGUID(399289260); public static readonly PrefabGUID AscendancyPassive_Storm_T03_StormMastery = new PrefabGUID(-655574135); public static readonly PrefabGUID AscendancyPassive_Unholy_T01_HealthRegen = new PrefabGUID(-2030466757); public static readonly PrefabGUID AscendancyPassive_Unholy_T02_FeedCooldown = new PrefabGUID(1178142107); public static readonly PrefabGUID AscendancyPassive_Unholy_T03_SkeletonMastery = new PrefabGUID(-392743276); public static readonly PrefabGUID Bandit_Bomber_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1186138674); public static readonly PrefabGUID Bandit_Chaosarrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(540671624); public static readonly PrefabGUID Bandit_Deadeye_Frostarrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(390591357); public static readonly PrefabGUID Bandit_Fisherman_Emote_OnAggro_Buff = new PrefabGUID(-2142887777); public static readonly PrefabGUID Bandit_Foreman_VBlood_Emote_OnAggro_Buff = new PrefabGUID(268703743); public static readonly PrefabGUID Bandit_Leader_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1341944820); public static readonly PrefabGUID Bandit_StoneBreaker_VBlood_Emote_OnAggro_Buff = new PrefabGUID(957228194); public static readonly PrefabGUID Bandit_Tourok_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1321070902); public static readonly PrefabGUID Banshee_Dash_Cast_Curve = new PrefabGUID(-375088668); public static readonly PrefabGUID BasicColors01_DyeSwatch = new PrefabGUID(-997590759); public static readonly PrefabGUID BatVampire_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-974625709); public static readonly PrefabGUID Bear_Dash_Curve = new PrefabGUID(2035387223); public static readonly PrefabGUID Bear_DashCast_Curve = new PrefabGUID(-1469618868); public static readonly PrefabGUID BEH_AngryMoose = new PrefabGUID(1254029542); public static readonly PrefabGUID BEH_ArchMage = new PrefabGUID(1218517046); public static readonly PrefabGUID BEH_ArchMage_FlameSphere = new PrefabGUID(-1756104221); public static readonly PrefabGUID BEH_ArchMage_Summon = new PrefabGUID(-1003663330); public static readonly PrefabGUID BEH_Bandit_Bomber = new PrefabGUID(-894096647); public static readonly PrefabGUID BEH_Bandit_Bomber_Servant = new PrefabGUID(-1565845791); public static readonly PrefabGUID BEH_Bandit_Bomber_VBlood = new PrefabGUID(-2059538752); public static readonly PrefabGUID BEH_Bandit_Deadeye = new PrefabGUID(-869241655); public static readonly PrefabGUID BEH_Bandit_Deadeye_Chaosarrow_VBlood = new PrefabGUID(1068852483); public static readonly PrefabGUID BEH_Bandit_Deadeye_Servant = new PrefabGUID(1968787911); public static readonly PrefabGUID BEH_Bandit_Deadeye_VBlood = new PrefabGUID(-61349024); public static readonly PrefabGUID BEH_Bandit_Fisherman_VBlood = new PrefabGUID(-386860528); public static readonly PrefabGUID BEH_Bandit_Foreman_VBlood = new PrefabGUID(957382832); public static readonly PrefabGUID BEH_Bandit_Hunter = new PrefabGUID(155658532); public static readonly PrefabGUID BEH_Bandit_Hunter_Servant = new PrefabGUID(1688158802); public static readonly PrefabGUID BEH_Bandit_Leader_VBlood = new PrefabGUID(281269854); public static readonly PrefabGUID BEH_Bandit_Leader_Wolf_Summon = new PrefabGUID(-1528391757); public static readonly PrefabGUID BEH_Bandit_Mugger = new PrefabGUID(-1665557261); public static readonly PrefabGUID BEH_Bandit_Mugger_Servant = new PrefabGUID(729068729); public static readonly PrefabGUID BEH_Bandit_Rascal = new PrefabGUID(-334328856); public static readonly PrefabGUID BEH_Bandit_Rascal_Servant = new PrefabGUID(-312441508); public static readonly PrefabGUID BEH_Bandit_Scout = new PrefabGUID(1672858554); public static readonly PrefabGUID BEH_Bandit_Scout_Servant = new PrefabGUID(786843854); public static readonly PrefabGUID BEH_Bandit_Stalker = new PrefabGUID(1846970572); public static readonly PrefabGUID BEH_Bandit_Stalker_Servant = new PrefabGUID(-1056110581); public static readonly PrefabGUID BEH_Bandit_Stalker_VBlood = new PrefabGUID(1746008604); public static readonly PrefabGUID BEH_Bandit_StoneBreaker_VBlood = new PrefabGUID(-956340614); public static readonly PrefabGUID BEH_Bandit_Thief = new PrefabGUID(1829522622); public static readonly PrefabGUID BEH_Bandit_Thief_Servant = new PrefabGUID(1399382478); public static readonly PrefabGUID BEH_Bandit_Thief_VBlood = new PrefabGUID(-284458242); public static readonly PrefabGUID BEH_Bandit_Thug = new PrefabGUID(384073359); public static readonly PrefabGUID BEH_Bandit_Thug_Servant = new PrefabGUID(-1280225571); public static readonly PrefabGUID BEH_Bandit_Tourok_VBlood = new PrefabGUID(1952994226); public static readonly PrefabGUID BEH_Bandit_Tourok_VBlood_Shadow = new PrefabGUID(1752938626); public static readonly PrefabGUID BEH_Bandit_Trapper = new PrefabGUID(1313326300); public static readonly PrefabGUID BEH_Bandit_Trapper_Servant = new PrefabGUID(2009232273); public static readonly PrefabGUID BEH_Bandit_Wolf_Standard = new PrefabGUID(1966365985); public static readonly PrefabGUID BEH_Bandit_Woodcutter_Standard_Servant = new PrefabGUID(1476817867); public static readonly PrefabGUID BEH_Bandit_Worker_Gatherer = new PrefabGUID(17237159); public static readonly PrefabGUID BEH_Bandit_Worker_Gatherer_Servant = new PrefabGUID(-1025208190); public static readonly PrefabGUID BEH_Bandit_Worker_Miner = new PrefabGUID(-187589575); public static readonly PrefabGUID BEH_Bandit_Worker_Woodcutter = new PrefabGUID(1932014234); public static readonly PrefabGUID BEH_Base = new PrefabGUID(-2038160942); public static readonly PrefabGUID BEH_BatVampire_VBlood = new PrefabGUID(-1614230419); public static readonly PrefabGUID BEH_Bear_Spirit = new PrefabGUID(-1495349146); public static readonly PrefabGUID BEH_Bear_Standard = new PrefabGUID(-1527097873); public static readonly PrefabGUID BEH_Blackfang_Alchemist = new PrefabGUID(-1410909727); public static readonly PrefabGUID BEH_Blackfang_Alchemist_Servant = new PrefabGUID(707314935); public static readonly PrefabGUID BEH_Blackfang_CarverBoss_VBlood = new PrefabGUID(-1322551720); public static readonly PrefabGUID BEH_Blackfang_DartFlinger = new PrefabGUID(1972196370); public static readonly PrefabGUID BEH_Blackfang_DartFlinger_Servant = new PrefabGUID(211576358); public static readonly PrefabGUID BEH_Blackfang_Livith_VBlood = new PrefabGUID(-1473448723); public static readonly PrefabGUID BEH_Blackfang_Lucie_VBlood = new PrefabGUID(-1198955038); public static readonly PrefabGUID BEH_Blackfang_Lurker = new PrefabGUID(713347435); public static readonly PrefabGUID BEH_Blackfang_Lurker_Servant = new PrefabGUID(378518858); public static readonly PrefabGUID BEH_Blackfang_Morgana = new PrefabGUID(1593278515); public static readonly PrefabGUID BEH_Blackfang_Peon = new PrefabGUID(207507785); public static readonly PrefabGUID BEH_Blackfang_Peon_Servant = new PrefabGUID(236513769); public static readonly PrefabGUID BEH_Blackfang_PeonCarryingBarrel = new PrefabGUID(-1734299562); public static readonly PrefabGUID BEH_Blackfang_PeonLogCarryer = new PrefabGUID(-1672148294); public static readonly PrefabGUID BEH_Blackfang_Sentinel = new PrefabGUID(565364519); public static readonly PrefabGUID BEH_Blackfang_Sentinel_Servant = new PrefabGUID(1670002558); public static readonly PrefabGUID BEH_Blackfang_Striker = new PrefabGUID(470705829); public static readonly PrefabGUID BEH_Blackfang_Striker_Servant = new PrefabGUID(265120836); public static readonly PrefabGUID BEH_Blackfang_Valyr_VBlood = new PrefabGUID(1699999713); public static readonly PrefabGUID BEH_Blackfang_ValyrCauldron = new PrefabGUID(-701803855); public static readonly PrefabGUID BEH_Blackfang_Venomblade = new PrefabGUID(1363315280); public static readonly PrefabGUID BEH_Blackfang_Venomblade_Servant = new PrefabGUID(-443635394); public static readonly PrefabGUID BEH_Blackfang_Viper = new PrefabGUID(1297283248); public static readonly PrefabGUID BEH_Blackfang_Viper_Servant = new PrefabGUID(1235132042); public static readonly PrefabGUID BEH_Blackfang_WoodCarver = new PrefabGUID(-1729879936); public static readonly PrefabGUID BEH_Blackfang_WoodCarver_Servant = new PrefabGUID(1648366455); public static readonly PrefabGUID BEH_BloodBuff_Corrupted_Angel = new PrefabGUID(1739767381); public static readonly PrefabGUID BEH_BloodBuff_Corrupted_Harpy = new PrefabGUID(-108481737); public static readonly PrefabGUID BEH_CarriageHorse = new PrefabGUID(1462803292); public static readonly PrefabGUID BEH_ChurchOfLight_Archer = new PrefabGUID(-1379188375); public static readonly PrefabGUID BEH_ChurchOfLight_Archer_Servant = new PrefabGUID(-627498699); public static readonly PrefabGUID BEH_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(-238211903); public static readonly PrefabGUID BEH_ChurchOfLight_CardinalAide = new PrefabGUID(-1805807245); public static readonly PrefabGUID BEH_ChurchOfLight_Cleric = new PrefabGUID(-922681709); public static readonly PrefabGUID BEH_ChurchOfLight_Cleric_Servant = new PrefabGUID(-1973165050); public static readonly PrefabGUID BEH_ChurchOfLight_EnchantedCross = new PrefabGUID(1885205310); public static readonly PrefabGUID BEH_ChurchOfLight_Footman_Servant = new PrefabGUID(1825095219); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_2H = new PrefabGUID(-1069871786); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_2H_Servant = new PrefabGUID(-1987574788); public static readonly PrefabGUID BEH_ChurchOfLight_Knight_Shield_Servant = new PrefabGUID(-1925940112); public static readonly PrefabGUID BEH_ChurchOfLight_Lightweaver = new PrefabGUID(162424158); public static readonly PrefabGUID BEH_ChurchOfLight_Lightweaver_Servant = new PrefabGUID(1762861569); public static readonly PrefabGUID BEH_ChurchOfLight_Miner_Standard_Servant = new PrefabGUID(1704020704); public static readonly PrefabGUID BEH_ChurchOfLight_Overseer = new PrefabGUID(612310328); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin = new PrefabGUID(-1362021934); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin_Servant = new PrefabGUID(-2136359319); public static readonly PrefabGUID BEH_ChurchOfLight_Paladin_VBlood = new PrefabGUID(433100409); public static readonly PrefabGUID BEH_ChurchOfLight_Priest_Servant = new PrefabGUID(-2080114153); public static readonly PrefabGUID BEH_ChurchOfLight_Priest_Standard = new PrefabGUID(-1793485570); public static readonly PrefabGUID BEH_ChurchOfLight_Rifleman = new PrefabGUID(-1267432392); public static readonly PrefabGUID BEH_ChurchOfLight_Rifleman_Servant = new PrefabGUID(639095704); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(1529648266); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Enforcer_Servant = new PrefabGUID(1262415316); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(1345996693); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveMaster_Sentry_Servant = new PrefabGUID(-109653865); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveRuffian = new PrefabGUID(71256154); public static readonly PrefabGUID BEH_ChurchOfLight_SlaveRuffian_Servant = new PrefabGUID(-1623592371); public static readonly PrefabGUID BEH_ChurchOfLight_SmiteOrb = new PrefabGUID(-1017206735); public static readonly PrefabGUID BEH_ChurchOfLight_Sommelier = new PrefabGUID(1662698420); public static readonly PrefabGUID BEH_CopperGolem = new PrefabGUID(781969948); public static readonly PrefabGUID BEH_Corrupted_Bear_Standard = new PrefabGUID(1205593970); public static readonly PrefabGUID BEH_Corrupted_Wolf = new PrefabGUID(-59860023); public static readonly PrefabGUID BEH_Cow_Standard = new PrefabGUID(-1222424706); public static readonly PrefabGUID BEH_Critter_General = new PrefabGUID(-1694538601); public static readonly PrefabGUID BEH_Cultist_Pyromancer = new PrefabGUID(1545730227); public static readonly PrefabGUID BEH_Cultist_Shapeshifter = new PrefabGUID(151114939); public static readonly PrefabGUID BEH_Cultist_Slicer = new PrefabGUID(-1356728300); public static readonly PrefabGUID BEH_Cursed_Bear_Standard = new PrefabGUID(-1554281311); public static readonly PrefabGUID BEH_Cursed_MonsterToad = new PrefabGUID(-21189901); public static readonly PrefabGUID BEH_Cursed_Mosquito = new PrefabGUID(-889406876); public static readonly PrefabGUID BEH_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-175078664); public static readonly PrefabGUID BEH_Cursed_MountainBeast_VBlood = new PrefabGUID(444838754); public static readonly PrefabGUID BEH_Cursed_ToadKing_VBlood = new PrefabGUID(-1593130676); public static readonly PrefabGUID BEH_Cursed_ToadSpitter = new PrefabGUID(-1310611967); public static readonly PrefabGUID BEH_Cursed_Witch = new PrefabGUID(-542349260); public static readonly PrefabGUID BEH_Cursed_Witch_Servant = new PrefabGUID(1410331354); public static readonly PrefabGUID BEH_Cursed_Witch_VBlood = new PrefabGUID(987360205); public static readonly PrefabGUID BEH_Cursed_Wolf = new PrefabGUID(-1413219114); public static readonly PrefabGUID BEH_CursedWanderer_VBlood = new PrefabGUID(1644201647); public static readonly PrefabGUID BEH_Dracula_BloodSoul = new PrefabGUID(1414670325); public static readonly PrefabGUID BEH_Dracula_ShadowBatSwarm = new PrefabGUID(258244584); public static readonly PrefabGUID BEH_Dracula_SpellStone_Shared = new PrefabGUID(1416080810); public static readonly PrefabGUID BEH_EmeryElemental = new PrefabGUID(1670858012); public static readonly PrefabGUID BEH_EmeryGolem = new PrefabGUID(-72754274); public static readonly PrefabGUID BEH_Farmer_Servant = new PrefabGUID(1785909256); public static readonly PrefabGUID BEH_Farmer_Standard = new PrefabGUID(600464507); public static readonly PrefabGUID BEH_Farmlands_Animal_Standard = new PrefabGUID(-1918585836); public static readonly PrefabGUID BEH_Farmlands_Nun_Servant = new PrefabGUID(1736342550); public static readonly PrefabGUID BEH_Footman_Standard = new PrefabGUID(419567663); public static readonly PrefabGUID BEH_Forest_Bear_Dire_Vblood = new PrefabGUID(1159402146); public static readonly PrefabGUID BEH_Forest_Deer = new PrefabGUID(725817843); public static readonly PrefabGUID BEH_Forest_Deer_StayCloseToSpawn = new PrefabGUID(-171376262); public static readonly PrefabGUID BEH_Forest_Wolf = new PrefabGUID(186529454); public static readonly PrefabGUID BEH_Generic_Boss_Base = new PrefabGUID(-67084163); public static readonly PrefabGUID BEH_Generic_GateBoss_Base = new PrefabGUID(1016421790); public static readonly PrefabGUID BEH_Generic_GateBoss_Melee = new PrefabGUID(-1215716718); public static readonly PrefabGUID BEH_Geomancer_Golem_Guardian = new PrefabGUID(-829692401); public static readonly PrefabGUID BEH_Geomancer_Golem_VBlood = new PrefabGUID(100270019); public static readonly PrefabGUID BEH_Geomancer_Human_VBlood = new PrefabGUID(-1484629956); public static readonly PrefabGUID BEH_Gloomrot_AceIncinerator = new PrefabGUID(1379381847); public static readonly PrefabGUID BEH_Gloomrot_AceIncinerator_Servant = new PrefabGUID(-485884150); public static readonly PrefabGUID BEH_Gloomrot_Batoon = new PrefabGUID(-920246726); public static readonly PrefabGUID BEH_Gloomrot_Batoon_Servant = new PrefabGUID(-401860247); public static readonly PrefabGUID BEH_Gloomrot_Iva = new PrefabGUID(-1988492521); public static readonly PrefabGUID BEH_Gloomrot_Monster = new PrefabGUID(943567287); public static readonly PrefabGUID BEH_Gloomrot_Purifier = new PrefabGUID(-1902453123); public static readonly PrefabGUID BEH_Gloomrot_Pyro = new PrefabGUID(904078168); public static readonly PrefabGUID BEH_Gloomrot_Pyro_Servant = new PrefabGUID(-1164304327); public static readonly PrefabGUID BEH_Gloomrot_Railgunner = new PrefabGUID(1806688895); public static readonly PrefabGUID BEH_Gloomrot_Railgunner_Servant = new PrefabGUID(505746425); public static readonly PrefabGUID BEH_Gloomrot_RailgunSergeant = new PrefabGUID(-1612217012); public static readonly PrefabGUID BEH_Gloomrot_SentryOfficer = new PrefabGUID(-398535308); public static readonly PrefabGUID BEH_Gloomrot_SentryOfficer_Servant = new PrefabGUID(629455802); public static readonly PrefabGUID BEH_Gloomrot_SentryTurret = new PrefabGUID(610665701); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Driller = new PrefabGUID(1655724144); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Gattler = new PrefabGUID(1009428843); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(2054858693); public static readonly PrefabGUID BEH_Gloomrot_SpiderTank_Zapper = new PrefabGUID(1006621956); public static readonly PrefabGUID BEH_Gloomrot_Tazer = new PrefabGUID(1124689756); public static readonly PrefabGUID BEH_Gloomrot_Tazer_Servant = new PrefabGUID(485292408); public static readonly PrefabGUID BEH_Gloomrot_Technician = new PrefabGUID(-84097633); public static readonly PrefabGUID BEH_Gloomrot_Technician_Servant = new PrefabGUID(205365360); public static readonly PrefabGUID BEH_Gloomrot_TheProfessor_VBlood = new PrefabGUID(-938648791); public static readonly PrefabGUID BEH_Gloomrot_TractorBeamer = new PrefabGUID(869795019); public static readonly PrefabGUID BEH_Gloomrot_TractorBeamer_Servant = new PrefabGUID(-1338477081); public static readonly PrefabGUID BEH_Gloomrot_Voltage = new PrefabGUID(816206535); public static readonly PrefabGUID BEH_GoldGolem = new PrefabGUID(435261072); public static readonly PrefabGUID BEH_Harpy_Dasher = new PrefabGUID(700854431); public static readonly PrefabGUID BEH_Harpy_Dasher_Servant = new PrefabGUID(1785649567); public static readonly PrefabGUID BEH_Harpy_FeatherDuster = new PrefabGUID(1565444532); public static readonly PrefabGUID BEH_Harpy_Matriarch_VBlood = new PrefabGUID(1778109938); public static readonly PrefabGUID BEH_Harpy_Scratcher = new PrefabGUID(526073827); public static readonly PrefabGUID BEH_Harpy_Scratcher_Servant = new PrefabGUID(676017498); public static readonly PrefabGUID BEH_Harpy_Sorceress = new PrefabGUID(-1716102506); public static readonly PrefabGUID BEH_Harpy_Sorceress_Servant = new PrefabGUID(1247259485); public static readonly PrefabGUID BEH_HostileVillager_Melee = new PrefabGUID(-183901268); public static readonly PrefabGUID BEH_HostileVillager_Thrower = new PrefabGUID(359947687); public static readonly PrefabGUID BEH_Illusion_Mosquito = new PrefabGUID(972923105); public static readonly PrefabGUID BEH_IronGolem = new PrefabGUID(-2144420103); public static readonly PrefabGUID BEH_Knight_Shield = new PrefabGUID(-1093204590); public static readonly PrefabGUID BEH_Legion_Assassin = new PrefabGUID(1140793879); public static readonly PrefabGUID BEH_Legion_Assassin_Servant = new PrefabGUID(-1318433314); public static readonly PrefabGUID BEH_Legion_BatSwarm = new PrefabGUID(-843205201); public static readonly PrefabGUID BEH_Legion_BloodProphet = new PrefabGUID(73854851); public static readonly PrefabGUID BEH_Legion_BloodProphet_Lesser_Servant = new PrefabGUID(1758577300); public static readonly PrefabGUID BEH_Legion_BloodProphet_Servant = new PrefabGUID(141170653); public static readonly PrefabGUID BEH_Legion_Dreadhorn = new PrefabGUID(-1065784703); public static readonly PrefabGUID BEH_Legion_Gargoyle = new PrefabGUID(-331559941); public static readonly PrefabGUID BEH_Legion_Gargoyle_StatueSpawn = new PrefabGUID(1122749186); public static readonly PrefabGUID BEH_Legion_Guardian = new PrefabGUID(-526796105); public static readonly PrefabGUID BEH_Legion_HighLord_GroundSword = new PrefabGUID(-1939066155); public static readonly PrefabGUID BEH_Legion_NightMaiden = new PrefabGUID(1961937986); public static readonly PrefabGUID BEH_Legion_NightMaiden_Lesser_Servant = new PrefabGUID(1881256503); public static readonly PrefabGUID BEH_Legion_NightMaiden_Servant = new PrefabGUID(-1193716956); public static readonly PrefabGUID BEH_Legion_Nightmare = new PrefabGUID(64373002); public static readonly PrefabGUID BEH_Legion_Nightmare_Lesser_Servant = new PrefabGUID(1716588731); public static readonly PrefabGUID BEH_Legion_Nightmare_Servant = new PrefabGUID(930383839); public static readonly PrefabGUID BEH_Legion_Shadowkin = new PrefabGUID(-806745151); public static readonly PrefabGUID BEH_Legion_Shadowkin_Lesser_Servant = new PrefabGUID(-1123904906); public static readonly PrefabGUID BEH_Legion_Shadowkin_Servant = new PrefabGUID(-103364056); public static readonly PrefabGUID BEH_Legion_Vargulf = new PrefabGUID(987389967); public static readonly PrefabGUID BEH_Legion_Vargulf_Lesser_Servant = new PrefabGUID(-1988606738); public static readonly PrefabGUID BEH_Legion_Vargulf_Servant = new PrefabGUID(1371780669); public static readonly PrefabGUID BEH_Manticore_Airborne = new PrefabGUID(1741096858); public static readonly PrefabGUID BEH_Manticore_Vblood = new PrefabGUID(397372511); public static readonly PrefabGUID BEH_ManTrap = new PrefabGUID(1147513069); public static readonly PrefabGUID BEH_ManTrap_Corrupted = new PrefabGUID(-1625324515); public static readonly PrefabGUID BEH_ManTrap_Dull = new PrefabGUID(-2017108869); public static readonly PrefabGUID BEH_Militia_BellRinger = new PrefabGUID(283809536); public static readonly PrefabGUID BEH_Militia_BellRinger_Servant = new PrefabGUID(978317394); public static readonly PrefabGUID BEH_Militia_BishopOfDunley_VBlood = new PrefabGUID(642363204); public static readonly PrefabGUID BEH_Militia_Bomber = new PrefabGUID(-2130812904); public static readonly PrefabGUID BEH_Militia_ConstrainingPole = new PrefabGUID(1505662121); public static readonly PrefabGUID BEH_Militia_Crossbow = new PrefabGUID(1019808072); public static readonly PrefabGUID BEH_Militia_Crossbow_Servant = new PrefabGUID(273085654); public static readonly PrefabGUID BEH_Militia_Devoted = new PrefabGUID(-1913859457); public static readonly PrefabGUID BEH_Militia_Devoted_Servant = new PrefabGUID(722171876); public static readonly PrefabGUID BEH_Militia_EyeOfGod = new PrefabGUID(336013749); public static readonly PrefabGUID BEH_Militia_Fabian = new PrefabGUID(-1156763706); public static readonly PrefabGUID BEH_Militia_FabiansSteed = new PrefabGUID(-2090924587); public static readonly PrefabGUID BEH_Militia_Glassblower = new PrefabGUID(-569551557); public static readonly PrefabGUID BEH_Militia_Guard = new PrefabGUID(-1787316651); public static readonly PrefabGUID BEH_Militia_Guard_VBlood = new PrefabGUID(1054288433); public static readonly PrefabGUID BEH_Militia_Heavy = new PrefabGUID(99969076); public static readonly PrefabGUID BEH_Militia_Heavy_Servant = new PrefabGUID(910088041); public static readonly PrefabGUID BEH_Militia_Horseman = new PrefabGUID(-2022421342); public static readonly PrefabGUID BEH_Militia_Horseman_Mount = new PrefabGUID(153897816); public static readonly PrefabGUID BEH_Militia_Hound = new PrefabGUID(-1952794513); public static readonly PrefabGUID BEH_Militia_Hound_VBlood = new PrefabGUID(448493800); public static readonly PrefabGUID BEH_Militia_HoundMaster_VBlood = new PrefabGUID(2128632339); public static readonly PrefabGUID BEH_Militia_InkCrawler = new PrefabGUID(-339074487); public static readonly PrefabGUID BEH_Militia_Leader = new PrefabGUID(-1176340520); public static readonly PrefabGUID BEH_Militia_Light = new PrefabGUID(1813972936); public static readonly PrefabGUID BEH_Militia_Longbowman = new PrefabGUID(-1581894867); public static readonly PrefabGUID BEH_Militia_Longbowman_LightArrow_Vblood = new PrefabGUID(-1091569483); public static readonly PrefabGUID BEH_Militia_Longbowman_Servant = new PrefabGUID(-1290208561); public static readonly PrefabGUID BEH_Militia_Nun = new PrefabGUID(-254620402); public static readonly PrefabGUID BEH_Militia_Nun_VBlood = new PrefabGUID(-584511429); public static readonly PrefabGUID BEH_Militia_Rider = new PrefabGUID(1605659023); public static readonly PrefabGUID BEH_Militia_Rider_Mount = new PrefabGUID(-1784056249); public static readonly PrefabGUID BEH_Militia_Scribe = new PrefabGUID(968212822); public static readonly PrefabGUID BEH_Militia_Standard = new PrefabGUID(-956235191); public static readonly PrefabGUID BEH_Militia_TorchBearer = new PrefabGUID(-1912571654); public static readonly PrefabGUID BEH_Militia_Torchbearer_Servant = new PrefabGUID(1220761582); public static readonly PrefabGUID BEH_Militia_Undead_Infiltrator = new PrefabGUID(1740240804); public static readonly PrefabGUID BEH_Militia_Worker_Miner = new PrefabGUID(651363695); public static readonly PrefabGUID BEH_Miner_Servant = new PrefabGUID(1748248643); public static readonly PrefabGUID BEH_Monster_LightningPillar = new PrefabGUID(1530883924); public static readonly PrefabGUID BEH_Moose_Standard = new PrefabGUID(405737090); public static readonly PrefabGUID BEH_Mount_Horse = new PrefabGUID(-1452830984); public static readonly PrefabGUID BEH_Mutant_Bear_Standard = new PrefabGUID(-1372447475); public static readonly PrefabGUID BEH_Mutant_FleshGolem = new PrefabGUID(663193340); public static readonly PrefabGUID BEH_Mutant_Rat = new PrefabGUID(-749320115); public static readonly PrefabGUID BEH_Mutant_Spitter = new PrefabGUID(-2121728120); public static readonly PrefabGUID BEH_Mutant_Spitter_Servant = new PrefabGUID(-842495020); public static readonly PrefabGUID BEH_Mutant_Wolf = new PrefabGUID(-74111559); public static readonly PrefabGUID BEH_Nightlurker = new PrefabGUID(-1457158903); public static readonly PrefabGUID BEH_Null = new PrefabGUID(-1677799948); public static readonly PrefabGUID BEH_Ocean_Blowfish = new PrefabGUID(1385481259); public static readonly PrefabGUID BEH_Ocean_Piranha = new PrefabGUID(1359616056); public static readonly PrefabGUID BEH_Paladin_DivineAngel = new PrefabGUID(1767142686); public static readonly PrefabGUID BEH_Paladin_FallenAngel = new PrefabGUID(-134491427); public static readonly PrefabGUID BEH_Pixie = new PrefabGUID(-80440015); public static readonly PrefabGUID BEH_Poloma_VBlood = new PrefabGUID(-1566350035); public static readonly PrefabGUID BEH_RockElemental = new PrefabGUID(900390403); public static readonly PrefabGUID BEH_Scarecrow = new PrefabGUID(-776127089); public static readonly PrefabGUID BEH_SeaSerpent = new PrefabGUID(-1132970980); public static readonly PrefabGUID BEH_Shared_Crow = new PrefabGUID(-1291775531); public static readonly PrefabGUID BEH_Sommelier_BarrelMinion_Standard = new PrefabGUID(1595167720); public static readonly PrefabGUID BEH_Spectral_Guardian = new PrefabGUID(94655816); public static readonly PrefabGUID BEH_Spectral_SpellSlinger = new PrefabGUID(1908024378); public static readonly PrefabGUID BEH_Spider_Baneling = new PrefabGUID(388805852); public static readonly PrefabGUID BEH_Spider_Broodmother = new PrefabGUID(1282440184); public static readonly PrefabGUID BEH_Spider_Forest = new PrefabGUID(-1523715971); public static readonly PrefabGUID BEH_Spider_Forestling = new PrefabGUID(-1243901457); public static readonly PrefabGUID BEH_Spider_Melee = new PrefabGUID(1858219527); public static readonly PrefabGUID BEH_Spider_Queen_Vblood = new PrefabGUID(1237930104); public static readonly PrefabGUID BEH_Spider_Range = new PrefabGUID(-554572792); public static readonly PrefabGUID BEH_Spider_Spiderling = new PrefabGUID(1227531048); public static readonly PrefabGUID BEH_StoneGolem = new PrefabGUID(948628999); public static readonly PrefabGUID BEH_SUMMON_Wolf = new PrefabGUID(958877923); public static readonly PrefabGUID BEH_Tailor_Gargoyle = new PrefabGUID(232160295); public static readonly PrefabGUID BEH_Tailor_VBlood = new PrefabGUID(-1029011269); public static readonly PrefabGUID BEH_Thief_Standard = new PrefabGUID(-1430673288); public static readonly PrefabGUID BEH_Trader_Dunley_T02 = new PrefabGUID(525003942); public static readonly PrefabGUID BEH_Trader_Epic_T04 = new PrefabGUID(395389493); public static readonly PrefabGUID BEH_Trader_Farbane_Stalker_T01 = new PrefabGUID(538182877); public static readonly PrefabGUID BEH_Trader_Farbane_Thief_T01 = new PrefabGUID(-1552655452); public static readonly PrefabGUID BEH_Trader_Noctem_Major = new PrefabGUID(-1999051184); public static readonly PrefabGUID BEH_Trader_Noctem_Minor = new PrefabGUID(-755685625); public static readonly PrefabGUID BEH_Trader_Silverlight_T03 = new PrefabGUID(-443324956); public static readonly PrefabGUID BEH_TrantMantrap_Corrupted = new PrefabGUID(1891425561); public static readonly PrefabGUID BEH_Treant = new PrefabGUID(1678548761); public static readonly PrefabGUID BEH_Treant_Corrupted = new PrefabGUID(-1633968667); public static readonly PrefabGUID BEH_Undead_ArenaChampion_VBlood = new PrefabGUID(-639872266); public static readonly PrefabGUID BEH_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(-863225659); public static readonly PrefabGUID BEH_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(-829484818); public static readonly PrefabGUID BEH_Undead_Assassin = new PrefabGUID(-1707757427); public static readonly PrefabGUID BEH_Undead_BishopOfDeath_VBlood = new PrefabGUID(-789777617); public static readonly PrefabGUID BEH_Undead_BishopOfShadows_GateBoss = new PrefabGUID(-859730817); public static readonly PrefabGUID BEH_Undead_BishopOfShadows_VBlood = new PrefabGUID(1521680311); public static readonly PrefabGUID BEH_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(-1408876099); public static readonly PrefabGUID BEH_Undead_CursedSmith_VBlood = new PrefabGUID(1590018798); public static readonly PrefabGUID BEH_Undead_FlyingSkull = new PrefabGUID(-910885763); public static readonly PrefabGUID BEH_Undead_GhostAssassin = new PrefabGUID(162797016); public static readonly PrefabGUID BEH_Undead_GhostBanshee = new PrefabGUID(-2023094598); public static readonly PrefabGUID BEH_Undead_GhostGuardian = new PrefabGUID(1142930594); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Crossbow = new PrefabGUID(911962163); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Light = new PrefabGUID(335836727); public static readonly PrefabGUID BEH_Undead_GhostMilitia_Standard = new PrefabGUID(-849758229); public static readonly PrefabGUID BEH_Undead_Ghoul = new PrefabGUID(-709027789); public static readonly PrefabGUID BEH_Undead_Ghoul_Unholy_Minion = new PrefabGUID(-1596534547); public static readonly PrefabGUID BEH_Undead_Guardian = new PrefabGUID(-2045826902); public static readonly PrefabGUID BEH_Undead_Infiltrator_AfterShadow = new PrefabGUID(1749462841); public static readonly PrefabGUID BEH_Undead_Infiltrator_VBlood = new PrefabGUID(96615775); public static readonly PrefabGUID BEH_Undead_Leader = new PrefabGUID(350688287); public static readonly PrefabGUID BEH_Undead_Necromancer = new PrefabGUID(586420597); public static readonly PrefabGUID BEH_Undead_Priest = new PrefabGUID(1373194052); public static readonly PrefabGUID BEH_Undead_Priest_VBlood = new PrefabGUID(-242661990); public static readonly PrefabGUID BEH_Undead_RottenGhoul = new PrefabGUID(436314549); public static readonly PrefabGUID BEH_Undead_ShadowSoldier = new PrefabGUID(1394122777); public static readonly PrefabGUID BEH_Undead_ShadowSoldier_GateBoss = new PrefabGUID(-268669910); public static readonly PrefabGUID BEH_Undead_SkeletonApprentice = new PrefabGUID(1190623805); public static readonly PrefabGUID BEH_Undead_SkeletonCrossbow_Farbane = new PrefabGUID(1493466301); public static readonly PrefabGUID BEH_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(-712281772); public static readonly PrefabGUID BEH_Undead_SkeletonGolem = new PrefabGUID(243382278); public static readonly PrefabGUID BEH_Undead_SkeletonMage = new PrefabGUID(-2067809533); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(-1483703502); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(-1892242369); public static readonly PrefabGUID BEH_Undead_SkeletonSoldier_Withered = new PrefabGUID(1236989880); public static readonly PrefabGUID BEH_Undead_ZealousCultist_Ghost = new PrefabGUID(1395639297); public static readonly PrefabGUID BEH_Undead_ZealousCultist_VBlood = new PrefabGUID(-1236860084); public static readonly PrefabGUID BEH_Unholy_DeathKnight = new PrefabGUID(2080585865); public static readonly PrefabGUID BEH_Unholy_FallenAngel = new PrefabGUID(-1062259752); public static readonly PrefabGUID BEH_Unholy_SkeletonApprentice_Summon = new PrefabGUID(284024603); public static readonly PrefabGUID BEH_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1638449571); public static readonly PrefabGUID BEH_Unholy_UnstableArachnid = new PrefabGUID(1625491073); public static readonly PrefabGUID BEH_Unholy_UnstableArachnid_Small = new PrefabGUID(1161313498); public static readonly PrefabGUID BEH_Vampire_BloodKnight = new PrefabGUID(-1750899949); public static readonly PrefabGUID BEH_Vampire_CrimsonIronMaiden = new PrefabGUID(-579938944); public static readonly PrefabGUID BEH_Vampire_Cultist = new PrefabGUID(580259360); public static readonly PrefabGUID BEH_Vampire_Cultist_Male_Servant = new PrefabGUID(987812908); public static readonly PrefabGUID BEH_Vampire_Dracula = new PrefabGUID(543339414); public static readonly PrefabGUID BEH_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(441362636); public static readonly PrefabGUID BEH_Vampire_HighLord_VBlood = new PrefabGUID(-767647397); public static readonly PrefabGUID BEH_Vampire_IceRanger_VBlood = new PrefabGUID(-894265904); public static readonly PrefabGUID BEH_Vampire_Withered = new PrefabGUID(-1184790773); public static readonly PrefabGUID BEH_Vermin_DireRat_VBlood = new PrefabGUID(752897267); public static readonly PrefabGUID BEH_Vermin_GiantRat = new PrefabGUID(-1921095795); public static readonly PrefabGUID BEH_VHunter_CastleMan = new PrefabGUID(-1056865179); public static readonly PrefabGUID BEH_VHunter_Jade_VBlood = new PrefabGUID(-534404918); public static readonly PrefabGUID BEH_VHunter_Leader_VBlood = new PrefabGUID(-2142076474); public static readonly PrefabGUID BEH_Villager_Female = new PrefabGUID(-1982127263); public static readonly PrefabGUID BEH_Villager_Female_ALREADY_EXISTS_2 = new PrefabGUID(-178749976); public static readonly PrefabGUID BEH_Villager_Male = new PrefabGUID(-1239097319); public static readonly PrefabGUID BEH_Villager_Male_ALREADY_EXISTS_2 = new PrefabGUID(934671321); public static readonly PrefabGUID BEH_Villager_Servant = new PrefabGUID(1051992085); public static readonly PrefabGUID BEH_Villager_Servant_ALREADY_EXISTS_2 = new PrefabGUID(611181297); public static readonly PrefabGUID BEH_Villager_Servant_Combat = new PrefabGUID(206102448); public static readonly PrefabGUID BEH_Wendigo_VBlood = new PrefabGUID(-646154887); public static readonly PrefabGUID BEH_WerewolfCheiftain_Human = new PrefabGUID(621098369); public static readonly PrefabGUID BEH_WerewolfChieftain_VBlood = new PrefabGUID(-2131084443); public static readonly PrefabGUID BEH_Wildling_Tamer_Wolf_Summon = new PrefabGUID(-1573780599); public static readonly PrefabGUID BEH_Winter_Moose_Standard = new PrefabGUID(-580237922); public static readonly PrefabGUID BEH_Winter_Wolf = new PrefabGUID(1961468296); public static readonly PrefabGUID BEH_Winter_Yeti_VBlood = new PrefabGUID(-210551232); public static readonly PrefabGUID BEH_Winter_Yeti_VBlood_GateBoss = new PrefabGUID(-1525677420); public static readonly PrefabGUID BEH_Wolf_vblood = new PrefabGUID(44468604); public static readonly PrefabGUID BEH_Woodcutter_Servant = new PrefabGUID(-1997993074); public static readonly PrefabGUID BEH_Woodcutter_Standard = new PrefabGUID(1029016575); public static readonly PrefabGUID BEH_WormTerror = new PrefabGUID(-455838153); public static readonly PrefabGUID BellCurve = new PrefabGUID(-170013695); public static readonly PrefabGUID BigBookcaseBuildMenuGroup = new PrefabGUID(1613058818); public static readonly PrefabGUID BiomePolygonUIColor_CursedForest = new PrefabGUID(1631018259); public static readonly PrefabGUID BiomePolygonUIColor_Default = new PrefabGUID(1409414103); public static readonly PrefabGUID BiomePolygonUIColor_Dunley = new PrefabGUID(245927855); public static readonly PrefabGUID BiomePolygonUIColor_ElrisSnow = new PrefabGUID(869822955); public static readonly PrefabGUID BiomePolygonUIColor_Farbane = new PrefabGUID(-193342874); public static readonly PrefabGUID BiomePolygonUIColor_General = new PrefabGUID(-302553612); public static readonly PrefabGUID BiomePolygonUIColor_GloomNorth = new PrefabGUID(1390115320); public static readonly PrefabGUID BiomePolygonUIColor_GloomSouth = new PrefabGUID(954583058); public static readonly PrefabGUID BiomePolygonUIColor_ServantThrone_Active = new PrefabGUID(73612215); public static readonly PrefabGUID BiomePolygonUIColor_ServantThrone_Selected = new PrefabGUID(1385840751); public static readonly PrefabGUID BiomePolygonUIColor_SilverHills = new PrefabGUID(1636246315); public static readonly PrefabGUID BiomePolygonUIColor_Strongblade = new PrefabGUID(-2045317702); public static readonly PrefabGUID Bipedal_Ragdoll = new PrefabGUID(-1897565068); public static readonly PrefabGUID Bipedal_Ragdoll_PLACEHOLDER = new PrefabGUID(375628372); public static readonly PrefabGUID BishopOfShadow_Hard_Wave_Curve01 = new PrefabGUID(1255342773); public static readonly PrefabGUID BishopOfShadow_Hard_Wave_Curve02 = new PrefabGUID(2015508768); public static readonly PrefabGUID Bite_Dissolve_Curve = new PrefabGUID(327780314); public static readonly PrefabGUID BlackCarpetsBuildMenuGroup01 = new PrefabGUID(-298064854); public static readonly PrefabGUID BlackCarpetsBuildMenuGroup02 = new PrefabGUID(1878965767); public static readonly PrefabGUID Blackfang_CarverBoss_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1621460256); public static readonly PrefabGUID Blackfang_Livith_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-83079183); public static readonly PrefabGUID Blackfang_Lucie_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1768911990); public static readonly PrefabGUID Blackfang_Valyr_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-256905273); public static readonly PrefabGUID BlinkCurve = new PrefabGUID(95605263); public static readonly PrefabGUID BlinkSequence = new PrefabGUID(-158039702); public static readonly PrefabGUID Blood_BloodThirst_Buff = new PrefabGUID(1391078497); public static readonly PrefabGUID Blood_Vampire_Buff_Leech = new PrefabGUID(-1246704569); public static readonly PrefabGUID Blood_Vampire_Buff_Leech_SelfHeal = new PrefabGUID(636617116); public static readonly PrefabGUID BloodCrystalNode01_Broken = new PrefabGUID(-1163099489); public static readonly PrefabGUID BloodCrystalNode01_Broken_Small = new PrefabGUID(1625687018); public static readonly PrefabGUID BloodCrystalNode02_Broken = new PrefabGUID(-1370714660); public static readonly PrefabGUID BloodCrystalNode02_Broken_Small = new PrefabGUID(317521817); public static readonly PrefabGUID BloodCrystalNode03_Broken = new PrefabGUID(1252092124); public static readonly PrefabGUID BloodCrystalNode03_Broken_Small = new PrefabGUID(-776344049); public static readonly PrefabGUID BloodHuntsData = new PrefabGUID(792499151); public static readonly PrefabGUID BloodKnight_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1124414432); public static readonly PrefabGUID BloodQualityCurve_CarriagePrisoner = new PrefabGUID(-215739674); public static readonly PrefabGUID BloodQualityCurve_DEBUG = new PrefabGUID(281810035); public static readonly PrefabGUID BloodQualityCurve_MutantAndCorrupted = new PrefabGUID(643334146); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_Early = new PrefabGUID(-218705525); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_End = new PrefabGUID(-1026816183); public static readonly PrefabGUID BloodQualityCurve_NormalEliteBoss_Mid = new PrefabGUID(-1906812676); public static readonly PrefabGUID BloodQualityCurve_Summons = new PrefabGUID(208564996); public static readonly PrefabGUID BloodQualityCurve_Trash_High = new PrefabGUID(-927713464); public static readonly PrefabGUID BloodQualityCurve_Trash_Low = new PrefabGUID(483813580); public static readonly PrefabGUID BloodQualityCurve_Trash_Mid = new PrefabGUID(1710722644); public static readonly PrefabGUID BloodQualityCurve_Werwolf = new PrefabGUID(-1869935024); public static readonly PrefabGUID BloodSpellSchoolAsset = new PrefabGUID(969332277); public static readonly PrefabGUID BloodType_Brute = new PrefabGUID(804798592); public static readonly PrefabGUID BloodType_Corruption = new PrefabGUID(-1382693416); public static readonly PrefabGUID BloodType_Creature = new PrefabGUID(524822543); public static readonly PrefabGUID BloodType_DraculaTheImmortal = new PrefabGUID(2010023718); public static readonly PrefabGUID BloodType_Draculin = new PrefabGUID(1328126535); public static readonly PrefabGUID BloodType_GateBoss = new PrefabGUID(910644396); public static readonly PrefabGUID BloodType_Mutant = new PrefabGUID(1821108694); public static readonly PrefabGUID BloodType_None = new PrefabGUID(447918373); public static readonly PrefabGUID BloodType_Rogue = new PrefabGUID(-1620185637); public static readonly PrefabGUID BloodType_Scholar = new PrefabGUID(1476452791); public static readonly PrefabGUID BloodType_VBlood = new PrefabGUID(-338774148); public static readonly PrefabGUID BloodType_Warrior = new PrefabGUID(-516976528); public static readonly PrefabGUID BloodType_Worker = new PrefabGUID(-1776904174); public static readonly PrefabGUID BlueCarpetsBuildMenuGroup01 = new PrefabGUID(362468619); public static readonly PrefabGUID BlueCarpetsBuildMenuGroup02 = new PrefabGUID(1119417253); public static readonly PrefabGUID BookcaseBuildMenuGroup = new PrefabGUID(182850006); public static readonly PrefabGUID BP_Castle_Chain_Plant_BleedingHeart = new PrefabGUID(-1473915226); public static readonly PrefabGUID BP_Castle_Chain_Plant_BloodRose = new PrefabGUID(-591319789); public static readonly PrefabGUID BP_Castle_Chain_Plant_CorruptedFlower = new PrefabGUID(1655131947); public static readonly PrefabGUID BP_Castle_Chain_Plant_Cotton = new PrefabGUID(1171326100); public static readonly PrefabGUID BP_Castle_Chain_Plant_FireBlossom = new PrefabGUID(1141816596); public static readonly PrefabGUID BP_Castle_Chain_Plant_GhostShroom = new PrefabGUID(-947749857); public static readonly PrefabGUID BP_Castle_Chain_Plant_Grapes = new PrefabGUID(-486047789); public static readonly PrefabGUID BP_Castle_Chain_Plant_HellsClarion = new PrefabGUID(-1946047422); public static readonly PrefabGUID BP_Castle_Chain_Plant_Lotus = new PrefabGUID(1230409568); public static readonly PrefabGUID BP_Castle_Chain_Plant_MourningLily = new PrefabGUID(-1057579736); public static readonly PrefabGUID BP_Castle_Chain_Plant_SnowFlower = new PrefabGUID(-1475317620); public static readonly PrefabGUID BP_Castle_Chain_Plant_Sunflower = new PrefabGUID(1659865297); public static readonly PrefabGUID BP_Castle_Chain_Plant_Thistle = new PrefabGUID(-437194426); public static readonly PrefabGUID BP_Castle_Chain_Plant_TrippyShroom = new PrefabGUID(1228922848); public static readonly PrefabGUID BP_Castle_Chain_Tree_AppleCursed_01 = new PrefabGUID(-315187808); public static readonly PrefabGUID BP_Castle_Chain_Tree_AppleTree_01 = new PrefabGUID(-1362642773); public static readonly PrefabGUID BP_Castle_Chain_Tree_Aspen_01 = new PrefabGUID(-683262945); public static readonly PrefabGUID BP_Castle_Chain_Tree_AspenAutum_01 = new PrefabGUID(1072528933); public static readonly PrefabGUID BP_Castle_Chain_Tree_Birch_01 = new PrefabGUID(-355620152); public static readonly PrefabGUID BP_Castle_Chain_Tree_BirchAutum_01 = new PrefabGUID(500254158); public static readonly PrefabGUID BP_Castle_Chain_Tree_CherryBlossom_01 = new PrefabGUID(1646702119); public static readonly PrefabGUID BP_Castle_Chain_Tree_CherryBlossomWhite_01 = new PrefabGUID(148077443); public static readonly PrefabGUID BP_Castle_Chain_Tree_Cypress_01 = new PrefabGUID(308236778); public static readonly PrefabGUID BP_Castle_Chain_Tree_GloomTree_01 = new PrefabGUID(-1523660086); public static readonly PrefabGUID BP_Castle_Chain_Tree_Oak_01 = new PrefabGUID(75711340); public static readonly PrefabGUID BP_Castle_Chain_Tree_Spruce_01 = new PrefabGUID(1218240817); public static readonly PrefabGUID BP_Castle_Chain_Tree_WeepingWillow_01 = new PrefabGUID(851064037); public static readonly PrefabGUID BP_Castle_Debug_ArtQualityBenchmarkRoom = new PrefabGUID(-1222017586); public static readonly PrefabGUID BP_Castle_Debug_Room = new PrefabGUID(-1773550381); public static readonly PrefabGUID BP_Castle_Debug_RoomBig = new PrefabGUID(1156555349); public static readonly PrefabGUID BP_Castle_Debug_RoomMega = new PrefabGUID(-1787902947); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_Gloomrot01 = new PrefabGUID(-1940654627); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_ProjectK01 = new PrefabGUID(384472583); public static readonly PrefabGUID BP_Castle_Stairs_Double_DLC_StrongbladeDLC01 = new PrefabGUID(-2042297302); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone01 = new PrefabGUID(77571580); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone02 = new PrefabGUID(-887317616); public static readonly PrefabGUID BP_Castle_Stairs_Double_Stone03 = new PrefabGUID(-1186795702); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_Gloomrot01 = new PrefabGUID(249484894); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_ProjectK01 = new PrefabGUID(787873859); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_DLC_StrongbladeDLC01 = new PrefabGUID(1748214728); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone01 = new PrefabGUID(-1323146211); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone02 = new PrefabGUID(171455823); public static readonly PrefabGUID BP_Castle_Stairs_Single_CCW_Stone03 = new PrefabGUID(2042236287); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_Gloomrot01 = new PrefabGUID(-671167268); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_ProjectK01 = new PrefabGUID(-2111252824); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_DLC_StrongbladeDLC01 = new PrefabGUID(54801101); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone01 = new PrefabGUID(-628212401); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone02 = new PrefabGUID(891240110); public static readonly PrefabGUID BP_Castle_Stairs_Single_CW_Stone03 = new PrefabGUID(1737385414); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_Gloomrot01 = new PrefabGUID(-1808336362); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_ProjectK01 = new PrefabGUID(-601630508); public static readonly PrefabGUID BP_Castle_Stairs_Single_DLC_StrongbladeDLC01 = new PrefabGUID(1831814293); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone01 = new PrefabGUID(-541385494); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone02 = new PrefabGUID(1267405974); public static readonly PrefabGUID BP_Castle_Stairs_Single_Stone03 = new PrefabGUID(1019577856); public static readonly PrefabGUID BP_Castle_Wall_Tier01_Wood_Entrance = new PrefabGUID(106693260); public static readonly PrefabGUID BP_Castle_Wall_Tier01_Wood_Plain = new PrefabGUID(-1571980899); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Entrance = new PrefabGUID(-281098336); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_EntranceWide = new PrefabGUID(1361610591); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Plain = new PrefabGUID(1388232656); public static readonly PrefabGUID BP_Castle_Wall_Tier02_Stone_Window = new PrefabGUID(244714081); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Damaged = new PrefabGUID(1031613102); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Default = new PrefabGUID(2130133165); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Disabled = new PrefabGUID(1975715760); public static readonly PrefabGUID BP_Tier01_WallpaperSet_Phased = new PrefabGUID(-578365329); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Base = new PrefabGUID(-383968909); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Pillar = new PrefabGUID(133356148); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall01 = new PrefabGUID(717524512); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall02 = new PrefabGUID(777443944); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Arena01_Wall03 = new PrefabGUID(-1288113966); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01 = new PrefabGUID(-332335770); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01_Base = new PrefabGUID(41087088); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone01_Pillar = new PrefabGUID(1941863906); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone02 = new PrefabGUID(-1154737300); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone02_Pillar = new PrefabGUID(1993653084); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone03 = new PrefabGUID(-1387492893); public static readonly PrefabGUID BP_Tier02_WallpaperSet_CastleStone03_Pillar = new PrefabGUID(-266828070); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Clean01 = new PrefabGUID(-176364362); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Clean02 = new PrefabGUID(489743200); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical01_Pillar = new PrefabGUID(-1170288721); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Clean01 = new PrefabGUID(1148782162); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Clean02 = new PrefabGUID(1618613889); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical02_Pillar = new PrefabGUID(1194814288); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Clean01 = new PrefabGUID(1409791469); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Clean02 = new PrefabGUID(1397392538); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Classical03_Pillar = new PrefabGUID(46931570); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Base = new PrefabGUID(1899348267); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Clean = new PrefabGUID(-1833888637); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Flourish = new PrefabGUID(1461020066); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Pillar = new PrefabGUID(-429864038); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Cordial01_Wallpaper = new PrefabGUID(1946862360); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Damaged = new PrefabGUID(-1727028370); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Damaged_Pillar = new PrefabGUID(514475486); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Default = new PrefabGUID(2077581638); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Default_Pillar = new PrefabGUID(-1939815127); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Disabled = new PrefabGUID(1415207415); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Disabled_Pillar = new PrefabGUID(-823955345); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_01 = new PrefabGUID(-1119089472); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_02 = new PrefabGUID(-534388394); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_Base = new PrefabGUID(1690544659); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCGloomrot_Pillar = new PrefabGUID(-1601728225); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Base = new PrefabGUID(1340269648); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Pillar = new PrefabGUID(223872087); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal01_Wall01 = new PrefabGUID(-1148467159); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Base = new PrefabGUID(-277386175); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Pillar = new PrefabGUID(2027991438); public static readonly PrefabGUID BP_Tier02_WallpaperSet_DLCRoyal02_Wall01 = new PrefabGUID(-1375591798); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Halloween01_01 = new PrefabGUID(-971200685); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Halloween01_02 = new PrefabGUID(1031586093); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Base = new PrefabGUID(2097261851); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Clean = new PrefabGUID(1407127248); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_FullWallpaper01 = new PrefabGUID(-1053577725); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_HalfWallpaper01 = new PrefabGUID(-1035617074); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Imperious01_Pillar = new PrefabGUID(-1880912080); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Phased = new PrefabGUID(1132666075); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Phased_Pillar = new PrefabGUID(-47000616); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Base = new PrefabGUID(-1490769381); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_BedAndBall = new PrefabGUID(-973740076); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Clean = new PrefabGUID(-1951528690); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Pillar = new PrefabGUID(761818190); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Prison01_Restraints = new PrefabGUID(227796889); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Clean = new PrefabGUID(-1268733747); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Clean_Pillar = new PrefabGUID(1363241567); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Corners = new PrefabGUID(1327946026); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Expansion = new PrefabGUID(-739519538); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Expansion_Pillar = new PrefabGUID(1259530332); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Left = new PrefabGUID(1199070093); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Middle = new PrefabGUID(1105868982); public static readonly PrefabGUID BP_Tier02_WallpaperSet_ProjectK_Right = new PrefabGUID(523616828); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Base = new PrefabGUID(-2080336936); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Pillar = new PrefabGUID(2118134686); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Wall01 = new PrefabGUID(628257701); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable01_Wall02 = new PrefabGUID(1742424551); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Base = new PrefabGUID(986381883); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Pillar = new PrefabGUID(2071956520); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Wall01 = new PrefabGUID(1940345151); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Stable02_Wall02 = new PrefabGUID(1122908926); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Base = new PrefabGUID(-2037530823); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Pillar = new PrefabGUID(-1860752815); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall01 = new PrefabGUID(-1813563573); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall02 = new PrefabGUID(880930151); public static readonly PrefabGUID BP_Tier02_WallpaperSet_StrongbladeDLC01_Wall03 = new PrefabGUID(961341537); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_01 = new PrefabGUID(1927754471); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_02 = new PrefabGUID(-792881390); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_Base = new PrefabGUID(1177172454); public static readonly PrefabGUID BP_Tier02_WallpaperSet_WoodPanel01_Pillar = new PrefabGUID(70614813); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Base = new PrefabGUID(-2053707412); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Clean = new PrefabGUID(-809474821); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_Pillar = new PrefabGUID(-1932179375); public static readonly PrefabGUID BP_Tier02_WallpaperSet_Workshop01_ToolStorage = new PrefabGUID(-1993386353); public static readonly PrefabGUID BraziersCabalBuildMenuGroup = new PrefabGUID(-1568146726); public static readonly PrefabGUID BraziersGloomrot01BuildMenuGroup = new PrefabGUID(-141455193); public static readonly PrefabGUID BraziersGothic01BuildMenuGroup = new PrefabGUID(-1943381801); public static readonly PrefabGUID BraziersGothic02BuildMenuGroup = new PrefabGUID(714622661); public static readonly PrefabGUID BraziersGothic03BuildMenuGroup = new PrefabGUID(-1645177437); public static readonly PrefabGUID BraziersGothic04BuildMenuGroup = new PrefabGUID(1646684466); public static readonly PrefabGUID BraziersGothic05BuildMenuGroup = new PrefabGUID(-908684023); public static readonly PrefabGUID BraziersHalloween01BuildMenuGroup = new PrefabGUID(-2070329428); public static readonly PrefabGUID BraziersLavishBuildMenuGroup = new PrefabGUID(-632939658); public static readonly PrefabGUID BraziersSimpleBuildMenuGroup = new PrefabGUID(602377383); public static readonly PrefabGUID BraziersSlenderBuildMenuGroup = new PrefabGUID(2015325919); public static readonly PrefabGUID Buff_ArchMage_VBlood_Downed = new PrefabGUID(-726799934); public static readonly PrefabGUID Buff_AreaChampion_Defeated = new PrefabGUID(355001615); public static readonly PrefabGUID Buff_Arena_Active = new PrefabGUID(-1521659867); public static readonly PrefabGUID Buff_Arena_Defeated = new PrefabGUID(1206046273); public static readonly PrefabGUID Buff_Arena_Defeated_Feedback = new PrefabGUID(938455847); public static readonly PrefabGUID Buff_Arena_HealthOrb_HealBuff = new PrefabGUID(1787994047); public static readonly PrefabGUID Buff_Arena_HealthOrb_Spawning = new PrefabGUID(-1896011542); public static readonly PrefabGUID Buff_Arena_HealUp = new PrefabGUID(-814775884); public static readonly PrefabGUID Buff_Arena_LeavingArea = new PrefabGUID(-274872479); public static readonly PrefabGUID Buff_Arena_Observe_Ghost = new PrefabGUID(-1735491254); public static readonly PrefabGUID Buff_Arena_Start = new PrefabGUID(1265171709); public static readonly PrefabGUID Buff_Arena_Travel_Countdown = new PrefabGUID(-1225779136); public static readonly PrefabGUID Buff_Arena_TravelEnd = new PrefabGUID(768440011); public static readonly PrefabGUID Buff_Arena_Victory = new PrefabGUID(-1743992096); public static readonly PrefabGUID Buff_AttackSpeed_After_Veil = new PrefabGUID(1971505894); public static readonly PrefabGUID Buff_Bandit_Bomber_VBlood_Downed = new PrefabGUID(761242835); public static readonly PrefabGUID Buff_Bandit_Deadeye_VBlood_Downed = new PrefabGUID(1871586579); public static readonly PrefabGUID Buff_Bandit_Fisherman_VBlood_Downed = new PrefabGUID(1759053294); public static readonly PrefabGUID Buff_Bandit_Foreman_VBlood_Downed = new PrefabGUID(-1996490428); public static readonly PrefabGUID Buff_Bandit_Stalker_VBlood_Downed = new PrefabGUID(734435586); public static readonly PrefabGUID Buff_Bandit_Tourok_VBlood_Downed = new PrefabGUID(306968651); public static readonly PrefabGUID Buff_Bandit_Worker_Shared_Wounded = new PrefabGUID(-1169480604); public static readonly PrefabGUID Buff_BatVampire_InCombat = new PrefabGUID(-1818876607); public static readonly PrefabGUID Buff_BatVampire_VBlood_Downed = new PrefabGUID(846762364); public static readonly PrefabGUID Buff_Bear_Eating = new PrefabGUID(-1776257989); public static readonly PrefabGUID Buff_BearTrap_Immobilize = new PrefabGUID(-1293035921); public static readonly PrefabGUID Buff_Blackfang_Morgana_Downed = new PrefabGUID(194798727); public static readonly PrefabGUID Buff_Blackfang_Morgana_InCombat = new PrefabGUID(-776252955); public static readonly PrefabGUID Buff_Blackfang_Morgana_Return = new PrefabGUID(1902427906); public static readonly PrefabGUID Buff_Blackfang_Valyr_InCombat = new PrefabGUID(-1155858548); public static readonly PrefabGUID Buff_Blackfang_Valyr_VBlood_Downed = new PrefabGUID(1382689617); public static readonly PrefabGUID Buff_BloodAltar_TrackVBloodUnit = new PrefabGUID(-1458480041); public static readonly PrefabGUID Buff_BloodBuff_Brute_Tier4_Parry = new PrefabGUID(1096233037); public static readonly PrefabGUID Buff_BloodBuff_Brute_Tier4_Proc = new PrefabGUID(-646796985); public static readonly PrefabGUID Buff_BloodBuff_Corrupted_Tier3_Frenzy = new PrefabGUID(-1729712579); public static readonly PrefabGUID Buff_BloodBuff_Corruption_Tier3_TriggerEffect = new PrefabGUID(1805583648); public static readonly PrefabGUID Buff_BloodBuff_Creature_Tier4_Empower = new PrefabGUID(-604757170); public static readonly PrefabGUID Buff_BloodBuff_Draculin_Tier2_Haste = new PrefabGUID(-1343226660); public static readonly PrefabGUID Buff_BloodBuff_Rogue_Tier2_Haste = new PrefabGUID(-2025112262); public static readonly PrefabGUID Buff_BloodBuff_Rogue_Tier3_CriticalStrike = new PrefabGUID(1536493953); public static readonly PrefabGUID Buff_BloodBuff_Scholar_Tier2_Shield = new PrefabGUID(-231593873); public static readonly PrefabGUID Buff_BloodBuff_Worker_Tier4_FadingHaste = new PrefabGUID(2131895379); public static readonly PrefabGUID Buff_BloodFountain_FadingHaste = new PrefabGUID(219224509); public static readonly PrefabGUID Buff_BloodMoon = new PrefabGUID(-560523291); public static readonly PrefabGUID Buff_BloodPropher_Hover_Buff = new PrefabGUID(-1083643277); public static readonly PrefabGUID Buff_Building_Siege_ActivationTimer_Buff_T02 = new PrefabGUID(-1602570831); public static readonly PrefabGUID Buff_Building_Siege_Active_Buff = new PrefabGUID(40754527); public static readonly PrefabGUID Buff_Cardinal_Shield_Stack = new PrefabGUID(636817215); public static readonly PrefabGUID Buff_CarriageDriver_Attach = new PrefabGUID(-1270684727); public static readonly PrefabGUID Buff_CarriageDriver_Cover = new PrefabGUID(-1103206953); public static readonly PrefabGUID Buff_CarriageDriver_Launch = new PrefabGUID(-245162677); public static readonly PrefabGUID Buff_CarriageDriver_LaunchStun = new PrefabGUID(1775457958); public static readonly PrefabGUID Buff_CarriageHorse_Connect = new PrefabGUID(1084521444); public static readonly PrefabGUID Buff_Castleman_VBlood_Downed = new PrefabGUID(-1662822036); public static readonly PrefabGUID Buff_ChurchOfLight_Cardinal_VBlood_Downed = new PrefabGUID(334972667); public static readonly PrefabGUID Buff_ChurchOfLight_CardinalAide_Block_HasBlocked = new PrefabGUID(859409812); public static readonly PrefabGUID Buff_ChurchOfLight_Cleric_Block_HasBlocked = new PrefabGUID(1896858104); public static readonly PrefabGUID Buff_ChurchOfLight_Cleric_Intervene_Shield = new PrefabGUID(514720473); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Bellringer = new PrefabGUID(-1202486333); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Villager_Female = new PrefabGUID(111464415); public static readonly PrefabGUID Buff_ChurchOfLight_Flee_Villager_Male = new PrefabGUID(1904904415); public static readonly PrefabGUID Buff_ChurchOfLight_Knight_2H_MovementUsed = new PrefabGUID(-2109458830); public static readonly PrefabGUID Buff_ChurchOfLight_Overseer_MinionAggro = new PrefabGUID(-1787328614); public static readonly PrefabGUID Buff_ChurchOfLight_Overseer_VBlood_Downed = new PrefabGUID(1136634549); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_FinalStageBuff = new PrefabGUID(2144624015); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_ImmaterialHomePos = new PrefabGUID(293087822); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_OnAggroAnimation = new PrefabGUID(-1299085096); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_Return = new PrefabGUID(-1435372081); public static readonly PrefabGUID Buff_ChurchOfLight_Paladin_VBlood_Downed = new PrefabGUID(351185022); public static readonly PrefabGUID Buff_ChurchOfLight_SlaveMaster_HideWhip_Buff = new PrefabGUID(-1104282069); public static readonly PrefabGUID Buff_ChurchOfLight_Sommelier_VBlood_Downed = new PrefabGUID(-2037971116); public static readonly PrefabGUID Buff_ChurchOfLight_Villager_Cover_Female = new PrefabGUID(1423858323); public static readonly PrefabGUID Buff_ChurchOfLight_Villager_Cover_Male = new PrefabGUID(-167087059); public static readonly PrefabGUID Buff_CombatStance = new PrefabGUID(-952067173); public static readonly PrefabGUID Buff_ComboBuffA = new PrefabGUID(-960097294); public static readonly PrefabGUID Buff_ComboBuffB = new PrefabGUID(917058375); public static readonly PrefabGUID Buff_ComboBuffB2 = new PrefabGUID(1082027099); public static readonly PrefabGUID Buff_ComboBuffC = new PrefabGUID(-1018709766); public static readonly PrefabGUID Buff_Contest_Countdown = new PrefabGUID(-782266626); public static readonly PrefabGUID Buff_Contest_Defeated = new PrefabGUID(1544645586); public static readonly PrefabGUID Buff_Contest_HealUp = new PrefabGUID(835690470); public static readonly PrefabGUID Buff_Contest_OutOfArea = new PrefabGUID(-964147691); public static readonly PrefabGUID Buff_Contest_Victory = new PrefabGUID(1516078366); public static readonly PrefabGUID Buff_Corruption_HarpyEffect = new PrefabGUID(-2084519380); public static readonly PrefabGUID Buff_Cultist_BloodFrenzy_Buff = new PrefabGUID(-106492795); public static readonly PrefabGUID Buff_Cursed_MonsterToad_VBlood_Downed = new PrefabGUID(-415035829); public static readonly PrefabGUID Buff_Cursed_MountainBeast_VBlood_Downed = new PrefabGUID(1853113733); public static readonly PrefabGUID Buff_Cursed_Witch_VBlood_Downed = new PrefabGUID(1739795357); public static readonly PrefabGUID Buff_CursedWanderer_VBlood_Flee = new PrefabGUID(573463911); public static readonly PrefabGUID Buff_Delayed_Coffin_Destroy = new PrefabGUID(2096715241); public static readonly PrefabGUID Buff_Devoted_CircleMovement = new PrefabGUID(-581099651); public static readonly PrefabGUID Buff_Downed_CarverBoss_VBlood = new PrefabGUID(-2026519961); public static readonly PrefabGUID Buff_Downed_Livith_VBlood = new PrefabGUID(1072109427); public static readonly PrefabGUID Buff_Downed_Lucie_VBlood = new PrefabGUID(-1117809650); public static readonly PrefabGUID Buff_Dracula_BloodSoul_Effect = new PrefabGUID(1814805925); public static readonly PrefabGUID Buff_Dracula_BloodSoul_Heart_Effect = new PrefabGUID(251142117); public static readonly PrefabGUID Buff_Dracula_Return = new PrefabGUID(-1448806401); public static readonly PrefabGUID Buff_Dracula_ShadowBatSwarm_Effect = new PrefabGUID(-855125670); public static readonly PrefabGUID Buff_Duel_Active = new PrefabGUID(508104437); public static readonly PrefabGUID Buff_Duel_Active_VBlood = new PrefabGUID(1364946010); public static readonly PrefabGUID Buff_Duel_Defeated = new PrefabGUID(2029766917); public static readonly PrefabGUID Buff_Duel_HealUp = new PrefabGUID(577687477); public static readonly PrefabGUID Buff_Duel_Victory = new PrefabGUID(-1497879222); public static readonly PrefabGUID Buff_Elemental_Active_Base = new PrefabGUID(-1124158800); public static readonly PrefabGUID Buff_Farbane_Trader_HideBackbling = new PrefabGUID(1871900432); public static readonly PrefabGUID Buff_Farbane_Trader_HideWeapons = new PrefabGUID(-724071729); public static readonly PrefabGUID Buff_Footman_MovementUsed = new PrefabGUID(1967011140); public static readonly PrefabGUID Buff_Forest_Bear_Dire_VBlood_Downed = new PrefabGUID(1795477728); public static readonly PrefabGUID Buff_Forest_Wolf_VBlood_Downed = new PrefabGUID(-1288467635); public static readonly PrefabGUID Buff_FreeCast_Spell = new PrefabGUID(-650272969); public static readonly PrefabGUID Buff_FreeCast_Weapon = new PrefabGUID(651199070); public static readonly PrefabGUID Buff_Gargoyle_Return_Fly = new PrefabGUID(57563218); public static readonly PrefabGUID Buff_Gargoyle_Spawn_StoneForm = new PrefabGUID(1308173333); public static readonly PrefabGUID Buff_General_Amplify = new PrefabGUID(128529083); public static readonly PrefabGUID Buff_General_AttackSpeed_Rampage = new PrefabGUID(-822514423); public static readonly PrefabGUID Buff_General_BloodBuff_RogueAmplify = new PrefabGUID(-752572494); public static readonly PrefabGUID Buff_General_BloodBuff_SpelllCooldownReduction = new PrefabGUID(1776067756); public static readonly PrefabGUID Buff_General_BounceDelay = new PrefabGUID(1097461278); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_Immaterial = new PrefabGUID(1360141727); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_WeakStructure = new PrefabGUID(237078863); public static readonly PrefabGUID Buff_General_Build_Spawn_Buff_WeakStructure_Wall = new PrefabGUID(740689171); public static readonly PrefabGUID Buff_General_ChanceToCorruptBlood = new PrefabGUID(1524978405); public static readonly PrefabGUID Buff_General_Chill = new PrefabGUID(-1974768686); public static readonly PrefabGUID Buff_General_Corruption_Area_Debuff_T01 = new PrefabGUID(1161592782); public static readonly PrefabGUID Buff_General_Corruption_Area_Debuff_T01_Healing = new PrefabGUID(1124447451); public static readonly PrefabGUID Buff_General_Corruption_Area_T01 = new PrefabGUID(1667590738); public static readonly PrefabGUID Buff_General_Corruption_Area_T01_Healing = new PrefabGUID(-509302623); public static readonly PrefabGUID Buff_General_CurseOfTheForest_Area = new PrefabGUID(821183186); public static readonly PrefabGUID Buff_General_CurseOfTheForest_Area_Visual = new PrefabGUID(1609440778); public static readonly PrefabGUID Buff_General_Daze = new PrefabGUID(792451792); public static readonly PrefabGUID Buff_General_Disconnected = new PrefabGUID(1769215014); public static readonly PrefabGUID Buff_General_DisconnectedTemporaryImmunity = new PrefabGUID(915954162); public static readonly PrefabGUID Buff_General_DraculaTeleport_Exit = new PrefabGUID(-788283426); public static readonly PrefabGUID Buff_General_DraculaTeleport_In = new PrefabGUID(-1413417542); public static readonly PrefabGUID Buff_General_DraculaTeleport_InPhasing = new PrefabGUID(-1274886518); public static readonly PrefabGUID Buff_General_DraculaTeleport_Out = new PrefabGUID(-246759104); public static readonly PrefabGUID Buff_General_EndGameCredits = new PrefabGUID(260113502); public static readonly PrefabGUID Buff_General_Entangled = new PrefabGUID(-1270359452); public static readonly PrefabGUID Buff_General_FadingHaste = new PrefabGUID(-1911970959); public static readonly PrefabGUID Buff_General_FadingSnare = new PrefabGUID(1276262777); public static readonly PrefabGUID Buff_General_Fear = new PrefabGUID(695136154); public static readonly PrefabGUID Buff_General_Fear_Crossbow_Unique = new PrefabGUID(-1275760407); public static readonly PrefabGUID Buff_General_FearWithoutDamageCap = new PrefabGUID(1416250466); public static readonly PrefabGUID Buff_General_Freeze = new PrefabGUID(-948292568); public static readonly PrefabGUID Buff_General_Freeze_HighDamageTreshold = new PrefabGUID(399565845); public static readonly PrefabGUID Buff_General_Garlic_Area_Inside = new PrefabGUID(-1701323826); public static readonly PrefabGUID Buff_General_Garlic_Fever = new PrefabGUID(1582196539); public static readonly PrefabGUID Buff_General_Ghost = new PrefabGUID(-1242403012); public static readonly PrefabGUID Buff_General_Gloomrot_LightningFadingSnare = new PrefabGUID(-741376672); public static readonly PrefabGUID Buff_General_Gloomrot_LightningStun = new PrefabGUID(469128628); public static readonly PrefabGUID Buff_General_Gloomrot_Static = new PrefabGUID(-2067402784); public static readonly PrefabGUID Buff_General_Haste = new PrefabGUID(900030866); public static readonly PrefabGUID Buff_General_Haste_TurbulentVelocity = new PrefabGUID(415557996); public static readonly PrefabGUID Buff_General_HideCorpse = new PrefabGUID(1160901934); public static readonly PrefabGUID Buff_General_Holy_Area_T01 = new PrefabGUID(1593142604); public static readonly PrefabGUID Buff_General_Holy_Area_T02 = new PrefabGUID(-621774510); public static readonly PrefabGUID Buff_General_Ignite = new PrefabGUID(1533067119); public static readonly PrefabGUID Buff_General_IgniteLesser = new PrefabGUID(-756302728); public static readonly PrefabGUID Buff_General_Immaterial = new PrefabGUID(227784838); public static readonly PrefabGUID Buff_General_Immobilize = new PrefabGUID(-1548063130); public static readonly PrefabGUID Buff_General_InAir_Landing = new PrefabGUID(129112290); public static readonly PrefabGUID Buff_General_Incapacitate = new PrefabGUID(-211448091); public static readonly PrefabGUID Buff_General_Incapacitate_ImpactFX = new PrefabGUID(796254181); public static readonly PrefabGUID Buff_General_Incapacitate_ImpactFX_NoDiminishingReturn = new PrefabGUID(552294046); public static readonly PrefabGUID Buff_General_Knockback = new PrefabGUID(-984195038); public static readonly PrefabGUID Buff_General_Knockback_Ally = new PrefabGUID(-2099203048); public static readonly PrefabGUID Buff_General_Knockback_ExpandFire = new PrefabGUID(-319767548); public static readonly PrefabGUID Buff_General_Knockback_ThousandSpears = new PrefabGUID(-635140644); public static readonly PrefabGUID Buff_General_Knockback_WallTrigger = new PrefabGUID(-1483130162); public static readonly PrefabGUID Buff_General_Knockback_Wind = new PrefabGUID(-1505593036); public static readonly PrefabGUID Buff_General_LockRotation = new PrefabGUID(-814835059); public static readonly PrefabGUID Buff_General_Mount_Rider_Attach = new PrefabGUID(-1890374947); public static readonly PrefabGUID Buff_General_NoAnimationKnockback = new PrefabGUID(-1266751732); public static readonly PrefabGUID Buff_General_OnStruck_InternalCooldownBuff = new PrefabGUID(-542839565); public static readonly PrefabGUID Buff_General_Petrify = new PrefabGUID(1161081043); public static readonly PrefabGUID Buff_General_Phasing = new PrefabGUID(-79611032); public static readonly PrefabGUID Buff_General_Poison = new PrefabGUID(1728652937); public static readonly PrefabGUID Buff_General_PvPProtected = new PrefabGUID(1111481396); public static readonly PrefabGUID Buff_General_RelicCarryDebuff = new PrefabGUID(-714279777); public static readonly PrefabGUID Buff_General_Seat_Busy = new PrefabGUID(1845376969); public static readonly PrefabGUID Buff_General_SelfStun = new PrefabGUID(-704735901); public static readonly PrefabGUID Buff_General_SemiTransparent = new PrefabGUID(1511101848); public static readonly PrefabGUID Buff_General_Shapeshift_Werewolf_Standard = new PrefabGUID(-1598161201); public static readonly PrefabGUID Buff_General_Shapeshift_Werewolf_VBlood = new PrefabGUID(-622259665); public static readonly PrefabGUID Buff_General_Shield = new PrefabGUID(-1968422421); public static readonly PrefabGUID Buff_General_Shield_DarkEnchantment = new PrefabGUID(-684755394); public static readonly PrefabGUID Buff_General_Silence = new PrefabGUID(385404312); public static readonly PrefabGUID Buff_General_Silence_Nun = new PrefabGUID(-295264785); public static readonly PrefabGUID Buff_General_Silver_Sickness_Burn_Debuff = new PrefabGUID(853298599); public static readonly PrefabGUID Buff_General_SilverSlave = new PrefabGUID(103615205); public static readonly PrefabGUID Buff_General_SilverSlaveCover = new PrefabGUID(-1274403808); public static readonly PrefabGUID Buff_General_SilverSlaveReleased = new PrefabGUID(1229176670); public static readonly PrefabGUID Buff_General_SilverSlaveRun = new PrefabGUID(1793107442); public static readonly PrefabGUID Buff_General_Slow = new PrefabGUID(2072256768); public static readonly PrefabGUID Buff_General_Sludge_Poison = new PrefabGUID(-1965215729); public static readonly PrefabGUID Buff_General_Spawn_Unit = new PrefabGUID(396339796); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast = new PrefabGUID(507944752); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast_WarEvent = new PrefabGUID(-133411573); public static readonly PrefabGUID Buff_General_Spawn_Unit_Fast_WarEvent_Trash = new PrefabGUID(2090187901); public static readonly PrefabGUID Buff_General_Spawn_Unit_GateBoss_WarEvent = new PrefabGUID(-1232783422); public static readonly PrefabGUID Buff_General_Spawn_Unit_Medium = new PrefabGUID(-205058219); public static readonly PrefabGUID Buff_General_Spawn_Unit_Mid = new PrefabGUID(1629786723); public static readonly PrefabGUID Buff_General_Spawn_VBlood_AlphaWolf = new PrefabGUID(600470494); public static readonly PrefabGUID Buff_General_Spawn_VBlood_CryptKeeper = new PrefabGUID(-1978899906); public static readonly PrefabGUID Buff_General_Spawn_VBlood_EarlyGame = new PrefabGUID(-703593639); public static readonly PrefabGUID Buff_General_Spawn_VBlood_EndGame = new PrefabGUID(-2071666138); public static readonly PrefabGUID Buff_General_Spawn_VBlood_FirstBandits = new PrefabGUID(148706785); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Livith = new PrefabGUID(2111855750); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Lucie_GoldGolem = new PrefabGUID(231346515); public static readonly PrefabGUID Buff_General_Spawn_VBlood_MidGame = new PrefabGUID(-184730451); public static readonly PrefabGUID Buff_General_Spawn_VBlood_Morgana = new PrefabGUID(303061990); public static readonly PrefabGUID Buff_General_Spawn_VBlood_ShardBosses = new PrefabGUID(-1163165749); public static readonly PrefabGUID Buff_General_Spawn_VBlood_WorshippersOfMorgana = new PrefabGUID(746755827); public static readonly PrefabGUID Buff_General_Spectral_Weaken_ZealousCultist = new PrefabGUID(1224796284); public static readonly PrefabGUID Buff_General_SpellBlock = new PrefabGUID(-666744738); public static readonly PrefabGUID Buff_General_SpellBlockSilence = new PrefabGUID(-1351580266); public static readonly PrefabGUID Buff_General_Stagger = new PrefabGUID(1060841159); public static readonly PrefabGUID Buff_General_Station_Repair = new PrefabGUID(-359018142); public static readonly PrefabGUID Buff_General_Stun = new PrefabGUID(355774169); public static readonly PrefabGUID Buff_General_Stun_EMP = new PrefabGUID(803170994); public static readonly PrefabGUID Buff_General_Stun_ImpactFX = new PrefabGUID(-1369764436); public static readonly PrefabGUID Buff_General_Stun_Interrupt = new PrefabGUID(-1665549449); public static readonly PrefabGUID Buff_General_Stun_Knockdown_NoEffect = new PrefabGUID(-122961900); public static readonly PrefabGUID Buff_General_Stun_KnockedDownRise = new PrefabGUID(578821520); public static readonly PrefabGUID Buff_General_Stun_MonsterGateTrigger = new PrefabGUID(1884055278); public static readonly PrefabGUID Buff_General_Stun_NoEffect_BlockMultiple = new PrefabGUID(1732405081); public static readonly PrefabGUID Buff_General_Stun_Self_MilitiaLeader = new PrefabGUID(-564937730); public static readonly PrefabGUID Buff_General_Tank_LaunchPilot = new PrefabGUID(-1891612854); public static readonly PrefabGUID Buff_General_Tank_LaunchPilotStun = new PrefabGUID(797548263); public static readonly PrefabGUID Buff_General_Tank_PilotAttach = new PrefabGUID(-1041125977); public static readonly PrefabGUID Buff_General_Teleport_Travel = new PrefabGUID(-474441982); public static readonly PrefabGUID Buff_General_TimeOut_Despawn = new PrefabGUID(-1953483362); public static readonly PrefabGUID Buff_General_Vampire_DraculaSaveDeath_Buff = new PrefabGUID(-1463475972); public static readonly PrefabGUID Buff_General_Vampire_Wounded_Buff = new PrefabGUID(-1992158531); public static readonly PrefabGUID Buff_General_VampireMount_Dead = new PrefabGUID(525019977); public static readonly PrefabGUID Buff_General_VampirePvPDeathDebuff = new PrefabGUID(1591132469); public static readonly PrefabGUID Buff_General_VBlood_Downed = new PrefabGUID(-806335869); public static readonly PrefabGUID Buff_General_VBlood_Ghost_Timer = new PrefabGUID(1689183691); public static readonly PrefabGUID Buff_General_Wall_Repair = new PrefabGUID(1244705549); public static readonly PrefabGUID Buff_General_Weaken = new PrefabGUID(-1841976861); public static readonly PrefabGUID Buff_General_Weaken_Cursed_Ghosts = new PrefabGUID(-966736642); public static readonly PrefabGUID Buff_General_WeakeningHolyFlames = new PrefabGUID(-1209669293); public static readonly PrefabGUID Buff_General_Weapon_M1_ReadyFX = new PrefabGUID(-1285705156); public static readonly PrefabGUID Buff_General_Wounded_Tracker = new PrefabGUID(224060472); public static readonly PrefabGUID Buff_Geomancer_Shield_Stack = new PrefabGUID(-1864993435); public static readonly PrefabGUID Buff_Gloomrot_Iva_VBlood_Downed = new PrefabGUID(-764330540); public static readonly PrefabGUID Buff_Gloomrot_Monster_VBlood_Downed = new PrefabGUID(-1883912949); public static readonly PrefabGUID Buff_Gloomrot_Professor_VBlood_Downed = new PrefabGUID(-1736795990); public static readonly PrefabGUID Buff_Gloomrot_RailgunSergeant_ImmaterialHomePos = new PrefabGUID(-1203425149); public static readonly PrefabGUID Buff_Gloomrot_RailgunSergeant_VBlood_Downed = new PrefabGUID(1251197221); public static readonly PrefabGUID Buff_Gloomrot_SentryOfficer_HasTurret = new PrefabGUID(185404345); public static readonly PrefabGUID Buff_Gloomrot_SentryOfficer_TurretCooldown = new PrefabGUID(-1541207161); public static readonly PrefabGUID Buff_Gloomrot_Voltage_HideWhip = new PrefabGUID(-1716622857); public static readonly PrefabGUID Buff_Gloomrot_Voltage_Return = new PrefabGUID(-1773136595); public static readonly PrefabGUID Buff_Gloomrot_Voltage_VBlood_Downed = new PrefabGUID(1682893847); public static readonly PrefabGUID Buff_Harpya_Matriarch_VBlood_Downed = new PrefabGUID(265849192); public static readonly PrefabGUID Buff_Highlord_VBlood_Downed = new PrefabGUID(-820699991); public static readonly PrefabGUID Buff_HoundMaster_DeathTrackingBuff = new PrefabGUID(2062815630); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_01 = new PrefabGUID(-927667670); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_02 = new PrefabGUID(63562052); public static readonly PrefabGUID Buff_IdleInteraction_AlchemyTable_03 = new PrefabGUID(887057265); public static readonly PrefabGUID Buff_IdleInteraction_Anvil_01 = new PrefabGUID(-1156180859); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_01 = new PrefabGUID(-1765249626); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_02 = new PrefabGUID(-928196581); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_03 = new PrefabGUID(-434347400); public static readonly PrefabGUID Buff_IdleInteraction_Campfire_04 = new PrefabGUID(-1201833600); public static readonly PrefabGUID Buff_IdleInteraction_CarverWhittle = new PrefabGUID(28437537); public static readonly PrefabGUID Buff_IdleInteraction_Digging01 = new PrefabGUID(548690821); public static readonly PrefabGUID Buff_IdleInteraction_Digging02 = new PrefabGUID(-1486738789); public static readonly PrefabGUID Buff_IdleInteraction_Fiddling01 = new PrefabGUID(-124884505); public static readonly PrefabGUID Buff_IdleInteraction_Fishing = new PrefabGUID(-1303633406); public static readonly PrefabGUID Buff_IdleInteraction_Forge_01 = new PrefabGUID(-1346897284); public static readonly PrefabGUID Buff_IdleInteraction_Forge_02 = new PrefabGUID(1369305275); public static readonly PrefabGUID Buff_IdleInteraction_HarvestSitting = new PrefabGUID(-545037646); public static readonly PrefabGUID Buff_IdleInteraction_Knifethrow = new PrefabGUID(1179075924); public static readonly PrefabGUID Buff_IdleInteraction_LookOut = new PrefabGUID(-2014797575); public static readonly PrefabGUID Buff_IdleInteraction_Poking = new PrefabGUID(634688654); public static readonly PrefabGUID Buff_IdleInteraction_Pushups = new PrefabGUID(579955887); public static readonly PrefabGUID Buff_IdleInteraction_Raking = new PrefabGUID(562524879); public static readonly PrefabGUID Buff_IdleInteraction_Selling = new PrefabGUID(-1766129319); public static readonly PrefabGUID Buff_IdleInteraction_SharpeningTable_01 = new PrefabGUID(-1259847931); public static readonly PrefabGUID Buff_IdleInteraction_Situps = new PrefabGUID(-1006286854); public static readonly PrefabGUID Buff_IdleInteraction_Sleeping_01 = new PrefabGUID(192984794); public static readonly PrefabGUID Buff_IdleInteraction_Sleeping_02 = new PrefabGUID(-1997870689); public static readonly PrefabGUID Buff_IdleInteraction_Sowing = new PrefabGUID(689335033); public static readonly PrefabGUID Buff_IdleInteraction_StandingByFire = new PrefabGUID(-1972114252); public static readonly PrefabGUID Buff_IdleInteraction_Tanning_01 = new PrefabGUID(-1343036350); public static readonly PrefabGUID Buff_IdleInteraction_TargetDummy_01 = new PrefabGUID(-1133587781); public static readonly PrefabGUID Buff_IdleInteraction_TargetDummy_02 = new PrefabGUID(1165429733); public static readonly PrefabGUID Buff_IdleInteraction_Tinker = new PrefabGUID(-701198643); public static readonly PrefabGUID Buff_IdleInteraction_Tinker_02 = new PrefabGUID(-1060344019); public static readonly PrefabGUID Buff_IdleInteraction_Tinker_03 = new PrefabGUID(1928493361); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_01 = new PrefabGUID(-235311655); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_02 = new PrefabGUID(-381437625); public static readonly PrefabGUID Buff_IdleInteraction_Wall_Lean_03 = new PrefabGUID(-1678139833); public static readonly PrefabGUID Buff_Illusion_Mosquito_DisableAggro = new PrefabGUID(1934061152); public static readonly PrefabGUID Buff_ImprisonTravel = new PrefabGUID(379796791); public static readonly PrefabGUID Buff_InCombat = new PrefabGUID(581443919); public static readonly PrefabGUID Buff_InCombat_BloodKnight = new PrefabGUID(1985952650); public static readonly PrefabGUID Buff_InCombat_CarverBoss_VBlood = new PrefabGUID(1650885803); public static readonly PrefabGUID Buff_InCombat_ChurchOfLight_Paladin = new PrefabGUID(-158349491); public static readonly PrefabGUID Buff_InCombat_Contest = new PrefabGUID(698151145); public static readonly PrefabGUID Buff_InCombat_DivineAngel = new PrefabGUID(1420967901); public static readonly PrefabGUID Buff_InCombat_Fisherman = new PrefabGUID(-1878882476); public static readonly PrefabGUID Buff_InCombat_Forest_Wolf = new PrefabGUID(195947260); public static readonly PrefabGUID Buff_InCombat_Gloomrot_RailgunSergeant = new PrefabGUID(-112425228); public static readonly PrefabGUID Buff_InCombat_Livith_VBlood = new PrefabGUID(1161649372); public static readonly PrefabGUID Buff_InCombat_Lucie_VBlood = new PrefabGUID(604033279); public static readonly PrefabGUID Buff_InCombat_Manticore = new PrefabGUID(-1360686341); public static readonly PrefabGUID Buff_InCombat_Npc = new PrefabGUID(480749717); public static readonly PrefabGUID Buff_InCombat_Npc_Blackfang = new PrefabGUID(1787445817); public static readonly PrefabGUID Buff_InCombat_Npc_Boss = new PrefabGUID(-1691569035); public static readonly PrefabGUID Buff_InCombat_Npc_CastleMan = new PrefabGUID(731266864); public static readonly PrefabGUID Buff_InCombat_Npc_CoverSlave = new PrefabGUID(-223678683); public static readonly PrefabGUID Buff_InCombat_Npc_Elite = new PrefabGUID(1227555070); public static readonly PrefabGUID Buff_InCombat_Npc_HighLord = new PrefabGUID(1138541416); public static readonly PrefabGUID Buff_InCombat_Npc_Invulernable = new PrefabGUID(544892542); public static readonly PrefabGUID Buff_InCombat_Npc_LessHpScaling = new PrefabGUID(680803070); public static readonly PrefabGUID Buff_InCombat_Npc_Monster = new PrefabGUID(257768416); public static readonly PrefabGUID Buff_InCombat_Npc_NoneCombatState = new PrefabGUID(597754491); public static readonly PrefabGUID Buff_InCombat_Npc_Servant = new PrefabGUID(-562438568); public static readonly PrefabGUID Buff_InCombat_Npc_Summon = new PrefabGUID(1141461369); public static readonly PrefabGUID Buff_InCombat_PvPVampire = new PrefabGUID(697095869); public static readonly PrefabGUID Buff_InCombat_TheProfessor = new PrefabGUID(-1781177443); public static readonly PrefabGUID Buff_InCombat_Trader_T01 = new PrefabGUID(-20088559); public static readonly PrefabGUID Buff_InCombat_Trader_T0203 = new PrefabGUID(-723142953); public static readonly PrefabGUID Buff_InCombat_VBlood_Archmage = new PrefabGUID(1486750501); public static readonly PrefabGUID Buff_InCombat_VBlood_Armorer = new PrefabGUID(1958910703); public static readonly PrefabGUID Buff_InCombat_VBlood_Armorer_ALREADY_EXISTS_2 = new PrefabGUID(1395125392); public static readonly PrefabGUID Buff_InCombat_VBlood_Bandit_Bomber = new PrefabGUID(1514481038); public static readonly PrefabGUID Buff_InCombat_VBlood_BanditLeader = new PrefabGUID(-282443267); public static readonly PrefabGUID Buff_InCombat_VBlood_Bear_Dire = new PrefabGUID(1960737087); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfDeath = new PrefabGUID(-1410079457); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfDunley = new PrefabGUID(294077942); public static readonly PrefabGUID Buff_InCombat_VBlood_BishopOfShadows = new PrefabGUID(-219121351); public static readonly PrefabGUID Buff_InCombat_VBlood_Chaosarrow = new PrefabGUID(-2137397598); public static readonly PrefabGUID Buff_InCombat_VBlood_ChurchOfLight_Cardinal = new PrefabGUID(22992735); public static readonly PrefabGUID Buff_InCombat_VBlood_CursedWanderer = new PrefabGUID(-163001676); public static readonly PrefabGUID Buff_InCombat_VBlood_DireRat = new PrefabGUID(-258353694); public static readonly PrefabGUID Buff_InCombat_VBlood_Foreman = new PrefabGUID(-1200676651); public static readonly PrefabGUID Buff_InCombat_VBlood_Frostarrow = new PrefabGUID(-2060227403); public static readonly PrefabGUID Buff_InCombat_VBlood_Geomancer_Human = new PrefabGUID(-1352713778); public static readonly PrefabGUID Buff_InCombat_VBlood_Harpy_Matriarch = new PrefabGUID(78907725); public static readonly PrefabGUID Buff_InCombat_VBlood_IceRanger = new PrefabGUID(-107868613); public static readonly PrefabGUID Buff_InCombat_VBlood_Iva = new PrefabGUID(-1784269994); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Glassblower = new PrefabGUID(-54441856); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Guard = new PrefabGUID(-1953643558); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Leader = new PrefabGUID(-882307775); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_LightArrow = new PrefabGUID(1026827463); public static readonly PrefabGUID Buff_InCombat_VBlood_Militia_Scribe = new PrefabGUID(447801882); public static readonly PrefabGUID Buff_InCombat_VBlood_MountainBeast = new PrefabGUID(1683300592); public static readonly PrefabGUID Buff_InCombat_VBlood_Nun = new PrefabGUID(-1716617716); public static readonly PrefabGUID Buff_InCombat_VBlood_Overseer = new PrefabGUID(1860175001); public static readonly PrefabGUID Buff_InCombat_VBlood_Poloma = new PrefabGUID(-1054878413); public static readonly PrefabGUID Buff_InCombat_VBlood_Purifier = new PrefabGUID(437878287); public static readonly PrefabGUID Buff_InCombat_VBlood_Sommelier = new PrefabGUID(978693389); public static readonly PrefabGUID Buff_InCombat_VBlood_Spider_Queen = new PrefabGUID(-584450365); public static readonly PrefabGUID Buff_InCombat_VBlood_StoneBreaker = new PrefabGUID(-955739317); public static readonly PrefabGUID Buff_InCombat_VBlood_Tailor = new PrefabGUID(-750658096); public static readonly PrefabGUID Buff_InCombat_VBlood_ToadKing = new PrefabGUID(52223855); public static readonly PrefabGUID Buff_InCombat_VBlood_Tourok = new PrefabGUID(449194487); public static readonly PrefabGUID Buff_InCombat_VBlood_Undead_Priest = new PrefabGUID(747679525); public static readonly PrefabGUID Buff_InCombat_VBlood_Voltage = new PrefabGUID(-525986975); public static readonly PrefabGUID Buff_InCombat_VBlood_Wendigo = new PrefabGUID(989251425); public static readonly PrefabGUID Buff_InCombat_VBlood_WerewolfChieftain_Werewolf = new PrefabGUID(1287682259); public static readonly PrefabGUID Buff_InCombat_VBlood_Witch = new PrefabGUID(-1219399206); public static readonly PrefabGUID Buff_InCombat_VBlood_Yeti = new PrefabGUID(-1814423891); public static readonly PrefabGUID Buff_InCombat_VHunter_Jade = new PrefabGUID(170721886); public static readonly PrefabGUID Buff_InkCrawler_Hard_Timer = new PrefabGUID(-570882227); public static readonly PrefabGUID Buff_InkCrawler_Timer = new PrefabGUID(1273155981); public static readonly PrefabGUID Buff_Interrupt = new PrefabGUID(21644547); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Base = new PrefabGUID(-1852652593); public static readonly PrefabGUID Buff_Iva_WeaponEquip_BFG = new PrefabGUID(-1628661612); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Flamer = new PrefabGUID(847337272); public static readonly PrefabGUID Buff_Iva_WeaponEquip_HideAll = new PrefabGUID(-1584074836); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Shotgun = new PrefabGUID(1905993695); public static readonly PrefabGUID Buff_Iva_WeaponEquip_Tazer = new PrefabGUID(-1463058911); public static readonly PrefabGUID Buff_Legion_BloodProhpet_PermanentBuff = new PrefabGUID(-426858592); public static readonly PrefabGUID Buff_Legion_GateBoss_PermanentBuff = new PrefabGUID(470787050); public static readonly PrefabGUID Buff_LittleGuy_Pray = new PrefabGUID(-111291969); public static readonly PrefabGUID Buff_LittleGuy_Sit = new PrefabGUID(-1861980964); public static readonly PrefabGUID Buff_LittleGuy_Sleep = new PrefabGUID(1572800727); public static readonly PrefabGUID Buff_LittleGuy_Tinkering = new PrefabGUID(1163726516); public static readonly PrefabGUID Buff_Manticore_ImmaterialHomePos = new PrefabGUID(-61473528); public static readonly PrefabGUID Buff_Manticore_VBlood_Downed = new PrefabGUID(-195747592); public static readonly PrefabGUID Buff_Militia_BishopOfDunley_VBlood_Downed = new PrefabGUID(-1684198551); public static readonly PrefabGUID Buff_Militia_Fabian_CastImpair = new PrefabGUID(1671499645); public static readonly PrefabGUID Buff_Militia_Fabian_Downed = new PrefabGUID(1614390358); public static readonly PrefabGUID Buff_Militia_Fabian_InCombat = new PrefabGUID(-898392533); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_Attach = new PrefabGUID(105565888); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_LaunchLand = new PrefabGUID(1542512910); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_LaunchRider = new PrefabGUID(1182509317); public static readonly PrefabGUID Buff_Militia_Fabian_MountRider_SharedHealthBuff = new PrefabGUID(1666453956); public static readonly PrefabGUID Buff_Militia_Fabian_OnAggro = new PrefabGUID(-1995779935); public static readonly PrefabGUID Buff_Militia_Fabian_Return = new PrefabGUID(1054832087); public static readonly PrefabGUID Buff_Militia_FabiansSteed_CastImpair = new PrefabGUID(-1205493484); public static readonly PrefabGUID Buff_Militia_FabiansSteed_Trample = new PrefabGUID(1136393298); public static readonly PrefabGUID Buff_Militia_GlassBlower_VBlood_Downed = new PrefabGUID(315631033); public static readonly PrefabGUID Buff_Militia_Guard_VBlood_Downed = new PrefabGUID(-756124314); public static readonly PrefabGUID Buff_Militia_Hound_InCombat = new PrefabGUID(-2046372355); public static readonly PrefabGUID Buff_Militia_InkCrawler_SpawnBuff = new PrefabGUID(-1355571683); public static readonly PrefabGUID Buff_Militia_InkCrawler_TrailEffect = new PrefabGUID(-1124645803); public static readonly PrefabGUID Buff_Militia_Leader_VBlood_Downed = new PrefabGUID(1348079791); public static readonly PrefabGUID Buff_Militia_Nun_VBlood_Downed = new PrefabGUID(1318120602); public static readonly PrefabGUID Buff_Militia_Scribe_HideStaff = new PrefabGUID(2053361366); public static readonly PrefabGUID Buff_Militia_Scribe_VBlood_Downed = new PrefabGUID(394037137); public static readonly PrefabGUID Buff_Monster_EnergyBeam_Hard_Invulnerability = new PrefabGUID(-1653889755); public static readonly PrefabGUID Buff_Monster_EnergyBeam_Hit = new PrefabGUID(-1568995091); public static readonly PrefabGUID Buff_Monster_FinalStage = new PrefabGUID(-85146953); public static readonly PrefabGUID Buff_Monster_FinalStage_Empowered = new PrefabGUID(1237097606); public static readonly PrefabGUID Buff_Monster_FinalStage_Transition = new PrefabGUID(-2079981449); public static readonly PrefabGUID Buff_Monster_GeneratorActive = new PrefabGUID(-1548542301); public static readonly PrefabGUID Buff_Monster_MainStage1 = new PrefabGUID(259890464); public static readonly PrefabGUID Buff_Monster_MainStage2 = new PrefabGUID(719241057); public static readonly PrefabGUID Buff_Monster_MainStage3 = new PrefabGUID(-298421901); public static readonly PrefabGUID Buff_Monster_OnAggro = new PrefabGUID(1416123699); public static readonly PrefabGUID Buff_Monster_OnRelease = new PrefabGUID(1260207051); public static readonly PrefabGUID Buff_Monster_RecentlyReleased = new PrefabGUID(913622234); public static readonly PrefabGUID Buff_Monster_Return = new PrefabGUID(1089939900); public static readonly PrefabGUID Buff_Monster_Return_Hidebuff = new PrefabGUID(-1165237844); public static readonly PrefabGUID Buff_Monster_ShowMechArm = new PrefabGUID(96896444); public static readonly PrefabGUID Buff_Monster_ThresholdInterrupt = new PrefabGUID(-1791833910); public static readonly PrefabGUID Buff_Mount_Horse_Downed = new PrefabGUID(-266455478); public static readonly PrefabGUID Buff_MountainBeast_DashRotationImpair = new PrefabGUID(-748506838); public static readonly PrefabGUID Buff_MoveToBusStop = new PrefabGUID(-1096336901); public static readonly PrefabGUID Buff_MoveToBusStopDestroy = new PrefabGUID(539166338); public static readonly PrefabGUID Buff_Mutant_Tier3_Minion_Mutant_SpawnBuff = new PrefabGUID(1435319429); public static readonly PrefabGUID Buff_Mutant_Tier3_RatHorror_LifetimeBuff = new PrefabGUID(-1523736130); public static readonly PrefabGUID Buff_Mutant_Tier3_RatHorror_Spawn_PoolJump = new PrefabGUID(571970872); public static readonly PrefabGUID Buff_NoBlood_Debuff = new PrefabGUID(-915894843); public static readonly PrefabGUID Buff_Noctem_Trader_IdleBuff = new PrefabGUID(-1516516418); public static readonly PrefabGUID Buff_Ocean_Blowfish_DamageArea = new PrefabGUID(-835533380); public static readonly PrefabGUID Buff_Ocean_Blowfish_DestroyNovaTrigger = new PrefabGUID(-1425606752); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunOther = new PrefabGUID(-1339333399); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunOther_Long = new PrefabGUID(-2098926892); public static readonly PrefabGUID Buff_Ocean_Blowfish_StunPlayer = new PrefabGUID(-74418677); public static readonly PrefabGUID Buff_Ocean_Blowfish_WasHit = new PrefabGUID(627469299); public static readonly PrefabGUID Buff_OnAggro_TheProfessor = new PrefabGUID(-1368184079); public static readonly PrefabGUID Buff_OnHitDash = new PrefabGUID(-2050859372); public static readonly PrefabGUID Buff_OutOfCombat = new PrefabGUID(897325455); public static readonly PrefabGUID Buff_Overseer_Spawn_Minion = new PrefabGUID(263434875); public static readonly PrefabGUID Buff_Paladin_DivineAngel_ChaseBuff = new PrefabGUID(1277289010); public static readonly PrefabGUID Buff_Paladin_FallenAngel_ChaseBuff = new PrefabGUID(1586158367); public static readonly PrefabGUID Buff_Paladin_ShockWaveSlam_FadingSnare = new PrefabGUID(966083888); public static readonly PrefabGUID Buff_PhysCrit_Movement_After_Veil = new PrefabGUID(-1045175171); public static readonly PrefabGUID Buff_Poloma_VBlood_Downed = new PrefabGUID(1120754048); public static readonly PrefabGUID Buff_Prisoner_Flee_Villager_Female = new PrefabGUID(-524901271); public static readonly PrefabGUID Buff_Prisoner_Flee_Villager_Male = new PrefabGUID(-1635032699); public static readonly PrefabGUID Buff_Prisoner_Villager = new PrefabGUID(626943474); public static readonly PrefabGUID Buff_Prisoner_Villager_Cover_Female = new PrefabGUID(1216826981); public static readonly PrefabGUID Buff_Prisoner_Villager_Cover_Male = new PrefabGUID(20409553); public static readonly PrefabGUID Buff_Progression_LockSpell1 = new PrefabGUID(-2103690727); public static readonly PrefabGUID Buff_Progression_LockSpell2 = new PrefabGUID(473363389); public static readonly PrefabGUID Buff_Purifier_OutOfCombat = new PrefabGUID(-698800339); public static readonly PrefabGUID Buff_Purifier_Return = new PrefabGUID(-1983671299); public static readonly PrefabGUID Buff_Purifier_VBlood_Downed = new PrefabGUID(627111319); public static readonly PrefabGUID Buff_RemoveAfterDuration_FadeOut = new PrefabGUID(-101157490); public static readonly PrefabGUID Buff_RemoveAfterDuration_FadeOut_GateBoss = new PrefabGUID(-1322217295); public static readonly PrefabGUID Buff_SeaSerpent_Aggro = new PrefabGUID(-695441498); public static readonly PrefabGUID Buff_Shapeshift_Base = new PrefabGUID(361281067); public static readonly PrefabGUID Buff_Shared_HealthOrbListener_Normal = new PrefabGUID(264475473); public static readonly PrefabGUID Buff_Shared_Return = new PrefabGUID(-560330878); public static readonly PrefabGUID Buff_Shared_Return_NoInvulernable = new PrefabGUID(2086395440); public static readonly PrefabGUID Buff_Silence_Jade = new PrefabGUID(-1624535205); public static readonly PrefabGUID Buff_Sommelier_Emote_OnAggro_Buff = new PrefabGUID(-83105343); public static readonly PrefabGUID Buff_Spawn_VBlood_ArenaChampion = new PrefabGUID(339702988); public static readonly PrefabGUID Buff_SpawnBuff_Skeleton_EarthCrawl = new PrefabGUID(1820474368); public static readonly PrefabGUID Buff_Spectral_SpellSlinger_DisableAggro = new PrefabGUID(-220887892); public static readonly PrefabGUID Buff_SpellCrit_After_Veil = new PrefabGUID(-155441795); public static readonly PrefabGUID Buff_Spider_Forest_Webbing_HasteBuff = new PrefabGUID(-481566876); public static readonly PrefabGUID Buff_Spider_Forest_Webbing_SlowDebuff = new PrefabGUID(1546160943); public static readonly PrefabGUID Buff_Spider_Melee_Webbing_HasteBuff = new PrefabGUID(-2101950327); public static readonly PrefabGUID Buff_Spider_Melee_Webbing_SlowDebuff = new PrefabGUID(-1831802998); public static readonly PrefabGUID Buff_Spider_Queen_VBlood_Downed = new PrefabGUID(-2127508277); public static readonly PrefabGUID Buff_SpiderCocoon_Lifetime = new PrefabGUID(-1555636522); public static readonly PrefabGUID Buff_Storm_Feed_Haste = new PrefabGUID(1208483884); public static readonly PrefabGUID Buff_SummonedSpawn_General = new PrefabGUID(1013625819); public static readonly PrefabGUID Buff_SummonedSpawn_General_QuickSpawn = new PrefabGUID(-25317698); public static readonly PrefabGUID Buff_Tailor_VBlood_Flee = new PrefabGUID(-530519474); public static readonly PrefabGUID Buff_Tank_Standing_PilotAttach = new PrefabGUID(-900651947); public static readonly PrefabGUID Buff_TransmogMode = new PrefabGUID(-1482034122); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_Attach01 = new PrefabGUID(-1460610830); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_Attach02 = new PrefabGUID(-1416960739); public static readonly PrefabGUID Buff_TreantMantrap_Corrupted_KillBuff = new PrefabGUID(1764411151); public static readonly PrefabGUID Buff_Undead_ArenaChampion_VBlood_Downed = new PrefabGUID(83174109); public static readonly PrefabGUID Buff_Undead_BishopOfDeath_VBlood_Downed = new PrefabGUID(-1333192053); public static readonly PrefabGUID Buff_Undead_BishopOfShadows_VBlood_Downed = new PrefabGUID(-721205311); public static readonly PrefabGUID Buff_Undead_CursedSmith_FloatingMace_Weaken = new PrefabGUID(-502090069); public static readonly PrefabGUID Buff_Undead_CursedSmith_FloatingWeapon_Hard_StatBoost = new PrefabGUID(1672630457); public static readonly PrefabGUID Buff_Undead_CursedSmith_InCombat = new PrefabGUID(-1977989346); public static readonly PrefabGUID Buff_Undead_CursedSmith_VBlood_Downed = new PrefabGUID(126339959); public static readonly PrefabGUID Buff_Undead_CursedSmith_Weaken = new PrefabGUID(355440213); public static readonly PrefabGUID Buff_Undead_FlyingSkull_LivingMaterial = new PrefabGUID(-1559874083); public static readonly PrefabGUID Buff_Undead_Infiltrator_OutOfCombat = new PrefabGUID(-27509782); public static readonly PrefabGUID Buff_Undead_Infiltrator_OutOfCombat_Gateboss = new PrefabGUID(-57728774); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_Downed = new PrefabGUID(2075976215); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_InCombat = new PrefabGUID(-1173838598); public static readonly PrefabGUID Buff_Undead_Infiltrator_VBlood_OnAggro = new PrefabGUID(-1177340313); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_Downed = new PrefabGUID(-2002379408); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_InCombat = new PrefabGUID(-2079744569); public static readonly PrefabGUID Buff_Undead_Leader_VBlood_OnAggro = new PrefabGUID(710476221); public static readonly PrefabGUID Buff_Undead_Priest_VBlood_Downed = new PrefabGUID(-1455144915); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_MinionLifetime = new PrefabGUID(-665880743); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_MinionSpawner = new PrefabGUID(-931287980); public static readonly PrefabGUID Buff_Undead_SkeletonGolem_SpawnAnimation = new PrefabGUID(2144295761); public static readonly PrefabGUID Buff_Undead_ZealousCultist_InCombat = new PrefabGUID(-652831057); public static readonly PrefabGUID Buff_Undead_ZealousCultist_VBlood_Downed = new PrefabGUID(1044823130); public static readonly PrefabGUID Buff_Unholy_DeathKnight_DisableAggro = new PrefabGUID(955278936); public static readonly PrefabGUID Buff_Unholy_UnstableArachnid_Spawn = new PrefabGUID(-46248684); public static readonly PrefabGUID Buff_USB_Lifetime = new PrefabGUID(71525166); public static readonly PrefabGUID Buff_Vampire_BloodKnight_HideWeapon = new PrefabGUID(1972619545); public static readonly PrefabGUID Buff_Vampire_BloodKnight_Return = new PrefabGUID(-1049988817); public static readonly PrefabGUID Buff_Vampire_BloodKnight_Spawn = new PrefabGUID(-1448026757); public static readonly PrefabGUID Buff_Vampire_CrimsonIronMaiden_MiscBuff = new PrefabGUID(-925504586); public static readonly PrefabGUID Buff_Vampire_CrimsonIronMaiden_SetMasterCooldown = new PrefabGUID(835020638); public static readonly PrefabGUID Buff_Vampire_Cultist_CombatBuff = new PrefabGUID(1120328360); public static readonly PrefabGUID Buff_Vampire_Dracula_BloodCurse = new PrefabGUID(-89195359); public static readonly PrefabGUID Buff_Vampire_Dracula_BloodCurseArea = new PrefabGUID(2089511317); public static readonly PrefabGUID Buff_Vampire_Dracula_Downed = new PrefabGUID(-187191126); public static readonly PrefabGUID Buff_Vampire_Dracula_Idle = new PrefabGUID(496408546); public static readonly PrefabGUID Buff_Vampire_Dracula_Return = new PrefabGUID(-1377587236); public static readonly PrefabGUID Buff_Vampire_Dracula_ReturnHide = new PrefabGUID(404387047); public static readonly PrefabGUID Buff_Vampire_Dracula_Seated = new PrefabGUID(1264659054); public static readonly PrefabGUID Buff_Vampire_Dracula_Spawn = new PrefabGUID(657711564); public static readonly PrefabGUID Buff_Vampire_Dracula_SpellPhase = new PrefabGUID(-31099041); public static readonly PrefabGUID Buff_Vampire_Dracula_StandUp = new PrefabGUID(-2081244038); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_EffectBuff = new PrefabGUID(632624195); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_EvolvedBuff = new PrefabGUID(-874481425); public static readonly PrefabGUID Buff_Vampire_Dracula_VeilOfBatsIllusion_SummonInit = new PrefabGUID(-1776595174); public static readonly PrefabGUID Buff_Vampire_Whip_HideAnimationWhip = new PrefabGUID(-1005561637); public static readonly PrefabGUID Buff_Vampire_Whip_ShowAnimationWhip = new PrefabGUID(935949254); public static readonly PrefabGUID Buff_Vampire_Whip_ShowAnimationWhip_FlameWhip = new PrefabGUID(-956620578); public static readonly PrefabGUID Buff_VBlood_Ability_Replace = new PrefabGUID(1171608023); public static readonly PrefabGUID Buff_VBlood_DireRat_Hard = new PrefabGUID(1139392902); public static readonly PrefabGUID Buff_Vermin_DireRat_VBlood_Downed = new PrefabGUID(-190654335); public static readonly PrefabGUID Buff_VHunter_CastleMan_HideWhip_Buff = new PrefabGUID(-202999668); public static readonly PrefabGUID Buff_VHunter_Jade_VBlood_Downed = new PrefabGUID(-237898435); public static readonly PrefabGUID Buff_VHunter_Leader_Haste_Hard = new PrefabGUID(1007184557); public static readonly PrefabGUID Buff_VHunter_Leader_InCombat = new PrefabGUID(521682636); public static readonly PrefabGUID Buff_Villager_CursedWanderer_VBlood_Downed = new PrefabGUID(1950981925); public static readonly PrefabGUID Buff_Villager_Tailor_VBlood_Downed = new PrefabGUID(-1781284090); public static readonly PrefabGUID Buff_Voltage_Stage2 = new PrefabGUID(-911970381); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition1 = new PrefabGUID(-10363246); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition2 = new PrefabGUID(-1053045898); public static readonly PrefabGUID Buff_Voltage_Stage2_Transition3 = new PrefabGUID(-750611171); public static readonly PrefabGUID Buff_Waypoint_Travel = new PrefabGUID(150521246); public static readonly PrefabGUID Buff_Waypoint_TravelEnd = new PrefabGUID(-1361133205); public static readonly PrefabGUID Buff_Wendigo_Freeze = new PrefabGUID(899218383); public static readonly PrefabGUID Buff_Wendigo_VBlood_Downed = new PrefabGUID(-1720429443); public static readonly PrefabGUID Buff_Werewolf_Return = new PrefabGUID(-169078563); public static readonly PrefabGUID Buff_WerewolfChieftain_Idle = new PrefabGUID(-43198776); public static readonly PrefabGUID Buff_WerewolfChieftain_Return = new PrefabGUID(-1511222240); public static readonly PrefabGUID Buff_WerewolfChieftain_VBlood_Downed = new PrefabGUID(928010188); public static readonly PrefabGUID Buff_Winter_Yeti_VBlood_Downed = new PrefabGUID(309433400); public static readonly PrefabGUID Buff_Wolf_Eating = new PrefabGUID(-177679480); public static readonly PrefabGUID Buff_Yeti_Freeze = new PrefabGUID(-1743320328); public static readonly PrefabGUID BuffResistance_ArenaOrb = new PrefabGUID(-1271537148); public static readonly PrefabGUID BuffResistance_Dispell_Standard = new PrefabGUID(663432934); public static readonly PrefabGUID BuffResistance_EliteMob = new PrefabGUID(1973136122); public static readonly PrefabGUID BuffResistance_ExplodingMosquito = new PrefabGUID(815189566); public static readonly PrefabGUID BuffResistance_Golem = new PrefabGUID(-1736068504); public static readonly PrefabGUID BuffResistance_GolemRockElemental = new PrefabGUID(1413952432); public static readonly PrefabGUID BuffResistance_GroundedUnit = new PrefabGUID(-1233147667); public static readonly PrefabGUID BuffResistance_Horses = new PrefabGUID(-1847481569); public static readonly PrefabGUID BuffResistance_Hunter = new PrefabGUID(193079472); public static readonly PrefabGUID BuffResistance_IceBlock = new PrefabGUID(-1747607804); public static readonly PrefabGUID BuffResistance_IgniteResistant = new PrefabGUID(-992427880); public static readonly PrefabGUID BuffResistance_NoResistances = new PrefabGUID(-149206519); public static readonly PrefabGUID BuffResistance_OnlyKnockbackAllowed = new PrefabGUID(-1043688002); public static readonly PrefabGUID BuffResistance_SpellImmune = new PrefabGUID(138461582); public static readonly PrefabGUID BuffResistance_SpiderTanks = new PrefabGUID(-1513114390); public static readonly PrefabGUID BuffResistance_Structures = new PrefabGUID(-641281679); public static readonly PrefabGUID BuffResistance_UberMob = new PrefabGUID(1067748088); public static readonly PrefabGUID BuffResistance_UberMob_IgniteResistant = new PrefabGUID(960451195); public static readonly PrefabGUID BuffResistance_UberMobNoKnockback = new PrefabGUID(-995401394); public static readonly PrefabGUID BuffResistance_UberMobNoKnockbackOrGrab = new PrefabGUID(99200653); public static readonly PrefabGUID BuffResistance_Vampire = new PrefabGUID(-1022163918); public static readonly PrefabGUID BuffResistance_VBloodDownedDispell = new PrefabGUID(-1114856172); public static readonly PrefabGUID BuildingDismantleAdaptiveTrigger = new PrefabGUID(282922834); public static readonly PrefabGUID BuildingPickupAdaptiveTrigger = new PrefabGUID(-313671940); public static readonly PrefabGUID BuildMenuComposition = new PrefabGUID(-782361326); public static readonly PrefabGUID BuildModeSettings = new PrefabGUID(1783731105); public static readonly PrefabGUID CabalVaseBuildMenuGroup = new PrefabGUID(368279786); public static readonly PrefabGUID CancelFeedAdaptiveTrigger = new PrefabGUID(1396777316); public static readonly PrefabGUID Candle04BuildMenuGroup = new PrefabGUID(48379112); public static readonly PrefabGUID CandleStandsBuildMenuGroup = new PrefabGUID(-416774014); public static readonly PrefabGUID CarpetsBuildMenuGroup01 = new PrefabGUID(-1947472059); public static readonly PrefabGUID CarpetsBuildMenuGroup02 = new PrefabGUID(768363843); public static readonly PrefabGUID CarpetsBuildMenuGroupDLC01 = new PrefabGUID(-866904874); public static readonly PrefabGUID CarpetsBuildMenuGroupGloomrot01 = new PrefabGUID(-940907249); public static readonly PrefabGUID CarpetsBuildMenuGroupHalloween01 = new PrefabGUID(-1596593625); public static readonly PrefabGUID CarpetsBuildMenuGroupProjectK01 = new PrefabGUID(1995998081); public static readonly PrefabGUID CarpetsBuildMenuGroupStrongbladeDLC01 = new PrefabGUID(-168337760); public static readonly PrefabGUID CarpetsBuildMenuGroupStrongbladeDLC02 = new PrefabGUID(463423026); public static readonly PrefabGUID CarriageCollider = new PrefabGUID(-584529203); public static readonly PrefabGUID CarrionSwarmCurve = new PrefabGUID(-1923722899); public static readonly PrefabGUID CarverBoss_WhirlwindSlowDown_Curve = new PrefabGUID(696336935); public static readonly PrefabGUID Castle_DecayOnServerTick_Buff = new PrefabGUID(-461018547); public static readonly PrefabGUID Castle_Modules_Child_Vases = new PrefabGUID(-472962006); public static readonly PrefabGUID Castle_Modules_Garden_Arch_Large = new PrefabGUID(1150984956); public static readonly PrefabGUID Castle_Modules_Garden_Arch_Small = new PrefabGUID(-562325479); public static readonly PrefabGUID Castle_Modules_Garden_Obelisk_Metal = new PrefabGUID(-1789514767); public static readonly PrefabGUID Castle_Modules_Garden_Obelisk_Wood = new PrefabGUID(880934517); public static readonly PrefabGUID Castle_Modules_Garden_Pergola = new PrefabGUID(1668575710); public static readonly PrefabGUID Castle_Modules_Garden_Planter_Large = new PrefabGUID(-1843221037); public static readonly PrefabGUID Castle_Modules_Garden_Planter_Small = new PrefabGUID(340064975); public static readonly PrefabGUID Castle_Modules_Garden_Seeds = new PrefabGUID(-1257517500); public static readonly PrefabGUID Castle_Modules_Garden_Urns = new PrefabGUID(-1577269726); public static readonly PrefabGUID Castle_Modules_RectangularTable_10x6 = new PrefabGUID(-1098132264); public static readonly PrefabGUID Castle_Modules_RectangularTable_3x6 = new PrefabGUID(906752705); public static readonly PrefabGUID Castle_Modules_RoundTable_3x3 = new PrefabGUID(-1746717174); public static readonly PrefabGUID Castle_Modules_RoundTable_6x6 = new PrefabGUID(-498480359); public static readonly PrefabGUID Castle_RegenOnServerTick_Buff = new PrefabGUID(-383767137); public static readonly PrefabGUID Castle_Resistance_Buff = new PrefabGUID(-1122791248); public static readonly PrefabGUID CastleBuffsSettings = new PrefabGUID(1718523655); public static readonly PrefabGUID CastleFloorBuildMenuGroup = new PrefabGUID(-1222494467); public static readonly PrefabGUID CastleGenerationPrefabsCollection = new PrefabGUID(1785107561); public static readonly PrefabGUID CastleHeart_SharedInventoryInstance = new PrefabGUID(-1551119253); public static readonly PrefabGUID CastleHeart_SharedInventoryManager = new PrefabGUID(-1882137875); public static readonly PrefabGUID CastleHeartTierSequencesAsset = new PrefabGUID(1097554366); public static readonly PrefabGUID CastleManHolyBeamHardCurve = new PrefabGUID(-1442445263); public static readonly PrefabGUID CastleRailings_BuildingMenuGroup = new PrefabGUID(-161148957); public static readonly PrefabGUID CastleRailingsAsset = new PrefabGUID(-1955161285); public static readonly PrefabGUID CastleRebuildingSettings = new PrefabGUID(1517300989); public static readonly PrefabGUID CastleRoom = new PrefabGUID(2032861273); public static readonly PrefabGUID CastleStairsBuildMenuGroup = new PrefabGUID(-537969092); public static readonly PrefabGUID CastleTeam = new PrefabGUID(-1924985899); public static readonly PrefabGUID CastleTerritory = new PrefabGUID(1487894097); public static readonly PrefabGUID CastleTerritoryManager = new PrefabGUID(-476390368); public static readonly PrefabGUID CastleWallsBuildMenuGroup = new PrefabGUID(1923329122); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_01a = new PrefabGUID(1734135547); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_01b = new PrefabGUID(467750481); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_02a = new PrefabGUID(-324589909); public static readonly PrefabGUID CH_Cemetery_Grave_Pile_02b = new PrefabGUID(484488171); public static readonly PrefabGUID Chain_Altar_Fortressoflight_01 = new PrefabGUID(-1417459998); public static readonly PrefabGUID Chain_AnimalCage_01 = new PrefabGUID(1602688000); public static readonly PrefabGUID Chain_AnimalCage_02 = new PrefabGUID(86622020); public static readonly PrefabGUID Chain_AnimalCage_03 = new PrefabGUID(-1438473016); public static readonly PrefabGUID Chain_AnimalCage_04 = new PrefabGUID(-324163215); public static readonly PrefabGUID Chain_AnimalCage_05 = new PrefabGUID(-570970720); public static readonly PrefabGUID Chain_AnimalCage_06 = new PrefabGUID(-1295142628); public static readonly PrefabGUID Chain_AnimalCage_07 = new PrefabGUID(-1058034014); public static readonly PrefabGUID Chain_AnimalCage_Snow_01 = new PrefabGUID(-1582280235); public static readonly PrefabGUID Chain_AnimalCage_Snow_02 = new PrefabGUID(-2112591787); public static readonly PrefabGUID Chain_AnimalCage_Snow_03 = new PrefabGUID(-511204510); public static readonly PrefabGUID Chain_AnimalCage_Snow_04 = new PrefabGUID(-1298921460); public static readonly PrefabGUID Chain_AnimalCage_Snow_05 = new PrefabGUID(-532060107); public static readonly PrefabGUID Chain_AnimalCage_Snow_07 = new PrefabGUID(834787273); public static readonly PrefabGUID Chain_AnimalGraintank01 = new PrefabGUID(-1364345443); public static readonly PrefabGUID Chain_AnimalGraintank02 = new PrefabGUID(-902899247); public static readonly PrefabGUID Chain_Animalpen_Gate_01 = new PrefabGUID(550798636); public static readonly PrefabGUID Chain_AnimalWatertank01 = new PrefabGUID(689661702); public static readonly PrefabGUID Chain_AnimalWatertank02 = new PrefabGUID(66325277); public static readonly PrefabGUID Chain_ArcheryTarget01 = new PrefabGUID(921465980); public static readonly PrefabGUID Chain_Bandit_Banner01 = new PrefabGUID(-212946059); public static readonly PrefabGUID Chain_Bandit_Barricade_01 = new PrefabGUID(-366794690); public static readonly PrefabGUID Chain_Bandit_Palisade_Gate01 = new PrefabGUID(1735701857); public static readonly PrefabGUID Chain_BanditBanner_01 = new PrefabGUID(-1253415539); public static readonly PrefabGUID Chain_BanditBanner_02 = new PrefabGUID(1767410750); public static readonly PrefabGUID Chain_BanditFortress_Bench01 = new PrefabGUID(-1144066357); public static readonly PrefabGUID Chain_BanditFortress_Stairs01 = new PrefabGUID(906187829); public static readonly PrefabGUID Chain_BanditFortress_Stairs02 = new PrefabGUID(43624464); public static readonly PrefabGUID Chain_Barbedwire_Diagonal_Fence_Gloomrot_01 = new PrefabGUID(-1782701782); public static readonly PrefabGUID Chain_Barbedwire_Diagonal_Fence_Gloomrot_02 = new PrefabGUID(1896724798); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_01 = new PrefabGUID(-726771209); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_02 = new PrefabGUID(504819358); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_03 = new PrefabGUID(1794304910); public static readonly PrefabGUID Chain_Barbedwire_Fence_Gloomrot_04 = new PrefabGUID(1207399833); public static readonly PrefabGUID Chain_Barrel_01 = new PrefabGUID(-16732914); public static readonly PrefabGUID Chain_Barrel_02 = new PrefabGUID(-2120923595); public static readonly PrefabGUID Chain_Barrel_03 = new PrefabGUID(-1176416357); public static readonly PrefabGUID Chain_Barrel_Cluster_01 = new PrefabGUID(149883588); public static readonly PrefabGUID Chain_Barrel_Cluster_02 = new PrefabGUID(-1468893638); public static readonly PrefabGUID Chain_Barrel_Oak_01 = new PrefabGUID(501320751); public static readonly PrefabGUID Chain_Barrel_Oak_02 = new PrefabGUID(682424459); public static readonly PrefabGUID Chain_Barrel_Oak_03 = new PrefabGUID(-290640467); public static readonly PrefabGUID Chain_Barrel_Snow_01 = new PrefabGUID(1140693569); public static readonly PrefabGUID Chain_Barrel_Snow_02 = new PrefabGUID(-1635746829); public static readonly PrefabGUID Chain_Barrel_Snow_03 = new PrefabGUID(-969294944); public static readonly PrefabGUID Chain_Beehive01 = new PrefabGUID(2068880642); public static readonly PrefabGUID Chain_BeerBarrel_01 = new PrefabGUID(1390201106); public static readonly PrefabGUID Chain_BeerBarrel_02 = new PrefabGUID(-1242376422); public static readonly PrefabGUID Chain_BeerBarrel_Snow_01 = new PrefabGUID(-1416941612); public static readonly PrefabGUID Chain_BeerBarrel_Snow_02 = new PrefabGUID(-1621858544); public static readonly PrefabGUID Chain_Blacksmith_Anvil01 = new PrefabGUID(378174333); public static readonly PrefabGUID Chain_Blacksmith_Anvil01_Interactable = new PrefabGUID(-1026590408); public static readonly PrefabGUID Chain_BlackSmith_Barrel01 = new PrefabGUID(331562853); public static readonly PrefabGUID Chain_Blacksmith_Bellow01 = new PrefabGUID(1724971806); public static readonly PrefabGUID Chain_Blacksmith_Table01 = new PrefabGUID(560078553); public static readonly PrefabGUID Chain_Blacksmith_Table01_Interactable = new PrefabGUID(-445475412); public static readonly PrefabGUID Chain_BlacksmithWood_01 = new PrefabGUID(-573707317); public static readonly PrefabGUID Chain_BlacksmithWood_02 = new PrefabGUID(262687702); public static readonly PrefabGUID Chain_Bonfire_01 = new PrefabGUID(-1657952772); public static readonly PrefabGUID Chain_Bonfire_01_FireOn = new PrefabGUID(-1099519358); public static readonly PrefabGUID Chain_Bonfire_02_FireOn = new PrefabGUID(-1364864928); public static readonly PrefabGUID Chain_BossBarrel = new PrefabGUID(-601059406); public static readonly PrefabGUID Chain_Brazier_Bandit_01 = new PrefabGUID(1165056836); public static readonly PrefabGUID Chain_Brazier_Elris_01 = new PrefabGUID(640975460); public static readonly PrefabGUID Chain_Brazier_Fortressoflight_01 = new PrefabGUID(591059473); public static readonly PrefabGUID Chain_Brazier_Fortressoflight_03 = new PrefabGUID(519147451); public static readonly PrefabGUID Chain_Brazier_Militia_01 = new PrefabGUID(1981432504); public static readonly PrefabGUID Chain_Brazier_SilverHills_Breakable_Fire02 = new PrefabGUID(-1556188619); public static readonly PrefabGUID Chain_Brazier_SilverHills_Breakable01 = new PrefabGUID(-1519854406); public static readonly PrefabGUID Chain_Breakable_BanditLeaderChair_01 = new PrefabGUID(404677443); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides02 = new PrefabGUID(1108015968); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides03 = new PrefabGUID(-1514332622); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides04 = new PrefabGUID(1628725842); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides05 = new PrefabGUID(-735380494); public static readonly PrefabGUID Chain_Breakable_BanditTailor_Hides06 = new PrefabGUID(-981592820); public static readonly PrefabGUID Chain_Breakable_BanditTailor_HidesBeam01 = new PrefabGUID(-1304812236); public static readonly PrefabGUID Chain_Breakable_BanditTailor_HidesBeam02 = new PrefabGUID(1697502808); public static readonly PrefabGUID Chain_Breakable_BanditTailor_IdleInteraction_TanningRack01 = new PrefabGUID(-169644015); public static readonly PrefabGUID Chain_Breakable_BanditTailor_SkinningTable01 = new PrefabGUID(257002019); public static readonly PrefabGUID Chain_Breakable_BanditTailor_SkinningTable02 = new PrefabGUID(-1204593971); public static readonly PrefabGUID Chain_Breakable_BanditTailor_TanningRack01 = new PrefabGUID(-1468550941); public static readonly PrefabGUID Chain_Breakable_BanditTailor_TanningRack02 = new PrefabGUID(1076526415); public static readonly PrefabGUID Chain_Breakable_BarCounter01 = new PrefabGUID(1439627727); public static readonly PrefabGUID Chain_Breakable_BarCounter02 = new PrefabGUID(-1057014014); public static readonly PrefabGUID Chain_Breakable_Bunkbed_01 = new PrefabGUID(595345618); public static readonly PrefabGUID Chain_Breakable_Bunkbed_02 = new PrefabGUID(1426054086); public static readonly PrefabGUID Chain_Breakable_Bunkbed_03 = new PrefabGUID(1241906218); public static readonly PrefabGUID Chain_Breakable_Candleholder_01 = new PrefabGUID(-537578846); public static readonly PrefabGUID Chain_Breakable_Candleholder_02 = new PrefabGUID(-601154204); public static readonly PrefabGUID Chain_Breakable_ChurchOfTheDamned_Candleholder01 = new PrefabGUID(-851013968); public static readonly PrefabGUID Chain_Breakable_ChurchOfTheDamned_Candleholder01_PurpleVar = new PrefabGUID(871433602); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_01 = new PrefabGUID(1079979818); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_02 = new PrefabGUID(-753916626); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarLantern_03 = new PrefabGUID(2063042385); public static readonly PrefabGUID Chain_Breakable_CursedForest_AltarStub01 = new PrefabGUID(210304051); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_01 = new PrefabGUID(497919361); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_02 = new PrefabGUID(414148113); public static readonly PrefabGUID Chain_Breakable_Elris_Bag_03 = new PrefabGUID(-286643372); public static readonly PrefabGUID Chain_Breakable_Elris_Bags_01 = new PrefabGUID(922276667); public static readonly PrefabGUID Chain_Breakable_Elris_Bed_01 = new PrefabGUID(1406048089); public static readonly PrefabGUID Chain_Breakable_Elris_Bench_01 = new PrefabGUID(-906771171); public static readonly PrefabGUID Chain_Breakable_Elris_Fishpole_01 = new PrefabGUID(-1967629273); public static readonly PrefabGUID Chain_Breakable_Elris_Fishpole_02 = new PrefabGUID(354001642); public static readonly PrefabGUID Chain_Breakable_Elris_Hangingfish_01 = new PrefabGUID(-703531470); public static readonly PrefabGUID Chain_Breakable_Elris_Hidebag_01 = new PrefabGUID(-1587815415); public static readonly PrefabGUID Chain_Breakable_Elris_Stool_01 = new PrefabGUID(1532651600); public static readonly PrefabGUID Chain_Breakable_Elris_Stool_02 = new PrefabGUID(936831037); public static readonly PrefabGUID Chain_Breakable_Elris_Table_01 = new PrefabGUID(1025989392); public static readonly PrefabGUID Chain_Breakable_Elris_Table_02 = new PrefabGUID(174304727); public static readonly PrefabGUID Chain_Breakable_Elris_Table_03 = new PrefabGUID(1649446261); public static readonly PrefabGUID Chain_Breakable_FineBed_01 = new PrefabGUID(1529680785); public static readonly PrefabGUID Chain_Breakable_FineBedTable01 = new PrefabGUID(208967005); public static readonly PrefabGUID Chain_Breakable_FineChair_01 = new PrefabGUID(-1547185920); public static readonly PrefabGUID Chain_Breakable_FineTable_01 = new PrefabGUID(-1193358597); public static readonly PrefabGUID Chain_Breakable_FineTable_Vineyard01 = new PrefabGUID(-263695812); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemyboard01 = new PrefabGUID(-1765882329); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemytable01 = new PrefabGUID(1468923650); public static readonly PrefabGUID Chain_Breakable_Gazebo_Alchemytable02 = new PrefabGUID(1652323837); public static readonly PrefabGUID Chain_Breakable_GhostHouseBed_01 = new PrefabGUID(-782303328); public static readonly PrefabGUID Chain_Breakable_GhostHouseChair01 = new PrefabGUID(-1045768484); public static readonly PrefabGUID Chain_Breakable_GhostHouseChair02 = new PrefabGUID(-49194869); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_01 = new PrefabGUID(-691238222); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_02 = new PrefabGUID(-811640246); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_03 = new PrefabGUID(-409712031); public static readonly PrefabGUID Chain_Breakable_GhostHouseTable_04 = new PrefabGUID(-1520427232); public static readonly PrefabGUID Chain_Breakable_HousePlant01_01 = new PrefabGUID(673489157); public static readonly PrefabGUID Chain_Breakable_HousePlant01_02 = new PrefabGUID(1661316254); public static readonly PrefabGUID Chain_Breakable_HousePlant01_03 = new PrefabGUID(-251278318); public static readonly PrefabGUID Chain_Breakable_HousePlant01_04 = new PrefabGUID(2070202121); public static readonly PrefabGUID Chain_Breakable_HousePlant02_01 = new PrefabGUID(1577569052); public static readonly PrefabGUID Chain_Breakable_HousePlant02_02 = new PrefabGUID(-499554065); public static readonly PrefabGUID Chain_Breakable_HousePlant02_03 = new PrefabGUID(1950457276); public static readonly PrefabGUID Chain_Breakable_HousePlant03_01 = new PrefabGUID(996616487); public static readonly PrefabGUID Chain_Breakable_HousePlant03_02 = new PrefabGUID(766285732); public static readonly PrefabGUID Chain_Breakable_HousePlant03_03 = new PrefabGUID(535012786); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_01 = new PrefabGUID(496248248); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_02 = new PrefabGUID(1614813475); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_03 = new PrefabGUID(1603241778); public static readonly PrefabGUID Chain_Breakable_MilitiaTableVar_03_InteractionIdle = new PrefabGUID(-509196075); public static readonly PrefabGUID Chain_Breakable_Mine_BoxDynamite_01 = new PrefabGUID(-67724610); public static readonly PrefabGUID Chain_Breakable_Pedestal_Candle_01 = new PrefabGUID(-255250731); public static readonly PrefabGUID Chain_Breakable_Pedestal_Lamp01 = new PrefabGUID(-340138914); public static readonly PrefabGUID Chain_Breakable_Pedestal_Plant_01 = new PrefabGUID(496233560); public static readonly PrefabGUID Chain_Breakable_Rustic_Table_01 = new PrefabGUID(23191766); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_01 = new PrefabGUID(-61279519); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_02 = new PrefabGUID(1847273354); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_03 = new PrefabGUID(1635007514); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_04 = new PrefabGUID(-1073111350); public static readonly PrefabGUID Chain_Breakable_Sign_Snow_05 = new PrefabGUID(-1855997157); public static readonly PrefabGUID Chain_Breakable_Sign01 = new PrefabGUID(1855105912); public static readonly PrefabGUID Chain_Breakable_Sign02 = new PrefabGUID(898813458); public static readonly PrefabGUID Chain_Breakable_Sign03 = new PrefabGUID(1245468417); public static readonly PrefabGUID Chain_Breakable_Sign04 = new PrefabGUID(-1358113854); public static readonly PrefabGUID Chain_Breakable_Sign05 = new PrefabGUID(-1867054714); public static readonly PrefabGUID Chain_Breakable_SilverMine_BookPedestal01 = new PrefabGUID(-423600667); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneBench01 = new PrefabGUID(435089707); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneBench02 = new PrefabGUID(613011902); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneTable01 = new PrefabGUID(-403913167); public static readonly PrefabGUID Chain_Breakable_SilverMine_StoneTable02 = new PrefabGUID(344188467); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenBed_01 = new PrefabGUID(-79718449); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenChair_01 = new PrefabGUID(1998899655); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenChair_02 = new PrefabGUID(-1346953307); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_01 = new PrefabGUID(-2128537368); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_02 = new PrefabGUID(-755979755); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_03 = new PrefabGUID(-1724718560); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_04 = new PrefabGUID(1764703016); public static readonly PrefabGUID Chain_Breakable_SimpleWoodenTable_05 = new PrefabGUID(988244965); public static readonly PrefabGUID Chain_Breakable_SlumBed_01 = new PrefabGUID(-1891872708); public static readonly PrefabGUID Chain_Breakable_SlumBedTable01 = new PrefabGUID(1473084893); public static readonly PrefabGUID Chain_Breakable_SlumChair_01 = new PrefabGUID(1181457876); public static readonly PrefabGUID Chain_Breakable_StoneBench_01 = new PrefabGUID(527562299); public static readonly PrefabGUID Chain_Breakable_StoneBench_01_snow = new PrefabGUID(-1829456676); public static readonly PrefabGUID Chain_Breakable_TarBucket01 = new PrefabGUID(584948261); public static readonly PrefabGUID Chain_Breakable_TarBucket02 = new PrefabGUID(595365365); public static readonly PrefabGUID Chain_Breakable_TarBucket03 = new PrefabGUID(-1260877979); public static readonly PrefabGUID Chain_Breakable_Tomb_01 = new PrefabGUID(1577515274); public static readonly PrefabGUID Chain_Breakable_Tomb_02 = new PrefabGUID(539451813); public static readonly PrefabGUID Chain_Breakable_Tomb_03 = new PrefabGUID(-1530780550); public static readonly PrefabGUID Chain_Breakable_Tomb_04 = new PrefabGUID(-971265702); public static readonly PrefabGUID Chain_Breakable_Tomb_05 = new PrefabGUID(1412387206); public static readonly PrefabGUID Chain_Breakable_Tomb_06 = new PrefabGUID(1174706971); public static readonly PrefabGUID Chain_Breakable_Tomb_07 = new PrefabGUID(-1960103114); public static readonly PrefabGUID Chain_Breakable_Tomb_08 = new PrefabGUID(-1625967525); public static readonly PrefabGUID Chain_Breakable_TombBig_01 = new PrefabGUID(-1197145030); public static readonly PrefabGUID Chain_Breakable_TombBig_02 = new PrefabGUID(-1980880133); public static readonly PrefabGUID Chain_Breakable_TombBig_03 = new PrefabGUID(-1055053138); public static readonly PrefabGUID Chain_Breakable_Village_Candleholder01 = new PrefabGUID(-329304675); public static readonly PrefabGUID Chain_Breakable_Vineyard_Table01 = new PrefabGUID(-1467863030); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard01 = new PrefabGUID(382626606); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard02 = new PrefabGUID(1222030386); public static readonly PrefabGUID Chain_CastleRuins_Entrance_Standard03 = new PrefabGUID(632013137); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken01 = new PrefabGUID(776819940); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken02 = new PrefabGUID(-422762123); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken03 = new PrefabGUID(-1932973691); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Broken04 = new PrefabGUID(765324751); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard01 = new PrefabGUID(1808834603); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard02 = new PrefabGUID(502397696); public static readonly PrefabGUID Chain_CastleRuins_Pillar_Standard03 = new PrefabGUID(1232631258); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard01 = new PrefabGUID(15649162); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard02 = new PrefabGUID(-1398101744); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard03 = new PrefabGUID(-407024883); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard04 = new PrefabGUID(-1910764055); public static readonly PrefabGUID Chain_CastleRuins_Wall_Standard05 = new PrefabGUID(-1654610763); public static readonly PrefabGUID Chain_Catacomb_Brazier01 = new PrefabGUID(-236398713); public static readonly PrefabGUID Chain_Church_Fence_01 = new PrefabGUID(-52762278); public static readonly PrefabGUID Chain_Church_Fence_02 = new PrefabGUID(-753913317); public static readonly PrefabGUID Chain_Church_Fence_03 = new PrefabGUID(2122259209); public static readonly PrefabGUID Chain_Church_Podium_01 = new PrefabGUID(-1732213950); public static readonly PrefabGUID Chain_ChurchBench_01 = new PrefabGUID(1969340824); public static readonly PrefabGUID Chain_ChurchOfTheDamned_AltarBreakable01 = new PrefabGUID(-255525678); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable01 = new PrefabGUID(656788019); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable01_PurpleVar = new PrefabGUID(1169809830); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable02 = new PrefabGUID(-980047108); public static readonly PrefabGUID Chain_ChurchOfTheDamned_Brazier_SmallBreakable03 = new PrefabGUID(21003280); public static readonly PrefabGUID Chain_ChurchOfTheDamned_DecoPillarBreakable01 = new PrefabGUID(2067871353); public static readonly PrefabGUID Chain_ChurchOfTheDamned_DecoPillarBreakable02 = new PrefabGUID(-174194608); public static readonly PrefabGUID Chain_Container_Bookshelf_01 = new PrefabGUID(1562288832); public static readonly PrefabGUID Chain_Container_Cabinet_01 = new PrefabGUID(-801303222); public static readonly PrefabGUID Chain_Container_Church_Cupboard_01 = new PrefabGUID(1506331618); public static readonly PrefabGUID Chain_Container_FineDrawers_01 = new PrefabGUID(-749573495); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_01 = new PrefabGUID(142311341); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_02 = new PrefabGUID(689099990); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_03 = new PrefabGUID(1088594853); public static readonly PrefabGUID Chain_Container_GhostHouse_Drawers_04 = new PrefabGUID(-2130119230); public static readonly PrefabGUID Chain_Container_GloomRot_BookCase01 = new PrefabGUID(1318217814); public static readonly PrefabGUID Chain_Container_GloomRot_BookCase02 = new PrefabGUID(1967085292); public static readonly PrefabGUID Chain_Container_GloomRot_Cabinet01 = new PrefabGUID(-1393228723); public static readonly PrefabGUID Chain_Container_GloomRot_Cabinet02 = new PrefabGUID(-476799593); public static readonly PrefabGUID Chain_Container_GloomRot_Desk01 = new PrefabGUID(887141740); public static readonly PrefabGUID Chain_Container_GrapeStompbarrel01 = new PrefabGUID(-738342833); public static readonly PrefabGUID Chain_Container_GrapeStompbarrel02 = new PrefabGUID(865731392); public static readonly PrefabGUID Chain_Container_Sarcofag_01 = new PrefabGUID(-1955787132); public static readonly PrefabGUID Chain_Container_SimpleDrawers_01 = new PrefabGUID(-819738668); public static readonly PrefabGUID Chain_Container_SimpleDrawers_02 = new PrefabGUID(453886744); public static readonly PrefabGUID Chain_Container_SimpleDrawers_03 = new PrefabGUID(-2033826624); public static readonly PrefabGUID Chain_Container_SimpleDrawers_04 = new PrefabGUID(-1535257064); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Big01 = new PrefabGUID(-1248485165); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Big02 = new PrefabGUID(739038704); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small01 = new PrefabGUID(-186256418); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small02 = new PrefabGUID(207993714); public static readonly PrefabGUID Chain_Container_Strongblade_AlchemyLab_Shelf_Small03 = new PrefabGUID(404339207); public static readonly PrefabGUID Chain_Container_Strongblade_Shelf_Small01 = new PrefabGUID(1688101334); public static readonly PrefabGUID Chain_Container_Strongblade_Shelf_Small02 = new PrefabGUID(-672584974); public static readonly PrefabGUID Chain_Container_WorldChest_Epic_01 = new PrefabGUID(-1374682671); public static readonly PrefabGUID Chain_Container_WorldChest_Iron_01 = new PrefabGUID(689881405); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_01 = new PrefabGUID(1030529353); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_GloomRot_01 = new PrefabGUID(-1435475951); public static readonly PrefabGUID Chain_Container_WorldChest_Simple_SludgePools_01 = new PrefabGUID(1861589024); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfThin_01 = new PrefabGUID(1938683324); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfThin_02 = new PrefabGUID(1235256591); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_01 = new PrefabGUID(-1039578808); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_02 = new PrefabGUID(1007410078); public static readonly PrefabGUID Chain_Containter_Rustic_ShelfWide_03 = new PrefabGUID(1848299223); public static readonly PrefabGUID Chain_Crate_01 = new PrefabGUID(-1342794667); public static readonly PrefabGUID Chain_Crate_02 = new PrefabGUID(1405952787); public static readonly PrefabGUID Chain_Crate_Cluster_01 = new PrefabGUID(-1897098794); public static readonly PrefabGUID Chain_Crate_Cluster_02 = new PrefabGUID(-525495546); public static readonly PrefabGUID Chain_Crate_Large_01 = new PrefabGUID(-1273737741); public static readonly PrefabGUID Chain_Crate_Large_Snow_01 = new PrefabGUID(-1957818680); public static readonly PrefabGUID Chain_Crate_Oak_01 = new PrefabGUID(-749591133); public static readonly PrefabGUID Chain_Crate_Oak_02 = new PrefabGUID(2120683808); public static readonly PrefabGUID Chain_Crate_Oak_Large_01 = new PrefabGUID(-1055001271); public static readonly PrefabGUID Chain_Crate_Oak_Large_02 = new PrefabGUID(405563821); public static readonly PrefabGUID Chain_Crate_Snow_01 = new PrefabGUID(-309421649); public static readonly PrefabGUID Chain_Crate_Snow_02 = new PrefabGUID(328231343); public static readonly PrefabGUID Chain_CursedTree_01 = new PrefabGUID(868646793); public static readonly PrefabGUID Chain_CursedTree_02 = new PrefabGUID(36975993); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T01 = new PrefabGUID(862237633); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T02 = new PrefabGUID(1090785612); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T03 = new PrefabGUID(-1339068604); public static readonly PrefabGUID Chain_Debug_EquipmentChest_T04 = new PrefabGUID(502634829); public static readonly PrefabGUID Chain_Debug_SpellKitChest_TXX = new PrefabGUID(2060805957); public static readonly PrefabGUID Chain_Debug_UserTestChest_T01 = new PrefabGUID(-1235275444); public static readonly PrefabGUID Chain_Debug_UserTestChest_T02 = new PrefabGUID(204483749); public static readonly PrefabGUID Chain_Debug_UserTestChest_T04 = new PrefabGUID(-1677508299); public static readonly PrefabGUID Chain_Debug_UserTestChest_T06 = new PrefabGUID(1060309486); public static readonly PrefabGUID Chain_Door_FineIronFenceGate_01 = new PrefabGUID(-199874841); public static readonly PrefabGUID Chain_Door_FineIronFenceGate_02 = new PrefabGUID(580514731); public static readonly PrefabGUID Chain_Door_IronFenceGate_01 = new PrefabGUID(54278780); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Clean01 = new PrefabGUID(887538350); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Clean01_Fade = new PrefabGUID(2120482575); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin01 = new PrefabGUID(1609254660); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-1686887539); public static readonly PrefabGUID Chain_DraculasCastle_Banner_Ruin03 = new PrefabGUID(1713226750); public static readonly PrefabGUID Chain_EH_Mine_BoxDynamite_01 = new PrefabGUID(-2019545186); public static readonly PrefabGUID Chain_Elris_CookingFireplace01 = new PrefabGUID(-38224028); public static readonly PrefabGUID Chain_ElrisFlag01 = new PrefabGUID(198402144); public static readonly PrefabGUID Chain_ElrisFlag02 = new PrefabGUID(-496501402); public static readonly PrefabGUID Chain_ElrisFlag03 = new PrefabGUID(822423359); public static readonly PrefabGUID Chain_ElrisMountain_Sled_01 = new PrefabGUID(-814052722); public static readonly PrefabGUID Chain_ElrisMountain_Sled_02 = new PrefabGUID(1476919638); public static readonly PrefabGUID Chain_ElrisMountain_Sled_03 = new PrefabGUID(1057124060); public static readonly PrefabGUID Chain_Emery01_Barrel01 = new PrefabGUID(5906677); public static readonly PrefabGUID Chain_Emery01_Barrel02 = new PrefabGUID(1903790313); public static readonly PrefabGUID Chain_EmptyObject_01 = new PrefabGUID(44385421); public static readonly PrefabGUID Chain_EmptyObject_Fish_01 = new PrefabGUID(2091546819); public static readonly PrefabGUID Chain_FarmRuin_Pillar01 = new PrefabGUID(-1686594934); public static readonly PrefabGUID Chain_FarmRuin_Pillar02 = new PrefabGUID(1007150817); public static readonly PrefabGUID Chain_FarmRuin_Pillar03 = new PrefabGUID(-311424051); public static readonly PrefabGUID Chain_FarmRuin_Pillar04 = new PrefabGUID(-848181449); public static readonly PrefabGUID Chain_FarmRuin_Pillar05 = new PrefabGUID(127959259); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(-1620647793); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(-1772575907); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar03 = new PrefabGUID(-1557593452); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Pillar04 = new PrefabGUID(-192221093); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal01 = new PrefabGUID(1327100637); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal02 = new PrefabGUID(304497398); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal03 = new PrefabGUID(-1869983618); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall_Diagonal04 = new PrefabGUID(-1250592472); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall01 = new PrefabGUID(-568579474); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall02 = new PrefabGUID(701028722); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall03 = new PrefabGUID(1218245186); public static readonly PrefabGUID Chain_FarmRuin_SilverHills_Wall04 = new PrefabGUID(-1918053009); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal01 = new PrefabGUID(-1184748550); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal02 = new PrefabGUID(-617553964); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal03 = new PrefabGUID(-799241750); public static readonly PrefabGUID Chain_FarmRuin_Wall_Diagonal04 = new PrefabGUID(1545273691); public static readonly PrefabGUID Chain_FarmRuin_Wall01 = new PrefabGUID(-994267128); public static readonly PrefabGUID Chain_FarmRuin_Wall02 = new PrefabGUID(89760366); public static readonly PrefabGUID Chain_FarmRuin_Wall03 = new PrefabGUID(1583661556); public static readonly PrefabGUID Chain_FarmRuin_Wall04 = new PrefabGUID(1849670702); public static readonly PrefabGUID Chain_FarmRuin_Wall05 = new PrefabGUID(175788063); public static readonly PrefabGUID Chain_FarmRuin_Wall06 = new PrefabGUID(908169330); public static readonly PrefabGUID Chain_FarmRuin_Wall07 = new PrefabGUID(-1867924683); public static readonly PrefabGUID Chain_FarmRuin_Wall08 = new PrefabGUID(865046236); public static readonly PrefabGUID Chain_FarmRuin_Wall09 = new PrefabGUID(-1751703731); public static readonly PrefabGUID Chain_Fence_Church_WoodenFence_01 = new PrefabGUID(1638873405); public static readonly PrefabGUID Chain_Fence_Elris_01 = new PrefabGUID(-1434459311); public static readonly PrefabGUID Chain_Fence_Elris_02 = new PrefabGUID(1289106850); public static readonly PrefabGUID Chain_Fence_Elris_03 = new PrefabGUID(-840562311); public static readonly PrefabGUID Chain_Fence_Elris_Diagonal_01 = new PrefabGUID(864753188); public static readonly PrefabGUID Chain_Fence_Elris_Diagonal_02 = new PrefabGUID(1643735950); public static readonly PrefabGUID Chain_Fence_FineIronFence_02 = new PrefabGUID(517305299); public static readonly PrefabGUID Chain_Fence_Gloomrot_01 = new PrefabGUID(-935442225); public static readonly PrefabGUID Chain_Fence_Gloomrot_02 = new PrefabGUID(-967000533); public static readonly PrefabGUID Chain_Fence_Gloomrot_03 = new PrefabGUID(-1338674971); public static readonly PrefabGUID Chain_Fence_Gloomrot_03_RATSONLY = new PrefabGUID(-308319429); public static readonly PrefabGUID Chain_Fence_Gloomrot_04 = new PrefabGUID(1299788485); public static readonly PrefabGUID Chain_Fence_Gloomrot_04_RATSONLY = new PrefabGUID(1785272779); public static readonly PrefabGUID Chain_Fence_Gloomrot_Barbedwire_End01 = new PrefabGUID(-350057518); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_01 = new PrefabGUID(1957667280); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_02 = new PrefabGUID(-1888623482); public static readonly PrefabGUID Chain_Fence_Gloomrot_Diagonal_02_RATSONLY = new PrefabGUID(2122229819); public static readonly PrefabGUID Chain_Fence_Gloomrot_End01 = new PrefabGUID(-595091926); public static readonly PrefabGUID Chain_Fence_Gloomrot_End02 = new PrefabGUID(-455661433); public static readonly PrefabGUID Chain_Fence_Gloomrot_End02_RATSONLY = new PrefabGUID(-624662733); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate01 = new PrefabGUID(-313311024); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate02 = new PrefabGUID(-2117308193); public static readonly PrefabGUID Chain_Fence_Gloomrot_Gate02_RATSONLY = new PrefabGUID(225387033); public static readonly PrefabGUID Chain_Fence_IronFence_01 = new PrefabGUID(-957213046); public static readonly PrefabGUID Chain_Fence_ScantyStick_01 = new PrefabGUID(1320736819); public static readonly PrefabGUID Chain_Fence_ScantyStick_02 = new PrefabGUID(-420962256); public static readonly PrefabGUID Chain_Fence_ScantyStick_03 = new PrefabGUID(-723706508); public static readonly PrefabGUID Chain_Fence_ScantyStick_Diagonal_01 = new PrefabGUID(-297404801); public static readonly PrefabGUID Chain_Fence_ScantyStick_Diagonal_02 = new PrefabGUID(-1929858734); public static readonly PrefabGUID Chain_Fence_ScantyStick_End01 = new PrefabGUID(-681683189); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_01 = new PrefabGUID(1536139530); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_02 = new PrefabGUID(122362845); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_03 = new PrefabGUID(758634256); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_04 = new PrefabGUID(491805387); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_05 = new PrefabGUID(695561439); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_01 = new PrefabGUID(-1049091737); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_02 = new PrefabGUID(-524038109); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Diagonal_03 = new PrefabGUID(1097300870); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_Gate_01 = new PrefabGUID(-1910043055); public static readonly PrefabGUID Chain_Fence_WoodenPlanksLow_GateEntrance_01 = new PrefabGUID(-143332382); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_01 = new PrefabGUID(-97337688); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_02 = new PrefabGUID(-1054728599); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_03 = new PrefabGUID(-1012298496); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_Diagonal_01 = new PrefabGUID(-466491618); public static readonly PrefabGUID Chain_Fence_WoodenPlanksTall_Diagonal_02 = new PrefabGUID(-953823630); public static readonly PrefabGUID Chain_FencePole_Church_WoodenFence_01 = new PrefabGUID(2107332906); public static readonly PrefabGUID Chain_FencePole_FineIronFencePole_02 = new PrefabGUID(276427843); public static readonly PrefabGUID Chain_FencePole_IronFencePole_01 = new PrefabGUID(-994356099); public static readonly PrefabGUID Chain_FineLampPost_01 = new PrefabGUID(1823825333); public static readonly PrefabGUID Chain_FineLampPost_02 = new PrefabGUID(1448824815); public static readonly PrefabGUID Chain_FineLampPost_03 = new PrefabGUID(785072193); public static readonly PrefabGUID Chain_FineStoneBench_01 = new PrefabGUID(-1461234194); public static readonly PrefabGUID Chain_FineTomb_01 = new PrefabGUID(-744554372); public static readonly PrefabGUID Chain_FineTomb_02 = new PrefabGUID(1214021842); public static readonly PrefabGUID Chain_FineTomb_03 = new PrefabGUID(-1339328617); public static readonly PrefabGUID Chain_FineTomb_04 = new PrefabGUID(-992697631); public static readonly PrefabGUID Chain_FineTomb_05 = new PrefabGUID(-475943840); public static readonly PrefabGUID Chain_FineTomb_06 = new PrefabGUID(-1619272945); public static readonly PrefabGUID Chain_FineTomb_07 = new PrefabGUID(1588717774); public static readonly PrefabGUID Chain_FineTomb_08 = new PrefabGUID(-959854182); public static readonly PrefabGUID Chain_FineTombBig_01 = new PrefabGUID(683820962); public static readonly PrefabGUID Chain_FineTombBig_02 = new PrefabGUID(1078202207); public static readonly PrefabGUID Chain_FineTombBig_03 = new PrefabGUID(-196378282); public static readonly PrefabGUID Chain_ForgeMaster_Barrel01 = new PrefabGUID(-764211517); public static readonly PrefabGUID Chain_ForgeMaster_Barrel02 = new PrefabGUID(1545687526); public static readonly PrefabGUID Chain_ForgeMaster_Weaponrack01 = new PrefabGUID(319620170); public static readonly PrefabGUID Chain_FortressOfLight_Railing_01 = new PrefabGUID(810235340); public static readonly PrefabGUID Chain_FortressOfLight_Railing_01_Flipped = new PrefabGUID(-1397846361); public static readonly PrefabGUID Chain_FortressOfLight_Railing_02 = new PrefabGUID(31978919); public static readonly PrefabGUID Chain_FortressOfLight_Railing_03 = new PrefabGUID(-1270441628); public static readonly PrefabGUID Chain_FortressOfLight_Railing_03_Flipped = new PrefabGUID(999408311); public static readonly PrefabGUID Chain_FortressOfLight_Railing_Pillar_01 = new PrefabGUID(-2101500574); public static readonly PrefabGUID Chain_GameplayProp_ArmorRack = new PrefabGUID(-1679466087); public static readonly PrefabGUID Chain_GameplayProp_CurseWisp = new PrefabGUID(1785914210); public static readonly PrefabGUID Chain_GameplayProp_Dracula_Pillar = new PrefabGUID(793146619); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Door = new PrefabGUID(1855941069); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_EnergyBeam = new PrefabGUID(1330108515); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Gate = new PrefabGUID(-676465616); public static readonly PrefabGUID Chain_GameplayProp_TheMonster_Generator = new PrefabGUID(-1387103544); public static readonly PrefabGUID Chain_GameplayProp_WerewolfChieftain_FarmerCage = new PrefabGUID(286443738); public static readonly PrefabGUID Chain_GhostCrate_01 = new PrefabGUID(1252359913); public static readonly PrefabGUID Chain_GhostCrate_02 = new PrefabGUID(26740790); public static readonly PrefabGUID Chain_GhostCrate_03 = new PrefabGUID(-419896754); public static readonly PrefabGUID Chain_GhostCrate_04 = new PrefabGUID(1233234274); public static readonly PrefabGUID Chain_Glassblower_Barrel01 = new PrefabGUID(573655066); public static readonly PrefabGUID Chain_Glassblower_Barrel02 = new PrefabGUID(406854563); public static readonly PrefabGUID Chain_Glassblower_Barrel03 = new PrefabGUID(462219111); public static readonly PrefabGUID Chain_Glassblower_Bucket01 = new PrefabGUID(-674939156); public static readonly PrefabGUID Chain_Glassblower_Bucket02 = new PrefabGUID(2138199318); public static readonly PrefabGUID Chain_Glassblower_Crate01 = new PrefabGUID(-2074795030); public static readonly PrefabGUID Chain_Glassblower_Crate02 = new PrefabGUID(-336759989); public static readonly PrefabGUID Chain_Glassblower_Crate03 = new PrefabGUID(363832110); public static readonly PrefabGUID Chain_Glassblower_Crate04 = new PrefabGUID(1597868163); public static readonly PrefabGUID Chain_Glassblower_Minecart01 = new PrefabGUID(-1744926783); public static readonly PrefabGUID Chain_Glassblower_Minecart02 = new PrefabGUID(1020203495); public static readonly PrefabGUID Chain_Glassblower_Table01 = new PrefabGUID(487331684); public static readonly PrefabGUID Chain_Glassblower_Table02 = new PrefabGUID(-2062953569); public static readonly PrefabGUID Chain_Glassblower_Table03 = new PrefabGUID(822185540); public static readonly PrefabGUID Chain_Glassblower_Table04 = new PrefabGUID(1266010233); public static readonly PrefabGUID Chain_Glassblower_Table05 = new PrefabGUID(1280358501); public static readonly PrefabGUID Chain_Glassblower_Table06 = new PrefabGUID(2073604385); public static readonly PrefabGUID Chain_Glassblower_Table07 = new PrefabGUID(1513383427); public static readonly PrefabGUID Chain_Glassblower_Toolstand01 = new PrefabGUID(1208169300); public static readonly PrefabGUID Chain_Glassblower_Toolstand02 = new PrefabGUID(1194137959); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow01 = new PrefabGUID(-725885270); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow02 = new PrefabGUID(319567471); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow03 = new PrefabGUID(-1523483681); public static readonly PrefabGUID Chain_Glassblower_Wheelbarrow04 = new PrefabGUID(-574183546); public static readonly PrefabGUID Chain_GloomRot_Cage01 = new PrefabGUID(1979232218); public static readonly PrefabGUID Chain_GloomRot_Cage02 = new PrefabGUID(1879046433); public static readonly PrefabGUID Chain_GloomRot_Cage03 = new PrefabGUID(1371219862); public static readonly PrefabGUID Chain_GloomRot_Cage04 = new PrefabGUID(2071728638); public static readonly PrefabGUID Chain_GloomRot_Chair01 = new PrefabGUID(1740882208); public static readonly PrefabGUID Chain_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(-196671199); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-5244148); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(1541138182); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf01 = new PrefabGUID(-906833536); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf02 = new PrefabGUID(2030386659); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf03 = new PrefabGUID(-1580284267); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Shelf04 = new PrefabGUID(152314015); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table01 = new PrefabGUID(1392364543); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table02 = new PrefabGUID(-1151508793); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Table03 = new PrefabGUID(268254029); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-394124820); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-287116189); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(-1519010368); public static readonly PrefabGUID Chain_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(328857375); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01 = new PrefabGUID(916098211); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_01 = new PrefabGUID(-1757768215); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_02 = new PrefabGUID(148052929); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley01_03 = new PrefabGUID(-676235627); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02 = new PrefabGUID(1482197669); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_01 = new PrefabGUID(-1224660047); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_02 = new PrefabGUID(-1237821374); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_03 = new PrefabGUID(-1844563963); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_04 = new PrefabGUID(-396736557); public static readonly PrefabGUID Chain_Gloomrot_Coilfactory_Trolley02_05 = new PrefabGUID(-1028771858); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp01 = new PrefabGUID(554013862); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp02 = new PrefabGUID(-953416906); public static readonly PrefabGUID Chain_Gloomrot_Coppermine_Lamp03 = new PrefabGUID(-1830498719); public static readonly PrefabGUID Chain_Gloomrot_Farm_Lamp01 = new PrefabGUID(-1289682054); public static readonly PrefabGUID Chain_Gloomrot_Farm_Tank01 = new PrefabGUID(2002587166); public static readonly PrefabGUID Chain_Gloomrot_Farm01 = new PrefabGUID(-284637710); public static readonly PrefabGUID Chain_Gloomrot_Farm02 = new PrefabGUID(-1891143319); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(561952084); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood01 = new PrefabGUID(-144288563); public static readonly PrefabGUID Chain_GloomRot_Fence_Wood02 = new PrefabGUID(1493266257); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_01 = new PrefabGUID(1906383029); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_01_FireOn = new PrefabGUID(1994468199); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_02 = new PrefabGUID(-1286186694); public static readonly PrefabGUID Chain_Gloomrot_Fireplace_02_FireOn = new PrefabGUID(1705114843); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair_Body01 = new PrefabGUID(354061306); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair_Body02 = new PrefabGUID(1065863980); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair01 = new PrefabGUID(-674334998); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair02 = new PrefabGUID(238702657); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Chair03 = new PrefabGUID(1461841852); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Drape01 = new PrefabGUID(1106205902); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Drape02 = new PrefabGUID(-1895706519); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table01 = new PrefabGUID(121882351); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table02 = new PrefabGUID(-941545914); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table03 = new PrefabGUID(1231776975); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table04 = new PrefabGUID(-2134846338); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table05 = new PrefabGUID(-2023226428); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table06 = new PrefabGUID(-190892558); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table07 = new PrefabGUID(-48436509); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table08 = new PrefabGUID(-1595709900); public static readonly PrefabGUID Chain_GloomRot_Laboratory_Table09 = new PrefabGUID(498328514); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(-1558086688); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(1056034242); public static readonly PrefabGUID Chain_GloomRot_Laboratory_WoodenShelf03 = new PrefabGUID(913073644); public static readonly PrefabGUID Chain_GloomRot_LampPost01 = new PrefabGUID(1065791684); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked01 = new PrefabGUID(-1447472156); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked01_01 = new PrefabGUID(346735858); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked02 = new PrefabGUID(-303508853); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked02_01 = new PrefabGUID(1761782281); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked03 = new PrefabGUID(-2038219295); public static readonly PrefabGUID Chain_Gloomrot_Pipes_Stacked03_01 = new PrefabGUID(694997263); public static readonly PrefabGUID Chain_GloomRot_Screen01 = new PrefabGUID(-1221639364); public static readonly PrefabGUID Chain_GloomRot_Screen02 = new PrefabGUID(-1587314505); public static readonly PrefabGUID Chain_Gloomrot_Sludgepool_Pipeholder01 = new PrefabGUID(1013839676); public static readonly PrefabGUID Chain_Gloomrot_Sludgepool_Workbench01 = new PrefabGUID(-1380428960); public static readonly PrefabGUID Chain_GloomRot_Table01 = new PrefabGUID(496228969); public static readonly PrefabGUID Chain_Gloomrot_TransistorBreakable01 = new PrefabGUID(-1854854044); public static readonly PrefabGUID Chain_Gloomrot_TransistorBreakable02 = new PrefabGUID(-189246740); public static readonly PrefabGUID Chain_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(350913317); public static readonly PrefabGUID Chain_GloomrotBarrel_01 = new PrefabGUID(-970928259); public static readonly PrefabGUID Chain_GloomrotBarrel_02 = new PrefabGUID(-2081898020); public static readonly PrefabGUID Chain_GloomrotBarrel_03 = new PrefabGUID(314222732); public static readonly PrefabGUID Chain_GloomrotBarrel_04 = new PrefabGUID(-204602191); public static readonly PrefabGUID Chain_GloomrotBarrel_05 = new PrefabGUID(-2000488703); public static readonly PrefabGUID Chain_GloomrotBarrel_SludgePool_SPECIAL_01 = new PrefabGUID(-1338532491); public static readonly PrefabGUID Chain_GloomrotBarrel_SludgePool_SPECIAL_02 = new PrefabGUID(733688435); public static readonly PrefabGUID Chain_GloomrotCrate_01 = new PrefabGUID(-736336730); public static readonly PrefabGUID Chain_GloomrotCrate_02 = new PrefabGUID(-1856876389); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_01 = new PrefabGUID(-1730878026); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_02 = new PrefabGUID(-249008930); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_03 = new PrefabGUID(-1196452192); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_04 = new PrefabGUID(1124405267); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_05 = new PrefabGUID(2028144527); public static readonly PrefabGUID Chain_GloomrotCrate_Coilfactory_06 = new PrefabGUID(417133317); public static readonly PrefabGUID Chain_GloomrotCrateLarge_01 = new PrefabGUID(-1513070973); public static readonly PrefabGUID Chain_GloomrotCrateLarge_02 = new PrefabGUID(-514741711); public static readonly PrefabGUID Chain_GloomrotWoodenBarrel_01 = new PrefabGUID(1597172099); public static readonly PrefabGUID Chain_GloomrotWoodenBarrel_02 = new PrefabGUID(1537217201); public static readonly PrefabGUID Chain_Grave_01_Breakable = new PrefabGUID(1288024281); public static readonly PrefabGUID Chain_Grave_05_Breakable = new PrefabGUID(1601671408); public static readonly PrefabGUID Chain_Grave_06_Breakable = new PrefabGUID(302595855); public static readonly PrefabGUID Chain_Grave_Marker_02SmallBreakable = new PrefabGUID(319754625); public static readonly PrefabGUID Chain_Grave_Site_01_Breakable = new PrefabGUID(2080430853); public static readonly PrefabGUID Chain_GravePile_MicroPOI = new PrefabGUID(329005461); public static readonly PrefabGUID Chain_Gravestone_01_Breakable = new PrefabGUID(652032692); public static readonly PrefabGUID Chain_Gravestone_02_Breakable = new PrefabGUID(-1963697361); public static readonly PrefabGUID Chain_Gravestone_04_Breakable = new PrefabGUID(-1707442830); public static readonly PrefabGUID Chain_Gravestone_05_Breakable = new PrefabGUID(1029383676); public static readonly PrefabGUID Chain_Gravestone_07_Breakable = new PrefabGUID(1634891509); public static readonly PrefabGUID Chain_Gravestone_08_Breakable = new PrefabGUID(275300414); public static readonly PrefabGUID Chain_Gravestone_09_Breakable = new PrefabGUID(155217101); public static readonly PrefabGUID Chain_Gravestone_10_Breakable = new PrefabGUID(1784807806); public static readonly PrefabGUID Chain_Gravestone_11_Breakable = new PrefabGUID(1479570110); public static readonly PrefabGUID Chain_Gravestone_12_Breakable = new PrefabGUID(966399038); public static readonly PrefabGUID Chain_Gravestone_18_Breakable = new PrefabGUID(39137843); public static readonly PrefabGUID Chain_Gravestone_34_Breakable = new PrefabGUID(187343157); public static readonly PrefabGUID Chain_Horsetrack_ArcheryTarget01 = new PrefabGUID(487586181); public static readonly PrefabGUID Chain_Horsetrack_Fence01 = new PrefabGUID(-334433651); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag01 = new PrefabGUID(-283246800); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag02 = new PrefabGUID(-2142019490); public static readonly PrefabGUID Chain_Horsetrack_MilitiaFlag03 = new PrefabGUID(-1930955970); public static readonly PrefabGUID Chain_Horsetrack_Rack01 = new PrefabGUID(1994427943); public static readonly PrefabGUID Chain_Horsetrack_Rack02 = new PrefabGUID(-774711656); public static readonly PrefabGUID Chain_Horsetrack_TargetDummy01 = new PrefabGUID(-1756047695); public static readonly PrefabGUID Chain_Horsetrack_TargetRings01 = new PrefabGUID(1675094324); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock01 = new PrefabGUID(1635356381); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock02 = new PrefabGUID(-544345763); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock03 = new PrefabGUID(-1154000258); public static readonly PrefabGUID Chain_InbeddedFarmLand_GroundRock04 = new PrefabGUID(461984990); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock01 = new PrefabGUID(-328348028); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock02 = new PrefabGUID(-518527770); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock03 = new PrefabGUID(316257970); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock04 = new PrefabGUID(38845938); public static readonly PrefabGUID Chain_InbeddedQuarry_GroundRock05 = new PrefabGUID(890939678); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock01 = new PrefabGUID(-1390534304); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock02 = new PrefabGUID(-362977791); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock03 = new PrefabGUID(104232023); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock04 = new PrefabGUID(-187211405); public static readonly PrefabGUID Chain_InbeddedWilderness_GroundRock05 = new PrefabGUID(-1469767405); public static readonly PrefabGUID Chain_Laboratory_Chair_Leather_01 = new PrefabGUID(1142248316); public static readonly PrefabGUID Chain_Laboratory_Chair_Leather_02 = new PrefabGUID(109096776); public static readonly PrefabGUID Chain_Laboratory_ChalkBoard01 = new PrefabGUID(-1416980380); public static readonly PrefabGUID Chain_Laboratory_ChalkBoard02 = new PrefabGUID(1812298241); public static readonly PrefabGUID Chain_LampPost_01 = new PrefabGUID(-994732970); public static readonly PrefabGUID Chain_LampPost_02 = new PrefabGUID(2037933599); public static readonly PrefabGUID Chain_LampPost_03 = new PrefabGUID(2060161795); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_02 = new PrefabGUID(-1271129442); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_03 = new PrefabGUID(601923792); public static readonly PrefabGUID Chain_Lucie_PotionCabinet_03_NonArena = new PrefabGUID(1228157477); public static readonly PrefabGUID Chain_MageTower_BigDesk01 = new PrefabGUID(787154536); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big01 = new PrefabGUID(1913541656); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big01_WithCollision = new PrefabGUID(-672617270); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big02 = new PrefabGUID(-1084794846); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big02_WithCollision = new PrefabGUID(1344853413); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big03 = new PrefabGUID(1602417295); public static readonly PrefabGUID Chain_MageTower_Bookcase_Big03_WithCollision = new PrefabGUID(-1150655079); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small01 = new PrefabGUID(-1191729239); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small01_45deg = new PrefabGUID(550831519); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small02 = new PrefabGUID(-540898781); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small02_45deg = new PrefabGUID(464991355); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small03 = new PrefabGUID(-188375958); public static readonly PrefabGUID Chain_MageTower_Bookcase_Small03_45deg = new PrefabGUID(1720846585); public static readonly PrefabGUID Chain_MageTower_Bookpile01 = new PrefabGUID(230684639); public static readonly PrefabGUID Chain_MageTower_Bookpile02 = new PrefabGUID(1014878763); public static readonly PrefabGUID Chain_MageTower_Bookpile03 = new PrefabGUID(913134971); public static readonly PrefabGUID Chain_MageTower_CandleHolder01 = new PrefabGUID(-1934389657); public static readonly PrefabGUID Chain_MageTower_Chair01 = new PrefabGUID(809324128); public static readonly PrefabGUID Chain_MageTower_Divan01 = new PrefabGUID(2079445513); public static readonly PrefabGUID Chain_MageTower_Divan02 = new PrefabGUID(-711567015); public static readonly PrefabGUID Chain_MageTower_FlowerPot01 = new PrefabGUID(-1004610804); public static readonly PrefabGUID Chain_MageTower_FlowerPot02 = new PrefabGUID(1658555171); public static readonly PrefabGUID Chain_MageTower_Ladder01 = new PrefabGUID(-1758599042); public static readonly PrefabGUID Chain_MageTower_Ladder02 = new PrefabGUID(1416086767); public static readonly PrefabGUID Chain_MageTower_Ladder03 = new PrefabGUID(-322428312); public static readonly PrefabGUID Chain_MageTower_Lantern01 = new PrefabGUID(-1936024219); public static readonly PrefabGUID Chain_MageTower_Lantern02 = new PrefabGUID(576786972); public static readonly PrefabGUID Chain_MageTower_Prop_Pillar01 = new PrefabGUID(-632435428); public static readonly PrefabGUID Chain_MageTower_Prop_Pillar02 = new PrefabGUID(-905293941); public static readonly PrefabGUID Chain_MageTower_SmallDesk01 = new PrefabGUID(1037822422); public static readonly PrefabGUID Chain_MageTower_SmallDesk02 = new PrefabGUID(11471630); public static readonly PrefabGUID Chain_MageTower_SmallDesk03 = new PrefabGUID(1587267866); public static readonly PrefabGUID Chain_MageTower_SmallDesk04 = new PrefabGUID(-1542802095); public static readonly PrefabGUID Chain_MarketBarrel_01 = new PrefabGUID(-492915787); public static readonly PrefabGUID Chain_MarketBarrel_02 = new PrefabGUID(-804685958); public static readonly PrefabGUID Chain_MarketBarrel_03 = new PrefabGUID(-753538938); public static readonly PrefabGUID Chain_MarketBarrel_04 = new PrefabGUID(-229376678); public static readonly PrefabGUID Chain_MarketCrate_01 = new PrefabGUID(-1681169748); public static readonly PrefabGUID Chain_MarketCrate_02 = new PrefabGUID(-747836550); public static readonly PrefabGUID Chain_MarketCrate_03 = new PrefabGUID(-1965980324); public static readonly PrefabGUID Chain_MarketCrate_04 = new PrefabGUID(1886383947); public static readonly PrefabGUID Chain_MarketCrate_05 = new PrefabGUID(103504917); public static readonly PrefabGUID Chain_MidsummerPole01 = new PrefabGUID(1885468649); public static readonly PrefabGUID Chain_Militia_Barricade_01 = new PrefabGUID(-214544261); public static readonly PrefabGUID Chain_MilitiaCrate_01 = new PrefabGUID(1059111361); public static readonly PrefabGUID Chain_MilitiaCrate_02 = new PrefabGUID(-1664794345); public static readonly PrefabGUID Chain_MilitiaCrate_03 = new PrefabGUID(228446587); public static readonly PrefabGUID Chain_MilitiaCrate_04 = new PrefabGUID(1062000102); public static readonly PrefabGUID Chain_MilitiaCrate_Large_01 = new PrefabGUID(-760211544); public static readonly PrefabGUID Chain_MilitiaCrate_Large_02 = new PrefabGUID(1915188157); public static readonly PrefabGUID Chain_MilitiaFlag01 = new PrefabGUID(-1800250652); public static readonly PrefabGUID Chain_MilitiaFlag02 = new PrefabGUID(-706649618); public static readonly PrefabGUID Chain_MilitiaFlag03 = new PrefabGUID(1491920090); public static readonly PrefabGUID Chain_MilitiaFlag04 = new PrefabGUID(672399722); public static readonly PrefabGUID Chain_Mine_Fence01 = new PrefabGUID(1672569153); public static readonly PrefabGUID Chain_Mine_Fence02 = new PrefabGUID(-837846102); public static readonly PrefabGUID Chain_Mine_Fence03 = new PrefabGUID(1843492068); public static readonly PrefabGUID Chain_Mine_FenceDiagonal01 = new PrefabGUID(-1159104547); public static readonly PrefabGUID Chain_Mine_FenceDiagonal02 = new PrefabGUID(1082520500); public static readonly PrefabGUID Chain_Mine_FenceDiagonal03 = new PrefabGUID(1616415435); public static readonly PrefabGUID Chain_MineCart_01 = new PrefabGUID(993528779); public static readonly PrefabGUID Chain_MineCart_01_IdleInteraction = new PrefabGUID(319764669); public static readonly PrefabGUID Chain_MineCart_01_Iron = new PrefabGUID(1798198041); public static readonly PrefabGUID Chain_MineCart_01_Silver = new PrefabGUID(-1410685440); public static readonly PrefabGUID Chain_MineCartBroken_01 = new PrefabGUID(-91900076); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-93574745); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(134628963); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-1053329673); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1662553570); public static readonly PrefabGUID Chain_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(-2104884830); public static readonly PrefabGUID Chain_Noctem_AlchemyTable01 = new PrefabGUID(-1847113104); public static readonly PrefabGUID Chain_Noctem_AlchemyTable02 = new PrefabGUID(2085866978); public static readonly PrefabGUID Chain_Noctem_AlchemyTable03 = new PrefabGUID(468870065); public static readonly PrefabGUID Chain_Noctem_Banner01 = new PrefabGUID(328553239); public static readonly PrefabGUID Chain_Noctem_Barrel01 = new PrefabGUID(-133690050); public static readonly PrefabGUID Chain_Noctem_BloodTap01 = new PrefabGUID(1916571863); public static readonly PrefabGUID Chain_Noctem_Bonfire01 = new PrefabGUID(1498436132); public static readonly PrefabGUID Chain_Noctem_BossThrone01 = new PrefabGUID(741527788); public static readonly PrefabGUID Chain_Noctem_Cage01_Door01 = new PrefabGUID(934746233); public static readonly PrefabGUID Chain_Noctem_Candlestand01 = new PrefabGUID(-638647396); public static readonly PrefabGUID Chain_Noctem_Catacomb_Brazier01 = new PrefabGUID(-729505182); public static readonly PrefabGUID Chain_Noctem_Cauldron01 = new PrefabGUID(-710840114); public static readonly PrefabGUID Chain_Noctem_Chair01 = new PrefabGUID(1094017834); public static readonly PrefabGUID Chain_Noctem_Chair02 = new PrefabGUID(-1978655006); public static readonly PrefabGUID Chain_Noctem_Crate01 = new PrefabGUID(411233630); public static readonly PrefabGUID Chain_Noctem_CrateLarge01 = new PrefabGUID(2101736883); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier_Ruin01 = new PrefabGUID(1302034786); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier_Ruin02 = new PrefabGUID(-776103083); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Brazier01 = new PrefabGUID(-812667586); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin01 = new PrefabGUID(1700120366); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin02 = new PrefabGUID(-1178850320); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase_Ruin03 = new PrefabGUID(-1725855400); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(-871923920); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase01_Fade = new PrefabGUID(-1931956726); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_PodiumVase02 = new PrefabGUID(-857560812); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin01 = new PrefabGUID(444648116); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin01_lying = new PrefabGUID(-879952978); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin02 = new PrefabGUID(-691156224); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin03 = new PrefabGUID(-347688493); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase_Ruin04 = new PrefabGUID(1050987523); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase01 = new PrefabGUID(-1161868851); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase01_Fade = new PrefabGUID(-1157655624); public static readonly PrefabGUID Chain_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-1566277348); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Bench01 = new PrefabGUID(-1088825944); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn01 = new PrefabGUID(-1176131572); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn02 = new PrefabGUID(1055905669); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn03 = new PrefabGUID(-643947275); public static readonly PrefabGUID Chain_Noctem_DraculaGarden_Urn04 = new PrefabGUID(774579370); public static readonly PrefabGUID Chain_Noctem_DraculasDemise_Barricade01 = new PrefabGUID(-536324068); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(-1726707582); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(-1328951486); public static readonly PrefabGUID Chain_Noctem_DraculaYard_ImpalingSpikes02_03 = new PrefabGUID(2000432368); public static readonly PrefabGUID Chain_Noctem_HangingTorch01 = new PrefabGUID(69016263); public static readonly PrefabGUID Chain_Noctem_IronMaiden01 = new PrefabGUID(1640947532); public static readonly PrefabGUID Chain_Noctem_IronMaiden02 = new PrefabGUID(-1260160545); public static readonly PrefabGUID Chain_Noctem_IronMaiden03 = new PrefabGUID(-2275233); public static readonly PrefabGUID Chain_Noctem_IronMaiden04 = new PrefabGUID(1799899182); public static readonly PrefabGUID Chain_Noctem_Lantern01 = new PrefabGUID(1400527955); public static readonly PrefabGUID Chain_Noctem_PillarRuin01_Destructable = new PrefabGUID(-948416515); public static readonly PrefabGUID Chain_Noctem_PillarRuin02_Destructable = new PrefabGUID(1893084545); public static readonly PrefabGUID Chain_Noctem_RiftCrystalChild01 = new PrefabGUID(1658220767); public static readonly PrefabGUID Chain_Noctem_RiftCrystalChild02 = new PrefabGUID(-1061011473); public static readonly PrefabGUID Chain_Noctem_StoneUrn_01 = new PrefabGUID(998779099); public static readonly PrefabGUID Chain_Noctem_StoneUrn_02 = new PrefabGUID(-802026488); public static readonly PrefabGUID Chain_Noctem_StoneUrn_03 = new PrefabGUID(1931896046); public static readonly PrefabGUID Chain_Noctem_Tube01 = new PrefabGUID(-1164679768); public static readonly PrefabGUID Chain_Noctem_Tube02 = new PrefabGUID(-1062578219); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_01 = new PrefabGUID(-1467458513); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_02 = new PrefabGUID(-1407405296); public static readonly PrefabGUID Chain_Noctem_VampireGravestone_Big_03 = new PrefabGUID(932047651); public static readonly PrefabGUID Chain_Noctem_VampireGravestone01 = new PrefabGUID(-1244664486); public static readonly PrefabGUID Chain_Noctem_VampireGravestone02 = new PrefabGUID(-1266634800); public static readonly PrefabGUID Chain_Noctem_VampireGravestone03 = new PrefabGUID(447456753); public static readonly PrefabGUID Chain_Noctem_VampireGravestone04 = new PrefabGUID(941268923); public static readonly PrefabGUID Chain_Noctem_VampireGravestone05 = new PrefabGUID(-571878625); public static readonly PrefabGUID Chain_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(-620230183); public static readonly PrefabGUID Chain_Noctem_Vendor_Barrel01 = new PrefabGUID(1970482359); public static readonly PrefabGUID Chain_Noctem_Vendor_Crate_Large01 = new PrefabGUID(-2109470307); public static readonly PrefabGUID Chain_Noctem_Vendor_Crate01 = new PrefabGUID(-406366454); public static readonly PrefabGUID Chain_NoctemAspenTree_01 = new PrefabGUID(-1039515141); public static readonly PrefabGUID Chain_NoctemAspenTree_02 = new PrefabGUID(-591922036); public static readonly PrefabGUID Chain_NoctemAspenTree_03 = new PrefabGUID(-2128559087); public static readonly PrefabGUID Chain_NoctemNorthTree_01 = new PrefabGUID(-261428029); public static readonly PrefabGUID Chain_NoctemNorthTree_02 = new PrefabGUID(-1468930266); public static readonly PrefabGUID Chain_NoctemNorthTree_03 = new PrefabGUID(698421825); public static readonly PrefabGUID Chain_NoctemNorthTree_04 = new PrefabGUID(2024214887); public static readonly PrefabGUID Chain_NoctemNorthTree_05 = new PrefabGUID(768244834); public static readonly PrefabGUID Chain_NoctemNorthTree_06 = new PrefabGUID(1349944482); public static readonly PrefabGUID Chain_NoctemRuin_Pillar01 = new PrefabGUID(1283308780); public static readonly PrefabGUID Chain_NoctemRuin_Wall_Diagonal01 = new PrefabGUID(23198093); public static readonly PrefabGUID Chain_NoctemRuin_Wall_Diagonal02 = new PrefabGUID(1976878704); public static readonly PrefabGUID Chain_NoctemRuin_Wall01 = new PrefabGUID(1165186777); public static readonly PrefabGUID Chain_NoctemRuin_Wall02 = new PrefabGUID(-1755157073); public static readonly PrefabGUID Chain_NoctemWillowTree_01 = new PrefabGUID(232128851); public static readonly PrefabGUID Chain_NoctemWillowTree_02 = new PrefabGUID(1630835000); public static readonly PrefabGUID Chain_Pickup_BleedingHeart_01 = new PrefabGUID(-1780760962); public static readonly PrefabGUID Chain_Pickup_BloodRose_01 = new PrefabGUID(532563743); public static readonly PrefabGUID Chain_Pickup_BoneCarcass01 = new PrefabGUID(1959320822); public static readonly PrefabGUID Chain_Pickup_BoneHide_DeadDeer01 = new PrefabGUID(-1619425890); public static readonly PrefabGUID Chain_Pickup_BonePile01 = new PrefabGUID(-1469494427); public static readonly PrefabGUID Chain_Pickup_CastleIsland_BloodRose_01 = new PrefabGUID(-862599985); public static readonly PrefabGUID Chain_Pickup_Cotton_01 = new PrefabGUID(-1667113319); public static readonly PrefabGUID Chain_Pickup_Cotton_02 = new PrefabGUID(891097347); public static readonly PrefabGUID Chain_Pickup_Cotton_03 = new PrefabGUID(1264161361); public static readonly PrefabGUID Chain_Pickup_FireBlossom_01 = new PrefabGUID(2058107274); public static readonly PrefabGUID Chain_Pickup_GhostShroom_01 = new PrefabGUID(252434434); public static readonly PrefabGUID Chain_Pickup_HellsClarion_01 = new PrefabGUID(613922529); public static readonly PrefabGUID Chain_Pickup_Lotus_01 = new PrefabGUID(98063350); public static readonly PrefabGUID Chain_Pickup_MourningLily_01 = new PrefabGUID(-41600625); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_01 = new PrefabGUID(-888640546); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_02 = new PrefabGUID(-831586858); public static readonly PrefabGUID Chain_Pickup_Plantfiber_MossFiddlehead_Fern01_03 = new PrefabGUID(532672973); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_BushyTree_01 = new PrefabGUID(-1526154292); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_BushyTree_02 = new PrefabGUID(856427681); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_CorruptedFlower_01 = new PrefabGUID(1399993898); public static readonly PrefabGUID Chain_Pickup_Plantfiber_Strongblade_CorruptedFlower_02 = new PrefabGUID(-511390230); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_01 = new PrefabGUID(1592250223); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_02 = new PrefabGUID(2063438108); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigLeaf_03 = new PrefabGUID(1840142015); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_01 = new PrefabGUID(1056657072); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_02 = new PrefabGUID(1983801368); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BigRams_03 = new PrefabGUID(-1117675002); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushLeafy_01 = new PrefabGUID(1269180745); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushLeafy_02 = new PrefabGUID(1116756631); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_01 = new PrefabGUID(715018998); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_02 = new PrefabGUID(233678318); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_BushSmallRound_03 = new PrefabGUID(596409819); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_01 = new PrefabGUID(1043450136); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_02 = new PrefabGUID(-1323932168); public static readonly PrefabGUID Chain_Pickup_Plantfiber_StrongbladeForest_RoundLeaf_03 = new PrefabGUID(1164864019); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_01 = new PrefabGUID(-1696840268); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_02 = new PrefabGUID(207923784); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_03 = new PrefabGUID(-200102582); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed01 = new PrefabGUID(960646422); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed02 = new PrefabGUID(1934776688); public static readonly PrefabGUID Chain_Pickup_PlantfiberBush_Cursed03 = new PrefabGUID(-1489319254); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_01 = new PrefabGUID(1155322261); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_02 = new PrefabGUID(2071221931); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleaf_03 = new PrefabGUID(2057725401); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_01 = new PrefabGUID(1071171950); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_02 = new PrefabGUID(-808380173); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushBigleafSnow_03 = new PrefabGUID(-1449103174); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_Gloomrot01 = new PrefabGUID(-1420887679); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_Gloomrot02 = new PrefabGUID(1781662189); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_GloomrotToxicPool01 = new PrefabGUID(-557504539); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushHosta_GloomrotToxicPool02 = new PrefabGUID(-1322344739); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_01 = new PrefabGUID(1195716523); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_02 = new PrefabGUID(-147955175); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_Cursed01 = new PrefabGUID(-1176033499); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLarge_Cursed02 = new PrefabGUID(1233599733); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_01 = new PrefabGUID(1313923291); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_02 = new PrefabGUID(-327146613); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeAutumn_03 = new PrefabGUID(1567289522); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeSnow_01 = new PrefabGUID(-1743944480); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushLargeSnow_02 = new PrefabGUID(-1526018811); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_01 = new PrefabGUID(995586517); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_02 = new PrefabGUID(952851231); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushMapleAutumn_03 = new PrefabGUID(15884169); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedle_01 = new PrefabGUID(111691529); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedleRed_01 = new PrefabGUID(-1395396829); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushNeedleSnow_01 = new PrefabGUID(-383903025); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlain_01 = new PrefabGUID(1584887555); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlainAutumn_01 = new PrefabGUID(-1155639000); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushPlainAutumn_02 = new PrefabGUID(583886838); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_01 = new PrefabGUID(148870031); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_02 = new PrefabGUID(1109930272); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_03 = new PrefabGUID(425129617); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushSmokeAutumn_04 = new PrefabGUID(695846701); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_01 = new PrefabGUID(1086773590); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_02 = new PrefabGUID(584021349); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_03 = new PrefabGUID(-1665973534); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyAutumn_04 = new PrefabGUID(917151003); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_01 = new PrefabGUID(-321461217); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_02 = new PrefabGUID(1520800090); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_03 = new PrefabGUID(-787146670); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_04 = new PrefabGUID(380695101); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_05 = new PrefabGUID(1118849132); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_06 = new PrefabGUID(-1142558640); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyGloomrot_07 = new PrefabGUID(-650236624); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTree_01 = new PrefabGUID(144188139); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTree_02 = new PrefabGUID(-722233463); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeCursed_01 = new PrefabGUID(1600915888); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeCursed_02 = new PrefabGUID(1844956357); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeSnow_01 = new PrefabGUID(212756512); public static readonly PrefabGUID Chain_Pickup_PlantfiberBushyTreeSnow_02 = new PrefabGUID(-2097170201); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_01 = new PrefabGUID(-467956079); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_02 = new PrefabGUID(1304294729); public static readonly PrefabGUID Chain_Pickup_PlantfiberCorn_03 = new PrefabGUID(-1479312760); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_01 = new PrefabGUID(-1820027728); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_02 = new PrefabGUID(-690747085); public static readonly PrefabGUID Chain_Pickup_PlantfiberFern_Silverhills_03 = new PrefabGUID(63970191); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_01 = new PrefabGUID(1046846841); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_02 = new PrefabGUID(-1130060605); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_03 = new PrefabGUID(-534923664); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_04 = new PrefabGUID(1772243998); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_05 = new PrefabGUID(-1637965636); public static readonly PrefabGUID Chain_Pickup_PlantfiberGloomrotHills_06 = new PrefabGUID(1613358131); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_01 = new PrefabGUID(-1083751061); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_01_Harvested = new PrefabGUID(1644710634); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_02 = new PrefabGUID(1717136620); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_03 = new PrefabGUID(-410483252); public static readonly PrefabGUID Chain_Pickup_PlantfiberGrape_04 = new PrefabGUID(698083737); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta_Cursed01 = new PrefabGUID(2016390983); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta_Cursed02 = new PrefabGUID(995479102); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta01 = new PrefabGUID(110545320); public static readonly PrefabGUID Chain_Pickup_PlantfiberHosta02 = new PrefabGUID(618843782); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniper_01 = new PrefabGUID(1310526618); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniper_02 = new PrefabGUID(1478974983); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniperSnow_01 = new PrefabGUID(452201513); public static readonly PrefabGUID Chain_Pickup_PlantfiberJuniperSnow_02 = new PrefabGUID(-101739398); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_01 = new PrefabGUID(-993446321); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_02 = new PrefabGUID(537718457); public static readonly PrefabGUID Chain_Pickup_PlantfiberLeafyNoctem_03 = new PrefabGUID(1573607480); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_01 = new PrefabGUID(501981657); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_02 = new PrefabGUID(90678420); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_03 = new PrefabGUID(307286483); public static readonly PrefabGUID Chain_Pickup_PlantfiberNeedleBushNoctem_04 = new PrefabGUID(1371125562); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_01 = new PrefabGUID(1641476693); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_02 = new PrefabGUID(1046236670); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_03 = new PrefabGUID(667214051); public static readonly PrefabGUID Chain_Pickup_PlantfiberSmallPineNoctem_04 = new PrefabGUID(366902373); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Cursed01 = new PrefabGUID(-9776583); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Cursed02 = new PrefabGUID(-422408774); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Gloomrot01 = new PrefabGUID(74135467); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_Gloomrot02 = new PrefabGUID(-283832825); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_GloomrotHills01 = new PrefabGUID(-79229718); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyBush_GloomrotHills02 = new PrefabGUID(865352867); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_01 = new PrefabGUID(299473333); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_02 = new PrefabGUID(-1308630626); public static readonly PrefabGUID Chain_Pickup_PlantfiberSpikyNoctem_03 = new PrefabGUID(-1866235932); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_01 = new PrefabGUID(-197179745); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_02 = new PrefabGUID(-2088318249); public static readonly PrefabGUID Chain_Pickup_PlantfiberSunflower_03 = new PrefabGUID(-2137055798); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_01 = new PrefabGUID(-84264079); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_02 = new PrefabGUID(761988044); public static readonly PrefabGUID Chain_Pickup_PlantfiberWheat_03 = new PrefabGUID(-1391986440); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_01 = new PrefabGUID(28315283); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_02 = new PrefabGUID(-1468986169); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_03 = new PrefabGUID(460338586); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_01 = new PrefabGUID(-73658084); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_02 = new PrefabGUID(-327324527); public static readonly PrefabGUID Chain_Pickup_PlantfiberWildRoseBush_Silver_03 = new PrefabGUID(-1857713718); public static readonly PrefabGUID Chain_Pickup_SnowFlower_01 = new PrefabGUID(-1016815904); public static readonly PrefabGUID Chain_Pickup_SpiderWeb01 = new PrefabGUID(-377027333); public static readonly PrefabGUID Chain_Pickup_SpiderWeb02 = new PrefabGUID(640447322); public static readonly PrefabGUID Chain_Pickup_Sunflower_01 = new PrefabGUID(-2006971228); public static readonly PrefabGUID Chain_Pickup_Thistle_01 = new PrefabGUID(-1345391205); public static readonly PrefabGUID Chain_Pickup_TrippyShroom_01 = new PrefabGUID(1094601351); public static readonly PrefabGUID Chain_Resource_BloodCrystal01 = new PrefabGUID(-1377471953); public static readonly PrefabGUID Chain_Resource_BloodCrystal02 = new PrefabGUID(47383817); public static readonly PrefabGUID Chain_Resource_BloodCrystal03 = new PrefabGUID(490819473); public static readonly PrefabGUID Chain_Resource_Coal01 = new PrefabGUID(1925249177); public static readonly PrefabGUID Chain_Resource_Coal02 = new PrefabGUID(-12230132); public static readonly PrefabGUID Chain_Resource_Coal03 = new PrefabGUID(-113035689); public static readonly PrefabGUID Chain_Resource_Coal04 = new PrefabGUID(-1073919585); public static readonly PrefabGUID Chain_Resource_Copper01 = new PrefabGUID(-1476501902); public static readonly PrefabGUID Chain_Resource_Copper02 = new PrefabGUID(-1382557002); public static readonly PrefabGUID Chain_Resource_Copper03 = new PrefabGUID(-217985196); public static readonly PrefabGUID Chain_Resource_Copper04 = new PrefabGUID(762957866); public static readonly PrefabGUID Chain_Resource_CopperBig01 = new PrefabGUID(1952929291); public static readonly PrefabGUID Chain_Resource_CopperMedium01 = new PrefabGUID(1293957126); public static readonly PrefabGUID Chain_Resource_Crystal01 = new PrefabGUID(1881668130); public static readonly PrefabGUID Chain_Resource_Emery01 = new PrefabGUID(-691104327); public static readonly PrefabGUID Chain_Resource_Emery02 = new PrefabGUID(-1145069805); public static readonly PrefabGUID Chain_Resource_Emery03 = new PrefabGUID(639901103); public static readonly PrefabGUID Chain_Resource_EmeryBig01 = new PrefabGUID(-1189124343); public static readonly PrefabGUID Chain_Resource_EmeryMedium01 = new PrefabGUID(-179888839); public static readonly PrefabGUID Chain_Resource_GemCrude_01 = new PrefabGUID(-1285648022); public static readonly PrefabGUID Chain_Resource_GemFlawless_01 = new PrefabGUID(-813541622); public static readonly PrefabGUID Chain_Resource_GemRegular_01 = new PrefabGUID(-1020064079); public static readonly PrefabGUID Chain_Resource_GhostCrystal01 = new PrefabGUID(-798023161); public static readonly PrefabGUID Chain_Resource_GhostCrystal02 = new PrefabGUID(1966483785); public static readonly PrefabGUID Chain_Resource_GhostCrystal03 = new PrefabGUID(526225948); public static readonly PrefabGUID Chain_Resource_Gold01 = new PrefabGUID(676287933); public static readonly PrefabGUID Chain_Resource_Gold02 = new PrefabGUID(1927189438); public static readonly PrefabGUID Chain_Resource_Gold03 = new PrefabGUID(-1740342424); public static readonly PrefabGUID Chain_Resource_Gold04 = new PrefabGUID(-570597741); public static readonly PrefabGUID Chain_Resource_Iron01 = new PrefabGUID(586784110); public static readonly PrefabGUID Chain_Resource_Iron02 = new PrefabGUID(-917289021); public static readonly PrefabGUID Chain_Resource_Iron03 = new PrefabGUID(962593298); public static readonly PrefabGUID Chain_Resource_Iron04 = new PrefabGUID(1256549000); public static readonly PrefabGUID Chain_Resource_IronBig01 = new PrefabGUID(1487438772); public static readonly PrefabGUID Chain_Resource_IronMedium01 = new PrefabGUID(-640063587); public static readonly PrefabGUID Chain_Resource_Mech01 = new PrefabGUID(-1680959695); public static readonly PrefabGUID Chain_Resource_Mech02 = new PrefabGUID(-764961774); public static readonly PrefabGUID Chain_Resource_Mech03 = new PrefabGUID(-2023481231); public static readonly PrefabGUID Chain_Resource_Obsidian01 = new PrefabGUID(2112549903); public static readonly PrefabGUID Chain_Resource_Obsidian02 = new PrefabGUID(-1146434501); public static readonly PrefabGUID Chain_Resource_Obsidian03 = new PrefabGUID(1991708864); public static readonly PrefabGUID Chain_Resource_Obsidian04 = new PrefabGUID(971888901); public static readonly PrefabGUID Chain_Resource_Quartz01 = new PrefabGUID(140114537); public static readonly PrefabGUID Chain_Resource_Quartz02 = new PrefabGUID(1926653869); public static readonly PrefabGUID Chain_Resource_Quartz03 = new PrefabGUID(1044892198); public static readonly PrefabGUID Chain_Resource_Rock01 = new PrefabGUID(-1475579727); public static readonly PrefabGUID Chain_Resource_Rock02 = new PrefabGUID(-520472337); public static readonly PrefabGUID Chain_Resource_Rock03 = new PrefabGUID(1551951647); public static readonly PrefabGUID Chain_Resource_Rock04 = new PrefabGUID(-1000988156); public static readonly PrefabGUID Chain_Resource_RockBig01 = new PrefabGUID(-260309519); public static readonly PrefabGUID Chain_Resource_RockMedium01 = new PrefabGUID(-855449070); public static readonly PrefabGUID Chain_Resource_Silver01 = new PrefabGUID(1283782485); public static readonly PrefabGUID Chain_Resource_Silver02 = new PrefabGUID(-1794866404); public static readonly PrefabGUID Chain_Resource_Silver03 = new PrefabGUID(253262643); public static readonly PrefabGUID Chain_Resource_Sulfur01 = new PrefabGUID(-1277530511); public static readonly PrefabGUID Chain_Resource_Sulfur02 = new PrefabGUID(-1283425763); public static readonly PrefabGUID Chain_Resource_Sulfur03 = new PrefabGUID(202548362); public static readonly PrefabGUID Chain_Resource_SulfurBig01 = new PrefabGUID(578980978); public static readonly PrefabGUID Chain_Resource_SulfurMedium01 = new PrefabGUID(108132619); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_01 = new PrefabGUID(-298243743); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_02 = new PrefabGUID(850300666); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_03 = new PrefabGUID(-82129727); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_04 = new PrefabGUID(1679076060); public static readonly PrefabGUID Chain_Ruin_CastleIsland_Pillar_05 = new PrefabGUID(28782923); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_01 = new PrefabGUID(679168595); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_02 = new PrefabGUID(511148969); public static readonly PrefabGUID Chain_Ruin_CastleIsland_ShortWall_03 = new PrefabGUID(425308404); public static readonly PrefabGUID Chain_Ruin_Pillar_01 = new PrefabGUID(-1469950224); public static readonly PrefabGUID Chain_Ruin_Pillar_02 = new PrefabGUID(-2040738983); public static readonly PrefabGUID Chain_Ruin_Pillar_03 = new PrefabGUID(-594678670); public static readonly PrefabGUID Chain_Ruin_Pillar_04 = new PrefabGUID(903649447); public static readonly PrefabGUID Chain_Ruin_Pillar_05 = new PrefabGUID(-1338313176); public static readonly PrefabGUID Chain_Ruin_Pillar_06_Noctem = new PrefabGUID(-145107425); public static readonly PrefabGUID Chain_Ruin_Pillar_07_Noctem = new PrefabGUID(1463232255); public static readonly PrefabGUID Chain_Ruin_Pillar_08_Noctem = new PrefabGUID(-345300905); public static readonly PrefabGUID Chain_Ruin_Pillar_09_Noctem = new PrefabGUID(-1841176138); public static readonly PrefabGUID Chain_Ruin_Pillar_10_Noctem = new PrefabGUID(-236305133); public static readonly PrefabGUID Chain_Ruin_ShortWall_01 = new PrefabGUID(-974100524); public static readonly PrefabGUID Chain_Ruin_ShortWall_02 = new PrefabGUID(1202602297); public static readonly PrefabGUID Chain_Ruin_ShortWall_03 = new PrefabGUID(830130874); public static readonly PrefabGUID Chain_Ruin_ShortWall_End_01 = new PrefabGUID(863752157); public static readonly PrefabGUID Chain_RuinCursed_Pillar_01 = new PrefabGUID(355348320); public static readonly PrefabGUID Chain_RuinCursed_Pillar_02 = new PrefabGUID(678764001); public static readonly PrefabGUID Chain_RuinCursed_Pillar_03 = new PrefabGUID(1505138749); public static readonly PrefabGUID Chain_RuinCursed_Pillar_04 = new PrefabGUID(-1104605080); public static readonly PrefabGUID Chain_RuinCursed_Pillar_05 = new PrefabGUID(695289762); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_01 = new PrefabGUID(989676784); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_02 = new PrefabGUID(1808624323); public static readonly PrefabGUID Chain_RuinCursed_ShortWall_03 = new PrefabGUID(1859311619); public static readonly PrefabGUID Chain_Runestone_fading02_Breakable = new PrefabGUID(-791661968); public static readonly PrefabGUID Chain_Silverhills_Banner01 = new PrefabGUID(222319959); public static readonly PrefabGUID Chain_Silverhills_Banner02 = new PrefabGUID(7933938); public static readonly PrefabGUID Chain_Silverhills_Banner03 = new PrefabGUID(1209148427); public static readonly PrefabGUID Chain_Silverhills_Flowerpot01 = new PrefabGUID(-984790079); public static readonly PrefabGUID Chain_Silverhills_Flowerpot02 = new PrefabGUID(574441401); public static readonly PrefabGUID Chain_Silverhills_Flowerpot03 = new PrefabGUID(-777779911); public static readonly PrefabGUID Chain_Silverhills_Flowerpot04 = new PrefabGUID(1210478350); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFish01 = new PrefabGUID(-600877015); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFish02 = new PrefabGUID(1216714915); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishCrab01 = new PrefabGUID(814081749); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishCrab02 = new PrefabGUID(1194151211); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishFlounder01 = new PrefabGUID(-986729393); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelFishFlounder02 = new PrefabGUID(1363229546); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelNet01 = new PrefabGUID(-866711214); public static readonly PrefabGUID Chain_Silverhills_JettyBarrelNet02 = new PrefabGUID(1299159621); public static readonly PrefabGUID Chain_Silverhills_JettyCrate01 = new PrefabGUID(1224184841); public static readonly PrefabGUID Chain_Silverhills_JettyCrate02 = new PrefabGUID(-1783844415); public static readonly PrefabGUID Chain_Silverhills_JettyCrate03 = new PrefabGUID(1137262593); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish01 = new PrefabGUID(568706574); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish02 = new PrefabGUID(-395304501); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFish03 = new PrefabGUID(-456404944); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishCrab01 = new PrefabGUID(-486240872); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishCrab02 = new PrefabGUID(35884401); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishFlounder01 = new PrefabGUID(-987993821); public static readonly PrefabGUID Chain_Silverhills_JettyCrateFishFlounder02 = new PrefabGUID(1558755021); public static readonly PrefabGUID Chain_Silverhills_JettyCrateNet01 = new PrefabGUID(-960186826); public static readonly PrefabGUID Chain_Silverhills_JettyCrateNet02 = new PrefabGUID(600169886); public static readonly PrefabGUID Chain_Silverhills_JettyNetRack01 = new PrefabGUID(436988855); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_01 = new PrefabGUID(-1463730922); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_02 = new PrefabGUID(-1642448870); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_03 = new PrefabGUID(1450009475); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_04 = new PrefabGUID(1868789546); public static readonly PrefabGUID Chain_Silverhills_MineBarrel_05 = new PrefabGUID(-2038632793); public static readonly PrefabGUID Chain_Silverhills_Sign01 = new PrefabGUID(1763693514); public static readonly PrefabGUID Chain_Silverhills_Sign02 = new PrefabGUID(59924722); public static readonly PrefabGUID Chain_Silverhills_Sign03 = new PrefabGUID(1932867619); public static readonly PrefabGUID Chain_Silverhills_Sign04 = new PrefabGUID(1367477537); public static readonly PrefabGUID Chain_Silverhills_StoneSymbol01 = new PrefabGUID(1390252457); public static readonly PrefabGUID Chain_Silverhills_StoneSymbol02 = new PrefabGUID(411454988); public static readonly PrefabGUID Chain_SilverMines_Cage01_Door01 = new PrefabGUID(-1323477366); public static readonly PrefabGUID Chain_SilverMines_StoneSymbol03 = new PrefabGUID(-2069905213); public static readonly PrefabGUID Chain_SmallTent_01 = new PrefabGUID(-1408591674); public static readonly PrefabGUID Chain_SmallTent_02 = new PrefabGUID(1237019602); public static readonly PrefabGUID Chain_SmallTent_03_Dunley = new PrefabGUID(-505993307); public static readonly PrefabGUID Chain_SmallTent_04_Dunley = new PrefabGUID(1751871475); public static readonly PrefabGUID Chain_Spider_Cocoon01 = new PrefabGUID(1234655120); public static readonly PrefabGUID Chain_Spider_Cocoon02 = new PrefabGUID(-241625672); public static readonly PrefabGUID Chain_Spider_Cocoon03 = new PrefabGUID(-449313464); public static readonly PrefabGUID Chain_Spider_Cocoon04 = new PrefabGUID(-43538197); public static readonly PrefabGUID Chain_Spider_Cocoon05 = new PrefabGUID(1731454518); public static readonly PrefabGUID Chain_Spider_Cocoon06_MicroPOI = new PrefabGUID(2085157240); public static readonly PrefabGUID Chain_Spider_Cocoon07_MicroPOI = new PrefabGUID(1653415279); public static readonly PrefabGUID Chain_Spider_Cocoon08_MicroPOI = new PrefabGUID(1523231468); public static readonly PrefabGUID Chain_Spider_Cocoon09_MicroPOI = new PrefabGUID(-2023095960); public static readonly PrefabGUID Chain_Statue_02SmallBreakable = new PrefabGUID(1258000620); public static readonly PrefabGUID Chain_Statue_07SmallBreakable = new PrefabGUID(427797102); public static readonly PrefabGUID Chain_Statue_11SmallBreakable = new PrefabGUID(2019641137); public static readonly PrefabGUID Chain_Statue_13SmallBreakable = new PrefabGUID(1403586837); public static readonly PrefabGUID Chain_Statue_22SmallBreakable = new PrefabGUID(1903568218); public static readonly PrefabGUID Chain_StoneUrn_01 = new PrefabGUID(964648474); public static readonly PrefabGUID Chain_StoneUrn_02 = new PrefabGUID(1962347179); public static readonly PrefabGUID Chain_StoneUrn_03 = new PrefabGUID(906858975); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-1230214358); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(-1891942756); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(940399176); public static readonly PrefabGUID Chain_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(-1117332495); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(578544016); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table02_Interactable = new PrefabGUID(1610207460); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(-485043615); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table03_Interactable = new PrefabGUID(44387398); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(-991010100); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table04_Interactable = new PrefabGUID(825651488); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(809396837); public static readonly PrefabGUID Chain_StrongBlade_AlchemyLab_Table06_Interactable = new PrefabGUID(-770330706); public static readonly PrefabGUID Chain_Strongblade_Banner01 = new PrefabGUID(-858444955); public static readonly PrefabGUID Chain_Strongblade_Banner02 = new PrefabGUID(595563700); public static readonly PrefabGUID Chain_Strongblade_Banner03 = new PrefabGUID(1503589876); public static readonly PrefabGUID Chain_Strongblade_Barrel01 = new PrefabGUID(727131848); public static readonly PrefabGUID Chain_Strongblade_Barrel02 = new PrefabGUID(-1959579491); public static readonly PrefabGUID Chain_Strongblade_Bed01 = new PrefabGUID(-373944270); public static readonly PrefabGUID Chain_Strongblade_Bed03 = new PrefabGUID(-1929204488); public static readonly PrefabGUID Chain_Strongblade_Brazier01 = new PrefabGUID(-1925153495); public static readonly PrefabGUID Chain_Strongblade_Brazier02 = new PrefabGUID(-41274655); public static readonly PrefabGUID Chain_Strongblade_Brazier02_IdleInteraction = new PrefabGUID(-160764074); public static readonly PrefabGUID Chain_Strongblade_Brazier03 = new PrefabGUID(-506550578); public static readonly PrefabGUID Chain_Strongblade_Brazier03_IdleInteraction = new PrefabGUID(819422446); public static readonly PrefabGUID Chain_Strongblade_BunkBed01 = new PrefabGUID(-486131720); public static readonly PrefabGUID Chain_Strongblade_BunkBed02 = new PrefabGUID(-245861659); public static readonly PrefabGUID Chain_Strongblade_BunkBed03 = new PrefabGUID(-2105232776); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench01 = new PrefabGUID(1408221860); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench02 = new PrefabGUID(-776794047); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench03 = new PrefabGUID(-1580128981); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench03_IdleInteraction = new PrefabGUID(-320205516); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench04 = new PrefabGUID(-1264055467); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench04_IdleInteraction = new PrefabGUID(-1018004112); public static readonly PrefabGUID Chain_Strongblade_Carvers_Workbench05 = new PrefabGUID(1476656656); public static readonly PrefabGUID Chain_Strongblade_Chair01 = new PrefabGUID(-1277552557); public static readonly PrefabGUID Chain_Strongblade_Chair01_02 = new PrefabGUID(1201125343); public static readonly PrefabGUID Chain_Strongblade_Chair02 = new PrefabGUID(-1661988892); public static readonly PrefabGUID Chain_Strongblade_Chair03 = new PrefabGUID(1577108776); public static readonly PrefabGUID Chain_Strongblade_Chair04 = new PrefabGUID(365338979); public static readonly PrefabGUID Chain_Strongblade_Crate01 = new PrefabGUID(1412118366); public static readonly PrefabGUID Chain_Strongblade_Crate01_Flasks01 = new PrefabGUID(-964680267); public static readonly PrefabGUID Chain_Strongblade_Crate01_Flasks02 = new PrefabGUID(-1601326404); public static readonly PrefabGUID Chain_Strongblade_Crate02 = new PrefabGUID(-1706051395); public static readonly PrefabGUID Chain_Strongblade_Crate03 = new PrefabGUID(1970254698); public static readonly PrefabGUID Chain_Strongblade_Crate03_Flasks01 = new PrefabGUID(1422218579); public static readonly PrefabGUID Chain_Strongblade_Crate03_Flasks02 = new PrefabGUID(1463103980); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack01 = new PrefabGUID(-394727239); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack02 = new PrefabGUID(-222866655); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack03 = new PrefabGUID(567280065); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerRack04 = new PrefabGUID(-1816883501); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(197349366); public static readonly PrefabGUID Chain_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(221077444); public static readonly PrefabGUID Chain_Strongblade_Emery01_Crate01 = new PrefabGUID(-1001264970); public static readonly PrefabGUID Chain_Strongblade_Emery01_Crate02 = new PrefabGUID(2085193683); public static readonly PrefabGUID Chain_Strongblade_Emery01_ToolRack01 = new PrefabGUID(1844361244); public static readonly PrefabGUID Chain_Strongblade_Emery01_Wheelbarrow01 = new PrefabGUID(1348848480); public static readonly PrefabGUID Chain_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(1320721063); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(2092863418); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(-848816516); public static readonly PrefabGUID Chain_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(-1659874132); public static readonly PrefabGUID Chain_Strongblade_Table_Carver01 = new PrefabGUID(1053188736); public static readonly PrefabGUID Chain_Strongblade_Table_Carver02 = new PrefabGUID(2104966700); public static readonly PrefabGUID Chain_Strongblade_Table01 = new PrefabGUID(1796387098); public static readonly PrefabGUID Chain_Strongblade_Table01_02 = new PrefabGUID(-977284338); public static readonly PrefabGUID Chain_Strongblade_Table02 = new PrefabGUID(-417727620); public static readonly PrefabGUID Chain_Strongblade_Table02_02 = new PrefabGUID(151823651); public static readonly PrefabGUID Chain_Strongblade_Table03 = new PrefabGUID(880815904); public static readonly PrefabGUID Chain_Strongblade_Table03_02 = new PrefabGUID(22794486); public static readonly PrefabGUID Chain_Strongblade_Target01 = new PrefabGUID(-198141023); public static readonly PrefabGUID Chain_Strongblade_Target01_IdleInteraction = new PrefabGUID(-945798103); public static readonly PrefabGUID Chain_Strongblade_Target02 = new PrefabGUID(-248793307); public static readonly PrefabGUID Chain_Strongblade_Target03 = new PrefabGUID(1347115052); public static readonly PrefabGUID Chain_Strongblade_ToolRack01 = new PrefabGUID(-936465792); public static readonly PrefabGUID Chain_Strongblade_ToolRack02 = new PrefabGUID(598784669); public static readonly PrefabGUID Chain_Strongblade_WeaponRack01 = new PrefabGUID(489013238); public static readonly PrefabGUID Chain_Strongblade_WeaponRack02 = new PrefabGUID(2041861410); public static readonly PrefabGUID Chain_Strongblade_WeaponRack03 = new PrefabGUID(-1471743139); public static readonly PrefabGUID Chain_Strongblade_Wheelbarrow01 = new PrefabGUID(-858638245); public static readonly PrefabGUID Chain_StrongBladeBirchTree_01 = new PrefabGUID(1053056472); public static readonly PrefabGUID Chain_StrongBladeBirchTree_02 = new PrefabGUID(-1476940778); public static readonly PrefabGUID Chain_StrongBladeBirchTree_03 = new PrefabGUID(2020854480); public static readonly PrefabGUID Chain_StrongBladeBirchTree_04 = new PrefabGUID(-1738748603); public static readonly PrefabGUID Chain_StrongBladeBirchTree_05 = new PrefabGUID(1495492131); public static readonly PrefabGUID Chain_StrongBladeBirchTree_06 = new PrefabGUID(1513073894); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_01 = new PrefabGUID(-1520232123); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_02 = new PrefabGUID(-415954633); public static readonly PrefabGUID Chain_StrongBladeCorruptTree_03 = new PrefabGUID(-1892831390); public static readonly PrefabGUID Chain_StrongBladeHalfCorruptTree_01 = new PrefabGUID(615708900); public static readonly PrefabGUID Chain_StrongBladeHalfCorruptTree_02 = new PrefabGUID(-1916009518); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_01 = new PrefabGUID(1011488402); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_02 = new PrefabGUID(-1557871039); public static readonly PrefabGUID Chain_StrongBladeHornbeamTree_03 = new PrefabGUID(1865158174); public static readonly PrefabGUID Chain_StrongBladeOakTree_01 = new PrefabGUID(906261873); public static readonly PrefabGUID Chain_StrongBladeOakTree_02 = new PrefabGUID(-979785824); public static readonly PrefabGUID Chain_StrongBladeOakTree_03 = new PrefabGUID(1715976157); public static readonly PrefabGUID Chain_StrongBladeOakTree_04 = new PrefabGUID(-912516777); public static readonly PrefabGUID Chain_SwampTree_01 = new PrefabGUID(1480646047); public static readonly PrefabGUID Chain_SwampTree_02 = new PrefabGUID(1622370540); public static readonly PrefabGUID Chain_SwampTree_03 = new PrefabGUID(-608525826); public static readonly PrefabGUID Chain_TargetDummy_01 = new PrefabGUID(1659084022); public static readonly PrefabGUID Chain_TargetDummy_01_IdleInteraction = new PrefabGUID(-1692663337); public static readonly PrefabGUID Chain_TargetDummy_02 = new PrefabGUID(-1036635830); public static readonly PrefabGUID Chain_TargetDummy_02_IdleInteraction = new PrefabGUID(-1390873694); public static readonly PrefabGUID Chain_Tree_Apple_01 = new PrefabGUID(-536996441); public static readonly PrefabGUID Chain_Tree_Apple_02 = new PrefabGUID(1110161091); public static readonly PrefabGUID Chain_Tree_Apple_03 = new PrefabGUID(113696482); public static readonly PrefabGUID Chain_Tree_AppleCursed_01 = new PrefabGUID(1817848778); public static readonly PrefabGUID Chain_Tree_AppleCursed_02 = new PrefabGUID(575862327); public static readonly PrefabGUID Chain_Tree_AppleCursed_03 = new PrefabGUID(2009018257); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_01 = new PrefabGUID(-1497641772); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_02 = new PrefabGUID(1004759062); public static readonly PrefabGUID Chain_Tree_AppleCursed_Symbol_03 = new PrefabGUID(-340890152); public static readonly PrefabGUID Chain_Tree_Aspen_01 = new PrefabGUID(-1232343594); public static readonly PrefabGUID Chain_Tree_Aspen_02 = new PrefabGUID(-498630941); public static readonly PrefabGUID Chain_Tree_Aspen_03 = new PrefabGUID(-1396931038); public static readonly PrefabGUID Chain_Tree_AspenAutumn_01 = new PrefabGUID(59180168); public static readonly PrefabGUID Chain_Tree_AspenAutumn_02 = new PrefabGUID(-866851080); public static readonly PrefabGUID Chain_Tree_AspenAutumn_03 = new PrefabGUID(-162404184); public static readonly PrefabGUID Chain_Tree_AspenAutumn_04 = new PrefabGUID(-783892926); public static readonly PrefabGUID Chain_Tree_AspenAutumn_05 = new PrefabGUID(-547915359); public static readonly PrefabGUID Chain_Tree_AspenAutumn_06 = new PrefabGUID(-1681530932); public static readonly PrefabGUID Chain_Tree_Beech_01 = new PrefabGUID(-385800984); public static readonly PrefabGUID Chain_Tree_Beech_02 = new PrefabGUID(1961987303); public static readonly PrefabGUID Chain_Tree_Beech_03 = new PrefabGUID(1738464877); public static readonly PrefabGUID Chain_Tree_Birch_01 = new PrefabGUID(-403858007); public static readonly PrefabGUID Chain_Tree_Birch_02 = new PrefabGUID(-1252315032); public static readonly PrefabGUID Chain_Tree_Birch_03 = new PrefabGUID(115426173); public static readonly PrefabGUID Chain_Tree_Birch_04 = new PrefabGUID(2009944438); public static readonly PrefabGUID Chain_Tree_BirchAutumn_01 = new PrefabGUID(-1939554381); public static readonly PrefabGUID Chain_Tree_BirchAutumn_02 = new PrefabGUID(-93669271); public static readonly PrefabGUID Chain_Tree_BirchAutumn_03 = new PrefabGUID(-761082980); public static readonly PrefabGUID Chain_Tree_BirchAutumn_04 = new PrefabGUID(-448121609); public static readonly PrefabGUID Chain_Tree_BirchAutumn_05 = new PrefabGUID(1337887526); public static readonly PrefabGUID Chain_Tree_BirchAutumn_06 = new PrefabGUID(387731099); public static readonly PrefabGUID Chain_Tree_BirchAutumn_07 = new PrefabGUID(72057266); public static readonly PrefabGUID Chain_Tree_BirchAutumn_08 = new PrefabGUID(534846867); public static readonly PrefabGUID Chain_Tree_BirchAutumn_09 = new PrefabGUID(662248236); public static readonly PrefabGUID Chain_Tree_BirchAutumn_10 = new PrefabGUID(-340459004); public static readonly PrefabGUID Chain_Tree_BirchAutumn_11 = new PrefabGUID(1792496950); public static readonly PrefabGUID Chain_Tree_BirchAutumn_12 = new PrefabGUID(-1475451501); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_01 = new PrefabGUID(1478612221); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_02 = new PrefabGUID(1356362100); public static readonly PrefabGUID Chain_Tree_BlightbringerAltar_07 = new PrefabGUID(1366610117); public static readonly PrefabGUID Chain_Tree_Cherry_01 = new PrefabGUID(832803425); public static readonly PrefabGUID Chain_Tree_Cherry_02 = new PrefabGUID(1635098534); public static readonly PrefabGUID Chain_Tree_Cherry_White_01 = new PrefabGUID(-322796087); public static readonly PrefabGUID Chain_Tree_Cherry_White_02 = new PrefabGUID(545378607); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_01 = new PrefabGUID(-1855814067); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_02 = new PrefabGUID(737812434); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_03 = new PrefabGUID(652680937); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_04 = new PrefabGUID(-196750256); public static readonly PrefabGUID Chain_Tree_CursedRottenStub_05 = new PrefabGUID(-11391283); public static readonly PrefabGUID Chain_Tree_Cypress_01 = new PrefabGUID(-689657741); public static readonly PrefabGUID Chain_Tree_Cypress_02 = new PrefabGUID(1700028768); public static readonly PrefabGUID Chain_Tree_Cypress_03 = new PrefabGUID(-874057665); public static readonly PrefabGUID Chain_Tree_CypressAutum_01 = new PrefabGUID(1384148944); public static readonly PrefabGUID Chain_Tree_CypressAutum_02 = new PrefabGUID(54380000); public static readonly PrefabGUID Chain_Tree_CypressAutum_03 = new PrefabGUID(1249220565); public static readonly PrefabGUID Chain_Tree_DeadSpooky_01 = new PrefabGUID(1581154671); public static readonly PrefabGUID Chain_Tree_DeadSpooky_02 = new PrefabGUID(2107147138); public static readonly PrefabGUID Chain_Tree_DeadSpooky_03 = new PrefabGUID(-695685644); public static readonly PrefabGUID Chain_Tree_DeadSpooky_04 = new PrefabGUID(-1049648244); public static readonly PrefabGUID Chain_Tree_DeadStump_01 = new PrefabGUID(-361095213); public static readonly PrefabGUID Chain_Tree_DeadStump_02 = new PrefabGUID(1403784536); public static readonly PrefabGUID Chain_Tree_DeadStump_03 = new PrefabGUID(-1964596989); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_01 = new PrefabGUID(1778090839); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_02 = new PrefabGUID(-1567076671); public static readonly PrefabGUID Chain_Tree_DeadStump_CursedForest_03 = new PrefabGUID(-1137236275); public static readonly PrefabGUID Chain_Tree_DryWood_01 = new PrefabGUID(-359669351); public static readonly PrefabGUID Chain_Tree_DryWood_02 = new PrefabGUID(1913359708); public static readonly PrefabGUID Chain_Tree_DryWood_03 = new PrefabGUID(-2091322158); public static readonly PrefabGUID Chain_Tree_Gloomrot_01 = new PrefabGUID(-1842947005); public static readonly PrefabGUID Chain_Tree_Gloomrot_02 = new PrefabGUID(-1590581859); public static readonly PrefabGUID Chain_Tree_Gloomrot_03 = new PrefabGUID(-211369417); public static readonly PrefabGUID Chain_Tree_Gloomrot_04 = new PrefabGUID(1181613181); public static readonly PrefabGUID Chain_Tree_Gloomrot_05 = new PrefabGUID(-1330375890); public static readonly PrefabGUID Chain_Tree_Gloomrot_06 = new PrefabGUID(-1254327137); public static readonly PrefabGUID Chain_Tree_Gloomrot_07 = new PrefabGUID(-1605774160); public static readonly PrefabGUID Chain_Tree_Gloomrot_08 = new PrefabGUID(-1632654657); public static readonly PrefabGUID Chain_Tree_Gloomrot_Stub_01 = new PrefabGUID(-549514044); public static readonly PrefabGUID Chain_Tree_Gloomrot_Stub_02 = new PrefabGUID(-623042674); public static readonly PrefabGUID Chain_Tree_GloomrotHills_01 = new PrefabGUID(288567750); public static readonly PrefabGUID Chain_Tree_GloomrotHills_02 = new PrefabGUID(-781210354); public static readonly PrefabGUID Chain_Tree_GloomrotHills_03 = new PrefabGUID(-1980053082); public static readonly PrefabGUID Chain_Tree_GloomrotHills_04 = new PrefabGUID(-554978394); public static readonly PrefabGUID Chain_Tree_GloomrotHills_05 = new PrefabGUID(-1376201568); public static readonly PrefabGUID Chain_Tree_GloomrotHills_06 = new PrefabGUID(6161423); public static readonly PrefabGUID Chain_Tree_GloomrotHills_07 = new PrefabGUID(842717845); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_01 = new PrefabGUID(214138110); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_02 = new PrefabGUID(1311854097); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_03 = new PrefabGUID(-1157220484); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_04 = new PrefabGUID(830737058); public static readonly PrefabGUID Chain_Tree_GloomrotHillsDead_05 = new PrefabGUID(-501666390); public static readonly PrefabGUID Chain_Tree_LargeOak_01 = new PrefabGUID(1642032124); public static readonly PrefabGUID Chain_Tree_LargeOak_02 = new PrefabGUID(208901596); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_01 = new PrefabGUID(-258925352); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_02 = new PrefabGUID(-270104638); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_03 = new PrefabGUID(-1291127950); public static readonly PrefabGUID Chain_Tree_LargeOakAutumn_04 = new PrefabGUID(1574925506); public static readonly PrefabGUID Chain_Tree_LargeOakCursed_01 = new PrefabGUID(554409717); public static readonly PrefabGUID Chain_Tree_LargeOakCursed_02 = new PrefabGUID(-2008247640); public static readonly PrefabGUID Chain_Tree_LargeOakSkeleton_01 = new PrefabGUID(1343159071); public static readonly PrefabGUID Chain_Tree_LargeOakSkeleton_02 = new PrefabGUID(-380570612); public static readonly PrefabGUID Chain_Tree_LargePine_01 = new PrefabGUID(1392745837); public static readonly PrefabGUID Chain_Tree_LargePine_02 = new PrefabGUID(1258138347); public static readonly PrefabGUID Chain_Tree_LargePine_03 = new PrefabGUID(873854566); public static readonly PrefabGUID Chain_Tree_LargePineOld_01 = new PrefabGUID(1069319783); public static readonly PrefabGUID Chain_Tree_LargePineOld_02 = new PrefabGUID(881545507); public static readonly PrefabGUID Chain_Tree_LargePineOld_03 = new PrefabGUID(662760737); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_01 = new PrefabGUID(398593938); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_02 = new PrefabGUID(1334962732); public static readonly PrefabGUID Chain_Tree_LargePineOld_Gloomrot_03 = new PrefabGUID(-1959091056); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_01 = new PrefabGUID(-843806614); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_02 = new PrefabGUID(1210299630); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_03 = new PrefabGUID(-273457909); public static readonly PrefabGUID Chain_Tree_LargePineOld_GloomrotHills_04 = new PrefabGUID(-915242629); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_01 = new PrefabGUID(-2023872669); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_02 = new PrefabGUID(-1496938626); public static readonly PrefabGUID Chain_Tree_LargePineOldSnow_03 = new PrefabGUID(-2012705019); public static readonly PrefabGUID Chain_Tree_LargePineSnow_01 = new PrefabGUID(324269657); public static readonly PrefabGUID Chain_Tree_LargePineSnow_02 = new PrefabGUID(2012679847); public static readonly PrefabGUID Chain_Tree_LargePineSnow_03 = new PrefabGUID(-320044170); public static readonly PrefabGUID Chain_Tree_Maple_01 = new PrefabGUID(-1886982333); public static readonly PrefabGUID Chain_Tree_Maple_02 = new PrefabGUID(-1659513116); public static readonly PrefabGUID Chain_Tree_MountainBirch01_snow = new PrefabGUID(-1278267989); public static readonly PrefabGUID Chain_Tree_MountainBirch02_snow = new PrefabGUID(1889507584); public static readonly PrefabGUID Chain_Tree_MountainBirch03_snow = new PrefabGUID(-1531494040); public static readonly PrefabGUID Chain_Tree_NoctemNorth_PineLarge_01 = new PrefabGUID(-14219428); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_01 = new PrefabGUID(23677037); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_02 = new PrefabGUID(159674491); public static readonly PrefabGUID Chain_Tree_NoctemSouth_Pine_03 = new PrefabGUID(385718485); public static readonly PrefabGUID Chain_Tree_Pine_01 = new PrefabGUID(1978566190); public static readonly PrefabGUID Chain_Tree_Pine_02 = new PrefabGUID(1138008954); public static readonly PrefabGUID Chain_Tree_Pine_02_Spider = new PrefabGUID(344811677); public static readonly PrefabGUID Chain_Tree_Pine_03 = new PrefabGUID(-1537927716); public static readonly PrefabGUID Chain_Tree_Pine_04 = new PrefabGUID(-315588781); public static readonly PrefabGUID Chain_Tree_Pine_05 = new PrefabGUID(-95118435); public static readonly PrefabGUID Chain_Tree_Pine_05_Spider = new PrefabGUID(1225392920); public static readonly PrefabGUID Chain_Tree_Pine_Snow_01 = new PrefabGUID(2057456511); public static readonly PrefabGUID Chain_Tree_Pine_Snow_02 = new PrefabGUID(-328298118); public static readonly PrefabGUID Chain_Tree_Pine_Snow_03 = new PrefabGUID(206812603); public static readonly PrefabGUID Chain_Tree_Pine_Snow_04 = new PrefabGUID(93287557); public static readonly PrefabGUID Chain_Tree_Pine_Snow_05 = new PrefabGUID(1960416312); public static readonly PrefabGUID Chain_Tree_Spruce_01 = new PrefabGUID(373246919); public static readonly PrefabGUID Chain_Tree_Spruce_02 = new PrefabGUID(-854645335); public static readonly PrefabGUID Chain_Tree_Spruce_03 = new PrefabGUID(415256464); public static readonly PrefabGUID Chain_Tree_SpruceSnow_01 = new PrefabGUID(-298783671); public static readonly PrefabGUID Chain_Tree_SpruceSnow_02 = new PrefabGUID(31080872); public static readonly PrefabGUID Chain_Tree_SpruceSnow_03 = new PrefabGUID(-636059912); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_01 = new PrefabGUID(772893611); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_02 = new PrefabGUID(-285571145); public static readonly PrefabGUID Chain_Tree_Stump_Werewolf_03 = new PrefabGUID(314558497); public static readonly PrefabGUID Chain_VampireFencePole_FineIronFencePole_01 = new PrefabGUID(1484599407); public static readonly PrefabGUID Chain_VampireFencePole_IronFencePole_01 = new PrefabGUID(2143543571); public static readonly PrefabGUID Chain_VampireGravestone_Big_01 = new PrefabGUID(-1254163198); public static readonly PrefabGUID Chain_VampireGravestone_Big_02 = new PrefabGUID(-727566802); public static readonly PrefabGUID Chain_VampireGravestone_Big_03 = new PrefabGUID(1486922657); public static readonly PrefabGUID Chain_VampireGravestone01 = new PrefabGUID(-847831092); public static readonly PrefabGUID Chain_VampireGravestone02 = new PrefabGUID(-606548039); public static readonly PrefabGUID Chain_VampireGravestone03 = new PrefabGUID(1661795803); public static readonly PrefabGUID Chain_VampireGravestone04 = new PrefabGUID(46319665); public static readonly PrefabGUID Chain_VampireGravestone05 = new PrefabGUID(-290599915); public static readonly PrefabGUID Chain_VampireGraveyard_Brazier_01 = new PrefabGUID(1050394576); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01 = new PrefabGUID(-178059685); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(-450312644); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-1869330413); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(-1605136899); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(2061675889); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(-1700576470); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02 = new PrefabGUID(-700510500); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(1679171249); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(-1947907654); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(954596691); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(360179082); public static readonly PrefabGUID Chain_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(-880663447); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01 = new PrefabGUID(-1515843832); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(2124930860); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-344719048); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(775917281); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(407029715); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(-1622127460); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02 = new PrefabGUID(-1576246794); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(505322791); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(1467965232); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(-1641821361); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(806421757); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(2092613525); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03 = new PrefabGUID(-526328612); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(-789237539); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(-13602111); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(1077646194); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(-289865711); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(2115145273); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04 = new PrefabGUID(1046632459); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(-94732411); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(664374074); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(-821194340); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(770506718); public static readonly PrefabGUID Chain_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(-1747527633); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-1610571017); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(1770297174); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-395361058); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(1837482248); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1169051388); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-1083565582); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02 = new PrefabGUID(3101564); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(348587490); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(-1440350698); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(660971563); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(35974818); public static readonly PrefabGUID Chain_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(-546688167); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01 = new PrefabGUID(1503980136); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(-1801598924); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-1984609970); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(-1901274261); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(-1829107339); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-1849560456); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02 = new PrefabGUID(659193290); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(-94338890); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(1220167562); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(-846936078); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(-413205513); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(1560401529); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03 = new PrefabGUID(-2058022659); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(-1227431611); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(1182462480); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(348988213); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-2121019848); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(-930874983); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04 = new PrefabGUID(838220759); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-148941507); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(1799225021); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(1867603057); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-1927681802); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-867577145); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05 = new PrefabGUID(302708752); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(1702151888); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1724099902); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(2068801022); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(-615531872); public static readonly PrefabGUID Chain_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(154866664); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01 = new PrefabGUID(540307022); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(113662653); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1635530604); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(1366077311); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_SilverHills = new PrefabGUID(219002118); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-881915068); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02 = new PrefabGUID(-1742110863); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(-604467640); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(-21773376); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(873849921); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(56852538); public static readonly PrefabGUID Chain_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(1769346996); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf01 = new PrefabGUID(-1522804756); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf02 = new PrefabGUID(-1508892883); public static readonly PrefabGUID Chain_Vineyard_BarrelShelf03 = new PrefabGUID(-1650685762); public static readonly PrefabGUID Chain_Vineyard_Distillery_Breakable01 = new PrefabGUID(-1894560552); public static readonly PrefabGUID Chain_VineyardFence_Diagonal_01 = new PrefabGUID(5031606); public static readonly PrefabGUID Chain_VineyardFence_Diagonal_02 = new PrefabGUID(1250844258); public static readonly PrefabGUID Chain_VineyardFence_End01 = new PrefabGUID(652565918); public static readonly PrefabGUID Chain_VineyardFence01 = new PrefabGUID(-350587589); public static readonly PrefabGUID Chain_VineyardFence02 = new PrefabGUID(2058421982); public static readonly PrefabGUID Chain_VineyardFence03 = new PrefabGUID(-2144361548); public static readonly PrefabGUID Chain_Weaponrack_01 = new PrefabGUID(-991982917); public static readonly PrefabGUID Chain_Weaponrack_02 = new PrefabGUID(-1774928686); public static readonly PrefabGUID Chain_WerewolfTree_01 = new PrefabGUID(-2139259365); public static readonly PrefabGUID Chain_WerewolfTree_02 = new PrefabGUID(1331624709); public static readonly PrefabGUID Chain_WerewolfTree_03 = new PrefabGUID(2001038441); public static readonly PrefabGUID Chain_WerewolfTree_04 = new PrefabGUID(739308541); public static readonly PrefabGUID Chain_WerewolfTree_05 = new PrefabGUID(2009810821); public static readonly PrefabGUID Chain_WerewolfTree_06 = new PrefabGUID(-1182640249); public static readonly PrefabGUID Chain_WerewolfVillage_BigCageDoor01 = new PrefabGUID(1668709998); public static readonly PrefabGUID Chain_WerewolfVillage_BigCageDoor02 = new PrefabGUID(1615250647); public static readonly PrefabGUID Chain_WheelBarrow_01 = new PrefabGUID(-1072062623); public static readonly PrefabGUID Chain_WheelBarrow_01_InteractionIdle = new PrefabGUID(1751660203); public static readonly PrefabGUID Chain_WheelBarrow_02 = new PrefabGUID(-764276565); public static readonly PrefabGUID Chain_WheelBarrow_03 = new PrefabGUID(1095454998); public static readonly PrefabGUID Chain_WheelBarrow_04 = new PrefabGUID(248375332); public static readonly PrefabGUID Chain_WheelBarrow_05 = new PrefabGUID(279430915); public static readonly PrefabGUID Chain_WheelBarrow_06 = new PrefabGUID(631635188); public static readonly PrefabGUID Chain_WheelBarrow_06_InteractionIdle = new PrefabGUID(1976471069); public static readonly PrefabGUID Chain_WheelBarrow_Cursed_01 = new PrefabGUID(-882265623); public static readonly PrefabGUID Chain_WheelBarrow_Snow_01 = new PrefabGUID(318367013); public static readonly PrefabGUID Chain_WheelBarrow_Snow_02 = new PrefabGUID(1987911629); public static readonly PrefabGUID Chain_WheelBarrow_Strongblade_01 = new PrefabGUID(2093572378); public static readonly PrefabGUID Chain_WheelBarrow_Strongblade_02 = new PrefabGUID(-459375088); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_01 = new PrefabGUID(-1283429980); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_02 = new PrefabGUID(-502411786); public static readonly PrefabGUID Chain_Wilderness_Altar_StoneUrn_03 = new PrefabGUID(1398367537); public static readonly PrefabGUID Chain_Wilderness_Pyre_Flag_01 = new PrefabGUID(568257433); public static readonly PrefabGUID Chain_Wilderness_Pyre_Flag_02 = new PrefabGUID(-249561369); public static readonly PrefabGUID Chain_WildlingFlag01 = new PrefabGUID(807567347); public static readonly PrefabGUID Chain_WildlingFlag02 = new PrefabGUID(674228687); public static readonly PrefabGUID Chain_WildlingFlag03 = new PrefabGUID(-161204247); public static readonly PrefabGUID Chain_Witch_FrogTree_01 = new PrefabGUID(-1624784024); public static readonly PrefabGUID Chain_Witch_SkullStake_01 = new PrefabGUID(633416023); public static readonly PrefabGUID Chain_Witch_SkullStake_02 = new PrefabGUID(-1788338302); public static readonly PrefabGUID Chain_Witch_SkullStake_03 = new PrefabGUID(-51539496); public static readonly PrefabGUID Chain_Witch_Stake_01 = new PrefabGUID(-1949254602); public static readonly PrefabGUID Chain_Witch_Stake_02 = new PrefabGUID(1200659821); public static readonly PrefabGUID Chain_Witch_Stake_03 = new PrefabGUID(-1341893090); public static readonly PrefabGUID Chain_Witch_Stake_04 = new PrefabGUID(-1806904384); public static readonly PrefabGUID Chain_Witch_Stake_04_Candles = new PrefabGUID(425094962); public static readonly PrefabGUID Chain_Witch_Stake_05 = new PrefabGUID(-1451403539); public static readonly PrefabGUID Chain_Witch_Stake_05_Candles = new PrefabGUID(1152279482); public static readonly PrefabGUID Chain_Witch_Stake_06 = new PrefabGUID(-192426060); public static readonly PrefabGUID Chain_Witch_Stake_07 = new PrefabGUID(-1054582624); public static readonly PrefabGUID Chain_Witch_Stake_08 = new PrefabGUID(1945933109); public static readonly PrefabGUID Chain_Witch_Stake_09 = new PrefabGUID(-700802344); public static readonly PrefabGUID Chain_Witch_Stake_10 = new PrefabGUID(-1332648735); public static readonly PrefabGUID Chain_Witch_Stake_11 = new PrefabGUID(-188743293); public static readonly PrefabGUID Chain_Witch_Stake_12 = new PrefabGUID(1425568148); public static readonly PrefabGUID Chain_Witch_Stake_13 = new PrefabGUID(2091064964); public static readonly PrefabGUID Chain_WoodenCage_Door_01 = new PrefabGUID(1853887736); public static readonly PrefabGUID Chain_WoodenCage_Door_02 = new PrefabGUID(391068872); public static readonly PrefabGUID ChairsBuildMenuGroup = new PrefabGUID(-590392002); public static readonly PrefabGUID Chaos_Vampire_Buff_AgonizingFlames = new PrefabGUID(907164860); public static readonly PrefabGUID Chaos_Vampire_Buff_Combustion = new PrefabGUID(-649999207); public static readonly PrefabGUID Chaos_Vampire_Buff_Heated = new PrefabGUID(-1192081135); public static readonly PrefabGUID Chaos_Vampire_Buff_Ignite = new PrefabGUID(348724578); public static readonly PrefabGUID Chaos_Vampire_Combust_AreaImpact = new PrefabGUID(-198740873); public static readonly PrefabGUID Chaos_Vampire_Ignite_AreaImpact = new PrefabGUID(1687723202); public static readonly PrefabGUID Chaos_Vampire_Ignite_AreaImpact_Soulshard = new PrefabGUID(-1500081937); public static readonly PrefabGUID Chaos_WaveOfDestruction_EaseOutCurve = new PrefabGUID(583484765); public static readonly PrefabGUID ChaosSpellSchoolAsset = new PrefabGUID(597438920); public static readonly PrefabGUID CHAR_ArchMage_FlameSphere = new PrefabGUID(2138173476); public static readonly PrefabGUID CHAR_ArchMage_Summon = new PrefabGUID(805231073); public static readonly PrefabGUID CHAR_ArchMage_VBlood = new PrefabGUID(-2013903325); public static readonly PrefabGUID CHAR_Arena_HealthOrb = new PrefabGUID(692079022); public static readonly PrefabGUID CHAR_Bandit_Bomber = new PrefabGUID(-1128238456); public static readonly PrefabGUID CHAR_Bandit_Bomber_Servant = new PrefabGUID(-450600397); public static readonly PrefabGUID CHAR_Bandit_Bomber_VBlood = new PrefabGUID(1896428751); public static readonly PrefabGUID CHAR_Bandit_Chaosarrow_GateBoss_Minor = new PrefabGUID(1854211210); public static readonly PrefabGUID CHAR_Bandit_Chaosarrow_VBlood = new PrefabGUID(763273073); public static readonly PrefabGUID CHAR_Bandit_Deadeye = new PrefabGUID(-1030822544); public static readonly PrefabGUID CHAR_Bandit_Deadeye_Servant = new PrefabGUID(-2086044081); public static readonly PrefabGUID CHAR_Bandit_Fisherman_VBlood = new PrefabGUID(-2122682556); public static readonly PrefabGUID CHAR_Bandit_Foreman_VBlood = new PrefabGUID(2122229952); public static readonly PrefabGUID CHAR_Bandit_Foreman_VBlood_GateBoss_Minor = new PrefabGUID(17609984); public static readonly PrefabGUID CHAR_Bandit_Frostarrow_VBlood = new PrefabGUID(1124739990); public static readonly PrefabGUID CHAR_Bandit_Hunter = new PrefabGUID(-1301144178); public static readonly PrefabGUID CHAR_Bandit_Hunter_MicroPOI_Cocoon = new PrefabGUID(343676339); public static readonly PrefabGUID CHAR_Bandit_Hunter_Servant = new PrefabGUID(-370708253); public static readonly PrefabGUID CHAR_Bandit_Leader_VBlood_UNUSED = new PrefabGUID(-175381832); public static readonly PrefabGUID CHAR_Bandit_Leader_Wolf_Summon = new PrefabGUID(-671059374); public static readonly PrefabGUID CHAR_Bandit_Miner_Standard_Servant = new PrefabGUID(1112903312); public static readonly PrefabGUID CHAR_Bandit_Mugger = new PrefabGUID(2057508774); public static readonly PrefabGUID CHAR_Bandit_Mugger_Servant = new PrefabGUID(1727426580); public static readonly PrefabGUID CHAR_Bandit_Prisoner_Villager_Female = new PrefabGUID(1069072707); public static readonly PrefabGUID CHAR_Bandit_Prisoner_Villager_Male = new PrefabGUID(286320185); public static readonly PrefabGUID CHAR_Bandit_Rascal = new PrefabGUID(-1194643220); public static readonly PrefabGUID CHAR_Bandit_Rascal_Servant = new PrefabGUID(-1308100049); public static readonly PrefabGUID CHAR_Bandit_Scout = new PrefabGUID(1220569089); public static readonly PrefabGUID CHAR_Bandit_Scout_Servant = new PrefabGUID(1094898203); public static readonly PrefabGUID CHAR_Bandit_Stalker = new PrefabGUID(-309264723); public static readonly PrefabGUID CHAR_Bandit_Stalker_Servant = new PrefabGUID(1453520986); public static readonly PrefabGUID CHAR_Bandit_Stalker_VBlood = new PrefabGUID(1106149033); public static readonly PrefabGUID CHAR_Bandit_StoneBreaker_VBlood = new PrefabGUID(-2025101517); public static readonly PrefabGUID CHAR_Bandit_StoneBreaker_VBlood_GateBoss_Minor = new PrefabGUID(-1420322422); public static readonly PrefabGUID CHAR_Bandit_Thief = new PrefabGUID(923140362); public static readonly PrefabGUID CHAR_Bandit_Thief_Servant = new PrefabGUID(-872078546); public static readonly PrefabGUID CHAR_Bandit_Thug = new PrefabGUID(-301730941); public static readonly PrefabGUID CHAR_Bandit_Thug_MicroPOI_Cocoon = new PrefabGUID(-198252716); public static readonly PrefabGUID CHAR_Bandit_Thug_Servant = new PrefabGUID(1466015976); public static readonly PrefabGUID CHAR_Bandit_Tourok_GateBoss_Minor = new PrefabGUID(478580792); public static readonly PrefabGUID CHAR_Bandit_Tourok_VBlood = new PrefabGUID(-1659822956); public static readonly PrefabGUID CHAR_Bandit_Trapper = new PrefabGUID(-589412777); public static readonly PrefabGUID CHAR_Bandit_Trapper_Servant = new PrefabGUID(2112911542); public static readonly PrefabGUID CHAR_Bandit_Wolf = new PrefabGUID(-1554428547); public static readonly PrefabGUID CHAR_Bandit_Woodcutter_Standard_Servant = new PrefabGUID(51737727); public static readonly PrefabGUID CHAR_Bandit_Worker_Gatherer = new PrefabGUID(1743532914); public static readonly PrefabGUID CHAR_Bandit_Worker_Gatherer_Servant = new PrefabGUID(48283616); public static readonly PrefabGUID CHAR_Bandit_Worker_Miner = new PrefabGUID(-2039670689); public static readonly PrefabGUID CHAR_Bandit_Worker_Woodcutter = new PrefabGUID(1309418594); public static readonly PrefabGUID CHAR_BatVampire_VBlood = new PrefabGUID(1112948824); public static readonly PrefabGUID CHAR_Blackfang_Alchemist = new PrefabGUID(326501064); public static readonly PrefabGUID CHAR_Blackfang_Alchemist_Servant = new PrefabGUID(2142021685); public static readonly PrefabGUID CHAR_Blackfang_CarverBoss_VBlood = new PrefabGUID(-1669199769); public static readonly PrefabGUID CHAR_Blackfang_DartFlinger = new PrefabGUID(1209580976); public static readonly PrefabGUID CHAR_Blackfang_DartFlinger_Servant = new PrefabGUID(-253226787); public static readonly PrefabGUID CHAR_Blackfang_Livith_Illusion = new PrefabGUID(1254601307); public static readonly PrefabGUID CHAR_Blackfang_Livith_VBlood = new PrefabGUID(-1383529374); public static readonly PrefabGUID CHAR_Blackfang_Lucie_VBlood = new PrefabGUID(1295855316); public static readonly PrefabGUID CHAR_Blackfang_Lurker = new PrefabGUID(-1733829912); public static readonly PrefabGUID CHAR_Blackfang_Lurker_Servant = new PrefabGUID(40217214); public static readonly PrefabGUID CHAR_Blackfang_Morgana_VBlood = new PrefabGUID(591725925); public static readonly PrefabGUID CHAR_Blackfang_MorganasTail = new PrefabGUID(-1075824048); public static readonly PrefabGUID CHAR_Blackfang_Peon = new PrefabGUID(-1562098554); public static readonly PrefabGUID CHAR_Blackfang_Peon_Miner = new PrefabGUID(-699233841); public static readonly PrefabGUID CHAR_Blackfang_Peon_Servant = new PrefabGUID(-39008356); public static readonly PrefabGUID CHAR_Blackfang_PeonCarryingBarrel = new PrefabGUID(1924724671); public static readonly PrefabGUID CHAR_Blackfang_PeonLogCarryer = new PrefabGUID(1451256919); public static readonly PrefabGUID CHAR_Blackfang_Sentinel = new PrefabGUID(1531777139); public static readonly PrefabGUID CHAR_Blackfang_Sentinel_Servant = new PrefabGUID(-1287013240); public static readonly PrefabGUID CHAR_Blackfang_Striker = new PrefabGUID(761646020); public static readonly PrefabGUID CHAR_Blackfang_Striker_Servant = new PrefabGUID(-274383877); public static readonly PrefabGUID CHAR_Blackfang_Valyr_VBlood = new PrefabGUID(173259239); public static readonly PrefabGUID CHAR_Blackfang_ValyrCauldron = new PrefabGUID(1439742793); public static readonly PrefabGUID CHAR_Blackfang_Venomblade = new PrefabGUID(1864177126); public static readonly PrefabGUID CHAR_Blackfang_Venomblade_Servant = new PrefabGUID(1906807803); public static readonly PrefabGUID CHAR_Blackfang_Viper = new PrefabGUID(-436956599); public static readonly PrefabGUID CHAR_Blackfang_Viper_Servant = new PrefabGUID(-1108748448); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver = new PrefabGUID(-1508046438); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver_Servant = new PrefabGUID(-2089362645); public static readonly PrefabGUID CHAR_Blackfang_WoodCarver_Worshipper = new PrefabGUID(-625375348); public static readonly PrefabGUID CHAR_BloodBuff_Corrupted_Angel = new PrefabGUID(-932793458); public static readonly PrefabGUID CHAR_BloodBuff_Corrupted_Harpy = new PrefabGUID(-143994147); public static readonly PrefabGUID CHAR_Carriage_BanditAnimal = new PrefabGUID(1900336326); public static readonly PrefabGUID CHAR_Carriage_BanditCopper = new PrefabGUID(1866779672); public static readonly PrefabGUID CHAR_Carriage_BanditPlank = new PrefabGUID(-364183632); public static readonly PrefabGUID CHAR_Carriage_BanditPrisoners = new PrefabGUID(-1190354298); public static readonly PrefabGUID CHAR_Carriage_BanditSulfur = new PrefabGUID(855721879); public static readonly PrefabGUID CHAR_Carriage_BlackfangBastion = new PrefabGUID(-1395711815); public static readonly PrefabGUID CHAR_Carriage_BlackfangSouth = new PrefabGUID(-2075236675); public static readonly PrefabGUID CHAR_Carriage_ChuchGrape = new PrefabGUID(-84975023); public static readonly PrefabGUID CHAR_Carriage_ChuchSilver = new PrefabGUID(-1048977650); public static readonly PrefabGUID CHAR_Carriage_ChurchLegion = new PrefabGUID(177376927); public static readonly PrefabGUID CHAR_Carriage_ChurchMutants = new PrefabGUID(400170781); public static readonly PrefabGUID CHAR_Carriage_MilitiaCotton = new PrefabGUID(213173421); public static readonly PrefabGUID CHAR_Carriage_MilitiaIron = new PrefabGUID(769065062); public static readonly PrefabGUID CHAR_Carriage_MilitiaQuartz = new PrefabGUID(-75106506); public static readonly PrefabGUID CHAR_CarriageHorse_BanditAnimal = new PrefabGUID(-799718518); public static readonly PrefabGUID CHAR_CarriageHorse_BanditCopper = new PrefabGUID(-443327719); public static readonly PrefabGUID CHAR_CarriageHorse_BanditPlank = new PrefabGUID(-1859852856); public static readonly PrefabGUID CHAR_CarriageHorse_BanditPrisoners = new PrefabGUID(-1761137820); public static readonly PrefabGUID CHAR_CarriageHorse_BanditSulfur = new PrefabGUID(-1193126567); public static readonly PrefabGUID CHAR_CarriageHorse_BlackfangBastion = new PrefabGUID(731857280); public static readonly PrefabGUID CHAR_CarriageHorse_BlackfangSouth = new PrefabGUID(96544496); public static readonly PrefabGUID CHAR_CarriageHorse_ChuchGrape = new PrefabGUID(803219139); public static readonly PrefabGUID CHAR_CarriageHorse_ChuchSilver = new PrefabGUID(-1588337666); public static readonly PrefabGUID CHAR_CarriageHorse_ChurchLegion = new PrefabGUID(452018442); public static readonly PrefabGUID CHAR_CarriageHorse_ChurchMutants = new PrefabGUID(-1666526529); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaCotton = new PrefabGUID(-755774482); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaIron = new PrefabGUID(1510247015); public static readonly PrefabGUID CHAR_CarriageHorse_MilitiaQuartz = new PrefabGUID(374565592); public static readonly PrefabGUID CHAR_ChurchOfLight_Archer = new PrefabGUID(426583055); public static readonly PrefabGUID CHAR_ChurchOfLight_Archer_Servant = new PrefabGUID(-915884427); public static readonly PrefabGUID CHAR_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(114912615); public static readonly PrefabGUID CHAR_ChurchOfLight_CardinalAide = new PrefabGUID(1745498602); public static readonly PrefabGUID CHAR_ChurchOfLight_Cleric = new PrefabGUID(-1464869978); public static readonly PrefabGUID CHAR_ChurchOfLight_Cleric_Servant = new PrefabGUID(1218339832); public static readonly PrefabGUID CHAR_ChurchOfLight_EnchantedCross = new PrefabGUID(-1449314709); public static readonly PrefabGUID CHAR_ChurchOfLight_Footman = new PrefabGUID(2128996433); public static readonly PrefabGUID CHAR_ChurchOfLight_Footman_Servant = new PrefabGUID(-1719944550); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_2H = new PrefabGUID(-930333806); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_2H_Servant = new PrefabGUID(17367048); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_Shield = new PrefabGUID(794228023); public static readonly PrefabGUID CHAR_ChurchOfLight_Knight_Shield_Servant = new PrefabGUID(-694328454); public static readonly PrefabGUID CHAR_ChurchOfLight_Lightweaver = new PrefabGUID(1185952775); public static readonly PrefabGUID CHAR_ChurchOfLight_Lightweaver_Servant = new PrefabGUID(-383158562); public static readonly PrefabGUID CHAR_ChurchOfLight_Miner_Standard = new PrefabGUID(924132254); public static readonly PrefabGUID CHAR_ChurchOfLight_Miner_Standard_Servant = new PrefabGUID(-1988959460); public static readonly PrefabGUID CHAR_ChurchOfLight_Overseer_VBlood = new PrefabGUID(-26105228); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin = new PrefabGUID(1728773109); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_HomePos = new PrefabGUID(-502558061); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_Servant = new PrefabGUID(1649578802); public static readonly PrefabGUID CHAR_ChurchOfLight_Paladin_VBlood = new PrefabGUID(-740796338); public static readonly PrefabGUID CHAR_ChurchOfLight_Priest = new PrefabGUID(1406393857); public static readonly PrefabGUID CHAR_ChurchOfLight_Priest_Servant = new PrefabGUID(-1728284448); public static readonly PrefabGUID CHAR_ChurchOfLight_Rifleman = new PrefabGUID(1148936156); public static readonly PrefabGUID CHAR_ChurchOfLight_Rifleman_Servant = new PrefabGUID(-268935837); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(891705701); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Enforcer_Servant = new PrefabGUID(-2114140065); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(-240536861); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveMaster_Sentry_Servant = new PrefabGUID(-442412464); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian = new PrefabGUID(-1875351031); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian_Cover = new PrefabGUID(-1387838833); public static readonly PrefabGUID CHAR_ChurchOfLight_SlaveRuffian_Servant = new PrefabGUID(-1416355128); public static readonly PrefabGUID CHAR_ChurchOfLight_SmiteOrb = new PrefabGUID(1917502536); public static readonly PrefabGUID CHAR_ChurchOfLight_Sommelier_BarrelMinion = new PrefabGUID(-1917548708); public static readonly PrefabGUID CHAR_ChurchOfLight_Sommelier_VBlood = new PrefabGUID(192051202); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Female = new PrefabGUID(-1224027101); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Female_Servant = new PrefabGUID(1157537604); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Male = new PrefabGUID(-2025921616); public static readonly PrefabGUID CHAR_ChurchOfLight_Villager_Male_Servant = new PrefabGUID(-1786031969); public static readonly PrefabGUID CHAR_CopperGolem = new PrefabGUID(1107541186); public static readonly PrefabGUID CHAR_Corrupted_Bear_Standard = new PrefabGUID(-1697944553); public static readonly PrefabGUID CHAR_Corrupted_Crow = new PrefabGUID(1029047051); public static readonly PrefabGUID CHAR_Corrupted_Deer = new PrefabGUID(1780171587); public static readonly PrefabGUID CHAR_Corrupted_Wolf = new PrefabGUID(616274140); public static readonly PrefabGUID CHAR_CreatureDeer_Mutated = new PrefabGUID(-575831311); public static readonly PrefabGUID CHAR_CreatureMoose_Mutated = new PrefabGUID(1570140219); public static readonly PrefabGUID CHAR_Critter_Rat = new PrefabGUID(-2072914343); public static readonly PrefabGUID CHAR_Critter_Silkworm = new PrefabGUID(-1587402408); public static readonly PrefabGUID CHAR_Critter_VerminNest_Rat = new PrefabGUID(-372256748); public static readonly PrefabGUID CHAR_Crow_Manticore_Minion = new PrefabGUID(-1476015811); public static readonly PrefabGUID CHAR_Cultist_Pyromancer = new PrefabGUID(2055824593); public static readonly PrefabGUID CHAR_Cultist_Slicer = new PrefabGUID(1807491570); public static readonly PrefabGUID CHAR_Cursed_Bear_Spirit = new PrefabGUID(1105583702); public static readonly PrefabGUID CHAR_Cursed_Bear_Standard = new PrefabGUID(-559819989); public static readonly PrefabGUID CHAR_Cursed_MonsterToad = new PrefabGUID(575918722); public static readonly PrefabGUID CHAR_Cursed_MonsterToad_Minion = new PrefabGUID(-38041784); public static readonly PrefabGUID CHAR_Cursed_Mosquito = new PrefabGUID(-744966291); public static readonly PrefabGUID CHAR_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-935560085); public static readonly PrefabGUID CHAR_Cursed_MountainBeast_VBlood = new PrefabGUID(-1936575244); public static readonly PrefabGUID CHAR_Cursed_Nightlurker = new PrefabGUID(-2046268156); public static readonly PrefabGUID CHAR_Cursed_ToadKing_VBlood = new PrefabGUID(-203043163); public static readonly PrefabGUID CHAR_Cursed_ToadSpitter = new PrefabGUID(1478790879); public static readonly PrefabGUID CHAR_Cursed_Witch = new PrefabGUID(-56441915); public static readonly PrefabGUID CHAR_Cursed_Witch_Exploding_Mosquito = new PrefabGUID(-1399273168); public static readonly PrefabGUID CHAR_Cursed_Witch_NetherDemon = new PrefabGUID(-54072010); public static readonly PrefabGUID CHAR_Cursed_Witch_VBlood = new PrefabGUID(-910296704); public static readonly PrefabGUID CHAR_Cursed_Wolf = new PrefabGUID(-218175217); public static readonly PrefabGUID CHAR_Cursed_Wolf_Spirit = new PrefabGUID(407089231); public static readonly PrefabGUID CHAR_Cursed_WormTerror = new PrefabGUID(658578725); public static readonly PrefabGUID CHAR_Dracula_BloodSoul = new PrefabGUID(1406266284); public static readonly PrefabGUID CHAR_Dracula_BloodSoul_Heart = new PrefabGUID(55100532); public static readonly PrefabGUID CHAR_Dracula_ShadowBatSwarm = new PrefabGUID(-2092104425); public static readonly PrefabGUID CHAR_Dracula_SpellStone_LargeBlood = new PrefabGUID(32692466); public static readonly PrefabGUID CHAR_EmeryElemental = new PrefabGUID(-1388651766); public static readonly PrefabGUID CHAR_EmeryGolem = new PrefabGUID(1787640747); public static readonly PrefabGUID CHAR_Farmland_Wolf = new PrefabGUID(-578677530); public static readonly PrefabGUID CHAR_Farmlands_Cow = new PrefabGUID(721166952); public static readonly PrefabGUID CHAR_Farmlands_Farmer = new PrefabGUID(-1342764880); public static readonly PrefabGUID CHAR_Farmlands_Farmer_Servant = new PrefabGUID(516718373); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Female_FryingPan = new PrefabGUID(729746981); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Female_Pitchfork = new PrefabGUID(1576267559); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Club = new PrefabGUID(-164116132); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Shovel = new PrefabGUID(-864975423); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Torch = new PrefabGUID(-81727312); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Male_Unarmed = new PrefabGUID(-1353870145); public static readonly PrefabGUID CHAR_Farmlands_HostileVillager_Werewolf = new PrefabGUID(-951976780); public static readonly PrefabGUID CHAR_Farmlands_Nun_Servant = new PrefabGUID(-1788957652); public static readonly PrefabGUID CHAR_Farmlands_Pig = new PrefabGUID(-1356006948); public static readonly PrefabGUID CHAR_Farmlands_Ram = new PrefabGUID(947731555); public static readonly PrefabGUID CHAR_Farmlands_Sheep = new PrefabGUID(1012307512); public static readonly PrefabGUID CHAR_Farmlands_SheepOld = new PrefabGUID(1635167941); public static readonly PrefabGUID CHAR_Farmlands_SmallPig = new PrefabGUID(1420480270); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female = new PrefabGUID(525027204); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Servant = new PrefabGUID(1532829342); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Sister = new PrefabGUID(1772642154); public static readonly PrefabGUID CHAR_Farmlands_Villager_Female_Sister_Servant = new PrefabGUID(-444945115); public static readonly PrefabGUID CHAR_Farmlands_Villager_Male = new PrefabGUID(1887807944); public static readonly PrefabGUID CHAR_Farmlands_Villager_Male_Servant = new PrefabGUID(1426964824); public static readonly PrefabGUID CHAR_Farmlands_Woodcutter_Standard = new PrefabGUID(-893091615); public static readonly PrefabGUID CHAR_Farmlands_Woodcutter_Standard_Servant = new PrefabGUID(-1659842473); public static readonly PrefabGUID Char_Fish_General = new PrefabGUID(1559481073); public static readonly PrefabGUID CHAR_Forest_AngryMoose = new PrefabGUID(2097040330); public static readonly PrefabGUID CHAR_Forest_Bear_Dire_Vblood = new PrefabGUID(-1391546313); public static readonly PrefabGUID CHAR_Forest_Bear_Standard = new PrefabGUID(1043643344); public static readonly PrefabGUID CHAR_Forest_Crow = new PrefabGUID(-2002658567); public static readonly PrefabGUID CHAR_Forest_Deer = new PrefabGUID(1897056612); public static readonly PrefabGUID CHAR_Forest_Deer_StayCloseToSpawn = new PrefabGUID(1696014952); public static readonly PrefabGUID CHAR_Forest_Moose = new PrefabGUID(-831097925); public static readonly PrefabGUID CHAR_Forest_Wolf = new PrefabGUID(-1418430647); public static readonly PrefabGUID CHAR_Forest_Wolf_VBlood = new PrefabGUID(-1905691330); public static readonly PrefabGUID CHAR_Frostarrow_GateBoss_Minor = new PrefabGUID(1318855899); public static readonly PrefabGUID CHAR_GateBoss_Pixie = new PrefabGUID(-1084690188); public static readonly PrefabGUID CHAR_Geomancer_Golem_Minion = new PrefabGUID(-2092246077); public static readonly PrefabGUID CHAR_Geomancer_Human_VBlood = new PrefabGUID(-1065970933); public static readonly PrefabGUID CHAR_Gloomrot_AceIncinerator = new PrefabGUID(1756241788); public static readonly PrefabGUID CHAR_Gloomrot_AceIncinerator_Servant = new PrefabGUID(-1897484769); public static readonly PrefabGUID CHAR_Gloomrot_Batoon = new PrefabGUID(-1707267769); public static readonly PrefabGUID CHAR_Gloomrot_Batoon_Servant = new PrefabGUID(657708566); public static readonly PrefabGUID CHAR_Gloomrot_Iva_VBlood = new PrefabGUID(172235178); public static readonly PrefabGUID CHAR_Gloomrot_Monster_VBlood = new PrefabGUID(1233988687); public static readonly PrefabGUID CHAR_Gloomrot_Purifier_VBlood = new PrefabGUID(106480588); public static readonly PrefabGUID CHAR_Gloomrot_Purifier_VBlood_GateBoss_Major = new PrefabGUID(-440174408); public static readonly PrefabGUID CHAR_Gloomrot_Pyro = new PrefabGUID(-322293503); public static readonly PrefabGUID CHAR_Gloomrot_Pyro_Servant = new PrefabGUID(1304434816); public static readonly PrefabGUID CHAR_Gloomrot_Railgunner = new PrefabGUID(1732477970); public static readonly PrefabGUID CHAR_Gloomrot_Railgunner_Servant = new PrefabGUID(-1070366200); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_HomePos = new PrefabGUID(-1499025256); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_Minion = new PrefabGUID(1626314708); public static readonly PrefabGUID CHAR_Gloomrot_RailgunSergeant_VBlood = new PrefabGUID(2054432370); public static readonly PrefabGUID CHAR_Gloomrot_SentryOfficer = new PrefabGUID(1401026468); public static readonly PrefabGUID CHAR_Gloomrot_SentryOfficer_Servant = new PrefabGUID(-1213645419); public static readonly PrefabGUID CHAR_Gloomrot_SentryTurret = new PrefabGUID(-1082044089); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Driller = new PrefabGUID(709450349); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Gattler = new PrefabGUID(-884401089); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(1655577903); public static readonly PrefabGUID CHAR_Gloomrot_SpiderTank_Zapper = new PrefabGUID(-2018710724); public static readonly PrefabGUID CHAR_Gloomrot_Tazer = new PrefabGUID(674807351); public static readonly PrefabGUID CHAR_Gloomrot_Tazer_Servant = new PrefabGUID(-924080115); public static readonly PrefabGUID CHAR_Gloomrot_Technician = new PrefabGUID(820492683); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Labworker = new PrefabGUID(-825299465); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Labworker_Servant = new PrefabGUID(-1034892278); public static readonly PrefabGUID CHAR_Gloomrot_Technician_Servant = new PrefabGUID(-775762125); public static readonly PrefabGUID CHAR_Gloomrot_TheProfessor_VBlood = new PrefabGUID(814083983); public static readonly PrefabGUID CHAR_Gloomrot_TractorBeamer = new PrefabGUID(-293507834); public static readonly PrefabGUID CHAR_Gloomrot_TractorBeamer_Servant = new PrefabGUID(565869317); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Female = new PrefabGUID(1216169364); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Female_Servant = new PrefabGUID(-1192403515); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Male = new PrefabGUID(-732208863); public static readonly PrefabGUID CHAR_Gloomrot_Villager_Male_Servant = new PrefabGUID(-2085282780); public static readonly PrefabGUID CHAR_Gloomrot_Voltage_VBlood = new PrefabGUID(-1101874342); public static readonly PrefabGUID CHAR_Gloomrot_Voltage_VBlood_GateBoss_Major = new PrefabGUID(-427888732); public static readonly PrefabGUID CHAR_GoldGolem = new PrefabGUID(192241915); public static readonly PrefabGUID CHAR_Graveyard_Crow = new PrefabGUID(-221278041); public static readonly PrefabGUID CHAR_Harpy_Dasher = new PrefabGUID(-1846851895); public static readonly PrefabGUID CHAR_Harpy_Dasher_SUMMON = new PrefabGUID(1635780151); public static readonly PrefabGUID CHAR_Harpy_FeatherDuster = new PrefabGUID(-1407234470); public static readonly PrefabGUID CHAR_Harpy_Matriarch_VBlood = new PrefabGUID(685266977); public static readonly PrefabGUID CHAR_Harpy_Scratcher = new PrefabGUID(1462269123); public static readonly PrefabGUID CHAR_Harpy_Sorceress = new PrefabGUID(1224283123); public static readonly PrefabGUID CHAR_Harpy_Sorceress_NetherDemon = new PrefabGUID(1405099312); public static readonly PrefabGUID CHAR_IceElemental = new PrefabGUID(302393064); public static readonly PrefabGUID CHAR_Illusion_Mosquito = new PrefabGUID(-303396552); public static readonly PrefabGUID CHAR_IronGolem = new PrefabGUID(763796308); public static readonly PrefabGUID CHAR_IronGolem_NetherDemon = new PrefabGUID(-1794508086); public static readonly PrefabGUID CHAR_Legion_Assassin = new PrefabGUID(-1076780215); public static readonly PrefabGUID CHAR_Legion_Assassin_Servant = new PrefabGUID(1502148822); public static readonly PrefabGUID CHAR_Legion_BatSwarm = new PrefabGUID(593505050); public static readonly PrefabGUID CHAR_Legion_BatSwarm_Lesser = new PrefabGUID(-1055380229); public static readonly PrefabGUID CHAR_Legion_BloodProphet = new PrefabGUID(1912966420); public static readonly PrefabGUID CHAR_Legion_BloodProphet_Lesser = new PrefabGUID(-2080231735); public static readonly PrefabGUID CHAR_Legion_Dreadhorn = new PrefabGUID(981369753); public static readonly PrefabGUID CHAR_Legion_DreadHorn_Lesser = new PrefabGUID(-1140588645); public static readonly PrefabGUID CHAR_Legion_Gargoyle = new PrefabGUID(-65981941); public static readonly PrefabGUID CHAR_Legion_Gargoyle_StatueSpawn = new PrefabGUID(280858720); public static readonly PrefabGUID CHAR_Legion_Gargoyle_Styx = new PrefabGUID(-392776091); public static readonly PrefabGUID CHAR_Legion_Guardian_DraculaMinion = new PrefabGUID(-669027288); public static readonly PrefabGUID CHAR_Legion_Guardian_DraculaMinion_Lesser = new PrefabGUID(1144208724); public static readonly PrefabGUID CHAR_Legion_HighLord_GroundSword = new PrefabGUID(-1266036232); public static readonly PrefabGUID CHAR_Legion_NightMaiden = new PrefabGUID(-494298686); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Lesser = new PrefabGUID(2111003460); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Lesser_Servant = new PrefabGUID(-1099047820); public static readonly PrefabGUID CHAR_Legion_NightMaiden_Servant = new PrefabGUID(-340923989); public static readonly PrefabGUID CHAR_Legion_Nightmare = new PrefabGUID(-1009917656); public static readonly PrefabGUID CHAR_Legion_Nightmare_Lesser = new PrefabGUID(-981051151); public static readonly PrefabGUID CHAR_Legion_Shadowkin = new PrefabGUID(1980594081); public static readonly PrefabGUID CHAR_Legion_Shadowkin_Lesser = new PrefabGUID(-1200074387); public static readonly PrefabGUID CHAR_Legion_Vargulf = new PrefabGUID(-653348998); public static readonly PrefabGUID CHAR_Legion_Vargulf_Lesser = new PrefabGUID(2049379982); public static readonly PrefabGUID CHAR_Manticore_Airborne = new PrefabGUID(-1252779334); public static readonly PrefabGUID CHAR_Manticore_FarbaneSuprise = new PrefabGUID(-767167590); public static readonly PrefabGUID CHAR_Manticore_HomePos = new PrefabGUID(980068444); public static readonly PrefabGUID CHAR_Manticore_VBlood = new PrefabGUID(-393555055); public static readonly PrefabGUID CHAR_Mantrap_Corrupted = new PrefabGUID(1527640414); public static readonly PrefabGUID CHAR_Mantrap_Corrupted_Minion = new PrefabGUID(1906792990); public static readonly PrefabGUID CHAR_Mantrap_Corrupted_XL = new PrefabGUID(-1915060856); public static readonly PrefabGUID CHAR_Mantrap_Dull = new PrefabGUID(-878541676); public static readonly PrefabGUID CHAR_Mantrap_Nest = new PrefabGUID(2016963774); public static readonly PrefabGUID CHAR_Mantrap_Standard = new PrefabGUID(173817657); public static readonly PrefabGUID CHAR_Militia_BellRinger = new PrefabGUID(-1670130821); public static readonly PrefabGUID CHAR_Militia_BellRinger_Servant = new PrefabGUID(-1433235567); public static readonly PrefabGUID CHAR_Militia_BishopOfDunley_VBlood = new PrefabGUID(-680831417); public static readonly PrefabGUID CHAR_Militia_Bomber = new PrefabGUID(847893333); public static readonly PrefabGUID CHAR_Militia_Bomber_Servant = new PrefabGUID(232701971); public static readonly PrefabGUID CHAR_Militia_ConstrainingPole = new PrefabGUID(85290673); public static readonly PrefabGUID CHAR_Militia_Crossbow = new PrefabGUID(956965183); public static readonly PrefabGUID CHAR_Militia_Crossbow_Servant = new PrefabGUID(1481842114); public static readonly PrefabGUID CHAR_Militia_Crossbow_Summon = new PrefabGUID(2036785949); public static readonly PrefabGUID CHAR_Militia_Devoted = new PrefabGUID(1660801216); public static readonly PrefabGUID CHAR_Militia_Devoted_Servant = new PrefabGUID(-823557242); public static readonly PrefabGUID CHAR_Militia_EyeOfGod = new PrefabGUID(-1254618756); public static readonly PrefabGUID CHAR_Militia_Fabian_VBlood = new PrefabGUID(619948378); public static readonly PrefabGUID CHAR_Militia_FabiansSteed = new PrefabGUID(826666431); public static readonly PrefabGUID CHAR_Militia_FabiansSteed_Minion = new PrefabGUID(-1509286426); public static readonly PrefabGUID CHAR_Militia_Glassblower_VBlood = new PrefabGUID(910988233); public static readonly PrefabGUID CHAR_Militia_Guard = new PrefabGUID(1730498275); public static readonly PrefabGUID CHAR_Militia_Guard_Servant = new PrefabGUID(-1447279513); public static readonly PrefabGUID CHAR_Militia_Guard_Summon = new PrefabGUID(1050151632); public static readonly PrefabGUID CHAR_Militia_Guard_VBlood = new PrefabGUID(-29797003); public static readonly PrefabGUID CHAR_Militia_Guard_VBlood_GateBoss_Minor = new PrefabGUID(1494126678); public static readonly PrefabGUID CHAR_Militia_Heavy = new PrefabGUID(2005508157); public static readonly PrefabGUID CHAR_Militia_Heavy_Servant = new PrefabGUID(-1773935659); public static readonly PrefabGUID CHAR_Militia_Horseman = new PrefabGUID(-235172198); public static readonly PrefabGUID CHAR_Militia_Horseman_Mount = new PrefabGUID(-1914181232); public static readonly PrefabGUID CHAR_Militia_Horseman_Summon = new PrefabGUID(-1799461404); public static readonly PrefabGUID CHAR_Militia_Hound = new PrefabGUID(-249647316); public static readonly PrefabGUID CHAR_Militia_Hound_VBlood = new PrefabGUID(-1373413273); public static readonly PrefabGUID CHAR_Militia_HoundMaster_VBlood = new PrefabGUID(-784265984); public static readonly PrefabGUID CHAR_Militia_InkCrawler = new PrefabGUID(2090982759); public static readonly PrefabGUID CHAR_Militia_Leader_VBlood = new PrefabGUID(1688478381); public static readonly PrefabGUID CHAR_Militia_Leader_VBlood_GateBoss_Major = new PrefabGUID(1990744594); public static readonly PrefabGUID CHAR_Militia_Light = new PrefabGUID(-63435588); public static readonly PrefabGUID CHAR_Militia_Light_Servant = new PrefabGUID(169329980); public static readonly PrefabGUID CHAR_Militia_Light_Summon = new PrefabGUID(1772451421); public static readonly PrefabGUID CHAR_Militia_Longbowman = new PrefabGUID(203103783); public static readonly PrefabGUID CHAR_Militia_Longbowman_LightArrow_Vblood = new PrefabGUID(850622034); public static readonly PrefabGUID CHAR_Militia_Longbowman_Servant = new PrefabGUID(-242295780); public static readonly PrefabGUID CHAR_Militia_Longbowman_Summon = new PrefabGUID(1083647444); public static readonly PrefabGUID CHAR_Militia_Miner_Standard = new PrefabGUID(-1072754152); public static readonly PrefabGUID CHAR_Militia_Miner_Standard_Servant = new PrefabGUID(-1363137425); public static readonly PrefabGUID CHAR_Militia_Nun = new PrefabGUID(-700632469); public static readonly PrefabGUID CHAR_Militia_Nun_VBlood = new PrefabGUID(-99012450); public static readonly PrefabGUID CHAR_Militia_Rider = new PrefabGUID(-1719333743); public static readonly PrefabGUID CHAR_Militia_Rider_Mount = new PrefabGUID(-138006205); public static readonly PrefabGUID CHAR_Militia_Scribe_VBlood = new PrefabGUID(1945956671); public static readonly PrefabGUID CHAR_Militia_Torchbearer = new PrefabGUID(37713289); public static readonly PrefabGUID CHAR_Militia_Torchbearer_Servant = new PrefabGUID(986768339); public static readonly PrefabGUID CHAR_Militia_Undead_Infiltrator = new PrefabGUID(-614820237); public static readonly PrefabGUID CHAR_Monster_LightningPillar = new PrefabGUID(-1977168943); public static readonly PrefabGUID CHAR_Mount_Horse = new PrefabGUID(1149585723); public static readonly PrefabGUID CHAR_Mount_Horse_Vampire = new PrefabGUID(-1502865710); public static readonly PrefabGUID CHAR_Mutant_Bear_Standard = new PrefabGUID(1938756250); public static readonly PrefabGUID CHAR_Mutant_FleshGolem = new PrefabGUID(823276204); public static readonly PrefabGUID CHAR_Mutant_FleshGolem_PrisonVariant = new PrefabGUID(-1025552087); public static readonly PrefabGUID CHAR_Mutant_RatHorror = new PrefabGUID(-375581934); public static readonly PrefabGUID CHAR_Mutant_Spitter = new PrefabGUID(1092792896); public static readonly PrefabGUID CHAR_Mutant_Wolf = new PrefabGUID(572729167); public static readonly PrefabGUID CHAR_Noctem_Crow = new PrefabGUID(1239832946); public static readonly PrefabGUID CHAR_Ocean_Blowfish = new PrefabGUID(1786690263); public static readonly PrefabGUID CHAR_Ocean_Piranha = new PrefabGUID(470753758); public static readonly PrefabGUID CHAR_Paladin_DivineAngel = new PrefabGUID(-1737346940); public static readonly PrefabGUID CHAR_Paladin_FallenAngel = new PrefabGUID(-76116724); public static readonly PrefabGUID CHAR_Pixie = new PrefabGUID(1434914085); public static readonly PrefabGUID CHAR_Poloma_VBlood = new PrefabGUID(-484556888); public static readonly PrefabGUID CHAR_Poloma_VBlood_GateBoss_Minor = new PrefabGUID(-1381375644); public static readonly PrefabGUID CHAR_RatHorror_Mutant_MutantBlood = new PrefabGUID(218843465); public static readonly PrefabGUID CHAR_RockElemental = new PrefabGUID(20817667); public static readonly PrefabGUID CHAR_RockElemental_NetherDemon = new PrefabGUID(577495705); public static readonly PrefabGUID CHAR_Scarecrow = new PrefabGUID(-1750347680); public static readonly PrefabGUID CHAR_SeaSerpent = new PrefabGUID(-371347062); public static readonly PrefabGUID CHAR_SeaSerpent_Hard = new PrefabGUID(-694393029); public static readonly PrefabGUID CHAR_Spectral_Guardian = new PrefabGUID(304726480); public static readonly PrefabGUID CHAR_Spectral_SpellSlinger = new PrefabGUID(2065149172); public static readonly PrefabGUID CHAR_Spider_Baneling = new PrefabGUID(-764515001); public static readonly PrefabGUID CHAR_Spider_Baneling_Summon = new PrefabGUID(-1004061470); public static readonly PrefabGUID CHAR_Spider_Broodmother = new PrefabGUID(342127250); public static readonly PrefabGUID CHAR_Spider_Forest = new PrefabGUID(-581295882); public static readonly PrefabGUID CHAR_Spider_Forestling = new PrefabGUID(574276383); public static readonly PrefabGUID CHAR_Spider_Melee = new PrefabGUID(2136899683); public static readonly PrefabGUID CHAR_Spider_Melee_GateBoss_Summon = new PrefabGUID(-725251219); public static readonly PrefabGUID CHAR_Spider_Melee_Summon = new PrefabGUID(2119230788); public static readonly PrefabGUID CHAR_Spider_Queen_VBlood = new PrefabGUID(-548489519); public static readonly PrefabGUID CHAR_Spider_Queen_VBlood_GateBoss_Major = new PrefabGUID(-943858353); public static readonly PrefabGUID CHAR_Spider_Range = new PrefabGUID(2103131615); public static readonly PrefabGUID CHAR_Spider_Range_Summon = new PrefabGUID(1974733695); public static readonly PrefabGUID CHAR_Spider_Spiderling = new PrefabGUID(1078424589); public static readonly PrefabGUID CHAR_Spider_Spiderling_VerminNest = new PrefabGUID(1767714956); public static readonly PrefabGUID CHAR_Spiderling_Summon = new PrefabGUID(-18289884); public static readonly PrefabGUID CHAR_StoneGolem = new PrefabGUID(-779411607); public static readonly PrefabGUID CHAR_SUMMON_Wolf = new PrefabGUID(1825512527); public static readonly PrefabGUID CHAR_TargetDummy_Footman = new PrefabGUID(1479720323); public static readonly PrefabGUID CHAR_Trader_Dunley_Gems_T02 = new PrefabGUID(194933933); public static readonly PrefabGUID CHAR_Trader_Dunley_Herbs_T02 = new PrefabGUID(233171451); public static readonly PrefabGUID CHAR_Trader_Dunley_Knowledge_T02 = new PrefabGUID(281572043); public static readonly PrefabGUID CHAR_Trader_Dunley_RareGoods_T02 = new PrefabGUID(-1594911649); public static readonly PrefabGUID CHAR_Trader_Farbane_Gems_T01 = new PrefabGUID(-1168705805); public static readonly PrefabGUID CHAR_Trader_Farbane_Herbs_T01 = new PrefabGUID(-375258845); public static readonly PrefabGUID CHAR_Trader_Farbane_Knowledge_T01 = new PrefabGUID(-208499374); public static readonly PrefabGUID CHAR_Trader_Farbane_RareGoods_T01 = new PrefabGUID(-1810631919); public static readonly PrefabGUID CHAR_Trader_Gloomrot_T04 = new PrefabGUID(-1292194494); public static readonly PrefabGUID CHAR_Trader_Noctem_Major = new PrefabGUID(1631713257); public static readonly PrefabGUID CHAR_Trader_Noctem_Minor = new PrefabGUID(345283594); public static readonly PrefabGUID CHAR_Trader_Silverlight_Gems_T03 = new PrefabGUID(-1990875761); public static readonly PrefabGUID CHAR_Trader_Silverlight_Herbs_T03 = new PrefabGUID(1687896942); public static readonly PrefabGUID CHAR_Trader_Silverlight_Knowledge_T03 = new PrefabGUID(-915182578); public static readonly PrefabGUID CHAR_Trader_Silverlight_RareGoods_T03 = new PrefabGUID(739223277); public static readonly PrefabGUID CHAR_Treant = new PrefabGUID(-1089337069); public static readonly PrefabGUID CHAR_Treant_Corrupted = new PrefabGUID(1496810447); public static readonly PrefabGUID CHAR_Treant_NetherDemon = new PrefabGUID(-2037006512); public static readonly PrefabGUID CHAR_TreantMantrap_Corrupted_Minion_Left = new PrefabGUID(358623979); public static readonly PrefabGUID CHAR_TreantMantrap_Corrupted_Minion_Right = new PrefabGUID(2107764370); public static readonly PrefabGUID CHAR_Undead_ArenaChampion_VBlood = new PrefabGUID(-753453016); public static readonly PrefabGUID CHAR_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(-861407720); public static readonly PrefabGUID CHAR_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(-195077008); public static readonly PrefabGUID CHAR_Undead_Assassin = new PrefabGUID(-1365627158); public static readonly PrefabGUID CHAR_Undead_BishopOfDeath_VBlood = new PrefabGUID(577478542); public static readonly PrefabGUID CHAR_Undead_BishopOfDeath_VBlood_GateBoss_Minor = new PrefabGUID(-1822337177); public static readonly PrefabGUID CHAR_Undead_BishopOfShadows_VBlood = new PrefabGUID(939467639); public static readonly PrefabGUID CHAR_Undead_BishopOfShadows_VBlood_GateBoss_Major = new PrefabGUID(-1805216630); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Axe = new PrefabGUID(1971653132); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(-1099451233); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Mace = new PrefabGUID(-55245645); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Slashers = new PrefabGUID(769910415); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Spear = new PrefabGUID(233127264); public static readonly PrefabGUID CHAR_Undead_CursedSmith_FloatingWeapon_Sword = new PrefabGUID(-2020619708); public static readonly PrefabGUID CHAR_Undead_CursedSmith_VBlood = new PrefabGUID(326378955); public static readonly PrefabGUID CHAR_Undead_FlyingSkull = new PrefabGUID(-236166535); public static readonly PrefabGUID CHAR_Undead_GhostAssassin = new PrefabGUID(849891426); public static readonly PrefabGUID CHAR_Undead_GhostBanshee = new PrefabGUID(-1146194149); public static readonly PrefabGUID CHAR_Undead_GhostBanshee_MorganaMinion = new PrefabGUID(153561250); public static readonly PrefabGUID CHAR_Undead_GhostBanshee_TombSummon = new PrefabGUID(414648299); public static readonly PrefabGUID CHAR_Undead_GhostGuardian = new PrefabGUID(-458883491); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Crossbow = new PrefabGUID(-85729652); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Crossbow_Summon = new PrefabGUID(348038236); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Light = new PrefabGUID(-1618703048); public static readonly PrefabGUID CHAR_Undead_GhostMilitia_Light_Summon = new PrefabGUID(1684831595); public static readonly PrefabGUID CHAR_Undead_Ghoul_Armored_Farmlands = new PrefabGUID(2105565286); public static readonly PrefabGUID CHAR_Undead_Ghoul_TombSummon = new PrefabGUID(937597711); public static readonly PrefabGUID CHAR_Undead_Guardian = new PrefabGUID(-1967480038); public static readonly PrefabGUID CHAR_Undead_Infiltrator_AfterShadow = new PrefabGUID(-558928562); public static readonly PrefabGUID CHAR_Undead_Infiltrator_VBlood = new PrefabGUID(613251918); public static readonly PrefabGUID CHAR_Undead_Infiltrator_VBlood_GateBoss_Major = new PrefabGUID(-982850914); public static readonly PrefabGUID CHAR_Undead_Leader_Vblood = new PrefabGUID(-1365931036); public static readonly PrefabGUID CHAR_Undead_Leader_Vblood_GateBoss_Minor = new PrefabGUID(-989493184); public static readonly PrefabGUID CHAR_Undead_Necromancer = new PrefabGUID(-572568236); public static readonly PrefabGUID CHAR_Undead_Necromancer_TombSummon = new PrefabGUID(2025660438); public static readonly PrefabGUID CHAR_Undead_Priest = new PrefabGUID(-1653554504); public static readonly PrefabGUID CHAR_Undead_Priest_VBlood = new PrefabGUID(153390636); public static readonly PrefabGUID CHAR_Undead_RottingGhoul = new PrefabGUID(-1722506709); public static readonly PrefabGUID CHAR_Undead_ShadowSoldier = new PrefabGUID(678628353); public static readonly PrefabGUID CHAR_Undead_ShadowSoldier_GateBoss = new PrefabGUID(-361904832); public static readonly PrefabGUID CHAR_Undead_SkeletonApprentice = new PrefabGUID(-1789347076); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Base = new PrefabGUID(597386568); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Farbane_OLD = new PrefabGUID(1250474035); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_GolemMinion = new PrefabGUID(1706319681); public static readonly PrefabGUID CHAR_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(1395549638); public static readonly PrefabGUID CHAR_Undead_SkeletonGolem = new PrefabGUID(-1380216646); public static readonly PrefabGUID CHAR_Undead_SkeletonGolem_NetherDemon = new PrefabGUID(-1115032717); public static readonly PrefabGUID CHAR_Undead_SkeletonMage = new PrefabGUID(-1287507270); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(952695804); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(-837329073); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Base = new PrefabGUID(-603934060); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_GolemMinion = new PrefabGUID(343833814); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Infiltrator = new PrefabGUID(-1642110920); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_TombSummon = new PrefabGUID(-259591573); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Unholy_Minion = new PrefabGUID(-1779239433); public static readonly PrefabGUID CHAR_Undead_SkeletonSoldier_Withered = new PrefabGUID(-1584807109); public static readonly PrefabGUID CHAR_Undead_UndyingGhoul = new PrefabGUID(1640311129); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_Ghost = new PrefabGUID(128488545); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_VBlood = new PrefabGUID(-1208888966); public static readonly PrefabGUID CHAR_Undead_ZealousCultist_VBlood_GateBoss_Major = new PrefabGUID(-1189707552); public static readonly PrefabGUID CHAR_Unholy_DeathKnight = new PrefabGUID(1857865401); public static readonly PrefabGUID CHAR_Unholy_FallenAngel = new PrefabGUID(-1928607398); public static readonly PrefabGUID CHAR_Unholy_SkeletonApprentice_Summon = new PrefabGUID(722671522); public static readonly PrefabGUID CHAR_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1604500740); public static readonly PrefabGUID CHAR_Unholy_UnstableArachnid = new PrefabGUID(834333879); public static readonly PrefabGUID CHAR_Unholy_UnstableArachnid_Small = new PrefabGUID(-1106602776); public static readonly PrefabGUID CHAR_Vampire_BloodKnight_VBlood = new PrefabGUID(495971434); public static readonly PrefabGUID CHAR_Vampire_CrimsonIronMaiden = new PrefabGUID(-1884553416); public static readonly PrefabGUID CHAR_Vampire_Cultist_BloodCrystal = new PrefabGUID(-1671572471); public static readonly PrefabGUID CHAR_Vampire_Cultist_BloodCrystal_Female = new PrefabGUID(-1208066429); public static readonly PrefabGUID CHAR_Vampire_Cultist_Channeling = new PrefabGUID(407967118); public static readonly PrefabGUID CHAR_Vampire_Cultist_Channeling_Female = new PrefabGUID(57255106); public static readonly PrefabGUID CHAR_Vampire_Cultist_Female_Servant = new PrefabGUID(1703325932); public static readonly PrefabGUID CHAR_Vampire_Cultist_Male_Servant = new PrefabGUID(1193263017); public static readonly PrefabGUID CHAR_Vampire_Cultist_Patrolling = new PrefabGUID(2018586909); public static readonly PrefabGUID CHAR_Vampire_Cultist_Patrolling_Female = new PrefabGUID(-1610391169); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingArmsOut = new PrefabGUID(-1438710930); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingArmsOut_Female = new PrefabGUID(-1074322242); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingGround = new PrefabGUID(-1832935107); public static readonly PrefabGUID CHAR_Vampire_Cultist_PrayingGround_Female = new PrefabGUID(-2086433846); public static readonly PrefabGUID CHAR_Vampire_Cultist_Whittling = new PrefabGUID(-19416663); public static readonly PrefabGUID CHAR_Vampire_Cultist_Whittling_Female = new PrefabGUID(-1925881340); public static readonly PrefabGUID CHAR_Vampire_Dracula_VBlood = new PrefabGUID(-327335305); public static readonly PrefabGUID CHAR_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(1809382006); public static readonly PrefabGUID CHAR_Vampire_Ghost = new PrefabGUID(-1893878700); public static readonly PrefabGUID CHAR_Vampire_HighLord_VBlood = new PrefabGUID(-496360395); public static readonly PrefabGUID CHAR_Vampire_IceRanger_VBlood = new PrefabGUID(795262842); public static readonly PrefabGUID CHAR_Vampire_Withered = new PrefabGUID(-1117581429); public static readonly PrefabGUID CHAR_VampireMale = new PrefabGUID(38526109); public static readonly PrefabGUID CHAR_Vermin_DireRat_VBlood = new PrefabGUID(-2039908510); public static readonly PrefabGUID CHAR_Vermin_GiantRat = new PrefabGUID(-1722278689); public static readonly PrefabGUID CHAR_Vermin_WickedRat_Rare = new PrefabGUID(-19165577); public static readonly PrefabGUID CHAR_VHunter_CastleMan = new PrefabGUID(336560131); public static readonly PrefabGUID CHAR_VHunter_Jade_VBlood = new PrefabGUID(-1968372384); public static readonly PrefabGUID CHAR_VHunter_Jade_VBlood_GateBoss_Major = new PrefabGUID(282791819); public static readonly PrefabGUID CHAR_VHunter_Leader_GateBoss_Minor = new PrefabGUID(2009018555); public static readonly PrefabGUID CHAR_VHunter_Leader_VBlood = new PrefabGUID(-1449631170); public static readonly PrefabGUID CHAR_Villager_CursedWanderer_VBlood = new PrefabGUID(109969450); public static readonly PrefabGUID CHAR_Villager_CursedWanderer_VBlood_GateBoss_Major = new PrefabGUID(-1160778038); public static readonly PrefabGUID CHAR_Villager_Tailor_VBlood = new PrefabGUID(-1942352521); public static readonly PrefabGUID CHAR_Wendigo_GateBoss_Major = new PrefabGUID(468179469); public static readonly PrefabGUID CHAR_Wendigo_VBlood = new PrefabGUID(24378719); public static readonly PrefabGUID CHAR_WerewolfChieftain_Human = new PrefabGUID(-1505705712); public static readonly PrefabGUID CHAR_WerewolfChieftain_ShadowClone = new PrefabGUID(-1699898875); public static readonly PrefabGUID CHAR_WerewolfChieftain_VBlood_GateBoss_Major = new PrefabGUID(2079933370); public static readonly PrefabGUID CHAR_Winter_Bear_Standard = new PrefabGUID(2041915372); public static readonly PrefabGUID CHAR_Winter_Moose = new PrefabGUID(-779632831); public static readonly PrefabGUID CHAR_Winter_Wolf = new PrefabGUID(134039094); public static readonly PrefabGUID CHAR_Winter_Wolf_Dracula_Minion = new PrefabGUID(2145471156); public static readonly PrefabGUID CHAR_Winter_Wolf_WerewolfChief_Minion = new PrefabGUID(-223185284); public static readonly PrefabGUID CHAR_Winter_Yeti_VBlood = new PrefabGUID(-1347412392); public static readonly PrefabGUID CHAR_Winter_Yeti_VBlood_GateBoss_Major = new PrefabGUID(666177656); public static readonly PrefabGUID CharacterCustomizationSettings = new PrefabGUID(1557961364); public static readonly PrefabGUID CharacterHUDCollection = new PrefabGUID(183358570); public static readonly PrefabGUID ChurchOfLight_Cardinal_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1644049435); public static readonly PrefabGUID ChurchOfLight_Overseer_Emote_OnAggro_Buff = new PrefabGUID(-1469343755); public static readonly PrefabGUID ChurchOfLight_Overseer_Iciclel_Dynamics = new PrefabGUID(1447670952); public static readonly PrefabGUID ChurchOfTheDamned_Altar_Shattered01 = new PrefabGUID(572851995); public static readonly PrefabGUID ChurchOfTheDamned_Brazier_Small_Shattered01 = new PrefabGUID(-1471308201); public static readonly PrefabGUID ChurchOfTheDamned_Brazier_Small_Shattered02 = new PrefabGUID(110372705); public static readonly PrefabGUID ChurchOfTheDamned_DecoPillar01_Shattered01 = new PrefabGUID(-80624942); public static readonly PrefabGUID ChurchOfTheDamned_DecoPillar02_Shattered01 = new PrefabGUID(831920069); public static readonly PrefabGUID ClanInviteRequest = new PrefabGUID(192290893); public static readonly PrefabGUID ClanSystemSettings = new PrefabGUID(-594020774); public static readonly PrefabGUID ClanTeam = new PrefabGUID(-501996644); public static readonly PrefabGUID Classical01WallpaperBuildMenuGroup = new PrefabGUID(512781553); public static readonly PrefabGUID Classical02WallpaperBuildMenuGroup = new PrefabGUID(-525296914); public static readonly PrefabGUID ClearWindowsBuildMenuGroup = new PrefabGUID(51080478); public static readonly PrefabGUID ClocksBuildMenuGroup = new PrefabGUID(-1059827237); public static readonly PrefabGUID CO_ArchMage = new PrefabGUID(-726763920); public static readonly PrefabGUID CO_ArchMage_FlameSphere = new PrefabGUID(-1242547076); public static readonly PrefabGUID CO_ArchMage_Summon = new PrefabGUID(955493088); public static readonly PrefabGUID CO_Bandit_Bomber = new PrefabGUID(-1108787568); public static readonly PrefabGUID CO_Bandit_Bomber_VBlood = new PrefabGUID(-1927829198); public static readonly PrefabGUID CO_Bandit_Chaosarrow_GateBoss = new PrefabGUID(127548401); public static readonly PrefabGUID CO_Bandit_Chaosarrow_VBlood = new PrefabGUID(-120985325); public static readonly PrefabGUID CO_Bandit_Deadeye = new PrefabGUID(2056907439); public static readonly PrefabGUID CO_Bandit_Fisherman_VBlood = new PrefabGUID(588595323); public static readonly PrefabGUID CO_Bandit_Foreman_VBlood = new PrefabGUID(812159192); public static readonly PrefabGUID CO_Bandit_Foreman_VBlood_GateBoss = new PrefabGUID(-1202075241); public static readonly PrefabGUID CO_Bandit_FrostArrow_GateBoss = new PrefabGUID(-544449795); public static readonly PrefabGUID CO_Bandit_FrostArrow_Vblood = new PrefabGUID(1875845509); public static readonly PrefabGUID CO_Bandit_Hunter = new PrefabGUID(1464584263); public static readonly PrefabGUID CO_Bandit_Leader = new PrefabGUID(1412702580); public static readonly PrefabGUID CO_Bandit_Mugger = new PrefabGUID(97380603); public static readonly PrefabGUID CO_Bandit_Rascal = new PrefabGUID(601722628); public static readonly PrefabGUID CO_Bandit_Scout = new PrefabGUID(1344899815); public static readonly PrefabGUID CO_Bandit_Stalker = new PrefabGUID(-1389657593); public static readonly PrefabGUID CO_Bandit_Stalker_VBlood = new PrefabGUID(-1499696370); public static readonly PrefabGUID CO_Bandit_StoneBreaker_VBlood = new PrefabGUID(-520625151); public static readonly PrefabGUID CO_Bandit_StoneBreaker_VBlood_GateBoss = new PrefabGUID(1018018754); public static readonly PrefabGUID CO_Bandit_Thief = new PrefabGUID(-2014475190); public static readonly PrefabGUID CO_Bandit_Thug = new PrefabGUID(319525066); public static readonly PrefabGUID CO_Bandit_Tourok_VBlood = new PrefabGUID(1825358542); public static readonly PrefabGUID CO_Bandit_Tourok_VBlood_Shadow = new PrefabGUID(-1431627549); public static readonly PrefabGUID CO_Bandit_Trapper = new PrefabGUID(171535364); public static readonly PrefabGUID CO_Bandit_Worker_Gatherer = new PrefabGUID(690141917); public static readonly PrefabGUID CO_Bandit_Worker_Miner = new PrefabGUID(-821621347); public static readonly PrefabGUID CO_Bandit_Worker_Woodcutter = new PrefabGUID(-642124295); public static readonly PrefabGUID CO_BatVampire = new PrefabGUID(-1393804232); public static readonly PrefabGUID CO_Bear = new PrefabGUID(-1997519238); public static readonly PrefabGUID CO_Bear_Spirit = new PrefabGUID(-1688283116); public static readonly PrefabGUID CO_Blackfang_Alchemist = new PrefabGUID(-1247120172); public static readonly PrefabGUID CO_Blackfang_CarverBoss_VBlood = new PrefabGUID(-2054066259); public static readonly PrefabGUID CO_Blackfang_DartFlinger = new PrefabGUID(-824942713); public static readonly PrefabGUID CO_Blackfang_Livith_VBlood = new PrefabGUID(-8518182); public static readonly PrefabGUID CO_Blackfang_Lucie_VBlood = new PrefabGUID(90523416); public static readonly PrefabGUID CO_Blackfang_Lurker = new PrefabGUID(2040467961); public static readonly PrefabGUID CO_Blackfang_Morgana = new PrefabGUID(1884283291); public static readonly PrefabGUID CO_Blackfang_MorganaHumanoid = new PrefabGUID(-471905299); public static readonly PrefabGUID CO_Blackfang_MorganasTail = new PrefabGUID(-741121296); public static readonly PrefabGUID CO_Blackfang_Peon = new PrefabGUID(-637181845); public static readonly PrefabGUID CO_Blackfang_Peon_Miner = new PrefabGUID(-442265123); public static readonly PrefabGUID CO_Blackfang_PeonCarryingBarrel = new PrefabGUID(316993000); public static readonly PrefabGUID CO_Blackfang_PeonLogCarryer = new PrefabGUID(1059023076); public static readonly PrefabGUID CO_Blackfang_Sentinel = new PrefabGUID(-592114234); public static readonly PrefabGUID CO_Blackfang_Striker = new PrefabGUID(-522998802); public static readonly PrefabGUID CO_Blackfang_Valyr = new PrefabGUID(-1692475297); public static readonly PrefabGUID CO_Blackfang_ValyrCauldron = new PrefabGUID(-542600961); public static readonly PrefabGUID CO_Blackfang_Venomblade = new PrefabGUID(-1878237917); public static readonly PrefabGUID CO_Blackfang_Viper = new PrefabGUID(2138490337); public static readonly PrefabGUID CO_Blackfang_WoodCarver = new PrefabGUID(-1286702157); public static readonly PrefabGUID CO_BloodBuff_Corrupted_Angel = new PrefabGUID(1933154276); public static readonly PrefabGUID CO_BloodBuff_Corrupted_Harpy = new PrefabGUID(1826810292); public static readonly PrefabGUID CO_ChurchOfLight_Archer = new PrefabGUID(362734593); public static readonly PrefabGUID CO_ChurchOfLight_Cardinal_VBlood = new PrefabGUID(-1463951847); public static readonly PrefabGUID CO_ChurchOfLight_CardinalAide = new PrefabGUID(-866271480); public static readonly PrefabGUID CO_ChurchOfLight_Cleric = new PrefabGUID(-228777921); public static readonly PrefabGUID CO_ChurchOfLight_EnchantedCross = new PrefabGUID(-26174327); public static readonly PrefabGUID CO_ChurchOfLight_Footman = new PrefabGUID(142107315); public static readonly PrefabGUID CO_ChurchOfLight_Knight_2H = new PrefabGUID(-851549153); public static readonly PrefabGUID CO_ChurchOfLight_Lightweaver = new PrefabGUID(-2147038016); public static readonly PrefabGUID CO_ChurchOfLight_Overseer = new PrefabGUID(-2059198289); public static readonly PrefabGUID CO_ChurchOfLight_Paladin = new PrefabGUID(-1709264932); public static readonly PrefabGUID CO_ChurchOfLight_Paladin_VBlood = new PrefabGUID(1475114753); public static readonly PrefabGUID CO_ChurchOfLight_Priest_Standard = new PrefabGUID(-1504358745); public static readonly PrefabGUID CO_ChurchOfLight_SlaveMaster_Enforcer = new PrefabGUID(-1675010838); public static readonly PrefabGUID CO_ChurchOfLight_SlaveMaster_Sentry = new PrefabGUID(1352035587); public static readonly PrefabGUID CO_ChurchOfLight_SlaveRuffian = new PrefabGUID(-2005177329); public static readonly PrefabGUID CO_ChurchOfLight_SmiteOrb = new PrefabGUID(-302131499); public static readonly PrefabGUID CO_ChurchOfLight_Sommelier = new PrefabGUID(-1421383092); public static readonly PrefabGUID CO_ChurchOfLight_Sommelier_BarrelMinion = new PrefabGUID(1597406610); public static readonly PrefabGUID CO_CopperGolem = new PrefabGUID(-972365646); public static readonly PrefabGUID CO_Corrupted_Bear = new PrefabGUID(904547130); public static readonly PrefabGUID CO_Corrupted_Crow = new PrefabGUID(-1929345806); public static readonly PrefabGUID CO_Corrupted_Wolf = new PrefabGUID(-1059253804); public static readonly PrefabGUID CO_Crow_Manticore = new PrefabGUID(1026990605); public static readonly PrefabGUID CO_Cultist_Melee = new PrefabGUID(-1605144188); public static readonly PrefabGUID CO_Cultist_Ranged = new PrefabGUID(835810587); public static readonly PrefabGUID CO_Cursed_Bear = new PrefabGUID(-399451530); public static readonly PrefabGUID CO_Cursed_MonsterToad = new PrefabGUID(-1325001695); public static readonly PrefabGUID CO_Cursed_MonsterToad_VBlood = new PrefabGUID(1569981848); public static readonly PrefabGUID CO_Cursed_Mosquito = new PrefabGUID(471295142); public static readonly PrefabGUID CO_Cursed_MountainBeast = new PrefabGUID(1851596382); public static readonly PrefabGUID CO_Cursed_MountainBeast_SpiritDouble = new PrefabGUID(-190890945); public static readonly PrefabGUID CO_Cursed_ToadSpitter = new PrefabGUID(-1573194738); public static readonly PrefabGUID CO_Cursed_Witch = new PrefabGUID(-1966644449); public static readonly PrefabGUID CO_Cursed_Witch_VBlood = new PrefabGUID(838363153); public static readonly PrefabGUID CO_Cursed_Wolf = new PrefabGUID(-672754707); public static readonly PrefabGUID CO_CursedWanderer = new PrefabGUID(21417799); public static readonly PrefabGUID CO_Dracula_BloodSoul = new PrefabGUID(665364376); public static readonly PrefabGUID CO_Dracula_BloodSoul_Heart = new PrefabGUID(-276242059); public static readonly PrefabGUID CO_Dracula_ShadowBatSwarm = new PrefabGUID(-1216038746); public static readonly PrefabGUID CO_Dracula_SpellStone_LargeBlood = new PrefabGUID(-698740959); public static readonly PrefabGUID CO_EmeryElemental = new PrefabGUID(-1685893679); public static readonly PrefabGUID CO_EmeryGolem = new PrefabGUID(1737701225); public static readonly PrefabGUID CO_Forest_AngryMoose = new PrefabGUID(-2082770963); public static readonly PrefabGUID CO_Forest_Bear_Dire_Vblood = new PrefabGUID(1437704949); public static readonly PrefabGUID CO_Forest_Moose = new PrefabGUID(949923642); public static readonly PrefabGUID CO_Geomancer_Golem = new PrefabGUID(-643796591); public static readonly PrefabGUID CO_Geomancer_Golem_Minion = new PrefabGUID(857765377); public static readonly PrefabGUID CO_Geomancer_Human = new PrefabGUID(-1977720510); public static readonly PrefabGUID CO_Gloomrot_AceIncinerator = new PrefabGUID(-1333543242); public static readonly PrefabGUID CO_Gloomrot_Batoon = new PrefabGUID(-2001897958); public static readonly PrefabGUID CO_Gloomrot_Iva = new PrefabGUID(793352943); public static readonly PrefabGUID CO_Gloomrot_Monster_VBlood = new PrefabGUID(128530923); public static readonly PrefabGUID CO_Gloomrot_Purifier_VBlood = new PrefabGUID(1800604363); public static readonly PrefabGUID CO_Gloomrot_Pyro = new PrefabGUID(1387745375); public static readonly PrefabGUID CO_Gloomrot_Railgunner = new PrefabGUID(1300154463); public static readonly PrefabGUID CO_Gloomrot_RailgunSergeant = new PrefabGUID(-727240888); public static readonly PrefabGUID CO_Gloomrot_SentryOfficer = new PrefabGUID(-1603956935); public static readonly PrefabGUID CO_Gloomrot_SentryTurret = new PrefabGUID(-1917424726); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Driller = new PrefabGUID(153123953); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Gattler = new PrefabGUID(1691215031); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_LightningRod = new PrefabGUID(290653629); public static readonly PrefabGUID CO_Gloomrot_SpiderTank_Zapper = new PrefabGUID(2035229253); public static readonly PrefabGUID CO_Gloomrot_Tazer = new PrefabGUID(2126939200); public static readonly PrefabGUID CO_Gloomrot_Technician = new PrefabGUID(1492511376); public static readonly PrefabGUID CO_Gloomrot_TheProfessor = new PrefabGUID(-1022070092); public static readonly PrefabGUID CO_Gloomrot_TractorBeamer = new PrefabGUID(872490508); public static readonly PrefabGUID CO_Gloomrot_Voltage = new PrefabGUID(198641253); public static readonly PrefabGUID CO_GoldGolem = new PrefabGUID(1171440258); public static readonly PrefabGUID CO_Harpy_Dasher = new PrefabGUID(-1288765948); public static readonly PrefabGUID CO_Harpy_FeatherDuster = new PrefabGUID(-1450875093); public static readonly PrefabGUID CO_Harpy_Matriarch_VBlood = new PrefabGUID(-1464479007); public static readonly PrefabGUID CO_Harpy_Scratcher = new PrefabGUID(-2014972241); public static readonly PrefabGUID CO_Harpy_Sorceress = new PrefabGUID(741489686); public static readonly PrefabGUID CO_HostileVillager_Melee = new PrefabGUID(1831190826); public static readonly PrefabGUID CO_HostileVillager_Thrower = new PrefabGUID(1204578387); public static readonly PrefabGUID CO_Illusion_Mosquito = new PrefabGUID(-1372177062); public static readonly PrefabGUID CO_IronGolem = new PrefabGUID(-992057455); public static readonly PrefabGUID CO_KnightShield = new PrefabGUID(-428162790); public static readonly PrefabGUID CO_Legion_Assassin = new PrefabGUID(1578531479); public static readonly PrefabGUID CO_Legion_BatSwarm = new PrefabGUID(1667362368); public static readonly PrefabGUID CO_Legion_BloodProphet = new PrefabGUID(673522035); public static readonly PrefabGUID CO_Legion_Dreadhorn = new PrefabGUID(-813769179); public static readonly PrefabGUID CO_Legion_Gargoyle = new PrefabGUID(1967095783); public static readonly PrefabGUID CO_Legion_Gargoyle_StyxVariant = new PrefabGUID(1275875964); public static readonly PrefabGUID CO_Legion_Gargoyle_TailorVariant = new PrefabGUID(-1831546379); public static readonly PrefabGUID CO_Legion_HighLord_GroundSword = new PrefabGUID(-179618267); public static readonly PrefabGUID CO_Legion_NightMaiden = new PrefabGUID(-1602378808); public static readonly PrefabGUID CO_Legion_NightMaiden_Lesser = new PrefabGUID(-467026945); public static readonly PrefabGUID CO_Legion_Shadowkin = new PrefabGUID(-1163937295); public static readonly PrefabGUID CO_Legion_Vargulf = new PrefabGUID(1115204634); public static readonly PrefabGUID CO_Legion_Vargulf_Lesser = new PrefabGUID(-515279445); public static readonly PrefabGUID CO_Legon_Nightmare = new PrefabGUID(398043275); public static readonly PrefabGUID CO_Manticore_Airborne = new PrefabGUID(-853428837); public static readonly PrefabGUID CO_Manticore_VBlood = new PrefabGUID(-257519858); public static readonly PrefabGUID CO_Mantrap_Corrupted = new PrefabGUID(-1246795985); public static readonly PrefabGUID CO_Mantrap_Corrupted_Minion = new PrefabGUID(-1368394802); public static readonly PrefabGUID CO_Mantrap_Dull = new PrefabGUID(-1621696220); public static readonly PrefabGUID CO_Mantrap_Standard = new PrefabGUID(-1734429955); public static readonly PrefabGUID CO_Militia_BellRinger = new PrefabGUID(1283537138); public static readonly PrefabGUID CO_Militia_BellRinger_Servant = new PrefabGUID(-911819069); public static readonly PrefabGUID CO_Militia_BishopOfDunley = new PrefabGUID(1951348277); public static readonly PrefabGUID CO_Militia_Bomber = new PrefabGUID(-1495601849); public static readonly PrefabGUID CO_Militia_ConstrainingPole = new PrefabGUID(1541249097); public static readonly PrefabGUID CO_Militia_Crossbow = new PrefabGUID(1280569660); public static readonly PrefabGUID CO_Militia_Devoted = new PrefabGUID(-1231336774); public static readonly PrefabGUID CO_Militia_EyeOfGod = new PrefabGUID(978552362); public static readonly PrefabGUID CO_Militia_Fabian = new PrefabGUID(910768551); public static readonly PrefabGUID CO_Militia_FabiansSteed = new PrefabGUID(-1351736781); public static readonly PrefabGUID CO_Militia_FabiansSteed_Minion = new PrefabGUID(332941455); public static readonly PrefabGUID CO_Militia_Glassblower = new PrefabGUID(230095818); public static readonly PrefabGUID CO_Militia_Guard = new PrefabGUID(-997126525); public static readonly PrefabGUID CO_Militia_Guard_VBlood = new PrefabGUID(-257184246); public static readonly PrefabGUID CO_Militia_Heavy = new PrefabGUID(1959669035); public static readonly PrefabGUID CO_Militia_Horseman = new PrefabGUID(783818504); public static readonly PrefabGUID CO_Militia_Horseman_Mount = new PrefabGUID(-1822127791); public static readonly PrefabGUID CO_Militia_Hound = new PrefabGUID(-1928340469); public static readonly PrefabGUID CO_Militia_Hound_VBlood = new PrefabGUID(-351939627); public static readonly PrefabGUID CO_Militia_HoundMaster_VBlood = new PrefabGUID(825142113); public static readonly PrefabGUID CO_Militia_InkCrawler = new PrefabGUID(-865710244); public static readonly PrefabGUID CO_Militia_Leader = new PrefabGUID(2063835629); public static readonly PrefabGUID CO_Militia_Leader_GateBoss = new PrefabGUID(1583235120); public static readonly PrefabGUID CO_Militia_Light = new PrefabGUID(-1604030641); public static readonly PrefabGUID CO_Militia_Longbowman = new PrefabGUID(699090488); public static readonly PrefabGUID CO_Militia_Longbowman_LightArrow = new PrefabGUID(269502057); public static readonly PrefabGUID CO_Militia_Nun_VBlood = new PrefabGUID(330153719); public static readonly PrefabGUID CO_Militia_Rider = new PrefabGUID(1303404732); public static readonly PrefabGUID CO_Militia_Scribe = new PrefabGUID(-366014482); public static readonly PrefabGUID CO_Militia_Standard = new PrefabGUID(1890876851); public static readonly PrefabGUID CO_Militia_Torchbearer = new PrefabGUID(-1971404132); public static readonly PrefabGUID CO_Militia_Undead_Infiltrator = new PrefabGUID(192644255); public static readonly PrefabGUID CO_Militia_Worker_Miner = new PrefabGUID(-804962426); public static readonly PrefabGUID CO_Monster_LightningPillar = new PrefabGUID(-916128139); public static readonly PrefabGUID CO_Mutant_Bear = new PrefabGUID(-777812975); public static readonly PrefabGUID CO_Mutant_FleshGolem = new PrefabGUID(1472737467); public static readonly PrefabGUID CO_Mutant_Rat = new PrefabGUID(217223051); public static readonly PrefabGUID CO_Mutant_Rat_MutantBlood = new PrefabGUID(-457693509); public static readonly PrefabGUID CO_Mutant_Spitter = new PrefabGUID(-533665239); public static readonly PrefabGUID CO_Mutant_Wolf = new PrefabGUID(-64367190); public static readonly PrefabGUID CO_Nightlurker = new PrefabGUID(-1157952193); public static readonly PrefabGUID CO_Nun = new PrefabGUID(1521472556); public static readonly PrefabGUID CO_Ocean_Blowfish = new PrefabGUID(1270888987); public static readonly PrefabGUID CO_Ocean_Piranha = new PrefabGUID(1026406957); public static readonly PrefabGUID CO_Paladin_DivineAngel = new PrefabGUID(-227563644); public static readonly PrefabGUID CO_Paladin_FallenAngel = new PrefabGUID(1214705499); public static readonly PrefabGUID CO_Pixie = new PrefabGUID(-733407084); public static readonly PrefabGUID CO_Poloma = new PrefabGUID(2047639378); public static readonly PrefabGUID CO_Poloma_GateBoss = new PrefabGUID(-1383136609); public static readonly PrefabGUID CO_Rifleman = new PrefabGUID(805355179); public static readonly PrefabGUID CO_RockElemental = new PrefabGUID(-1999640100); public static readonly PrefabGUID CO_Scarecrow = new PrefabGUID(-442719468); public static readonly PrefabGUID CO_SeaSerpent = new PrefabGUID(204893615); public static readonly PrefabGUID CO_SeaSerpent_Hard = new PrefabGUID(-1007037745); public static readonly PrefabGUID CO_Shared_Crow = new PrefabGUID(2096743453); public static readonly PrefabGUID CO_Shared_Wolf = new PrefabGUID(-1528347301); public static readonly PrefabGUID CO_Spectral_Guardian = new PrefabGUID(335055806); public static readonly PrefabGUID CO_Spectral_SpellSlinger = new PrefabGUID(1869651851); public static readonly PrefabGUID CO_Spider_Baneling = new PrefabGUID(1989202755); public static readonly PrefabGUID CO_Spider_Broodmother = new PrefabGUID(-522528604); public static readonly PrefabGUID CO_Spider_Forest = new PrefabGUID(1270852761); public static readonly PrefabGUID CO_Spider_Forestling = new PrefabGUID(41241277); public static readonly PrefabGUID CO_Spider_Melee = new PrefabGUID(887607259); public static readonly PrefabGUID CO_Spider_Queen_VBlood = new PrefabGUID(-1915204332); public static readonly PrefabGUID CO_Spider_Queen_VBlood_GateBoss = new PrefabGUID(1527889730); public static readonly PrefabGUID CO_Spider_Range = new PrefabGUID(199571297); public static readonly PrefabGUID CO_Spider_Spiderling = new PrefabGUID(2140239000); public static readonly PrefabGUID CO_StoneGolem = new PrefabGUID(816166304); public static readonly PrefabGUID CO_SUMMON_Wolf = new PrefabGUID(279339239); public static readonly PrefabGUID CO_Tailor = new PrefabGUID(482413851); public static readonly PrefabGUID CO_Trader_Farbane_Stalker_T01 = new PrefabGUID(1202124672); public static readonly PrefabGUID CO_Trader_Farbane_Theif_T01 = new PrefabGUID(-219696922); public static readonly PrefabGUID CO_Trader_Noctem_Major = new PrefabGUID(1982843701); public static readonly PrefabGUID CO_Trader_Noctem_Minor = new PrefabGUID(-1832246484); public static readonly PrefabGUID CO_Treant = new PrefabGUID(395898273); public static readonly PrefabGUID CO_Treant_Corrupted = new PrefabGUID(1613164129); public static readonly PrefabGUID CO_TreantMantrap_Corrupted_Minion = new PrefabGUID(422251091); public static readonly PrefabGUID CO_Undead_ArenaChampion = new PrefabGUID(1118808720); public static readonly PrefabGUID CO_Undead_ArmoredSkeletonCrossbow_Dunley = new PrefabGUID(1100502750); public static readonly PrefabGUID CO_Undead_ArmoredSkeletonCrossbow_Farbane = new PrefabGUID(687501989); public static readonly PrefabGUID CO_Undead_Assassin = new PrefabGUID(1823080523); public static readonly PrefabGUID CO_Undead_BishopOfDeath = new PrefabGUID(662505323); public static readonly PrefabGUID CO_Undead_BishopOfDeath_GateBoss = new PrefabGUID(106347664); public static readonly PrefabGUID CO_Undead_BishopOfShadows = new PrefabGUID(-377981910); public static readonly PrefabGUID CO_Undead_BishopOfShadows_GateBoss = new PrefabGUID(-1217996155); public static readonly PrefabGUID CO_Undead_CursedSmith = new PrefabGUID(268974871); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Axe = new PrefabGUID(-1274795013); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Base = new PrefabGUID(1373773529); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Mace = new PrefabGUID(-2041350912); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Slashers = new PrefabGUID(-1741518409); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Spear = new PrefabGUID(2063777079); public static readonly PrefabGUID CO_Undead_CursedSmith_FloatingWeapon_Sword = new PrefabGUID(-968957939); public static readonly PrefabGUID CO_Undead_FlyingSkull = new PrefabGUID(-233366319); public static readonly PrefabGUID CO_Undead_GhostAssassin = new PrefabGUID(1332868659); public static readonly PrefabGUID CO_Undead_GhostBanshee = new PrefabGUID(557935215); public static readonly PrefabGUID CO_Undead_GhostBanshee_MorganaMinion = new PrefabGUID(-709064213); public static readonly PrefabGUID CO_Undead_GhostGuardian = new PrefabGUID(-1574119893); public static readonly PrefabGUID CO_Undead_GhostMilitia_Crossbow = new PrefabGUID(1545459275); public static readonly PrefabGUID CO_Undead_GhostMilitia_Light = new PrefabGUID(-1044101479); public static readonly PrefabGUID CO_Undead_GhostMilitia_Standard = new PrefabGUID(510452386); public static readonly PrefabGUID CO_Undead_Ghoul = new PrefabGUID(927263869); public static readonly PrefabGUID CO_Undead_Guardian = new PrefabGUID(2057596959); public static readonly PrefabGUID CO_Undead_Guardian_DraculaMinion = new PrefabGUID(-1542934598); public static readonly PrefabGUID CO_Undead_Infiltrator_AfterShadow = new PrefabGUID(111398615); public static readonly PrefabGUID CO_Undead_Infiltrator_VBlood = new PrefabGUID(-311060437); public static readonly PrefabGUID CO_Undead_Leader = new PrefabGUID(-873917285); public static readonly PrefabGUID CO_Undead_Necromancer = new PrefabGUID(-1630404104); public static readonly PrefabGUID CO_Undead_Priest = new PrefabGUID(-881694794); public static readonly PrefabGUID CO_Undead_Priest_Elite = new PrefabGUID(579544718); public static readonly PrefabGUID CO_Undead_ShadowSoldier = new PrefabGUID(-1930656222); public static readonly PrefabGUID CO_Undead_ShadowSoldier_GateBoss = new PrefabGUID(1160695966); public static readonly PrefabGUID CO_Undead_SkeletonApprentice = new PrefabGUID(1513638469); public static readonly PrefabGUID CO_Undead_SkeletonCrossbow_Farbane = new PrefabGUID(-454354842); public static readonly PrefabGUID CO_Undead_SkeletonCrossbow_Graveyard = new PrefabGUID(313535532); public static readonly PrefabGUID CO_Undead_SkeletonGolem = new PrefabGUID(-1487249374); public static readonly PrefabGUID CO_Undead_SkeletonMage = new PrefabGUID(653742735); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Armored_Dunley = new PrefabGUID(1727006333); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Armored_Farbane = new PrefabGUID(183365368); public static readonly PrefabGUID CO_Undead_SkeletonSoldier_Withered = new PrefabGUID(-974864084); public static readonly PrefabGUID CO_Undead_ZealousCultist = new PrefabGUID(2039844809); public static readonly PrefabGUID CO_Undead_ZealousCultist_Ghost = new PrefabGUID(-1002310319); public static readonly PrefabGUID CO_Unholy_DeathKnight = new PrefabGUID(144216116); public static readonly PrefabGUID CO_Unholy_FallenAngel = new PrefabGUID(1060992284); public static readonly PrefabGUID CO_Unholy_SkeletonApprentice_Summon = new PrefabGUID(380914038); public static readonly PrefabGUID CO_Unholy_SkeletonWarrior_Summon = new PrefabGUID(1706155107); public static readonly PrefabGUID CO_Unholy_UnstableArachnid = new PrefabGUID(-1636008213); public static readonly PrefabGUID CO_Unholy_UnstableArachnid_Small = new PrefabGUID(-2004001670); public static readonly PrefabGUID CO_Vampire_BloodKnight = new PrefabGUID(-574750765); public static readonly PrefabGUID CO_Vampire_CrimsonIronMaiden = new PrefabGUID(-404919682); public static readonly PrefabGUID CO_Vampire_Cultist_BloodCrystal = new PrefabGUID(-1011272049); public static readonly PrefabGUID CO_Vampire_Cultist_Channel = new PrefabGUID(1764560763); public static readonly PrefabGUID CO_Vampire_Cultist_Patrol = new PrefabGUID(760920937); public static readonly PrefabGUID CO_Vampire_Cultist_Praying01 = new PrefabGUID(184969275); public static readonly PrefabGUID CO_Vampire_Cultist_Praying02 = new PrefabGUID(1997551226); public static readonly PrefabGUID CO_Vampire_Cultist_Servant = new PrefabGUID(-1441884697); public static readonly PrefabGUID CO_Vampire_Cultist_Whittling = new PrefabGUID(-1936285349); public static readonly PrefabGUID CO_Vampire_Dracula = new PrefabGUID(2131242094); public static readonly PrefabGUID CO_Vampire_Dracula_SpellPhase = new PrefabGUID(-1785054766); public static readonly PrefabGUID CO_Vampire_Dracula_VeilOfBatsIllusion = new PrefabGUID(-1609674788); public static readonly PrefabGUID CO_Vampire_HighLord_VBlood = new PrefabGUID(529148870); public static readonly PrefabGUID CO_Vampire_IceRanger_VBlood = new PrefabGUID(262864067); public static readonly PrefabGUID CO_Vampire_Withered = new PrefabGUID(-334658510); public static readonly PrefabGUID CO_Vermin_DireRat = new PrefabGUID(-212591729); public static readonly PrefabGUID CO_Vermin_GiantRat = new PrefabGUID(-874783405); public static readonly PrefabGUID CO_VHunter_CastleMan = new PrefabGUID(616943015); public static readonly PrefabGUID CO_VHunter_Jade_VBlood = new PrefabGUID(1267744240); public static readonly PrefabGUID CO_VHunter_Leader_VBlood = new PrefabGUID(1073819632); public static readonly PrefabGUID CO_Villager = new PrefabGUID(1716849062); public static readonly PrefabGUID CO_Villiager_Servant = new PrefabGUID(-1141755924); public static readonly PrefabGUID CO_Wendigo = new PrefabGUID(1557464335); public static readonly PrefabGUID CO_Werewolf = new PrefabGUID(195815988); public static readonly PrefabGUID CO_WerewolfCheiftain_Human = new PrefabGUID(-1788823022); public static readonly PrefabGUID CO_WerewolfChieftain = new PrefabGUID(235390834); public static readonly PrefabGUID CO_WerewolfChieftain_Clone = new PrefabGUID(-847570377); public static readonly PrefabGUID CO_WerewolfChieftain_GateBoss = new PrefabGUID(-843166688); public static readonly PrefabGUID CO_Winter_Moose = new PrefabGUID(1016377877); public static readonly PrefabGUID CO_Winter_Wolf = new PrefabGUID(684912894); public static readonly PrefabGUID CO_Winter_Yeti = new PrefabGUID(1666305403); public static readonly PrefabGUID CO_Wolf_Boss = new PrefabGUID(-672126651); public static readonly PrefabGUID CO_Woodcutter = new PrefabGUID(-1620992523); public static readonly PrefabGUID CO_WormTerror = new PrefabGUID(-1357441150); public static readonly PrefabGUID CoalNode01_Broken = new PrefabGUID(-655909441); public static readonly PrefabGUID CoalNode01_Broken_Small = new PrefabGUID(334327726); public static readonly PrefabGUID CoalNode02_Broken = new PrefabGUID(541318396); public static readonly PrefabGUID CoalNode02_Broken_Small = new PrefabGUID(-1270319756); public static readonly PrefabGUID CoalNode03_Broken = new PrefabGUID(1337407796); public static readonly PrefabGUID CoalNode03_Broken_Small = new PrefabGUID(-564880483); public static readonly PrefabGUID CoalNode04_Broken = new PrefabGUID(-1793202119); public static readonly PrefabGUID CoalNode04_Broken_Small = new PrefabGUID(-1976167167); public static readonly PrefabGUID CobbleStoneBuildMenuGroup = new PrefabGUID(367687460); public static readonly PrefabGUID CobblestonePaths02BuildMenuGroup = new PrefabGUID(-266541601); public static readonly PrefabGUID CobblestonePathsBuildMenuGroup = new PrefabGUID(-1279203881); public static readonly PrefabGUID ConstructionBuilding_Curve = new PrefabGUID(-2122399726); public static readonly PrefabGUID ConsumeAttachedBuff = new PrefabGUID(961715175); public static readonly PrefabGUID ConsumeTargetDebuff = new PrefabGUID(-1903773318); public static readonly PrefabGUID ConsumeTravelBuff = new PrefabGUID(991649996); public static readonly PrefabGUID ContestClientSettings = new PrefabGUID(-1121711197); public static readonly PrefabGUID ControllerScheme_ShoulderCamera = new PrefabGUID(-1891527728); public static readonly PrefabGUID ControllerScheme_StickCamera = new PrefabGUID(1748335998); public static readonly PrefabGUID ConvertedSequenceCollection = new PrefabGUID(-2081576377); public static readonly PrefabGUID CopperNode01_Broken = new PrefabGUID(-1511172154); public static readonly PrefabGUID CopperNode01_Broken_Small = new PrefabGUID(-1313929285); public static readonly PrefabGUID CopperNode02_Broken = new PrefabGUID(994257829); public static readonly PrefabGUID CopperNode02_Broken_Small = new PrefabGUID(-674858743); public static readonly PrefabGUID CopperNode03_Broken = new PrefabGUID(-1022805120); public static readonly PrefabGUID CopperNode03_Broken_Small = new PrefabGUID(897962339); public static readonly PrefabGUID CopperNode04_Broken = new PrefabGUID(-274927282); public static readonly PrefabGUID CopperNode04_Broken_Small = new PrefabGUID(-605760870); public static readonly PrefabGUID CopperNodeBig01_Broken = new PrefabGUID(279071025); public static readonly PrefabGUID CopperNodeMedium01_Broken = new PrefabGUID(-172558721); public static readonly PrefabGUID Cordial01WallpaperBuildMenuGroup = new PrefabGUID(1983264197); public static readonly PrefabGUID CorruptedSkull_Wave_Curve01 = new PrefabGUID(458372050); public static readonly PrefabGUID CorruptedSkull_Wave_Curve02 = new PrefabGUID(862645195); public static readonly PrefabGUID Cosine_Curve = new PrefabGUID(-1013586564); public static readonly PrefabGUID CosineLoop_Curve = new PrefabGUID(917400452); public static readonly PrefabGUID CreatureBat_Ragdoll100_Prefab = new PrefabGUID(-328373532); public static readonly PrefabGUID CreatureBat_Ragdoll240_Prefab = new PrefabGUID(-1467808048); public static readonly PrefabGUID CreatureBatSwarm_Ragdoll80_Prefab_PLACEHOLDER = new PrefabGUID(2130663257); public static readonly PrefabGUID CreatureBear_Ragdoll120_Prefab = new PrefabGUID(-847600702); public static readonly PrefabGUID CreatureBear_Ragdoll130_Prefab = new PrefabGUID(995189556); public static readonly PrefabGUID CreatureBear_Ragdoll170_Prefab = new PrefabGUID(-760729069); public static readonly PrefabGUID CreatureBear_Ragdoll200_Prefab = new PrefabGUID(1896255568); public static readonly PrefabGUID CreatureBigArm_Ragdoll100_Prefab = new PrefabGUID(1363135105); public static readonly PrefabGUID CreatureCorruptedCrow_Ragdoll150_Prefab = new PrefabGUID(320901594); public static readonly PrefabGUID CreatureCow_Ragdoll150_Prefab = new PrefabGUID(463681043); public static readonly PrefabGUID CreatureCow_Ragdoll170_Prefab = new PrefabGUID(-1840673990); public static readonly PrefabGUID CreatureDeer_Mutated_Ragdoll_Prefab = new PrefabGUID(354528964); public static readonly PrefabGUID CreatureDeer_Ragdoll_Prefab = new PrefabGUID(-535937829); public static readonly PrefabGUID CreatureGargoyle_Ragdoll100_Prefab = new PrefabGUID(-1405730011); public static readonly PrefabGUID CreatureGargoyle_Ragdoll100_Prefab_PLACEHOLDER = new PrefabGUID(-1820220966); public static readonly PrefabGUID CreatureGhoul_Ragdoll100_Prefab = new PrefabGUID(-1588485219); public static readonly PrefabGUID CreatureGhoul_Ragdoll115_ClubShield_Prefab = new PrefabGUID(629690083); public static readonly PrefabGUID CreatureGhoul_Ragdoll115_Prefab = new PrefabGUID(305513290); public static readonly PrefabGUID CreatureGhoul_Ragdoll130_ClubShield_Prefab = new PrefabGUID(2050180392); public static readonly PrefabGUID CreatureGhoul_Ragdoll130_Prefab = new PrefabGUID(328954288); public static readonly PrefabGUID CreatureGhoul_Ragdoll150_Prefab = new PrefabGUID(942048191); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll060_Prefab = new PrefabGUID(-360158692); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll080_Prefab = new PrefabGUID(1398672782); public static readonly PrefabGUID CreatureGiantCrow_Ragdoll100_Prefab = new PrefabGUID(1045354892); public static readonly PrefabGUID CreatureHarpy_Ragdoll090_Prefab = new PrefabGUID(245249554); public static readonly PrefabGUID CreatureHarpy_Ragdoll100_Prefab = new PrefabGUID(-711628776); public static readonly PrefabGUID CreatureHarpy_Ragdoll130_Prefab = new PrefabGUID(-180183927); public static readonly PrefabGUID CreatureHarpy_Ragdoll150_Prefab = new PrefabGUID(1320033757); public static readonly PrefabGUID CreatureHarpy_Ragdoll80_Prefab = new PrefabGUID(-1063415894); public static readonly PrefabGUID CreatureHorse_Ragdoll_Prefab = new PrefabGUID(1255759909); public static readonly PrefabGUID CreatureImp_Ragdoll100_Prefab = new PrefabGUID(1444631711); public static readonly PrefabGUID CreatureManticore_Ragdoll200_Prefab = new PrefabGUID(31472678); public static readonly PrefabGUID CreatureManTrap_Ragdoll075_Prefab = new PrefabGUID(366868784); public static readonly PrefabGUID CreatureManTrap_Ragdoll100_Prefab = new PrefabGUID(-234986823); public static readonly PrefabGUID CreatureManTrap_Ragdoll130_Prefab = new PrefabGUID(-1728232719); public static readonly PrefabGUID CreatureManTrap_Ragdoll150_Prefab = new PrefabGUID(2091285795); public static readonly PrefabGUID CreatureManTrapOnTreant_Ragdoll075_Prefab = new PrefabGUID(899984431); public static readonly PrefabGUID CreatureMoose_Dash_Curve = new PrefabGUID(-1227454617); public static readonly PrefabGUID CreatureMoose_RagdollFemale100_Prefab = new PrefabGUID(-783250937); public static readonly PrefabGUID CreatureMoose_RagdollMale120_Prefab = new PrefabGUID(2020966389); public static readonly PrefabGUID CreatureMoose_RagdollMutated_Prefab = new PrefabGUID(-439469200); public static readonly PrefabGUID CreatureMosquito_Ragdoll120_Prefab = new PrefabGUID(-1747046031); public static readonly PrefabGUID CreatureNightlurker_Ragdoll100_Prefab = new PrefabGUID(-1068694609); public static readonly PrefabGUID CreatureNightmare_Ragdoll100_Prefab = new PrefabGUID(-1090843392); public static readonly PrefabGUID CreatureNightmare_Ragdoll90_Prefab = new PrefabGUID(1676286957); public static readonly PrefabGUID CreaturePig_Ragdoll060_Prefab = new PrefabGUID(-1813971530); public static readonly PrefabGUID CreaturePig_Ragdoll100_Prefab = new PrefabGUID(-582670882); public static readonly PrefabGUID CreaturePixie_Ragdoll100_Prefab = new PrefabGUID(1763915421); public static readonly PrefabGUID CreatureProphet_Ragdoll100_Prefab = new PrefabGUID(-909689747); public static readonly PrefabGUID CreatureProphet_Ragdoll110_Prefab = new PrefabGUID(975709405); public static readonly PrefabGUID CreatureProphet_Ragdoll120_Prefab = new PrefabGUID(-888165867); public static readonly PrefabGUID CreatureRat_Ragdoll120_Prefab = new PrefabGUID(1556272996); public static readonly PrefabGUID CreatureRat_Ragdoll160_Prefab = new PrefabGUID(155199943); public static readonly PrefabGUID CreatureRat_Ragdoll250_Prefab = new PrefabGUID(-1029319809); public static readonly PrefabGUID CreatureRat_Ragdoll250_Prefab_PLACEHOLDER = new PrefabGUID(-1139816588); public static readonly PrefabGUID CreatureRat_Ragdoll400_Prefab = new PrefabGUID(814043679); public static readonly PrefabGUID CreatureRatHorror_Ragdoll090_Prefab = new PrefabGUID(1824740400); public static readonly PrefabGUID CreatureScyther_Ragdoll100_Prefab = new PrefabGUID(-2018631012); public static readonly PrefabGUID CreatureScyther_Ragdoll110_Prefab = new PrefabGUID(-1054354793); public static readonly PrefabGUID CreatureScyther_Ragdoll70_Prefab = new PrefabGUID(187591879); public static readonly PrefabGUID CreatureScyther_Ragdoll90_Prefab = new PrefabGUID(858382861); public static readonly PrefabGUID CreatureSheep_Ragdoll150_Prefab = new PrefabGUID(-1681364226); public static readonly PrefabGUID CreatureSkull_Ragdoll100_Prefab = new PrefabGUID(853336263); public static readonly PrefabGUID CreatureSpider_Ragdoll050_Prefab = new PrefabGUID(-2014935130); public static readonly PrefabGUID CreatureSpider_Ragdoll150_Prefab = new PrefabGUID(825386604); public static readonly PrefabGUID CreatureSpider_Ragdoll200_Prefab = new PrefabGUID(756859139); public static readonly PrefabGUID CreatureSpider_Ragdoll400_Prefab = new PrefabGUID(779548576); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll120_Prefab = new PrefabGUID(1521465634); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll160_Prefab = new PrefabGUID(-1660181028); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll200_Prefab = new PrefabGUID(1461815664); public static readonly PrefabGUID CreatureStoneGolem_Ragdoll230_Prefab = new PrefabGUID(-25450616); public static readonly PrefabGUID CreatureSuccubus_Ragdoll100_Prefab = new PrefabGUID(-50621749); public static readonly PrefabGUID CreatureSuccubus_Ragdoll110_Prefab = new PrefabGUID(1914007840); public static readonly PrefabGUID CreatureSuccubus_Ragdoll120_Prefab = new PrefabGUID(2045896993); public static readonly PrefabGUID CreatureTreant_Ragdoll100_Prefab = new PrefabGUID(847770697); public static readonly PrefabGUID CreatureTreant_Ragdoll200_Prefab = new PrefabGUID(-1781189041); public static readonly PrefabGUID CreatureWerewolf_Ragdoll100_Prefab = new PrefabGUID(-1847680802); public static readonly PrefabGUID CreatureWerewolf_Ragdoll150_Prefab = new PrefabGUID(1340663027); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll100_Prefab = new PrefabGUID(194644392); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll120_Prefab = new PrefabGUID(-2056261043); public static readonly PrefabGUID CreatureWitheredVampire_Ragdoll130_Prefab = new PrefabGUID(887685147); public static readonly PrefabGUID CreatureWolf_Ragdoll_Test = new PrefabGUID(178501540); public static readonly PrefabGUID CreatureWolf_Ragdoll100_Prefab = new PrefabGUID(-1807047886); public static readonly PrefabGUID CreatureWolf_Ragdoll120_Prefab = new PrefabGUID(2110166064); public static readonly PrefabGUID CreatureWolf_Ragdoll130_Prefab = new PrefabGUID(-1751713457); public static readonly PrefabGUID CreatureWolf_Ragdoll140_Prefab = new PrefabGUID(-1707512034); public static readonly PrefabGUID CreatureWolf_Ragdoll150_Prefab = new PrefabGUID(-1419181702); public static readonly PrefabGUID CritterChar_Bat = new PrefabGUID(1735423645); public static readonly PrefabGUID CritterChar_Bunny = new PrefabGUID(1242469640); public static readonly PrefabGUID CritterChar_Cat = new PrefabGUID(-2118320949); public static readonly PrefabGUID CritterChar_Chicken = new PrefabGUID(1356828000); public static readonly PrefabGUID CritterChar_Cockroach = new PrefabGUID(148342094); public static readonly PrefabGUID CritterChar_Crow = new PrefabGUID(925222623); public static readonly PrefabGUID CritterChar_Mouse = new PrefabGUID(-317994061); public static readonly PrefabGUID CritterChar_Spider = new PrefabGUID(7967807); public static readonly PrefabGUID CritterChar_Squirrel = new PrefabGUID(555302054); public static readonly PrefabGUID CritterGroup_Bat = new PrefabGUID(-1367272613); public static readonly PrefabGUID CritterGroup_Bunny = new PrefabGUID(474612735); public static readonly PrefabGUID CritterGroup_Cat = new PrefabGUID(-1117422489); public static readonly PrefabGUID CritterGroup_Chicken = new PrefabGUID(-364852783); public static readonly PrefabGUID CritterGroup_Cockroach = new PrefabGUID(1989068346); public static readonly PrefabGUID CritterGroup_Crow = new PrefabGUID(-642069358); public static readonly PrefabGUID CritterGroup_Mouse = new PrefabGUID(-1821856556); public static readonly PrefabGUID CritterGroup_Single_Bat = new PrefabGUID(1859694106); public static readonly PrefabGUID CritterGroup_Single_Bunny = new PrefabGUID(-1330227720); public static readonly PrefabGUID CritterGroup_Single_Cat = new PrefabGUID(2096095485); public static readonly PrefabGUID CritterGroup_Single_Chicken = new PrefabGUID(-1657279065); public static readonly PrefabGUID CritterGroup_Single_Cockroach = new PrefabGUID(-1454203981); public static readonly PrefabGUID CritterGroup_Single_Crow = new PrefabGUID(-654812882); public static readonly PrefabGUID CritterGroup_Single_Mouse = new PrefabGUID(-526078649); public static readonly PrefabGUID CritterGroup_Single_Spider = new PrefabGUID(-80668474); public static readonly PrefabGUID CritterGroup_Single_Squirrel = new PrefabGUID(-142454320); public static readonly PrefabGUID CritterGroup_Spider = new PrefabGUID(1076806641); public static readonly PrefabGUID CritterGroup_Squirrel = new PrefabGUID(1369566208); public static readonly PrefabGUID CryptFloorBuildMenuGroup = new PrefabGUID(-779542956); public static readonly PrefabGUID CrystalNode01_Broken = new PrefabGUID(-1281655774); public static readonly PrefabGUID CrystalNode01_Broken_Small = new PrefabGUID(-1316773796); public static readonly PrefabGUID CrystalNode02_Broken = new PrefabGUID(-436044690); public static readonly PrefabGUID CrystalNode02_Broken_Small = new PrefabGUID(853156858); public static readonly PrefabGUID CrystalNode03_Broken = new PrefabGUID(-409507398); public static readonly PrefabGUID CrystalNode03_Broken_Small = new PrefabGUID(1522959044); public static readonly PrefabGUID Cursed_MountainBeast_VBlood_Emote_OnAggro_Buff = new PrefabGUID(575706671); public static readonly PrefabGUID Cursed_ToadKing_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1860135007); public static readonly PrefabGUID Cursed_Witch_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1712502449); public static readonly PrefabGUID CurseOfTheForestCurve = new PrefabGUID(-165949957); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable01 = new PrefabGUID(-984487483); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable02 = new PrefabGUID(-574686002); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable03 = new PrefabGUID(1822226575); public static readonly PrefabGUID CurtainsBuildMenuGroupWallDyable04 = new PrefabGUID(1174828034); public static readonly PrefabGUID CurtainsBuildMenuGroupWalls = new PrefabGUID(-1412163262); public static readonly PrefabGUID CurtainsBuildMenuGroupWindow = new PrefabGUID(-2141652137); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable01 = new PrefabGUID(1154431287); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable02 = new PrefabGUID(-729759654); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable03 = new PrefabGUID(942021926); public static readonly PrefabGUID CurtainsBuildMenuGroupWindowDyable04 = new PrefabGUID(-1618668180); public static readonly PrefabGUID CurtainsBuildMenuHalloween01 = new PrefabGUID(594242213); public static readonly PrefabGUID Curve_Harvesting_Base_Default = new PrefabGUID(1865742548); public static readonly PrefabGUID Curve_Late_Exponential = new PrefabGUID(-2105699851); public static readonly PrefabGUID Curve_MaterialParameter_Bell = new PrefabGUID(1834241972); public static readonly PrefabGUID Curve_MaterialParameter_Bell_Custom1 = new PrefabGUID(-898395305); public static readonly PrefabGUID Curve_MaterialParameter_Bell_Custom2 = new PrefabGUID(977036292); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickEnd = new PrefabGUID(-1955063252); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStart = new PrefabGUID(1070677914); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStartNEnd = new PrefabGUID(-595330675); public static readonly PrefabGUID Curve_MaterialParameter_Upward_QuickStartNEnd_Dracula = new PrefabGUID(-187583068); public static readonly PrefabGUID Curve_Stats_Base_Default = new PrefabGUID(-1087456774); public static readonly PrefabGUID Curve_Stats_Durability_Default = new PrefabGUID(347547260); public static readonly PrefabGUID Curve_Stats_Health_VBlood_Default = new PrefabGUID(-1088346619); public static readonly PrefabGUID Curve_Stats_PlayerHealth_NPCDamage_Default = new PrefabGUID(-979488854); public static readonly PrefabGUID Curve_Stats_Trash_Health = new PrefabGUID(1757681304); public static readonly PrefabGUID Curve_Stats_Units_Base_LightCurve_Default = new PrefabGUID(-1133129862); public static readonly PrefabGUID Curve_Stats_Units_Base_Linear_Default = new PrefabGUID(613328891); public static readonly PrefabGUID Curve_Stats_Units_Health_Exponential_Default = new PrefabGUID(-595060822); public static readonly PrefabGUID Curve_Stats_Units_Health_VBlood = new PrefabGUID(902260803); public static readonly PrefabGUID Dagger_LeapMovementCurve = new PrefabGUID(1247313737); public static readonly PrefabGUID Darkness_WingOfDarkness_ReturnCurve = new PrefabGUID(638719886); public static readonly PrefabGUID Dash = new PrefabGUID(1664644966); public static readonly PrefabGUID DayNightCycle = new PrefabGUID(-1404365494); public static readonly PrefabGUID DazeCurve = new PrefabGUID(814692040); public static readonly PrefabGUID DeathBuff = new PrefabGUID(-410069552); public static readonly PrefabGUID DeepBlueWindowsBuildMenuGroup = new PrefabGUID(1082128899); public static readonly PrefabGUID Default_ImpactMapping = new PrefabGUID(1838642985); public static readonly PrefabGUID DefaultEquipmentCollection = new PrefabGUID(1870987059); public static readonly PrefabGUID DefaultUnitActiveTimer = new PrefabGUID(871486083); public static readonly PrefabGUID DefaultUnlockedProgression = new PrefabGUID(970543511); public static readonly PrefabGUID DesksBuildMenuGroup = new PrefabGUID(493629648); public static readonly PrefabGUID DG_Blood_Stash_General = new PrefabGUID(-2039926742); public static readonly PrefabGUID DG_Breakable_T01_Cocoon_MicroPOI_Bandits = new PrefabGUID(-2010744344); public static readonly PrefabGUID DG_Breakable_T01_General_Urn = new PrefabGUID(951573169); public static readonly PrefabGUID DG_Breakable_T01_Graveyard_Tomb = new PrefabGUID(-1919795187); public static readonly PrefabGUID DG_Breakable_T01_Graveyard_Urn = new PrefabGUID(1294731904); public static readonly PrefabGUID DG_Breakable_T01_LumberjackCamp = new PrefabGUID(1029332719); public static readonly PrefabGUID DG_Breakable_T01_StartGraveyard_Urn = new PrefabGUID(630345940); public static readonly PrefabGUID DG_Breakable_T02_Farms = new PrefabGUID(328778407); public static readonly PrefabGUID DG_Breakable_T03_Cursed_Cocoon = new PrefabGUID(1966447501); public static readonly PrefabGUID DG_Breakable_T03_Harbor_Fish = new PrefabGUID(-968251067); public static readonly PrefabGUID DG_Breakable_T03_SilverMine = new PrefabGUID(466770945); public static readonly PrefabGUID DG_Breakable_T03_StrongBlade_Disembark_Fish = new PrefabGUID(-272458270); public static readonly PrefabGUID DG_Coins_T01 = new PrefabGUID(1540070901); public static readonly PrefabGUID DG_Coins_T02 = new PrefabGUID(-2130907141); public static readonly PrefabGUID DG_Coins_T03 = new PrefabGUID(-1425533541); public static readonly PrefabGUID DG_Coins_T03_GoldAndSilver = new PrefabGUID(1205484515); public static readonly PrefabGUID DG_Coins_T04 = new PrefabGUID(875180931); public static readonly PrefabGUID DG_Container_T01_Carriage_Animal = new PrefabGUID(433846260); public static readonly PrefabGUID DG_Container_T01_Carriage_Copper = new PrefabGUID(-1058664299); public static readonly PrefabGUID DG_Container_T01_Carriage_Plank = new PrefabGUID(-625024741); public static readonly PrefabGUID DG_Container_T01_Carriage_Sulfur = new PrefabGUID(1040566389); public static readonly PrefabGUID DG_Container_T01_General = new PrefabGUID(1909532227); public static readonly PrefabGUID DG_Container_T01_Graveyard_General = new PrefabGUID(-388824593); public static readonly PrefabGUID DG_Container_T01_Graveyard_Start = new PrefabGUID(220138518); public static readonly PrefabGUID DG_Container_T01_Misc = new PrefabGUID(405699381); public static readonly PrefabGUID DG_Container_T01_Misc_Graveyard = new PrefabGUID(1371269742); public static readonly PrefabGUID DG_Container_T01_Misc_Quarry = new PrefabGUID(295746247); public static readonly PrefabGUID DG_Container_T01_Storage_Rare = new PrefabGUID(-1014348189); public static readonly PrefabGUID DG_Container_T02_Carriage_Cotton = new PrefabGUID(-759984956); public static readonly PrefabGUID DG_Container_T02_Carriage_Iron = new PrefabGUID(-911858738); public static readonly PrefabGUID DG_Container_T02_Carriage_Quartz = new PrefabGUID(-1489279758); public static readonly PrefabGUID DG_Container_T02_Graveyard_General = new PrefabGUID(-1748682486); public static readonly PrefabGUID DG_Container_T02_Misc = new PrefabGUID(-136093668); public static readonly PrefabGUID DG_Container_T02_Misc_Gloomrot_Factory = new PrefabGUID(-1546263079); public static readonly PrefabGUID DG_Container_T02_Misc_Gloomrot_SludgePool = new PrefabGUID(868544561); public static readonly PrefabGUID DG_Container_T02_Misc_GloomrotSouth = new PrefabGUID(-1292478585); public static readonly PrefabGUID DG_Container_T02_Misc_IronMine = new PrefabGUID(698996172); public static readonly PrefabGUID DG_Container_T02_Misc_Magic = new PrefabGUID(-558450784); public static readonly PrefabGUID DG_Container_T02_Misc_MilitiaFort = new PrefabGUID(1169994794); public static readonly PrefabGUID DG_Container_T02_Misc_Noctem = new PrefabGUID(-279875334); public static readonly PrefabGUID DG_Container_T02_Misc_QuartzQuarry = new PrefabGUID(-1131795090); public static readonly PrefabGUID DG_Container_T02_Misc_Village_Fish = new PrefabGUID(-268836842); public static readonly PrefabGUID DG_Container_T02_Noctem_Crystal_T01 = new PrefabGUID(1324684161); public static readonly PrefabGUID DG_Container_T02_Storage_Gloomrot_Rare = new PrefabGUID(1069169028); public static readonly PrefabGUID DG_Container_T02_Storage_Rare = new PrefabGUID(-1809100981); public static readonly PrefabGUID DG_Container_T03_Carriage_Emery = new PrefabGUID(-535905314); public static readonly PrefabGUID DG_Container_T03_Carriage_Grapes = new PrefabGUID(710586900); public static readonly PrefabGUID DG_Container_T03_Carriage_Legion = new PrefabGUID(-342123149); public static readonly PrefabGUID DG_Container_T03_Carriage_Mutant = new PrefabGUID(483646622); public static readonly PrefabGUID DG_Container_T03_Carriage_Sap = new PrefabGUID(1145150323); public static readonly PrefabGUID DG_Container_T03_Carriage_Silver = new PrefabGUID(423285063); public static readonly PrefabGUID DG_Container_T03_GrapeStomperBarrel = new PrefabGUID(-909786548); public static readonly PrefabGUID DG_Container_T03_Misc = new PrefabGUID(1891494897); public static readonly PrefabGUID DG_Container_T03_Misc_Church = new PrefabGUID(141303312); public static readonly PrefabGUID DG_Container_T03_Misc_Cursed = new PrefabGUID(1645409827); public static readonly PrefabGUID DG_Container_T03_Misc_GloomrotNorth = new PrefabGUID(1838040059); public static readonly PrefabGUID DG_Container_T03_Misc_GloomrotNorth_Lab = new PrefabGUID(-1724471008); public static readonly PrefabGUID DG_Container_T03_Misc_Harbor = new PrefabGUID(1428824812); public static readonly PrefabGUID DG_Container_T03_Misc_RoyalSquare = new PrefabGUID(-322796773); public static readonly PrefabGUID DG_Container_T03_Misc_RoyalSquare_Outside = new PrefabGUID(799302546); public static readonly PrefabGUID DG_Container_T03_Misc_SilverMine = new PrefabGUID(1778434762); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade = new PrefabGUID(-696082104); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Alchemy = new PrefabGUID(554058091); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Bastion = new PrefabGUID(-976785199); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Carver = new PrefabGUID(1309881540); public static readonly PrefabGUID DG_Container_T03_Misc_StrongBlade_Disembark = new PrefabGUID(-2097709445); public static readonly PrefabGUID DG_Container_T03_Storage_Rare = new PrefabGUID(-1746523783); public static readonly PrefabGUID DG_Container_T03_Storage_Rare_GloomrotNorth = new PrefabGUID(-158916574); public static readonly PrefabGUID DG_Container_T03_Storage_Rare_StrongBlade = new PrefabGUID(2061994638); public static readonly PrefabGUID DG_Container_T03_Storage_RoyalSquare_Rare = new PrefabGUID(-582411595); public static readonly PrefabGUID DG_Container_T04_Misc = new PrefabGUID(99834451); public static readonly PrefabGUID DG_Container_T04_Noctem_Crystal_T02 = new PrefabGUID(297885887); public static readonly PrefabGUID DG_Fish_Cursed_T01 = new PrefabGUID(2052079562); public static readonly PrefabGUID DG_Fish_Dunley_T01 = new PrefabGUID(1760781308); public static readonly PrefabGUID DG_Fish_Farbane_T01 = new PrefabGUID(602192785); public static readonly PrefabGUID DG_Fish_Gloomrot_T01 = new PrefabGUID(1978852852); public static readonly PrefabGUID DG_Fish_Harbor = new PrefabGUID(-426653940); public static readonly PrefabGUID DG_Fish_Silverlight_T01 = new PrefabGUID(58114326); public static readonly PrefabGUID DG_Fish_StrongBlade_T01 = new PrefabGUID(-1663423347); public static readonly PrefabGUID DG_Fishing_Cursed_Items_T01 = new PrefabGUID(1718507145); public static readonly PrefabGUID DG_Fishing_Cursed_T01 = new PrefabGUID(677405472); public static readonly PrefabGUID DG_Fishing_Dunley_Items_T01 = new PrefabGUID(1358948183); public static readonly PrefabGUID DG_Fishing_Dunley_T01 = new PrefabGUID(1949339630); public static readonly PrefabGUID DG_Fishing_Farbane_Items_T01 = new PrefabGUID(1616829799); public static readonly PrefabGUID DG_Fishing_Farbane_T01 = new PrefabGUID(-628470921); public static readonly PrefabGUID DG_Fishing_Gloomrot_T01 = new PrefabGUID(-1698161744); public static readonly PrefabGUID DG_Fishing_Silverlight_Items_T01 = new PrefabGUID(-1494790425); public static readonly PrefabGUID DG_Fishing_Silverlight_T01 = new PrefabGUID(-1790830484); public static readonly PrefabGUID DG_Fishing_StrongBlade_Items_T01 = new PrefabGUID(1181831346); public static readonly PrefabGUID DG_Fishing_StrongBlade_T01 = new PrefabGUID(-1375432277); public static readonly PrefabGUID DG_Gear_T01_Basic_Armors = new PrefabGUID(-1655815009); public static readonly PrefabGUID DG_Gear_T01_Basic_Weapons = new PrefabGUID(-1782949422); public static readonly PrefabGUID DG_Gear_T01_Cloak_Collection = new PrefabGUID(12757113); public static readonly PrefabGUID DG_Gear_T01_General = new PrefabGUID(-2027350737); public static readonly PrefabGUID DG_Gear_T01_Graveyard = new PrefabGUID(-1775916594); public static readonly PrefabGUID DG_Gear_T01_Headgear_Collection = new PrefabGUID(-1756313832); public static readonly PrefabGUID DG_Gear_T02_Cloak_Collection = new PrefabGUID(-635785161); public static readonly PrefabGUID DG_Gear_T02_General = new PrefabGUID(-484171030); public static readonly PrefabGUID DG_Gear_T02_Headgear_Collection = new PrefabGUID(1321005827); public static readonly PrefabGUID DG_Gear_T03_Basic_Armors = new PrefabGUID(-1034830107); public static readonly PrefabGUID DG_Gear_T03_Cloak_Collection = new PrefabGUID(1224959593); public static readonly PrefabGUID DG_Gear_T03_CottonArmor = new PrefabGUID(-294604688); public static readonly PrefabGUID DG_Gear_T03_General = new PrefabGUID(-882656591); public static readonly PrefabGUID DG_Gear_T03_Headgear_Collection = new PrefabGUID(1260315542); public static readonly PrefabGUID DG_Gear_T03_Headgear_VampireHunter = new PrefabGUID(1736981520); public static readonly PrefabGUID DG_Gear_T03_IronEquipment = new PrefabGUID(1058876252); public static readonly PrefabGUID DG_Gear_T04_General = new PrefabGUID(748027089); public static readonly PrefabGUID DG_Human_General_Drop01_T01 = new PrefabGUID(-674633014); public static readonly PrefabGUID DG_Legendary_NetherGate_Major = new PrefabGUID(-1829083414); public static readonly PrefabGUID DG_Legendary_NetherGate_Minor = new PrefabGUID(-2018814609); public static readonly PrefabGUID DG_Legendary_NetherGate_Primal = new PrefabGUID(-1339460540); public static readonly PrefabGUID DG_Mission_Fish_Farbane_Fisherman = new PrefabGUID(1483366252); public static readonly PrefabGUID DG_Mission_T00_No_BloodEssence = new PrefabGUID(232491593); public static readonly PrefabGUID DG_Mission_T01_Farbane_BloodEssence = new PrefabGUID(70843803); public static readonly PrefabGUID DG_Mission_T01_Farbane_Fish = new PrefabGUID(1560988013); public static readonly PrefabGUID DG_Mission_T01_Farbane_General = new PrefabGUID(1030501359); public static readonly PrefabGUID DG_Mission_T01_Farbane_Misc = new PrefabGUID(-235172059); public static readonly PrefabGUID DG_Mission_T02_Dunley_BloodEssence = new PrefabGUID(-1104968431); public static readonly PrefabGUID DG_Mission_T02_Dunley_General = new PrefabGUID(7594625); public static readonly PrefabGUID DG_Mission_T02_Dunley_Misc = new PrefabGUID(2142009812); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_BloodEssence = new PrefabGUID(1953143832); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_General = new PrefabGUID(-318293682); public static readonly PrefabGUID DG_Mission_T02_Gloomrot_Misc = new PrefabGUID(1993285515); public static readonly PrefabGUID DG_Mission_T02_Noctem_Misc = new PrefabGUID(327314955); public static readonly PrefabGUID DG_Mission_T02_Noctem_Ruins = new PrefabGUID(1649596143); public static readonly PrefabGUID DG_Mission_T03_Cursed_BloodEssence = new PrefabGUID(721791474); public static readonly PrefabGUID DG_Mission_T03_Cursed_General = new PrefabGUID(1992517517); public static readonly PrefabGUID DG_Mission_T03_Cursed_Misc = new PrefabGUID(-1274346311); public static readonly PrefabGUID DG_Mission_T04_GloomrotNorth_General = new PrefabGUID(-581804216); public static readonly PrefabGUID DG_Mission_T04_GloomrotNorth_Misc = new PrefabGUID(-518916463); public static readonly PrefabGUID DG_Mission_T04_Noctem_Gardens = new PrefabGUID(1106493133); public static readonly PrefabGUID DG_Mission_T04_Noctem_Misc = new PrefabGUID(431231157); public static readonly PrefabGUID DG_Mission_T04_Silverlight_BloodEssence = new PrefabGUID(1202606318); public static readonly PrefabGUID DG_Mission_T04_Silverlight_Fish = new PrefabGUID(1577769429); public static readonly PrefabGUID DG_Mission_T04_Silverlight_General = new PrefabGUID(571498705); public static readonly PrefabGUID DG_Mission_T04_Silverlight_HarpyGems = new PrefabGUID(-1981823330); public static readonly PrefabGUID DG_Mission_T04_Silverlight_Misc = new PrefabGUID(-857659940); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_BloodEssence = new PrefabGUID(-665041538); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Fish = new PrefabGUID(-90892351); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_General = new PrefabGUID(265831722); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Misc = new PrefabGUID(1152599662); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Plants = new PrefabGUID(-1898212729); public static readonly PrefabGUID DG_Mission_T04_StrongBlade_Potions = new PrefabGUID(1000050609); public static readonly PrefabGUID DG_NetherDemon_Alchemy_T02 = new PrefabGUID(1398090605); public static readonly PrefabGUID DG_NetherDemon_Jewels_T01 = new PrefabGUID(-1108693022); public static readonly PrefabGUID DG_NetherDemon_Jewels_T02 = new PrefabGUID(922146749); public static readonly PrefabGUID DG_NetherDemon_Knowledge_T02 = new PrefabGUID(-4875669); public static readonly PrefabGUID DG_NetherDemon_Minerals_T01 = new PrefabGUID(-136726520); public static readonly PrefabGUID DG_NetherDemon_Minerals_T02 = new PrefabGUID(-379846843); public static readonly PrefabGUID DG_NetherDemon_Weapons_T01 = new PrefabGUID(1650585625); public static readonly PrefabGUID DG_NetherDemon_Weapons_T02 = new PrefabGUID(2033414634); public static readonly PrefabGUID DG_NetherDemon_Weapons_Unique = new PrefabGUID(-1244805107); public static readonly PrefabGUID DG_NetherShards_GateBoss_Major = new PrefabGUID(-1743538978); public static readonly PrefabGUID DG_NetherShards_GateBoss_Minor = new PrefabGUID(-626232454); public static readonly PrefabGUID DG_NetherShards_GateBoss_Primal = new PrefabGUID(1265977722); public static readonly PrefabGUID DG_Passives_T01 = new PrefabGUID(362249550); public static readonly PrefabGUID DG_Passives_T02 = new PrefabGUID(263074015); public static readonly PrefabGUID DG_Shared_Clay_T01 = new PrefabGUID(-1072935780); public static readonly PrefabGUID DG_Shared_Coins_T01 = new PrefabGUID(-1779578854); public static readonly PrefabGUID DG_Shared_Coins_T02 = new PrefabGUID(1232631890); public static readonly PrefabGUID DG_Shared_Coins_T03 = new PrefabGUID(-1842569724); public static readonly PrefabGUID DG_Shared_Coins_T04 = new PrefabGUID(-111791197); public static readonly PrefabGUID DG_Shared_Consumables_Elixir = new PrefabGUID(2014537862); public static readonly PrefabGUID DG_Shared_Consumables_T01 = new PrefabGUID(668711866); public static readonly PrefabGUID DG_Shared_Consumables_T02 = new PrefabGUID(-470448469); public static readonly PrefabGUID DG_Shared_Consumables_T03 = new PrefabGUID(-2142241018); public static readonly PrefabGUID DG_Shared_Consumables_T03_Mission_StrongBlade = new PrefabGUID(1054713875); public static readonly PrefabGUID DG_Shared_Container_T02_Farms = new PrefabGUID(128496181); public static readonly PrefabGUID DG_Shared_Container_T02_Lumbermill = new PrefabGUID(-345302350); public static readonly PrefabGUID DG_Shared_Critter_Gloomrot_Rat_T02 = new PrefabGUID(308991376); public static readonly PrefabGUID DG_Shared_Critter_Rat_T01 = new PrefabGUID(-352298778); public static readonly PrefabGUID DG_Shared_Critter_Silkworm_T03 = new PrefabGUID(-1795328310); public static readonly PrefabGUID DG_Shared_Critter_SludgePools_Rat_T02 = new PrefabGUID(-1298356969); public static readonly PrefabGUID DG_Shared_Decoration_T01 = new PrefabGUID(-1444017573); public static readonly PrefabGUID DG_Shared_Gems_T01 = new PrefabGUID(-1897530180); public static readonly PrefabGUID DG_Shared_Gems_T02 = new PrefabGUID(1954210954); public static readonly PrefabGUID DG_Shared_Gems_T03 = new PrefabGUID(-1162005407); public static readonly PrefabGUID DG_Shared_Gems_T04 = new PrefabGUID(1146865701); public static readonly PrefabGUID DG_Shared_NetherShards_Mixed = new PrefabGUID(-2103820473); public static readonly PrefabGUID DG_Shared_Plants_T01 = new PrefabGUID(1744531815); public static readonly PrefabGUID DG_Shared_Plants_T02 = new PrefabGUID(1529104066); public static readonly PrefabGUID DG_Shared_Plants_T03_StrongBlade = new PrefabGUID(-429878285); public static readonly PrefabGUID DG_Shared_Research_T01_Low = new PrefabGUID(-329157745); public static readonly PrefabGUID DG_Shared_Research_T01_Mid = new PrefabGUID(-1278108076); public static readonly PrefabGUID DG_Shared_Research_T02_High = new PrefabGUID(-202022459); public static readonly PrefabGUID DG_Shared_Research_T02_Low = new PrefabGUID(-2074495133); public static readonly PrefabGUID DG_Shared_Research_T02_Mid = new PrefabGUID(1858617172); public static readonly PrefabGUID DG_Shared_Research_T02_Mixed_Big = new PrefabGUID(987964241); public static readonly PrefabGUID DG_Shared_Research_T03_High = new PrefabGUID(-1150682078); public static readonly PrefabGUID DG_Shared_Research_T03_Low = new PrefabGUID(-41567190); public static readonly PrefabGUID DG_Shared_Research_T03_Mid = new PrefabGUID(-1787481141); public static readonly PrefabGUID DG_Shared_Research_T03_Mixed_Big = new PrefabGUID(-340056265); public static readonly PrefabGUID DG_Shared_Resource_Copper = new PrefabGUID(-2102232267); public static readonly PrefabGUID DG_Shared_Resource_GhostCrystal = new PrefabGUID(1749052953); public static readonly PrefabGUID DG_Shared_Resource_Iron = new PrefabGUID(-692372427); public static readonly PrefabGUID DG_Shared_Resource_Quartz = new PrefabGUID(1565167721); public static readonly PrefabGUID DG_Shared_Resource_Rock = new PrefabGUID(1388804882); public static readonly PrefabGUID DG_Shared_Resource_Scrap_Battery = new PrefabGUID(413865332); public static readonly PrefabGUID DG_Shared_Resource_Silver = new PrefabGUID(1995150801); public static readonly PrefabGUID DG_Shared_Resource_Sulfur = new PrefabGUID(1398666807); public static readonly PrefabGUID DG_Shared_Resource_Tree = new PrefabGUID(-1498999730); public static readonly PrefabGUID DG_Shared_Seeds_T01 = new PrefabGUID(419822861); public static readonly PrefabGUID DG_Shared_Seeds_T02 = new PrefabGUID(-1891639833); public static readonly PrefabGUID DG_Shared_Seeds_T02_Gloomrot = new PrefabGUID(703203395); public static readonly PrefabGUID DG_Shared_Seeds_T03_All = new PrefabGUID(125548546); public static readonly PrefabGUID DG_Shared_Seeds_T03_GrapesLotus = new PrefabGUID(1164196464); public static readonly PrefabGUID DG_Shared_Seeds_T03_Saplings = new PrefabGUID(75434282); public static readonly PrefabGUID DG_Shared_Seeds_T03_ShroomsLotus = new PrefabGUID(-179484011); public static readonly PrefabGUID DG_Shared_Seeds_T03_StrongBlade = new PrefabGUID(-906758542); public static readonly PrefabGUID DG_Shared_T01_Components_All = new PrefabGUID(-1503042440); public static readonly PrefabGUID DG_Shared_T01_Components_Blacksmith = new PrefabGUID(-374402390); public static readonly PrefabGUID DG_Shared_T01_Components_BlacksmithVariable = new PrefabGUID(-1082472468); public static readonly PrefabGUID DG_Shared_T01_Components_Construction = new PrefabGUID(-1858386431); public static readonly PrefabGUID DG_Shared_T01_Components_Magic = new PrefabGUID(661131254); public static readonly PrefabGUID DG_Shared_T01_Components_Tailoring = new PrefabGUID(45142596); public static readonly PrefabGUID DG_Shared_T01_Ingredients_Copper = new PrefabGUID(-911361478); public static readonly PrefabGUID DG_Shared_T01_Storage_AnimalCamp = new PrefabGUID(-517036683); public static readonly PrefabGUID DG_Shared_T01_Storage_BanditFort = new PrefabGUID(-1354030434); public static readonly PrefabGUID DG_Shared_T01_Storage_Blacksmith = new PrefabGUID(149789990); public static readonly PrefabGUID DG_Shared_T01_Storage_CopperMine = new PrefabGUID(1305380392); public static readonly PrefabGUID DG_Shared_T01_Storage_General = new PrefabGUID(-922986326); public static readonly PrefabGUID DG_Shared_T01_Storage_LumberCamp = new PrefabGUID(-687064736); public static readonly PrefabGUID DG_Shared_T01_Storage_SulfurQuarry = new PrefabGUID(138926207); public static readonly PrefabGUID DG_Shared_T01_Storage_Tailor = new PrefabGUID(85119732); public static readonly PrefabGUID DG_Shared_T01_Treasure_General = new PrefabGUID(1390217640); public static readonly PrefabGUID DG_Shared_T02_Components_All = new PrefabGUID(802892195); public static readonly PrefabGUID DG_Shared_T02_Components_Blacksmith = new PrefabGUID(-743539691); public static readonly PrefabGUID DG_Shared_T02_Components_Construction = new PrefabGUID(-2105910607); public static readonly PrefabGUID DG_Shared_T02_Components_Gloomrot_Mech = new PrefabGUID(-1328826274); public static readonly PrefabGUID DG_Shared_T02_Components_Magic = new PrefabGUID(1705367945); public static readonly PrefabGUID DG_Shared_T02_Components_Tailoring = new PrefabGUID(-882513946); public static readonly PrefabGUID DG_Shared_T02_Components_TechScrap = new PrefabGUID(1594186200); public static readonly PrefabGUID DG_Shared_T02_Storage_Blacksmith = new PrefabGUID(2076937949); public static readonly PrefabGUID DG_Shared_T02_Storage_ChurchOfTheDamned = new PrefabGUID(227103100); public static readonly PrefabGUID DG_Shared_T02_Storage_General = new PrefabGUID(-2052072226); public static readonly PrefabGUID DG_Shared_T02_Storage_General_GloomrotFactory = new PrefabGUID(-616136117); public static readonly PrefabGUID DG_Shared_T02_Storage_General_GloomrotSouth = new PrefabGUID(244372377); public static readonly PrefabGUID DG_Shared_T02_Storage_General_SludgePools = new PrefabGUID(-287686419); public static readonly PrefabGUID DG_Shared_T02_Storage_Magic = new PrefabGUID(-923792432); public static readonly PrefabGUID DG_Shared_T02_Storage_MilitiaFort_General = new PrefabGUID(1053960050); public static readonly PrefabGUID DG_Shared_T02_Storage_MilitiaFort_Unique = new PrefabGUID(-789692442); public static readonly PrefabGUID DG_Shared_T02_Storage_Noctem = new PrefabGUID(2044390625); public static readonly PrefabGUID DG_Shared_T02_Storage_Village_Fish = new PrefabGUID(684162537); public static readonly PrefabGUID DG_Shared_T02_Treasure_ChurchOfTheDamned = new PrefabGUID(1187114318); public static readonly PrefabGUID DG_Shared_T02_Treasure_General = new PrefabGUID(-794013563); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_Gloomrot = new PrefabGUID(1517832857); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_GloomrotFactory = new PrefabGUID(874487488); public static readonly PrefabGUID DG_Shared_T02_Treasure_General_Noctem = new PrefabGUID(-1796178156); public static readonly PrefabGUID DG_Shared_T03_Components_All = new PrefabGUID(-1488799116); public static readonly PrefabGUID DG_Shared_T03_Components_Blacksmith = new PrefabGUID(-273068064); public static readonly PrefabGUID DG_Shared_T03_Components_Magic = new PrefabGUID(-1374413214); public static readonly PrefabGUID DG_Shared_T03_Components_StrongBlade = new PrefabGUID(-1594211559); public static readonly PrefabGUID DG_Shared_T03_Components_Tailoring = new PrefabGUID(802075336); public static readonly PrefabGUID DG_Shared_T03_Storage_Church = new PrefabGUID(1542093784); public static readonly PrefabGUID DG_Shared_T03_Storage_General = new PrefabGUID(11902470); public static readonly PrefabGUID DG_Shared_T03_Storage_General_Cursed = new PrefabGUID(580371630); public static readonly PrefabGUID DG_Shared_T03_Storage_General_GloomrotNorth = new PrefabGUID(-938773845); public static readonly PrefabGUID DG_Shared_T03_Storage_General_GloomrotNorth_Lab = new PrefabGUID(347624582); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade = new PrefabGUID(1839427455); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Alchemy = new PrefabGUID(654306446); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Bastion = new PrefabGUID(-445348935); public static readonly PrefabGUID DG_Shared_T03_Storage_General_StrongBlade_Carver = new PrefabGUID(226252382); public static readonly PrefabGUID DG_Shared_T03_Storage_RoyalSquare = new PrefabGUID(-1323124520); public static readonly PrefabGUID DG_Shared_T03_Storage_RoyalSquare_Outside = new PrefabGUID(484975148); public static readonly PrefabGUID DG_Shared_T03_Storage_SilverMine = new PrefabGUID(-1363291005); public static readonly PrefabGUID DG_Shared_T03_Treasure_General = new PrefabGUID(-1173668301); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_Cursed = new PrefabGUID(-1092013966); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_GloomrotNorth = new PrefabGUID(-789399775); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_RoyalSquare = new PrefabGUID(-1414865113); public static readonly PrefabGUID DG_Shared_T03_Treasure_General_StrongBlade = new PrefabGUID(1255574134); public static readonly PrefabGUID DG_Shared_T03_Treasure_SpiderCavern = new PrefabGUID(337435844); public static readonly PrefabGUID DG_Shared_T04_Components_All = new PrefabGUID(265544065); public static readonly PrefabGUID DG_Shared_T04_Components_Blacksmith = new PrefabGUID(-204804774); public static readonly PrefabGUID DG_Shared_T04_Components_Magic = new PrefabGUID(569496733); public static readonly PrefabGUID DG_Shared_T04_Components_Tailoring = new PrefabGUID(-1559969002); public static readonly PrefabGUID DG_Shared_T04_Storage_General = new PrefabGUID(1755640461); public static readonly PrefabGUID DG_Shared_T04_Treasure_General = new PrefabGUID(-1671990115); public static readonly PrefabGUID DG_Shared_Unit_Bandit_Components_Blacksmith = new PrefabGUID(465131747); public static readonly PrefabGUID DG_Shared_Unit_Bandit_Components_General = new PrefabGUID(1153165721); public static readonly PrefabGUID DG_Shared_Unit_Church_Components_T04T05 = new PrefabGUID(-515919233); public static readonly PrefabGUID DG_Shared_Unit_Components_Blacksmith_T01 = new PrefabGUID(-1796741385); public static readonly PrefabGUID DG_Shared_Unit_Components_Tailoring_T01 = new PrefabGUID(-989279301); public static readonly PrefabGUID DG_Shared_Unit_Creature_T01 = new PrefabGUID(-339679150); public static readonly PrefabGUID DG_Shared_Unit_Farmers_Components_T04 = new PrefabGUID(-75514021); public static readonly PrefabGUID DG_Shared_Unit_Heart_Elite_T01 = new PrefabGUID(546787638); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T01 = new PrefabGUID(2052223836); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T02 = new PrefabGUID(265060786); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T03 = new PrefabGUID(-486851600); public static readonly PrefabGUID DG_Shared_Unit_Heart_Normal_T04 = new PrefabGUID(350474883); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T01 = new PrefabGUID(1877092210); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T02 = new PrefabGUID(-1324079437); public static readonly PrefabGUID DG_Shared_Unit_Heart_Trash_T03 = new PrefabGUID(1485623186); public static readonly PrefabGUID DG_Shared_Unit_Militia_Components_T04T05 = new PrefabGUID(-1943281931); public static readonly PrefabGUID DG_Shared_Unit_Spider_T03_Rank01 = new PrefabGUID(-1429988136); public static readonly PrefabGUID DG_Shared_Unit_Spider_T03_Rank02 = new PrefabGUID(591569771); public static readonly PrefabGUID DG_Shared_Unit_Undead_Components_T03 = new PrefabGUID(-1593721019); public static readonly PrefabGUID DG_Shared_Unit_Woodcutter = new PrefabGUID(-1367721825); public static readonly PrefabGUID DG_Tech_Armor_T04 = new PrefabGUID(38652344); public static readonly PrefabGUID DG_Tech_Armor_T06 = new PrefabGUID(837949078); public static readonly PrefabGUID DG_Tech_Armor_T08 = new PrefabGUID(630635412); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Brute = new PrefabGUID(1000749201); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Rogue = new PrefabGUID(719472173); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Scholar = new PrefabGUID(1215478674); public static readonly PrefabGUID DG_Tech_ArmorSet_T04_Warrior = new PrefabGUID(-1286380129); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Brute = new PrefabGUID(-784762788); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Rogue = new PrefabGUID(1875964888); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Scholar = new PrefabGUID(423745265); public static readonly PrefabGUID DG_Tech_ArmorSet_T06_Warrior = new PrefabGUID(818102733); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Brute = new PrefabGUID(-2119141808); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Rogue = new PrefabGUID(428176195); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Scholar = new PrefabGUID(-817539232); public static readonly PrefabGUID DG_Tech_ArmorSet_T08_Warrior = new PrefabGUID(-1800986678); public static readonly PrefabGUID DG_Tech_Blacksmith_Mid = new PrefabGUID(-1222574513); public static readonly PrefabGUID DG_Tech_Consumables_Early = new PrefabGUID(-1793736962); public static readonly PrefabGUID DG_Tech_Consumables_Late = new PrefabGUID(357745731); public static readonly PrefabGUID DG_Tech_Consumables_Mid = new PrefabGUID(56626266); public static readonly PrefabGUID DG_Tech_Equipment_T04 = new PrefabGUID(1173910708); public static readonly PrefabGUID DG_Tech_Equipment_T06 = new PrefabGUID(-1013137749); public static readonly PrefabGUID DG_Tech_Equipment_T08 = new PrefabGUID(-1190292016); public static readonly PrefabGUID DG_Tech_Floors_Early = new PrefabGUID(-1484409463); public static readonly PrefabGUID DG_Tech_Floors_Mid = new PrefabGUID(586176309); public static readonly PrefabGUID DG_Tech_General_Early = new PrefabGUID(204167049); public static readonly PrefabGUID DG_Tech_General_Late = new PrefabGUID(1903387598); public static readonly PrefabGUID DG_Tech_General_Mid = new PrefabGUID(1295732001); public static readonly PrefabGUID DG_Tech_Gold_VBlood_T04 = new PrefabGUID(1405626554); public static readonly PrefabGUID DG_Tech_Legendary_VBlood_T05 = new PrefabGUID(-809412678); public static readonly PrefabGUID DG_Tech_Magic_Mid = new PrefabGUID(-280553302); public static readonly PrefabGUID DG_Tech_Magic_T04 = new PrefabGUID(-875230249); public static readonly PrefabGUID DG_Tech_Magic_T06 = new PrefabGUID(-546404833); public static readonly PrefabGUID DG_Tech_Magic_T08 = new PrefabGUID(-232334772); public static readonly PrefabGUID DG_Tech_Storage_T01 = new PrefabGUID(-1494906591); public static readonly PrefabGUID DG_Tech_Storage_T02 = new PrefabGUID(-728740676); public static readonly PrefabGUID DG_Tech_Storage_T03 = new PrefabGUID(1068448198); public static readonly PrefabGUID DG_Tech_Structures_Early = new PrefabGUID(-1455022078); public static readonly PrefabGUID DG_Tech_Structures_Late = new PrefabGUID(286927992); public static readonly PrefabGUID DG_Tech_Structures_Mid = new PrefabGUID(1568414755); public static readonly PrefabGUID DG_Tech_Weapons_T04 = new PrefabGUID(-1034484734); public static readonly PrefabGUID DG_Tech_Weapons_T06 = new PrefabGUID(634246934); public static readonly PrefabGUID DG_Tech_Weapons_T08 = new PrefabGUID(1262948191); public static readonly PrefabGUID DG_Treasure_T01_General = new PrefabGUID(-777133436); public static readonly PrefabGUID DG_Treasure_T02_General = new PrefabGUID(-151012894); public static readonly PrefabGUID DG_Treasure_T02_General_GloomrotFactory = new PrefabGUID(-1568336643); public static readonly PrefabGUID DG_Treasure_T02_General_GloomrotSouth = new PrefabGUID(-375071620); public static readonly PrefabGUID DG_Treasure_T02_General_Noctem = new PrefabGUID(386313890); public static readonly PrefabGUID DG_Treasure_T03_General = new PrefabGUID(385615781); public static readonly PrefabGUID DG_Treasure_T03_General_Cursed = new PrefabGUID(42028438); public static readonly PrefabGUID DG_Treasure_T03_General_GloomrotNorth = new PrefabGUID(-626788151); public static readonly PrefabGUID DG_Treasure_T03_General_GloomrotNorth_Lab = new PrefabGUID(1461059924); public static readonly PrefabGUID DG_Treasure_T03_General_StrongBlade = new PrefabGUID(658616962); public static readonly PrefabGUID DG_Treasure_T04_General = new PrefabGUID(1043870457); public static readonly PrefabGUID DG_Unit_Banshee_T07 = new PrefabGUID(-675377960); public static readonly PrefabGUID DG_Unit_Church_Normal_T02_Rank01 = new PrefabGUID(-1231651019); public static readonly PrefabGUID DG_Unit_Church_Normal_T02_Rank02 = new PrefabGUID(-1189919464); public static readonly PrefabGUID DG_Unit_Cursed_Ghost_T01 = new PrefabGUID(-1256340255); public static readonly PrefabGUID DG_Unit_GateBoss_Major = new PrefabGUID(848553339); public static readonly PrefabGUID DG_Unit_GateBoss_Minor = new PrefabGUID(-2129530080); public static readonly PrefabGUID DG_Unit_GateBoss_Primal = new PrefabGUID(1671312901); public static readonly PrefabGUID DG_Unit_Legion_NetherShards_T01 = new PrefabGUID(175586605); public static readonly PrefabGUID DG_Unit_Legion_NetherShards_T02 = new PrefabGUID(-930142020); public static readonly PrefabGUID DG_Unit_Legion_Normal_T02 = new PrefabGUID(-79677213); public static readonly PrefabGUID DG_Unit_Legion_Trash_T01 = new PrefabGUID(-1974518560); public static readonly PrefabGUID DG_Unit_Legion_Trash_T02 = new PrefabGUID(1068408625); public static readonly PrefabGUID DG_Unit_Scarecrow = new PrefabGUID(1616224054); public static readonly PrefabGUID DG_Unit_Scarecrow_Dummy = new PrefabGUID(26803558); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc = new PrefabGUID(-891059270); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc_Legion = new PrefabGUID(-277796224); public static readonly PrefabGUID DG_Unit_Standard_T01_Misc_Militia = new PrefabGUID(-965958658); public static readonly PrefabGUID DG_Unit_Standard_T02_Misc = new PrefabGUID(-477124906); public static readonly PrefabGUID DG_Unit_Standard_T02_Misc_Gloomrot = new PrefabGUID(-311459098); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc = new PrefabGUID(999676671); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc_Legion = new PrefabGUID(906921572); public static readonly PrefabGUID DG_Unit_Standard_T03_Misc_StrongBlade = new PrefabGUID(756645082); public static readonly PrefabGUID DG_Unit_Standard_T04_Misc = new PrefabGUID(160230427); public static readonly PrefabGUID DG_Unit_Undead_Normal_T01 = new PrefabGUID(1344668783); public static readonly PrefabGUID DG_Unit_Undead_Normal_T02 = new PrefabGUID(-1649522396); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Banshee = new PrefabGUID(2067406327); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Ghoul = new PrefabGUID(1541001162); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Necromancer = new PrefabGUID(433255461); public static readonly PrefabGUID DG_Unit_Undead_TombSummon_Skeleton = new PrefabGUID(-1346886195); public static readonly PrefabGUID DG_Unit_Undead_Trash_T01 = new PrefabGUID(-993319983); public static readonly PrefabGUID DG_Unit_Undead_WitheredVampire = new PrefabGUID(1926959574); public static readonly PrefabGUID DG_Unit_VBlood_T01_DireRat_Rats = new PrefabGUID(-413328078); public static readonly PrefabGUID DG_Unit_VBlood_T01_Heart_Normal = new PrefabGUID(-725624369); public static readonly PrefabGUID DG_Unit_VBlood_T02_Heart_Normal = new PrefabGUID(-301362355); public static readonly PrefabGUID DG_Unit_VBlood_T03_Heart_Normal = new PrefabGUID(568078443); public static readonly PrefabGUID DG_Unit_VBlood_T04_Gold = new PrefabGUID(-760606378); public static readonly PrefabGUID DG_Unit_VBlood_T04_Heart_Normal = new PrefabGUID(152119371); public static readonly PrefabGUID DiminishingReturn_Buff_Base = new PrefabGUID(22197431); public static readonly PrefabGUID DiminishingReturn_Buff_Fear = new PrefabGUID(-1580179550); public static readonly PrefabGUID DiminishingReturn_Buff_Freeze = new PrefabGUID(725278096); public static readonly PrefabGUID DiminishingReturn_Buff_Stun = new PrefabGUID(-160846617); public static readonly PrefabGUID DiminishingReturn_Buff_ThousandSpears = new PrefabGUID(706085202); public static readonly PrefabGUID DiminishingReturn_Buff_Tornado = new PrefabGUID(-1137877503); public static readonly PrefabGUID DLC01WallpaperBuildMenuGroup = new PrefabGUID(209764618); public static readonly PrefabGUID DLC02WallpaperBuildMenuGroup = new PrefabGUID(-719418586); public static readonly PrefabGUID DLCGloomrot01WallpaperBuildMenuGroup = new PrefabGUID(-1711652344); public static readonly PrefabGUID DLCGloomrot02WallpaperBuildMenuGroup = new PrefabGUID(-1356841125); public static readonly PrefabGUID DLCProjectK01WallpaperBuildMenuGroup = new PrefabGUID(-1770249927); public static readonly PrefabGUID DLCProjectK01WallpaperExpansionBuildMenuGroup = new PrefabGUID(552885243); public static readonly PrefabGUID DLCStrongblade01WallpaperBuildMenuGroup = new PrefabGUID(-277107668); public static readonly PrefabGUID DoorTier02_DLC_ProjectK01_BuildMenuGroup = new PrefabGUID(-709378370); public static readonly PrefabGUID DoorTier02_DLC_ProjectK02_BuildMenuGroup = new PrefabGUID(-958034825); public static readonly PrefabGUID DoorTier02_DLC_StrongbladeDLC01_BuildMenuGroup = new PrefabGUID(-1368456115); public static readonly PrefabGUID DoorTier02_DLC01_DraculasRelic_BuildMenuGroup = new PrefabGUID(-2085323225); public static readonly PrefabGUID DoorTier02_DLC02_Gloomrot_BuildMenuGroup = new PrefabGUID(434369022); public static readonly PrefabGUID DoorTier02_PrisonStyle01_BuildMenuGroup = new PrefabGUID(1610805157); public static readonly PrefabGUID DoorTier02_PrisonStyle02_BuildMenuGroup = new PrefabGUID(1601315396); public static readonly PrefabGUID DoorTier02_Wide_01_BuildMenuGroup = new PrefabGUID(1944873046); public static readonly PrefabGUID DoorTier02_Wide_02_BuildMenuGroup = new PrefabGUID(1960705318); public static readonly PrefabGUID DoorTier02BuildMenuGroup = new PrefabGUID(-265684532); public static readonly PrefabGUID DoorTier02Standard01BuildMenuGroup = new PrefabGUID(545474177); public static readonly PrefabGUID DoorTier02Standard02BuildMenuGroup = new PrefabGUID(386728077); public static readonly PrefabGUID DoorTier02Standard03BuildMenuGroup = new PrefabGUID(-1376033135); public static readonly PrefabGUID Dreadhorn_TrampleRotation_Curve = new PrefabGUID(1066804124); public static readonly PrefabGUID Dreadhorn_TrampleSlowDown_Curve = new PrefabGUID(-1776612184); public static readonly PrefabGUID DropItemSphere = new PrefabGUID(-2054980473); public static readonly PrefabGUID DropItemSphere_VBlood = new PrefabGUID(1725779712); public static readonly PrefabGUID DropItemSphere_WarEvent = new PrefabGUID(496881660); public static readonly PrefabGUID DT_Breakable_General_Urn_T01 = new PrefabGUID(1839404165); public static readonly PrefabGUID DT_Breakable_Graveyard_Tombstone_T01 = new PrefabGUID(-2097442215); public static readonly PrefabGUID DT_Breakable_StartGraveyard_Urn_T01 = new PrefabGUID(-1317603328); public static readonly PrefabGUID DT_Breakables_SpiderCocoon = new PrefabGUID(-200769376); public static readonly PrefabGUID DT_Breakables_SpiderCocoon_MicroPOI_Bandits = new PrefabGUID(1271894991); public static readonly PrefabGUID DT_Breakables_T01_General = new PrefabGUID(-448705278); public static readonly PrefabGUID DT_Breakables_T01_General_AnimalCamp = new PrefabGUID(1897930300); public static readonly PrefabGUID DT_Breakables_T01_General_Blacksmith = new PrefabGUID(-1985426768); public static readonly PrefabGUID DT_Breakables_T01_General_CopperQuarry = new PrefabGUID(1192665766); public static readonly PrefabGUID DT_Breakables_T01_General_Fisherman = new PrefabGUID(-868733446); public static readonly PrefabGUID DT_Breakables_T01_General_LumberjackCamp = new PrefabGUID(-1026191485); public static readonly PrefabGUID DT_Breakables_T01_General_Magic = new PrefabGUID(26098957); public static readonly PrefabGUID DT_Breakables_T01_General_SulfurQuarry = new PrefabGUID(1146512721); public static readonly PrefabGUID DT_Breakables_T01_General_Tailoring = new PrefabGUID(-84176293); public static readonly PrefabGUID DT_Breakables_T02_General = new PrefabGUID(-489297962); public static readonly PrefabGUID DT_Breakables_T02_General_Blacksmith = new PrefabGUID(-107013170); public static readonly PrefabGUID DT_Breakables_T02_General_Farms = new PrefabGUID(-1726883126); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_Factory = new PrefabGUID(195346670); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_SludgePool = new PrefabGUID(1733344505); public static readonly PrefabGUID DT_Breakables_T02_General_Gloomrot_South = new PrefabGUID(1617506862); public static readonly PrefabGUID DT_Breakables_T02_General_IronMines = new PrefabGUID(-42367019); public static readonly PrefabGUID DT_Breakables_T02_General_Magic = new PrefabGUID(1982224752); public static readonly PrefabGUID DT_Breakables_T02_General_MilitiaCrate = new PrefabGUID(2054529563); public static readonly PrefabGUID DT_Breakables_T02_General_MilitiaFort = new PrefabGUID(963714422); public static readonly PrefabGUID DT_Breakables_T02_General_Noctem = new PrefabGUID(2076943224); public static readonly PrefabGUID DT_Breakables_T02_General_QuartzQuarry = new PrefabGUID(2107524813); public static readonly PrefabGUID DT_Breakables_T02_General_Tailoring = new PrefabGUID(-566266591); public static readonly PrefabGUID DT_Breakables_T02_General_Village_Fish = new PrefabGUID(-397862535); public static readonly PrefabGUID DT_Breakables_T02_Noctem_Crystal_T01 = new PrefabGUID(442026639); public static readonly PrefabGUID DT_Breakables_T03_General = new PrefabGUID(79901686); public static readonly PrefabGUID DT_Breakables_T03_General_Blacksmith = new PrefabGUID(1758384213); public static readonly PrefabGUID DT_Breakables_T03_General_Cursed = new PrefabGUID(-1982909202); public static readonly PrefabGUID DT_Breakables_T03_General_Gloomrot_North = new PrefabGUID(1663542347); public static readonly PrefabGUID DT_Breakables_T03_General_Harbor = new PrefabGUID(1226399423); public static readonly PrefabGUID DT_Breakables_T03_General_Magic = new PrefabGUID(1186656314); public static readonly PrefabGUID DT_Breakables_T03_General_SilverMine = new PrefabGUID(1319850626); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade = new PrefabGUID(-783470863); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_Carver = new PrefabGUID(-2036294154); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_Disembark = new PrefabGUID(-496004924); public static readonly PrefabGUID DT_Breakables_T03_General_StrongBlade_EmeryCrate = new PrefabGUID(-1160939688); public static readonly PrefabGUID DT_Breakables_T03_General_Tailoring = new PrefabGUID(-121175022); public static readonly PrefabGUID DT_Breakables_T04_General = new PrefabGUID(165916732); public static readonly PrefabGUID DT_Breakables_T04_General_Blacksmith = new PrefabGUID(-1908758465); public static readonly PrefabGUID DT_Breakables_T04_General_Magic = new PrefabGUID(1338049108); public static readonly PrefabGUID DT_Breakables_T04_General_Tailoring = new PrefabGUID(1332105771); public static readonly PrefabGUID DT_Breakables_T04_Noctem_Crystal_T02 = new PrefabGUID(79577466); public static readonly PrefabGUID DT_Carriage_T01_Animal = new PrefabGUID(-1901291897); public static readonly PrefabGUID DT_Carriage_T01_Copper = new PrefabGUID(-1677509406); public static readonly PrefabGUID DT_Carriage_T01_Plank = new PrefabGUID(-2019913183); public static readonly PrefabGUID DT_Carriage_T01_Sulfur = new PrefabGUID(37249880); public static readonly PrefabGUID DT_Carriage_T02_Cotton = new PrefabGUID(1763923109); public static readonly PrefabGUID DT_Carriage_T02_Iron = new PrefabGUID(1932020854); public static readonly PrefabGUID DT_Carriage_T02_Quartz = new PrefabGUID(1120449851); public static readonly PrefabGUID DT_Carriage_T03_CorruptedSap = new PrefabGUID(298424590); public static readonly PrefabGUID DT_Carriage_T03_Emery = new PrefabGUID(-857810060); public static readonly PrefabGUID DT_Carriage_T03_Grapes = new PrefabGUID(-212217424); public static readonly PrefabGUID DT_Carriage_T03_Legion = new PrefabGUID(332541925); public static readonly PrefabGUID DT_Carriage_T03_Mutant = new PrefabGUID(-1297823967); public static readonly PrefabGUID DT_Carriage_T03_Silver = new PrefabGUID(1249933341); public static readonly PrefabGUID DT_Container_T01_Bookshelf = new PrefabGUID(1517679105); public static readonly PrefabGUID DT_Container_T01_Bookshelf_Poor = new PrefabGUID(1719611762); public static readonly PrefabGUID DT_Container_T01_General = new PrefabGUID(851583643); public static readonly PrefabGUID DT_Container_T01_Graveyard = new PrefabGUID(1312504196); public static readonly PrefabGUID DT_Container_T01_Misc = new PrefabGUID(1272048663); public static readonly PrefabGUID DT_Container_T01_Sarcofag = new PrefabGUID(1409793766); public static readonly PrefabGUID DT_Container_T01_Sarcofag_Big = new PrefabGUID(250672338); public static readonly PrefabGUID DT_Container_T01_Sarcofag_Graveyard_Start = new PrefabGUID(1399162022); public static readonly PrefabGUID DT_Container_T02_Sarcofag = new PrefabGUID(-136587831); public static readonly PrefabGUID DT_Fish_Cursed_Standard_01 = new PrefabGUID(1553238108); public static readonly PrefabGUID DT_Fish_Dunley_Standard_01 = new PrefabGUID(1612482091); public static readonly PrefabGUID DT_Fish_Farbane_Standard_01 = new PrefabGUID(-47980789); public static readonly PrefabGUID DT_Fish_General_Standard_01 = new PrefabGUID(-2110497587); public static readonly PrefabGUID DT_Fish_Gloomrot_Standard_01 = new PrefabGUID(-1478565794); public static readonly PrefabGUID DT_Fish_Silverlight_Standard_01 = new PrefabGUID(711437197); public static readonly PrefabGUID DT_Fish_StrongBlade_Standard_01 = new PrefabGUID(1670470961); public static readonly PrefabGUID DT_Mission_T01_Farbane_SimulateOnly = new PrefabGUID(343185056); public static readonly PrefabGUID DT_Mission_T02_Dunley_SimulateOnly = new PrefabGUID(33179541); public static readonly PrefabGUID DT_Mission_T03_Cursed_SimulateOnly = new PrefabGUID(596296656); public static readonly PrefabGUID DT_Mission_T04_Silverlight_SimulateOnly = new PrefabGUID(-512916640); public static readonly PrefabGUID DT_Missions_Cursed_AncientVillage = new PrefabGUID(-1487881045); public static readonly PrefabGUID DT_Missions_Cursed_Forest = new PrefabGUID(-1932253113); public static readonly PrefabGUID DT_Missions_Cursed_SpiderCave = new PrefabGUID(-1259488220); public static readonly PrefabGUID DT_Missions_Cursed_Swamp = new PrefabGUID(1449781756); public static readonly PrefabGUID DT_Missions_Dunley_ChurchOfTheDamned = new PrefabGUID(-252943757); public static readonly PrefabGUID DT_Missions_Dunley_CottonFarm = new PrefabGUID(-225862906); public static readonly PrefabGUID DT_Missions_Dunley_IronMine = new PrefabGUID(1667938211); public static readonly PrefabGUID DT_Missions_Dunley_MilitiaFort = new PrefabGUID(1467220554); public static readonly PrefabGUID DT_Missions_Dunley_Monastery = new PrefabGUID(-1631779796); public static readonly PrefabGUID DT_Missions_Dunley_Mountains = new PrefabGUID(-1645922036); public static readonly PrefabGUID DT_Missions_Dunley_QuartzQuarry = new PrefabGUID(-1079034636); public static readonly PrefabGUID DT_Missions_Dunley_Village_Dawnbreak = new PrefabGUID(789781855); public static readonly PrefabGUID DT_Missions_Dunley_Village_Mosswick = new PrefabGUID(515501514); public static readonly PrefabGUID DT_Missions_Farbane_AnimalCamp = new PrefabGUID(-1190151670); public static readonly PrefabGUID DT_Missions_Farbane_BanditForge = new PrefabGUID(-555416461); public static readonly PrefabGUID DT_Missions_Farbane_BanditFortress = new PrefabGUID(-1041711330); public static readonly PrefabGUID DT_Missions_Farbane_CopperQuarry = new PrefabGUID(-1216104638); public static readonly PrefabGUID DT_Missions_Farbane_Fisherman = new PrefabGUID(1047770861); public static readonly PrefabGUID DT_Missions_Farbane_FlowerMeadows = new PrefabGUID(-308834086); public static readonly PrefabGUID DT_Missions_Farbane_HauntedGraveyard = new PrefabGUID(1960955296); public static readonly PrefabGUID DT_Missions_Farbane_LumberjackCamp = new PrefabGUID(767824937); public static readonly PrefabGUID DT_Missions_Farbane_SulfurQuarry = new PrefabGUID(-2055799022); public static readonly PrefabGUID DT_Missions_Gloomrot_CoilFactory = new PrefabGUID(1351604823); public static readonly PrefabGUID DT_Missions_Gloomrot_Lab = new PrefabGUID(-19446077); public static readonly PrefabGUID DT_Missions_Gloomrot_Mine = new PrefabGUID(883784375); public static readonly PrefabGUID DT_Missions_Gloomrot_PestPools = new PrefabGUID(-1206022078); public static readonly PrefabGUID DT_Missions_Gloomrot_PowerPlant = new PrefabGUID(682887786); public static readonly PrefabGUID DT_Missions_Gloomrot_Village = new PrefabGUID(-65841947); public static readonly PrefabGUID DT_Missions_HallowedMountain_Mountain = new PrefabGUID(-1447854541); public static readonly PrefabGUID DT_Missions_Noctem_Garden = new PrefabGUID(-1042462624); public static readonly PrefabGUID DT_Missions_Noctem_Ruins = new PrefabGUID(814098336); public static readonly PrefabGUID DT_Missions_Silverlight_ArchmagePOI = new PrefabGUID(-234969286); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenCathedral = new PrefabGUID(713357348); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenHarbor = new PrefabGUID(2035270417); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenSlums = new PrefabGUID(-145806608); public static readonly PrefabGUID DT_Missions_Silverlight_BrighthavenSquare = new PrefabGUID(1372524183); public static readonly PrefabGUID DT_Missions_Silverlight_HarpyNest = new PrefabGUID(-1250951830); public static readonly PrefabGUID DT_Missions_Silverlight_SilverMines = new PrefabGUID(972850809); public static readonly PrefabGUID DT_Missions_Silverlight_Vineyard = new PrefabGUID(-897370198); public static readonly PrefabGUID DT_Missions_Strongblade_Bastion = new PrefabGUID(1991238618); public static readonly PrefabGUID DT_Missions_Strongblade_CarversLoggingOutpost = new PrefabGUID(1361231679); public static readonly PrefabGUID DT_Missions_Strongblade_MixingOutpost = new PrefabGUID(253393766); public static readonly PrefabGUID DT_Missions_Strongblade_Shoreline = new PrefabGUID(1710641411); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_BleedingHeart = new PrefabGUID(-1352771248); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_BloodRose = new PrefabGUID(-1400627746); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_CorruptedFlower = new PrefabGUID(1917656805); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Cotton = new PrefabGUID(238040940); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_FireBlossom = new PrefabGUID(-212828944); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_GhostShroom = new PrefabGUID(1257500505); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Grapes = new PrefabGUID(1864634743); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_HellsClarion = new PrefabGUID(1744933600); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Lotus = new PrefabGUID(-1714925033); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_MourningLily = new PrefabGUID(949933944); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_SnowFlower_Castle = new PrefabGUID(1953381333); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_SunFlower_Castle = new PrefabGUID(-1120548758); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_Thistle = new PrefabGUID(-1399060793); public static readonly PrefabGUID DT_Pickup_Flower_Castle_T01_TrippyShroom = new PrefabGUID(-350961298); public static readonly PrefabGUID DT_Pickup_Flower_Pollen = new PrefabGUID(1524794047); public static readonly PrefabGUID DT_Pickup_Flower_T01_BleedingHeart = new PrefabGUID(-2024405832); public static readonly PrefabGUID DT_Pickup_Flower_T01_BloodRose = new PrefabGUID(712016759); public static readonly PrefabGUID DT_Pickup_Flower_T01_CorruptedFlower = new PrefabGUID(-973237164); public static readonly PrefabGUID DT_Pickup_Flower_T01_Cotton = new PrefabGUID(313292892); public static readonly PrefabGUID DT_Pickup_Flower_T01_FireBlossom = new PrefabGUID(-1862897619); public static readonly PrefabGUID DT_Pickup_Flower_T01_GhostShroom = new PrefabGUID(1281164954); public static readonly PrefabGUID DT_Pickup_Flower_T01_Grapes = new PrefabGUID(1432632736); public static readonly PrefabGUID DT_Pickup_Flower_T01_Grapes_Harvested = new PrefabGUID(1622701316); public static readonly PrefabGUID DT_Pickup_Flower_T01_HellsClarion = new PrefabGUID(1020580012); public static readonly PrefabGUID DT_Pickup_Flower_T01_Lotus = new PrefabGUID(-1937852201); public static readonly PrefabGUID DT_Pickup_Flower_T01_MourningLily = new PrefabGUID(1218210064); public static readonly PrefabGUID DT_Pickup_Flower_T01_SnowFlower = new PrefabGUID(1085632579); public static readonly PrefabGUID DT_Pickup_Flower_T01_Sunflower = new PrefabGUID(1456771384); public static readonly PrefabGUID DT_Pickup_Flower_T01_Thistle = new PrefabGUID(323728400); public static readonly PrefabGUID DT_Pickup_Flower_T01_TrippyShroom = new PrefabGUID(-132241866); public static readonly PrefabGUID DT_Pickup_T01_Bones = new PrefabGUID(-637053290); public static readonly PrefabGUID DT_Pickup_T01_BonesCarcass = new PrefabGUID(1191362301); public static readonly PrefabGUID DT_Pickup_T01_Hides = new PrefabGUID(931859854); public static readonly PrefabGUID DT_Pickup_T01_PlantFiber = new PrefabGUID(921599876); public static readonly PrefabGUID DT_Pickup_T01_PlantFiber_NotGuaranteed = new PrefabGUID(446889637); public static readonly PrefabGUID DT_Pickup_T01_Rat = new PrefabGUID(-1027981457); public static readonly PrefabGUID DT_Pickup_T03_SilkWorm = new PrefabGUID(-147563786); public static readonly PrefabGUID DT_Resource_Bush_Cotton = new PrefabGUID(559901153); public static readonly PrefabGUID DT_Resource_Bush_General = new PrefabGUID(642149322); public static readonly PrefabGUID DT_Resource_Emery_Erruption_Elemental = new PrefabGUID(52984146); public static readonly PrefabGUID DT_Resource_Emery_Erruption_Golem = new PrefabGUID(1612752582); public static readonly PrefabGUID DT_Resource_FarmRuins_Rock_General = new PrefabGUID(1633277778); public static readonly PrefabGUID DT_Resource_Tree_Corrupted = new PrefabGUID(1435420615); public static readonly PrefabGUID DT_Resource_Tree_Curse = new PrefabGUID(1908620136); public static readonly PrefabGUID DT_Resource_Tree_Destroy_Rare = new PrefabGUID(780274462); public static readonly PrefabGUID DT_Resource_Tree_Destroy_Snow_Rare = new PrefabGUID(2000652983); public static readonly PrefabGUID DT_Resource_Tree_General = new PrefabGUID(970500864); public static readonly PrefabGUID DT_Resource_Tree_Gloom = new PrefabGUID(-804318180); public static readonly PrefabGUID DT_Resource_Tree_Hallowed = new PrefabGUID(535515586); public static readonly PrefabGUID DT_Resource_Tree_Rare = new PrefabGUID(-2034169646); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AppleCursed = new PrefabGUID(-1045049099); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AppleTree = new PrefabGUID(1795167056); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Aspen = new PrefabGUID(1312571976); public static readonly PrefabGUID DT_Resource_Tree_Sapling_AspenAutum = new PrefabGUID(650106278); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Birch = new PrefabGUID(-334626750); public static readonly PrefabGUID DT_Resource_Tree_Sapling_BirchAutum = new PrefabGUID(-274591317); public static readonly PrefabGUID DT_Resource_Tree_Sapling_CherryBlossom = new PrefabGUID(1315524229); public static readonly PrefabGUID DT_Resource_Tree_Sapling_CherryBlossomWhite = new PrefabGUID(-1340237088); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Cypress = new PrefabGUID(1157727831); public static readonly PrefabGUID DT_Resource_Tree_Sapling_GloomTree = new PrefabGUID(641048422); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Oak = new PrefabGUID(1580825037); public static readonly PrefabGUID DT_Resource_Tree_Sapling_Spruce = new PrefabGUID(-805548712); public static readonly PrefabGUID DT_Resource_Tree_Sapling_WeepingWillow = new PrefabGUID(410636876); public static readonly PrefabGUID DT_Resource_VampireRuins_Rock_General = new PrefabGUID(1942260993); public static readonly PrefabGUID DT_Resource_Vein_BloodCrystal_General = new PrefabGUID(-1978587614); public static readonly PrefabGUID DT_Resource_Vein_Coal_General = new PrefabGUID(-1757133766); public static readonly PrefabGUID DT_Resource_Vein_Copper_Big_General = new PrefabGUID(-1784927126); public static readonly PrefabGUID DT_Resource_Vein_Copper_General = new PrefabGUID(875593718); public static readonly PrefabGUID DT_Resource_Vein_Copper_Medium_General = new PrefabGUID(-1830475076); public static readonly PrefabGUID DT_Resource_Vein_Crystal_General = new PrefabGUID(-1823047667); public static readonly PrefabGUID DT_Resource_Vein_Emery_General = new PrefabGUID(1874162344); public static readonly PrefabGUID DT_Resource_Vein_Emery_Rare = new PrefabGUID(-10764975); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T01 = new PrefabGUID(-1469889648); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T02 = new PrefabGUID(-10059465); public static readonly PrefabGUID DT_Resource_Vein_Gem_Destroy_T03 = new PrefabGUID(542804739); public static readonly PrefabGUID DT_Resource_Vein_GhostCrystal_Banshee = new PrefabGUID(-1956128016); public static readonly PrefabGUID DT_Resource_Vein_GhostCrystal_General = new PrefabGUID(1133802461); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big = new PrefabGUID(-1893322315); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big_GolemCave = new PrefabGUID(276382997); public static readonly PrefabGUID DT_Resource_Vein_Iron_Big_Rare = new PrefabGUID(326968170); public static readonly PrefabGUID DT_Resource_Vein_Iron_General = new PrefabGUID(-1491248478); public static readonly PrefabGUID DT_Resource_Vein_Iron_GolemCave = new PrefabGUID(1004223833); public static readonly PrefabGUID DT_Resource_Vein_Iron_Medium = new PrefabGUID(387466945); public static readonly PrefabGUID DT_Resource_Vein_Iron_Rare = new PrefabGUID(1813396962); public static readonly PrefabGUID DT_Resource_Vein_Mech_General = new PrefabGUID(1927925502); public static readonly PrefabGUID DT_Resource_Vein_Mech_Rare = new PrefabGUID(-345957318); public static readonly PrefabGUID DT_Resource_Vein_Quartz_General = new PrefabGUID(643205912); public static readonly PrefabGUID DT_Resource_Vein_Rock_Big = new PrefabGUID(-1228204057); public static readonly PrefabGUID DT_Resource_Vein_Rock_General = new PrefabGUID(2009635259); public static readonly PrefabGUID DT_Resource_Vein_Rock_Medium = new PrefabGUID(5330421); public static readonly PrefabGUID DT_Resource_Vein_Rock_Rare = new PrefabGUID(-452263965); public static readonly PrefabGUID DT_Resource_Vein_Silver_Gem_T03 = new PrefabGUID(-1812650972); public static readonly PrefabGUID DT_Resource_Vein_Silver_General = new PrefabGUID(-511837584); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_Big = new PrefabGUID(1129492150); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_General = new PrefabGUID(1616699916); public static readonly PrefabGUID DT_Resource_Vein_Sulfur_Medium = new PrefabGUID(-1976281814); public static readonly PrefabGUID DT_Shared_Breakable_General_T01 = new PrefabGUID(-1976353222); public static readonly PrefabGUID DT_Shared_Breakable_General_T02 = new PrefabGUID(360494659); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotFactory = new PrefabGUID(987510593); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotSludgePool = new PrefabGUID(-572859333); public static readonly PrefabGUID DT_Shared_Breakable_General_T02_GloomrotSouth = new PrefabGUID(681163014); public static readonly PrefabGUID DT_Shared_Breakable_General_T03 = new PrefabGUID(700118419); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_GloomrotNorth = new PrefabGUID(1440216215); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_GloomrotNorth_Lab = new PrefabGUID(2001771553); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade = new PrefabGUID(837179796); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade_Carver = new PrefabGUID(-950631010); public static readonly PrefabGUID DT_Shared_Breakable_General_T03_StrongBlade_Disembark = new PrefabGUID(-17977530); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T01 = new PrefabGUID(-142736598); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T02 = new PrefabGUID(-1189060110); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T03 = new PrefabGUID(437485622); public static readonly PrefabGUID DT_Shared_Components_Blacksmith_Mid_T04 = new PrefabGUID(-800124351); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T01 = new PrefabGUID(147048543); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T02 = new PrefabGUID(-1722545618); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T03 = new PrefabGUID(985133476); public static readonly PrefabGUID DT_Shared_Components_Magic_Mid_T04 = new PrefabGUID(-762037469); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T01 = new PrefabGUID(-1323476857); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T02 = new PrefabGUID(128770731); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T03 = new PrefabGUID(-444051524); public static readonly PrefabGUID DT_Shared_Components_Tailoring_Mid_T04 = new PrefabGUID(469007455); public static readonly PrefabGUID DT_Shared_Consume_GlassPotion_01 = new PrefabGUID(-1749706632); public static readonly PrefabGUID DT_Shared_Consume_WaterSkin_01 = new PrefabGUID(971866957); public static readonly PrefabGUID DT_Shared_Jewel_2x_Guaranteed = new PrefabGUID(-289953654); public static readonly PrefabGUID DT_Shared_Jewel_2x_High = new PrefabGUID(966772263); public static readonly PrefabGUID DT_Shared_Jewel_Storage_1x_Low = new PrefabGUID(-151875199); public static readonly PrefabGUID DT_Shared_Jewel_Unit_1x_Low = new PrefabGUID(-1737729899); public static readonly PrefabGUID DT_Shared_Jewel_VBlood_ShardBoss = new PrefabGUID(-2051981395); public static readonly PrefabGUID DT_Shared_Jewel_VBlood_Standard = new PrefabGUID(1909214548); public static readonly PrefabGUID DT_Shared_Legendary_Blood_Stash = new PrefabGUID(1363883586); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T02 = new PrefabGUID(280780077); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T03 = new PrefabGUID(1274124802); public static readonly PrefabGUID DT_Shared_Legendary_Treasure_T04 = new PrefabGUID(-1040817229); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_High = new PrefabGUID(-2100962531); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_Low = new PrefabGUID(-663779931); public static readonly PrefabGUID DT_Shared_Legendary_Units_EndGame_Unique_Low = new PrefabGUID(624475009); public static readonly PrefabGUID DT_Shared_Legendary_Units_MidGame = new PrefabGUID(1413172724); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Major = new PrefabGUID(1057873848); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Minor = new PrefabGUID(-1584910830); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_GateBoss_Primal = new PrefabGUID(2136385388); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T02 = new PrefabGUID(-608004540); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T03 = new PrefabGUID(-62755341); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T04 = new PrefabGUID(528903576); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T05_EndGame = new PrefabGUID(1059478030); public static readonly PrefabGUID DT_Shared_Legendary_VBlood_T06_ShardBoss = new PrefabGUID(-1004742940); public static readonly PrefabGUID DT_Shared_Tech_Reseach01_Low = new PrefabGUID(163169441); public static readonly PrefabGUID DT_Shared_Tech_Reseach02_Low = new PrefabGUID(1156245093); public static readonly PrefabGUID DT_Shared_Tech_Reseach02_Mid = new PrefabGUID(-607110889); public static readonly PrefabGUID DT_Shared_Tech_Reseach03_Low = new PrefabGUID(-1664852919); public static readonly PrefabGUID DT_Shared_Tech_Reseach03_Mid = new PrefabGUID(1556887906); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T01_Bandit = new PrefabGUID(881815799); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T02_Militia = new PrefabGUID(-1262629267); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T03_Church = new PrefabGUID(-1422597072); public static readonly PrefabGUID DT_Shared_Treasure_Carriage_T03_StrongBlade = new PrefabGUID(-1747936649); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T01 = new PrefabGUID(-1251911132); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02 = new PrefabGUID(2018481623); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02_GloomrotSouth = new PrefabGUID(-87450162); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T02_Noctem = new PrefabGUID(-2014180204); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03 = new PrefabGUID(574013535); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_GloomrotNorth = new PrefabGUID(1871239961); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_Silverlight = new PrefabGUID(1887323141); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T03_StrongBlade = new PrefabGUID(1255628408); public static readonly PrefabGUID DT_Shared_Treasure_Regular_T04 = new PrefabGUID(-1746879930); public static readonly PrefabGUID DT_Shared_Unit_Cursed_Ghost_Rank01 = new PrefabGUID(-808592560); public static readonly PrefabGUID DT_Shared_Unit_Cursed_Ghost_Rank02 = new PrefabGUID(74967214); public static readonly PrefabGUID DT_Shared_Unit_Harpy_Rank02 = new PrefabGUID(697668818); public static readonly PrefabGUID DT_Shared_Unit_Human_Elite_T07 = new PrefabGUID(-1862068051); public static readonly PrefabGUID DT_Shared_Unit_Human_Elite_T07_StrongBlade = new PrefabGUID(1894155963); public static readonly PrefabGUID DT_Shared_Unit_Human_Gloomrot_Villager = new PrefabGUID(-1060491877); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T01 = new PrefabGUID(-991578659); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T02 = new PrefabGUID(702578523); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T03 = new PrefabGUID(-1714085747); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T05 = new PrefabGUID(-1732604529); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T05_GloomRot = new PrefabGUID(653092055); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T07 = new PrefabGUID(1666714808); public static readonly PrefabGUID DT_Shared_Unit_Human_Normal_T07_StrongBlade = new PrefabGUID(-1007389304); public static readonly PrefabGUID DT_Shared_Unit_Human_Town_Villager = new PrefabGUID(2032439467); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T01 = new PrefabGUID(-1797488763); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T02 = new PrefabGUID(1933301871); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T07 = new PrefabGUID(-342036396); public static readonly PrefabGUID DT_Shared_Unit_Human_Trash_T07_StrongBlade = new PrefabGUID(2006825601); public static readonly PrefabGUID DT_Shared_Unit_Legion_Normal_T01 = new PrefabGUID(-2122742635); public static readonly PrefabGUID DT_Shared_Unit_Legion_Normal_T02 = new PrefabGUID(1220995205); public static readonly PrefabGUID DT_Shared_Unit_Legion_Trash_T01 = new PrefabGUID(-920573521); public static readonly PrefabGUID DT_Shared_Unit_Legion_Trash_T02 = new PrefabGUID(307475012); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Major = new PrefabGUID(1613463595); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Minor = new PrefabGUID(-188182958); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Gate_Primal = new PrefabGUID(-426637458); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Major = new PrefabGUID(-423784754); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Minor = new PrefabGUID(1277394086); public static readonly PrefabGUID DT_Shared_Unit_Legion_WarEvent_Portal_Primal = new PrefabGUID(-2056614257); public static readonly PrefabGUID DT_Shared_Unit_StrongBlade_Workers_T01 = new PrefabGUID(1017396238); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T01_Early = new PrefabGUID(-2111574931); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T01_Normal = new PrefabGUID(830431682); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T02_Early = new PrefabGUID(-1447491428); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T02_Normal = new PrefabGUID(-435504482); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T03_Normal = new PrefabGUID(-17589516); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T04_Normal = new PrefabGUID(2125107631); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T05_EndGame = new PrefabGUID(1830862057); public static readonly PrefabGUID DT_Shared_Unit_VBlood_T06_ShardBoss = new PrefabGUID(-1455610356); public static readonly PrefabGUID DT_Storage_T01_AnimalCamp = new PrefabGUID(-600923884); public static readonly PrefabGUID DT_Storage_T01_BanditFort = new PrefabGUID(834014885); public static readonly PrefabGUID DT_Storage_T01_Blacksmith = new PrefabGUID(-1874276351); public static readonly PrefabGUID DT_Storage_T01_Bookshelf = new PrefabGUID(1306935906); public static readonly PrefabGUID DT_Storage_T01_CopperMine = new PrefabGUID(1090346288); public static readonly PrefabGUID DT_Storage_T01_General = new PrefabGUID(329347297); public static readonly PrefabGUID DT_Storage_T01_General_Magic = new PrefabGUID(476744433); public static readonly PrefabGUID DT_Storage_T01_General_Shared = new PrefabGUID(-958444180); public static readonly PrefabGUID DT_Storage_T01_LumberjackCamp = new PrefabGUID(-1642141739); public static readonly PrefabGUID DT_Storage_T01_SulfurQuarry = new PrefabGUID(536893477); public static readonly PrefabGUID DT_Storage_T01_Tailor = new PrefabGUID(971609268); public static readonly PrefabGUID DT_Storage_T02_Blacksmith = new PrefabGUID(-85146651); public static readonly PrefabGUID DT_Storage_T02_Bookshelf = new PrefabGUID(-2104093245); public static readonly PrefabGUID DT_Storage_T02_ChurchOfTheDamned = new PrefabGUID(-1141241430); public static readonly PrefabGUID DT_Storage_T02_Farms = new PrefabGUID(-482851019); public static readonly PrefabGUID DT_Storage_T02_General = new PrefabGUID(-1445316990); public static readonly PrefabGUID DT_Storage_T02_General_GloomrotFactory = new PrefabGUID(-1588025482); public static readonly PrefabGUID DT_Storage_T02_General_GloomrotSouth = new PrefabGUID(-1855658173); public static readonly PrefabGUID DT_Storage_T02_General_Shared = new PrefabGUID(-944832907); public static readonly PrefabGUID DT_Storage_T02_IronMine = new PrefabGUID(1556335378); public static readonly PrefabGUID DT_Storage_T02_Lumbermill = new PrefabGUID(-1609555866); public static readonly PrefabGUID DT_Storage_T02_Magic = new PrefabGUID(-1409448730); public static readonly PrefabGUID DT_Storage_T02_MilitiaFort = new PrefabGUID(-1680723944); public static readonly PrefabGUID DT_Storage_T02_Noctem = new PrefabGUID(1250946463); public static readonly PrefabGUID DT_Storage_T02_QuartzQuarry = new PrefabGUID(1752845456); public static readonly PrefabGUID DT_Storage_T02_Village_Fish = new PrefabGUID(946922548); public static readonly PrefabGUID DT_Storage_T03_Bookshelf = new PrefabGUID(-2086951397); public static readonly PrefabGUID DT_Storage_T03_Bookshelf_Cursed = new PrefabGUID(-1117512788); public static readonly PrefabGUID DT_Storage_T03_General = new PrefabGUID(2137904665); public static readonly PrefabGUID DT_Storage_T03_General_Church = new PrefabGUID(-72817839); public static readonly PrefabGUID DT_Storage_T03_General_Cursed = new PrefabGUID(1049541583); public static readonly PrefabGUID DT_Storage_T03_General_GloomrotNorth = new PrefabGUID(331901165); public static readonly PrefabGUID DT_Storage_T03_General_GloomrotNorth_Lab = new PrefabGUID(-1252673924); public static readonly PrefabGUID DT_Storage_T03_General_RoyalSquare = new PrefabGUID(-1900471451); public static readonly PrefabGUID DT_Storage_T03_General_RoyalSquareOutside = new PrefabGUID(2090975738); public static readonly PrefabGUID DT_Storage_T03_General_SilverMine = new PrefabGUID(199755797); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade = new PrefabGUID(1087660265); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Alchemy = new PrefabGUID(-152514359); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Bastion = new PrefabGUID(731944206); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Carver = new PrefabGUID(-229530233); public static readonly PrefabGUID DT_Storage_T03_General_StrongBlade_Disembark = new PrefabGUID(1832297474); public static readonly PrefabGUID DT_Storage_T03_GrapeStomperBarrel = new PrefabGUID(-83857046); public static readonly PrefabGUID DT_Storage_T03_SludgePools = new PrefabGUID(521340042); public static readonly PrefabGUID DT_Storage_T04_Bookshelf = new PrefabGUID(1999372392); public static readonly PrefabGUID DT_Storage_T04_General = new PrefabGUID(355374619); public static readonly PrefabGUID DT_Treasure_T01_General_A = new PrefabGUID(1973823804); public static readonly PrefabGUID DT_Treasure_T01_General_B = new PrefabGUID(-431407932); public static readonly PrefabGUID DT_Treasure_T01_General_Blacksmith = new PrefabGUID(-750126243); public static readonly PrefabGUID DT_Treasure_T01_General_Magic = new PrefabGUID(-968192262); public static readonly PrefabGUID DT_Treasure_T01_General_Tailoring = new PrefabGUID(-1111567797); public static readonly PrefabGUID DT_Treasure_T02_Bookshelf = new PrefabGUID(1705138857); public static readonly PrefabGUID DT_Treasure_T02_General = new PrefabGUID(-4426566); public static readonly PrefabGUID DT_Treasure_T02_General_Blacksmith = new PrefabGUID(2068722516); public static readonly PrefabGUID DT_Treasure_T02_General_ChurchOfTheDamned = new PrefabGUID(1601079450); public static readonly PrefabGUID DT_Treasure_T02_General_Farms = new PrefabGUID(1865006549); public static readonly PrefabGUID DT_Treasure_T02_General_GloomrotFactory = new PrefabGUID(449906310); public static readonly PrefabGUID DT_Treasure_T02_General_GloomrotSouth = new PrefabGUID(1244330298); public static readonly PrefabGUID DT_Treasure_T02_General_Magic = new PrefabGUID(-1097468458); public static readonly PrefabGUID DT_Treasure_T02_General_MilitiaFort = new PrefabGUID(-1169165410); public static readonly PrefabGUID DT_Treasure_T02_General_Noctem = new PrefabGUID(-2136008561); public static readonly PrefabGUID DT_Treasure_T02_General_Tailoring = new PrefabGUID(569386427); public static readonly PrefabGUID DT_Treasure_T02_IronMines = new PrefabGUID(1123992416); public static readonly PrefabGUID DT_Treasure_T03_General = new PrefabGUID(-607181916); public static readonly PrefabGUID DT_Treasure_T03_General_Blacksmith = new PrefabGUID(1287012928); public static readonly PrefabGUID DT_Treasure_T03_General_Cursed = new PrefabGUID(1593152159); public static readonly PrefabGUID DT_Treasure_T03_General_GloomrotNorth = new PrefabGUID(2106221515); public static readonly PrefabGUID DT_Treasure_T03_General_Magic = new PrefabGUID(784378299); public static readonly PrefabGUID DT_Treasure_T03_General_RoyalSquare = new PrefabGUID(-1292453098); public static readonly PrefabGUID DT_Treasure_T03_General_Silverlight = new PrefabGUID(-1990393138); public static readonly PrefabGUID DT_Treasure_T03_General_SilverMine = new PrefabGUID(-2045660620); public static readonly PrefabGUID DT_Treasure_T03_General_SpiderCavern = new PrefabGUID(-793105753); public static readonly PrefabGUID DT_Treasure_T03_General_StrongBlade = new PrefabGUID(1421307326); public static readonly PrefabGUID DT_Treasure_T03_General_Tailoring = new PrefabGUID(1131805965); public static readonly PrefabGUID DT_Treasure_T04_General = new PrefabGUID(1814990067); public static readonly PrefabGUID DT_Treasure_T04_General_Blacksmith = new PrefabGUID(797976026); public static readonly PrefabGUID DT_Treasure_T04_General_Magic = new PrefabGUID(1053354224); public static readonly PrefabGUID DT_Treasure_T04_General_Tailoring = new PrefabGUID(-1762757506); public static readonly PrefabGUID DT_Unit_Corrupted_Bear = new PrefabGUID(-2094923684); public static readonly PrefabGUID DT_Unit_Corrupted_Crow = new PrefabGUID(-564521621); public static readonly PrefabGUID DT_Unit_Corrupted_Deer = new PrefabGUID(897170906); public static readonly PrefabGUID DT_Unit_Corrupted_Wolf = new PrefabGUID(1601565820); public static readonly PrefabGUID DT_Unit_Cursed_Bear = new PrefabGUID(-1703387309); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Spider_Rank01 = new PrefabGUID(-751010131); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Spider_Rank02 = new PrefabGUID(498560037); public static readonly PrefabGUID DT_Unit_Cursed_Creature_Werewolf = new PrefabGUID(-728620058); public static readonly PrefabGUID DT_Unit_Cursed_MonsterToad = new PrefabGUID(-1929056981); public static readonly PrefabGUID DT_Unit_Cursed_Mosquito = new PrefabGUID(-993326673); public static readonly PrefabGUID DT_Unit_Cursed_Nightlurker = new PrefabGUID(-1849214024); public static readonly PrefabGUID DT_Unit_Cursed_ToadSpitter = new PrefabGUID(-929463755); public static readonly PrefabGUID DT_Unit_Cursed_Witch = new PrefabGUID(297346186); public static readonly PrefabGUID DT_Unit_Cursed_Wolf = new PrefabGUID(835924128); public static readonly PrefabGUID DT_Unit_Cursed_Worm = new PrefabGUID(1676869781); public static readonly PrefabGUID DT_Unit_Demon = new PrefabGUID(-325161796); public static readonly PrefabGUID DT_Unit_Dunley_Church_Rank01 = new PrefabGUID(6420838); public static readonly PrefabGUID DT_Unit_Dunley_Church_Rank02 = new PrefabGUID(158785619); public static readonly PrefabGUID DT_Unit_Dunley_Church_Trash = new PrefabGUID(1803308844); public static readonly PrefabGUID DT_Unit_Dunley_Creature_Cow = new PrefabGUID(541451364); public static readonly PrefabGUID DT_Unit_Dunley_Creature_General = new PrefabGUID(-1236501040); public static readonly PrefabGUID DT_Unit_Dunley_Creature_Pig = new PrefabGUID(-89843525); public static readonly PrefabGUID DT_Unit_Dunley_Farmers = new PrefabGUID(-1151186724); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank01 = new PrefabGUID(-810965603); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank02 = new PrefabGUID(-729874259); public static readonly PrefabGUID DT_Unit_Dunley_Militia_Rank03 = new PrefabGUID(1222326002); public static readonly PrefabGUID DT_Unit_Dunley_RockElemental = new PrefabGUID(1042687092); public static readonly PrefabGUID DT_Unit_Dunley_Scarecrow = new PrefabGUID(-2046528903); public static readonly PrefabGUID DT_Unit_Dunley_Scarecrow_Dummy = new PrefabGUID(-1525496782); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Normal_Rank01 = new PrefabGUID(-1252580640); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Normal_Rank02 = new PrefabGUID(891253714); public static readonly PrefabGUID DT_Unit_Dunley_Undead_Trash_Rank01 = new PrefabGUID(-1613225106); public static readonly PrefabGUID DT_Unit_Dunley_Villagers = new PrefabGUID(997800352); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_Normal_Rank01 = new PrefabGUID(2057203303); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_Normal_Rank02 = new PrefabGUID(1067194618); public static readonly PrefabGUID DT_Unit_Farbane_Bandit_WoodCutter = new PrefabGUID(-1244119862); public static readonly PrefabGUID DT_Unit_Farbane_CopperGolem = new PrefabGUID(-1386605226); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Bear = new PrefabGUID(113668998); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Deer = new PrefabGUID(200001274); public static readonly PrefabGUID DT_Unit_Farbane_Creature_ForestCrow = new PrefabGUID(1758005653); public static readonly PrefabGUID DT_Unit_Farbane_Creature_ForestSpider = new PrefabGUID(1977850073); public static readonly PrefabGUID DT_Unit_Farbane_Creature_General = new PrefabGUID(1618997668); public static readonly PrefabGUID DT_Unit_Farbane_Creature_GiantRat = new PrefabGUID(-217442927); public static readonly PrefabGUID DT_Unit_Farbane_Creature_GraveyardCrow = new PrefabGUID(-1563252515); public static readonly PrefabGUID DT_Unit_Farbane_Creature_Moose = new PrefabGUID(949107101); public static readonly PrefabGUID DT_Unit_Farbane_IronGolem = new PrefabGUID(-1833617477); public static readonly PrefabGUID DT_Unit_Farbane_Mantrap = new PrefabGUID(-188826639); public static readonly PrefabGUID DT_Unit_Farbane_Rare_WickedRat = new PrefabGUID(-1772066863); public static readonly PrefabGUID DT_Unit_Farbane_SkeletonGolem = new PrefabGUID(-644899121); public static readonly PrefabGUID DT_Unit_Farbane_StoneGolem = new PrefabGUID(-443137065); public static readonly PrefabGUID DT_Unit_Farbane_Treant = new PrefabGUID(698427411); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Normal_Rank01 = new PrefabGUID(875214906); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Normal_Rank02 = new PrefabGUID(109676916); public static readonly PrefabGUID DT_Unit_Farbane_Undead_Trash_Rank01 = new PrefabGUID(1954673959); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_Creature_T01 = new PrefabGUID(-275522567); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireBear_T01 = new PrefabGUID(1386511898); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireRat_T01 = new PrefabGUID(-348808090); public static readonly PrefabGUID DT_Unit_Farbane_VBlood_DireWolf_T01 = new PrefabGUID(-952119416); public static readonly PrefabGUID DT_Unit_Fish_Piranha = new PrefabGUID(-476884784); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank01 = new PrefabGUID(825228519); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank02 = new PrefabGUID(-1663330146); public static readonly PrefabGUID DT_Unit_Gloomrot_Mech_Rank03 = new PrefabGUID(-116432822); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Bear = new PrefabGUID(78942656); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Deer = new PrefabGUID(1958987992); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Golem = new PrefabGUID(1609599355); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Golem_PrisonVariant = new PrefabGUID(-916730493); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Moose = new PrefabGUID(302238558); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Rat = new PrefabGUID(-712272657); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Spitter = new PrefabGUID(-1121990122); public static readonly PrefabGUID DT_Unit_Gloomrot_Mutant_Wolf = new PrefabGUID(-573603385); public static readonly PrefabGUID DT_Unit_Gloomrot_Rank01 = new PrefabGUID(-1024925083); public static readonly PrefabGUID DT_Unit_Gloomrot_Rank02 = new PrefabGUID(-1174421397); public static readonly PrefabGUID DT_Unit_Gloomrot_Villager = new PrefabGUID(-165521883); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Bear_Arctic = new PrefabGUID(-1324178436); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Moose_Arctic = new PrefabGUID(-2071907671); public static readonly PrefabGUID DT_Unit_Hallowed_Creature_Wolf_Arctic = new PrefabGUID(1378499548); public static readonly PrefabGUID DT_Unit_Necromancer_UnitAndTomb = new PrefabGUID(1842801503); public static readonly PrefabGUID DT_Unit_NetherDemon_Alchemy_T02 = new PrefabGUID(611831222); public static readonly PrefabGUID DT_Unit_NetherDemon_Knowledge_T01 = new PrefabGUID(1734056745); public static readonly PrefabGUID DT_Unit_NetherDemon_Knowledge_T02 = new PrefabGUID(1477065648); public static readonly PrefabGUID DT_Unit_NetherDemon_Minerals_T01 = new PrefabGUID(1019895494); public static readonly PrefabGUID DT_Unit_NetherDemon_Minerals_T02 = new PrefabGUID(-149079634); public static readonly PrefabGUID DT_Unit_NetherDemon_Seeds_T01 = new PrefabGUID(1630515133); public static readonly PrefabGUID DT_Unit_NetherDemon_Weapon_T01 = new PrefabGUID(2022294238); public static readonly PrefabGUID DT_Unit_NetherDemon_Weapon_T02 = new PrefabGUID(-410818462); public static readonly PrefabGUID DT_Unit_Noctem_Creature_NoctemCrow = new PrefabGUID(-530014440); public static readonly PrefabGUID DT_Unit_Noctem_WItheredVampire = new PrefabGUID(-1147731982); public static readonly PrefabGUID DT_Unit_Relic_Behemoth = new PrefabGUID(845132690); public static readonly PrefabGUID DT_Unit_Relic_Behemoth_Unique = new PrefabGUID(71657148); public static readonly PrefabGUID DT_Unit_Relic_Dracula_Unique = new PrefabGUID(-191917509); public static readonly PrefabGUID DT_Unit_Relic_Manticore = new PrefabGUID(-2091539428); public static readonly PrefabGUID DT_Unit_Relic_Manticore_Unique = new PrefabGUID(-454715368); public static readonly PrefabGUID DT_Unit_Relic_Monster = new PrefabGUID(1252550842); public static readonly PrefabGUID DT_Unit_Relic_Monster_Unique = new PrefabGUID(492631484); public static readonly PrefabGUID DT_Unit_Relic_Morgana_Unique = new PrefabGUID(1273222726); public static readonly PrefabGUID DT_Unit_Relic_Paladin = new PrefabGUID(1167843091); public static readonly PrefabGUID DT_Unit_Relic_Paladin_Unique = new PrefabGUID(-1629745461); public static readonly PrefabGUID DT_Unit_Silver_Harpy_Rank01 = new PrefabGUID(226592651); public static readonly PrefabGUID DT_Unit_Silver_Harpy_Rank02 = new PrefabGUID(-1647082571); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank01 = new PrefabGUID(-1943982529); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank02 = new PrefabGUID(373677249); public static readonly PrefabGUID DT_Unit_Silver_Town_Rank03 = new PrefabGUID(162031204); public static readonly PrefabGUID DT_Unit_Strongblade_CorruptedTreant = new PrefabGUID(-465235630); public static readonly PrefabGUID DT_Unit_StrongBlade_EmeryElemental = new PrefabGUID(-887571934); public static readonly PrefabGUID DT_Unit_StrongBlade_EmeryGolem = new PrefabGUID(-264725405); public static readonly PrefabGUID DT_Unit_Strongblade_GoldGolem = new PrefabGUID(806336876); public static readonly PrefabGUID DT_Unit_StrongBlade_Mantrap = new PrefabGUID(1387969144); public static readonly PrefabGUID DT_Unit_StrongBlade_Mantrap_XL = new PrefabGUID(-1869477551); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank01 = new PrefabGUID(-438086091); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank02 = new PrefabGUID(2115747457); public static readonly PrefabGUID DT_Unit_StrongBlade_Rank03 = new PrefabGUID(-1593943953); public static readonly PrefabGUID DT_Unit_Undead_Banshee = new PrefabGUID(194466860); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Banshee = new PrefabGUID(1126579847); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Ghoul = new PrefabGUID(-1373492135); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Necromancer = new PrefabGUID(1608313061); public static readonly PrefabGUID DT_Unit_Undead_TombSummon_Skeleton = new PrefabGUID(-473107370); public static readonly PrefabGUID DT_Unit_VBlood_BishopOfDunley_MagicSource = new PrefabGUID(402308651); public static readonly PrefabGUID DT_Unit_VBlood_Bomber_Weapon = new PrefabGUID(152807706); public static readonly PrefabGUID DT_Unit_VBlood_Geomancer_MagicSource = new PrefabGUID(-2136955642); public static readonly PrefabGUID DT_Unit_VBlood_Infiltrator_Armor = new PrefabGUID(1639850227); public static readonly PrefabGUID DT_Unit_VBlood_Jade_Weapon = new PrefabGUID(-847478692); public static readonly PrefabGUID DT_Unit_VBlood_LightArrow_Weapon = new PrefabGUID(-857120861); public static readonly PrefabGUID DT_Unit_VBlood_MilitiaLeader_Armor = new PrefabGUID(-546249947); public static readonly PrefabGUID DT_Unit_VBlood_Priest_MagicSource = new PrefabGUID(-293956848); public static readonly PrefabGUID DT_Unit_VBlood_Purifier_Armor = new PrefabGUID(-115385631); public static readonly PrefabGUID DT_Unit_VBlood_Stalker_Armor = new PrefabGUID(1084892181); public static readonly PrefabGUID DT_Unit_VBlood_VampireHunter_Headgear = new PrefabGUID(843971231); public static readonly PrefabGUID DT_Unit_VerminNest_Spiderling = new PrefabGUID(-2086173662); public static readonly PrefabGUID DTS_Elite_Bandit_Active = new PrefabGUID(-1357798592); public static readonly PrefabGUID DTS_Everyday_AllDay = new PrefabGUID(482895609); public static readonly PrefabGUID DTS_Everyday_Day = new PrefabGUID(-684975497); public static readonly PrefabGUID DTS_Everyday_Evening = new PrefabGUID(-222879949); public static readonly PrefabGUID DTS_Everyday_Morning = new PrefabGUID(-214564695); public static readonly PrefabGUID DTS_Everyday_Night = new PrefabGUID(2115694930); public static readonly PrefabGUID DTS_VampireHunters_Active = new PrefabGUID(863827908); public static readonly PrefabGUID Dummy_Trigger_RandomUnitSpawn_BloodSoul_T01 = new PrefabGUID(-2084736434); public static readonly PrefabGUID Dummy_Trigger_RandomUnitSpawn_BloodSoul_T02 = new PrefabGUID(-1129363767); public static readonly PrefabGUID DyableWindowsBuildMenuGroup = new PrefabGUID(809247413); public static readonly PrefabGUID DyeCollection_Biomes = new PrefabGUID(1962056086); public static readonly PrefabGUID DyeCollection_CurtainRipped = new PrefabGUID(2144002412); public static readonly PrefabGUID DyeCollection_Default = new PrefabGUID(-1386881146); public static readonly PrefabGUID DyeCollection_Default_CastleParticles01 = new PrefabGUID(1360647732); public static readonly PrefabGUID DyeCollection_Default_Marble = new PrefabGUID(9976084); public static readonly PrefabGUID DyeCollection_Default_Metal = new PrefabGUID(-592971806); public static readonly PrefabGUID DyeCollection_Light = new PrefabGUID(75478852); public static readonly PrefabGUID DyeCollection_LightSources = new PrefabGUID(1937922011); public static readonly PrefabGUID DyeCollection_SilverGoldWood = new PrefabGUID(-92813615); public static readonly PrefabGUID DyeCollection_Wood_Exterior = new PrefabGUID(-110790076); public static readonly PrefabGUID DyeSwatch_Color_Banners01_Fabric = new PrefabGUID(1957504428); public static readonly PrefabGUID DyeSwatch_Color_CastleFurnitureTints01_Fabric = new PrefabGUID(1311039488); public static readonly PrefabGUID DyeSwatch_Color_CurtainRipped01 = new PrefabGUID(-1800437511); public static readonly PrefabGUID DyeSwatch_Color_Curtains01_Fabric = new PrefabGUID(1905382819); public static readonly PrefabGUID DyeSwatch_Color_Default_CastleParticles01 = new PrefabGUID(1546040671); public static readonly PrefabGUID DyeSwatch_Color_Default_Fabric = new PrefabGUID(1477653874); public static readonly PrefabGUID DyeSwatch_Color_Default_Glass = new PrefabGUID(-426080229); public static readonly PrefabGUID DyeSwatch_Color_Default_Light = new PrefabGUID(1371655305); public static readonly PrefabGUID DyeSwatch_Color_Default_Metal = new PrefabGUID(1502811106); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor01 = new PrefabGUID(-1786333437); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor02 = new PrefabGUID(330868378); public static readonly PrefabGUID DyeSwatch_Color_Default_TailorFloor03 = new PrefabGUID(1767919182); public static readonly PrefabGUID DyeSwatch_Color_Default_Wood = new PrefabGUID(-355048464); public static readonly PrefabGUID DyeSwatch_Color_Garden_Wisteria01 = new PrefabGUID(1988241282); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window01_Glass = new PrefabGUID(1817456314); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window02_Glass = new PrefabGUID(1331823499); public static readonly PrefabGUID DyeSwatch_Color_Gothic_Window03_Glass = new PrefabGUID(-1118320747); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Curtains01_Fabric = new PrefabGUID(-602659164); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Glass01 = new PrefabGUID(888401290); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_MagicalBalls01 = new PrefabGUID(-527058323); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Marble01 = new PrefabGUID(-881116857); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Marble01_UDIM = new PrefabGUID(1146071772); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_ModularCarpets = new PrefabGUID(-1408736701); public static readonly PrefabGUID DyeSwatch_Color_StrongbladeDLC_Sofas01 = new PrefabGUID(1830415904); public static readonly PrefabGUID DyeSwatch_Color_Wood_Exterior = new PrefabGUID(743769356); public static readonly PrefabGUID DyeSwatch_FX_Candle_Materials = new PrefabGUID(1263024964); public static readonly PrefabGUID DyeSwatch_FX_Fire_Flames = new PrefabGUID(-1761179250); public static readonly PrefabGUID DyeSwatch_FX_Fire_Glow = new PrefabGUID(365319245); public static readonly PrefabGUID DyeSwatch_Textures_Banners01_Fabric = new PrefabGUID(1075450445); public static readonly PrefabGUID DyeSwatch_Textures_CabalVases_Color = new PrefabGUID(-1671749800); public static readonly PrefabGUID DyeSwatch_Textures_Carpets01_Fabric = new PrefabGUID(1844297844); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoor02_Color = new PrefabGUID(1488888181); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoor03_Color = new PrefabGUID(-1795291291); public static readonly PrefabGUID DyeSwatch_Textures_CastleFloorOutdoorGrass01_Color = new PrefabGUID(-252860726); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms_Banner_Color = new PrefabGUID(2070460603); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms_Symbol_Color = new PrefabGUID(135844611); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms02_Banner_Color = new PrefabGUID(2142973078); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms02_Symbol_Color = new PrefabGUID(-1306131544); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms03_Banner_Color = new PrefabGUID(-284246998); public static readonly PrefabGUID DyeSwatch_Textures_CoatOfArms03_Symbol_Color = new PrefabGUID(-1457272300); public static readonly PrefabGUID DyeSwatch_Textures_CordialRugs_Color = new PrefabGUID(-1315655439); public static readonly PrefabGUID DyeSwatch_Textures_CrystalLamps_Color = new PrefabGUID(1347814641); public static readonly PrefabGUID DyeSwatch_Textures_Curtains01_Fabric = new PrefabGUID(-364088137); public static readonly PrefabGUID DyeSwatch_Textures_Doorbell01_Color = new PrefabGUID(456431078); public static readonly PrefabGUID DyeSwatch_Textures_FancyRugs_Color = new PrefabGUID(1308372330); public static readonly PrefabGUID DyeSwatch_Textures_FancyRugs2_Color = new PrefabGUID(-1380865884); public static readonly PrefabGUID DyeSwatch_Textures_FancyVases_Gold_Color = new PrefabGUID(1397527096); public static readonly PrefabGUID DyeSwatch_Textures_FancyVases_Silver_Color = new PrefabGUID(-311257604); public static readonly PrefabGUID DyeSwatch_Textures_GothicRugs_Color = new PrefabGUID(1778275305); public static readonly PrefabGUID DyeSwatch_Textures_GothicRugs2_Color = new PrefabGUID(-1582209766); public static readonly PrefabGUID DyeSwatch_Textures_Hedges_Color = new PrefabGUID(-896547351); public static readonly PrefabGUID DyeSwatch_Textures_MarbleVases_Color = new PrefabGUID(685796746); public static readonly PrefabGUID DyeSwatch_Textures_MetalVases_Color = new PrefabGUID(-2138794869); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_decor = new PrefabGUID(1678804859); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_decor2 = new PrefabGUID(1245357845); public static readonly PrefabGUID DyeSwatch_Textures_MetalWood_trims = new PrefabGUID(-1095568350); public static readonly PrefabGUID DyeSwatch_Textures_PaintingFrames = new PrefabGUID(-1364093516); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Carpets01_Color = new PrefabGUID(218304212); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Carpets02_Color = new PrefabGUID(1750255925); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Chairs01_Color = new PrefabGUID(2013109059); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_FloorPillows_Color = new PrefabGUID(530662417); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Lamps_Color = new PrefabGUID(1980306918); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_PrisonCell_Color = new PrefabGUID(-1462114187); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Tables_Color = new PrefabGUID(-1396573132); public static readonly PrefabGUID DyeSwatch_Textures_StrongbladeDLC_Throne_texture = new PrefabGUID(1673392018); public static readonly PrefabGUID DyeSwatch_Textures_Tablecloth01_Fabric = new PrefabGUID(989505523); public static readonly PrefabGUID DyeSwatch_Textures_Wallpapers01_Fabric = new PrefabGUID(765687286); public static readonly PrefabGUID Dynamic_AnimalGraintank01 = new PrefabGUID(1086771358); public static readonly PrefabGUID Dynamic_Animalpen_Gate01 = new PrefabGUID(-984390644); public static readonly PrefabGUID Dynamic_AnimalWatertank01 = new PrefabGUID(1271895314); public static readonly PrefabGUID Dynamic_Anvil_Destory01 = new PrefabGUID(-1467280229); public static readonly PrefabGUID Dynamic_ArcheryTarget01 = new PrefabGUID(-527783404); public static readonly PrefabGUID Dynamic_Bandit_Banner01 = new PrefabGUID(1892346071); public static readonly PrefabGUID Dynamic_Bandit_Banner02 = new PrefabGUID(1098052565); public static readonly PrefabGUID Dynamic_Bandit_Barricade_01 = new PrefabGUID(-396981743); public static readonly PrefabGUID Dynamic_Bandit_Bonfire01 = new PrefabGUID(1584282990); public static readonly PrefabGUID Dynamic_Bandit_Bonfire02 = new PrefabGUID(-1545958360); public static readonly PrefabGUID Dynamic_Bandit_Chair01 = new PrefabGUID(1926372834); public static readonly PrefabGUID Dynamic_Bandit_Gate01 = new PrefabGUID(-751061787); public static readonly PrefabGUID Dynamic_Bandit_SmallTent01 = new PrefabGUID(-1089570335); public static readonly PrefabGUID Dynamic_Bandit_SmallTent02 = new PrefabGUID(-870699449); public static readonly PrefabGUID Dynamic_Bandit_TargetDummy01 = new PrefabGUID(-140896529); public static readonly PrefabGUID Dynamic_Bandit_TargetDummy02 = new PrefabGUID(1190038041); public static readonly PrefabGUID Dynamic_Bandit_WeaponRack01 = new PrefabGUID(-702480070); public static readonly PrefabGUID Dynamic_Bandit_WeaponRack02 = new PrefabGUID(985845921); public static readonly PrefabGUID Dynamic_Bandit_Wood01 = new PrefabGUID(377406377); public static readonly PrefabGUID Dynamic_Bandit_WoodenCageDoor01 = new PrefabGUID(-1501899954); public static readonly PrefabGUID Dynamic_BanditBanner01 = new PrefabGUID(-1033344247); public static readonly PrefabGUID Dynamic_BanditFortress_Bench01 = new PrefabGUID(-1569079864); public static readonly PrefabGUID Dynamic_BanditFortress_Stairs01 = new PrefabGUID(207890229); public static readonly PrefabGUID Dynamic_BanditFortress_Stairs02 = new PrefabGUID(1685808660); public static readonly PrefabGUID Dynamic_BanditTailor_Hides02 = new PrefabGUID(1548087703); public static readonly PrefabGUID Dynamic_BanditTailor_Hides03 = new PrefabGUID(1709577897); public static readonly PrefabGUID Dynamic_BanditTailor_Hides04 = new PrefabGUID(1443243928); public static readonly PrefabGUID Dynamic_BanditTailor_HidesBeam01 = new PrefabGUID(734876611); public static readonly PrefabGUID Dynamic_BanditTailor_SkinningTable01 = new PrefabGUID(1787164331); public static readonly PrefabGUID Dynamic_BanditTailor_TanningRack01 = new PrefabGUID(-1638455956); public static readonly PrefabGUID Dynamic_BanditTailor_TanningRack02 = new PrefabGUID(-1562433345); public static readonly PrefabGUID Dynamic_BanditTailor_TarBucket01 = new PrefabGUID(46279698); public static readonly PrefabGUID Dynamic_BanditTailor_TarBucket02 = new PrefabGUID(391254323); public static readonly PrefabGUID Dynamic_BarCounter01 = new PrefabGUID(1778133133); public static readonly PrefabGUID Dynamic_BarCounter02 = new PrefabGUID(1489199008); public static readonly PrefabGUID Dynamic_Barrel_Destory01 = new PrefabGUID(-1737754071); public static readonly PrefabGUID Dynamic_Barrel_Destory01_ForgeMaster01 = new PrefabGUID(1574308556); public static readonly PrefabGUID Dynamic_Barrel_Destory01_ForgeMaster02 = new PrefabGUID(-1680159870); public static readonly PrefabGUID Dynamic_Barrel_Destory01_NoLid = new PrefabGUID(-423507443); public static readonly PrefabGUID Dynamic_Barrel_DestoryOak01 = new PrefabGUID(-1635659418); public static readonly PrefabGUID Dynamic_Barrel_DestoryOak01_NoLid = new PrefabGUID(-1149553586); public static readonly PrefabGUID Dynamic_Battlement_Pillar01ShatterGroup = new PrefabGUID(1030377094); public static readonly PrefabGUID Dynamic_Battlement_Pillar01ShatterGroup_Noctem = new PrefabGUID(1925541125); public static readonly PrefabGUID Dynamic_Battlement_Pillar02ShatterGroup = new PrefabGUID(-1358618991); public static readonly PrefabGUID Dynamic_Battlement_Pillar02ShatterGroup_Noctem = new PrefabGUID(2055991204); public static readonly PrefabGUID Dynamic_Battlement_Pillar03ShatterGroup = new PrefabGUID(-1536990813); public static readonly PrefabGUID Dynamic_Battlement_Pillar03ShatterGroup_Noctem = new PrefabGUID(1321483971); public static readonly PrefabGUID Dynamic_Battlement_Pillar04ShatterGroup = new PrefabGUID(2102168806); public static readonly PrefabGUID Dynamic_Battlement_Pillar04ShatterGroup_Noctem = new PrefabGUID(1053708805); public static readonly PrefabGUID Dynamic_Battlement_Pillar05ShatterGroup = new PrefabGUID(783663360); public static readonly PrefabGUID Dynamic_Battlement_Pillar05ShatterGroup_Noctem = new PrefabGUID(1082147443); public static readonly PrefabGUID Dynamic_Battlement_Wall_End01ShatterGroup = new PrefabGUID(-224858630); public static readonly PrefabGUID Dynamic_Battlement_Wall01ShatterGroup = new PrefabGUID(-2056675794); public static readonly PrefabGUID Dynamic_Battlement_Wall02ShatterGroup = new PrefabGUID(-151635550); public static readonly PrefabGUID Dynamic_Battlement_Wall03ShatterGroup = new PrefabGUID(458548879); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar01ShatterGroup = new PrefabGUID(-1104984593); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar02ShatterGroup = new PrefabGUID(1684180923); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar03ShatterGroup = new PrefabGUID(40971045); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar04ShatterGroup = new PrefabGUID(1975605689); public static readonly PrefabGUID Dynamic_BattlementCursed_Pillar05ShatterGroup = new PrefabGUID(-1613348599); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall01ShatterGroup = new PrefabGUID(101455271); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall02ShatterGroup = new PrefabGUID(1328208739); public static readonly PrefabGUID Dynamic_BattlementCursed_Wall03ShatterGroup = new PrefabGUID(1351269912); public static readonly PrefabGUID Dynamic_BedFine01 = new PrefabGUID(-642820823); public static readonly PrefabGUID Dynamic_BedSimple01 = new PrefabGUID(1363628421); public static readonly PrefabGUID Dynamic_Beehive01 = new PrefabGUID(190555136); public static readonly PrefabGUID Dynamic_BeerBarrel_Destory01 = new PrefabGUID(1519534746); public static readonly PrefabGUID Dynamic_Bellow_Destory01 = new PrefabGUID(1084774354); public static readonly PrefabGUID Dynamic_Blacksmith_Table_Destory01 = new PrefabGUID(-399565792); public static readonly PrefabGUID Dynamic_Brazier_Bandit01 = new PrefabGUID(-380643934); public static readonly PrefabGUID Dynamic_Brazier_Elris01 = new PrefabGUID(835363541); public static readonly PrefabGUID Dynamic_Brazier_Militia01 = new PrefabGUID(1831192217); public static readonly PrefabGUID Dynamic_Brazier_SilverHills_Breakable01 = new PrefabGUID(998090717); public static readonly PrefabGUID Dynamic_BunkbedVar01 = new PrefabGUID(-510528648); public static readonly PrefabGUID Dynamic_BunkbedVar02 = new PrefabGUID(-213112222); public static readonly PrefabGUID Dynamic_BunkbedVar03 = new PrefabGUID(1885918652); public static readonly PrefabGUID Dynamic_Castle_Fence_Iron01 = new PrefabGUID(1881201265); public static readonly PrefabGUID Dynamic_Castle_Fence_IronGate01 = new PrefabGUID(131638455); public static readonly PrefabGUID Dynamic_Catacomb_Brazier01 = new PrefabGUID(-2015774183); public static readonly PrefabGUID Dynamic_Church_bench01 = new PrefabGUID(760875747); public static readonly PrefabGUID Dynamic_Church_CandleHolder01 = new PrefabGUID(1606046656); public static readonly PrefabGUID Dynamic_Church_CandleHolder02 = new PrefabGUID(2041403769); public static readonly PrefabGUID Dynamic_Church_Fence01 = new PrefabGUID(1482372114); public static readonly PrefabGUID Dynamic_Crate_Destory01 = new PrefabGUID(-914566303); public static readonly PrefabGUID Dynamic_CrateLarge_Destory01 = new PrefabGUID(-1509057274); public static readonly PrefabGUID Dynamic_CrateOak_Destory01 = new PrefabGUID(1043963275); public static readonly PrefabGUID Dynamic_CrateOakLarge_Destory01 = new PrefabGUID(1494095660); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_01 = new PrefabGUID(1707639505); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_02 = new PrefabGUID(-418864724); public static readonly PrefabGUID Dynamic_CursedForest_AltarLantern_03 = new PrefabGUID(1057347553); public static readonly PrefabGUID Dynamic_CursedForest_AltarStub01 = new PrefabGUID(1114316751); public static readonly PrefabGUID Dynamic_Destructible_DraculasCastle_Pillar01 = new PrefabGUID(1457203023); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Clean01 = new PrefabGUID(-2138539114); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin01 = new PrefabGUID(602354452); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-178874916); public static readonly PrefabGUID Dynamic_DraculasCastle_Banner_Ruin03 = new PrefabGUID(-2015107489); public static readonly PrefabGUID Dynamic_Elris_Bag_01 = new PrefabGUID(646782579); public static readonly PrefabGUID Dynamic_Elris_Bag_02 = new PrefabGUID(894221760); public static readonly PrefabGUID Dynamic_Elris_Bag_03 = new PrefabGUID(-1641495452); public static readonly PrefabGUID Dynamic_Elris_Bags_01 = new PrefabGUID(-1241395961); public static readonly PrefabGUID Dynamic_Elris_Bed_01 = new PrefabGUID(1063753566); public static readonly PrefabGUID Dynamic_Elris_Bench_01 = new PrefabGUID(1250708573); public static readonly PrefabGUID Dynamic_Elris_CookingFireplace01 = new PrefabGUID(-1980569507); public static readonly PrefabGUID Dynamic_Elris_Fishpole_01 = new PrefabGUID(579734563); public static readonly PrefabGUID Dynamic_Elris_Fishpole_02 = new PrefabGUID(-1448115504); public static readonly PrefabGUID Dynamic_Elris_Hangingfish_01 = new PrefabGUID(783659627); public static readonly PrefabGUID Dynamic_Elris_Hidebag_01 = new PrefabGUID(1903287583); public static readonly PrefabGUID Dynamic_Elris_Sled01 = new PrefabGUID(-67723803); public static readonly PrefabGUID Dynamic_Elris_Sled02 = new PrefabGUID(3826923); public static readonly PrefabGUID Dynamic_Elris_Sled03 = new PrefabGUID(258865468); public static readonly PrefabGUID Dynamic_Elris_Stool_01 = new PrefabGUID(1024853637); public static readonly PrefabGUID Dynamic_Elris_Stool_02 = new PrefabGUID(335113069); public static readonly PrefabGUID Dynamic_Elris_Table_01 = new PrefabGUID(373144099); public static readonly PrefabGUID Dynamic_Elris_Table_02 = new PrefabGUID(-572614181); public static readonly PrefabGUID Dynamic_Elris_Table_03 = new PrefabGUID(-1939878847); public static readonly PrefabGUID Dynamic_FarmRuin_Pillar01 = new PrefabGUID(822146782); public static readonly PrefabGUID Dynamic_FarmRuin_Pillar02 = new PrefabGUID(-953237463); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(910871983); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(-15760090); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Wall01 = new PrefabGUID(531052136); public static readonly PrefabGUID Dynamic_FarmRuin_SilverHills_Wall03 = new PrefabGUID(975887975); public static readonly PrefabGUID Dynamic_FarmRuin_Wall01 = new PrefabGUID(250699641); public static readonly PrefabGUID Dynamic_FarmRuin_Wall02 = new PrefabGUID(-430641886); public static readonly PrefabGUID Dynamic_FarmRuin_Wall03 = new PrefabGUID(1073708029); public static readonly PrefabGUID Dynamic_FineLamp01 = new PrefabGUID(-1607370012); public static readonly PrefabGUID Dynamic_FineLamp02 = new PrefabGUID(572958762); public static readonly PrefabGUID Dynamic_FineLamp03 = new PrefabGUID(-1862881706); public static readonly PrefabGUID Dynamic_ForgeMaster_Weaponrack01 = new PrefabGUID(2074961222); public static readonly PrefabGUID Dynamic_Fortressoflight_Altar01 = new PrefabGUID(300811828); public static readonly PrefabGUID Dynamic_Fortressoflight_Brazier01 = new PrefabGUID(-851864200); public static readonly PrefabGUID Dynamic_Fortressoflight_Brazier02 = new PrefabGUID(1143887851); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_01 = new PrefabGUID(619715655); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_01_Flipped = new PrefabGUID(273690450); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_02 = new PrefabGUID(1148467754); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_03 = new PrefabGUID(713962412); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_03_Flipped = new PrefabGUID(439094574); public static readonly PrefabGUID Dynamic_FortressOfLight_Railing_Pillar_04 = new PrefabGUID(1701056478); public static readonly PrefabGUID Dynamic_Gazebo_Alchemyboard01 = new PrefabGUID(1799771806); public static readonly PrefabGUID Dynamic_Gazebo_Alchemytable01 = new PrefabGUID(254540711); public static readonly PrefabGUID Dynamic_GhostCrate_Destroy01 = new PrefabGUID(-581025681); public static readonly PrefabGUID Dynamic_GhostCrate_Destroy02 = new PrefabGUID(1795001137); public static readonly PrefabGUID Dynamic_GhostHouseBed = new PrefabGUID(1499532815); public static readonly PrefabGUID Dynamic_GhostHouseTable_01 = new PrefabGUID(-675745848); public static readonly PrefabGUID Dynamic_GhostHouseTable_02 = new PrefabGUID(-236141268); public static readonly PrefabGUID Dynamic_GhostHouseTable_03 = new PrefabGUID(-1623478757); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy01 = new PrefabGUID(-1222865119); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy02 = new PrefabGUID(-1938047265); public static readonly PrefabGUID Dynamic_Glassblower_Barrel01_Destroy03 = new PrefabGUID(16050951); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy01 = new PrefabGUID(318244958); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy02 = new PrefabGUID(2129338175); public static readonly PrefabGUID Dynamic_Glassblower_Crate_Destroy03 = new PrefabGUID(-79652628); public static readonly PrefabGUID Dynamic_Glassblower_Minecart01 = new PrefabGUID(-1631320691); public static readonly PrefabGUID Dynamic_Glassblower_Table_Destroy01 = new PrefabGUID(-511447458); public static readonly PrefabGUID Dynamic_Glassblower_Table_Destroy02 = new PrefabGUID(761535130); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy01 = new PrefabGUID(1067710829); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy02 = new PrefabGUID(-1815715810); public static readonly PrefabGUID Dynamic_Glassblower_Wheelbarrow_Destroy03 = new PrefabGUID(-1359614999); public static readonly PrefabGUID Dynamic_GloomRot_Cage01 = new PrefabGUID(-836503865); public static readonly PrefabGUID Dynamic_GloomRot_Cage02 = new PrefabGUID(1902390869); public static readonly PrefabGUID Dynamic_GloomRot_Cage03 = new PrefabGUID(412882056); public static readonly PrefabGUID Dynamic_GloomRot_Cage04 = new PrefabGUID(1579494508); public static readonly PrefabGUID Dynamic_GloomRot_Chair01 = new PrefabGUID(721048029); public static readonly PrefabGUID Dynamic_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(1761667755); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-1687787215); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(1144199079); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy01 = new PrefabGUID(-2050341478); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy02 = new PrefabGUID(739572587); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy03 = new PrefabGUID(1770839808); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Shelf_Destroy04 = new PrefabGUID(-1747404762); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy01 = new PrefabGUID(67745759); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy02 = new PrefabGUID(1506168614); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Table01_Destroy03 = new PrefabGUID(-1824590049); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-1706975911); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-33017482); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(550537653); public static readonly PrefabGUID Dynamic_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(-297684467); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01 = new PrefabGUID(-1399140405); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_01 = new PrefabGUID(-2086712888); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_02 = new PrefabGUID(1762551023); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy01_03 = new PrefabGUID(-1593778122); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02 = new PrefabGUID(-1733222827); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_01 = new PrefabGUID(-2114837755); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_02 = new PrefabGUID(-2074260788); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_03 = new PrefabGUID(1625091446); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_04 = new PrefabGUID(-1126747157); public static readonly PrefabGUID Dynamic_Gloomrot_Coilfactory_Trolley01_Destroy02_05 = new PrefabGUID(-1508007471); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp01 = new PrefabGUID(662443583); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp02 = new PrefabGUID(-697667626); public static readonly PrefabGUID Dynamic_GloomRot_Coppermine_Lamp03 = new PrefabGUID(902802336); public static readonly PrefabGUID Dynamic_Gloomrot_Farm_Light01 = new PrefabGUID(1376508951); public static readonly PrefabGUID Dynamic_Gloomrot_Farm_Tank01 = new PrefabGUID(1572136202); public static readonly PrefabGUID Dynamic_GloomRot_Farm01 = new PrefabGUID(-1425711457); public static readonly PrefabGUID Dynamic_Gloomrot_Farm01 = new PrefabGUID(-805017052); public static readonly PrefabGUID Dynamic_Gloomrot_Farm02 = new PrefabGUID(-1054610429); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire_End01 = new PrefabGUID(-1552398508); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire01 = new PrefabGUID(1817215862); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire02 = new PrefabGUID(1777848337); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire03 = new PrefabGUID(-1461709010); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Barbedwire04 = new PrefabGUID(-1625479771); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Diagonal01 = new PrefabGUID(-1383328815); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Diagonal02 = new PrefabGUID(1957598517); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_End01 = new PrefabGUID(1613176665); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_End02 = new PrefabGUID(-1139487309); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Gate01 = new PrefabGUID(573066022); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal_Gate02 = new PrefabGUID(-2071380576); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal01 = new PrefabGUID(-843855849); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Metal02 = new PrefabGUID(-827023172); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(-1814917040); public static readonly PrefabGUID Dynamic_GloomRot_Fence_Wood01 = new PrefabGUID(-897139910); public static readonly PrefabGUID Dynamic_Gloomrot_Fireplace01 = new PrefabGUID(1738798508); public static readonly PrefabGUID Dynamic_Gloomrot_Fireplace02 = new PrefabGUID(-1922121570); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair01 = new PrefabGUID(-424896882); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair02 = new PrefabGUID(-1221049326); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair03 = new PrefabGUID(178007939); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Chair04 = new PrefabGUID(604780461); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Drape01 = new PrefabGUID(705791771); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Drape02 = new PrefabGUID(1008207568); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table01 = new PrefabGUID(1161293007); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table02 = new PrefabGUID(-1481497968); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table03 = new PrefabGUID(-1166883532); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table04 = new PrefabGUID(1009227731); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table05 = new PrefabGUID(-1402553142); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table06 = new PrefabGUID(124887879); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table07 = new PrefabGUID(578736238); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_Table08 = new PrefabGUID(-1223467651); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(-1879072413); public static readonly PrefabGUID Dynamic_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(1429813359); public static readonly PrefabGUID Dynamic_GloomRot_LampPost01 = new PrefabGUID(706073042); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked01 = new PrefabGUID(518895448); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked02 = new PrefabGUID(1678691189); public static readonly PrefabGUID Dynamic_Gloomrot_pipes_Stacked03 = new PrefabGUID(-165366541); public static readonly PrefabGUID Dynamic_GloomRot_Screen01 = new PrefabGUID(-887029886); public static readonly PrefabGUID Dynamic_GloomRot_Screen02 = new PrefabGUID(45884364); public static readonly PrefabGUID Dynamic_Gloomrot_Sludgepool_Pipeholder01_Destroy01 = new PrefabGUID(48312854); public static readonly PrefabGUID Dynamic_Gloomrot_Sludgepool_Worktable01_Destroy01 = new PrefabGUID(-505340815); public static readonly PrefabGUID Dynamic_GloomRot_Table01 = new PrefabGUID(-603933123); public static readonly PrefabGUID Dynamic_Gloomrot_TransistorBreakable01 = new PrefabGUID(841932847); public static readonly PrefabGUID Dynamic_Gloomrot_TransistorBreakable02 = new PrefabGUID(305546937); public static readonly PrefabGUID Dynamic_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(-660674151); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy01 = new PrefabGUID(-1129979758); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy02 = new PrefabGUID(-1235836527); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy03 = new PrefabGUID(-320529867); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy04 = new PrefabGUID(1327519101); public static readonly PrefabGUID Dynamic_GloomrotBarrel_Destroy05 = new PrefabGUID(531205828); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy01 = new PrefabGUID(-612576724); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy02 = new PrefabGUID(-906450303); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy03 = new PrefabGUID(1892193413); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy04 = new PrefabGUID(337016672); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy05 = new PrefabGUID(-859787689); public static readonly PrefabGUID Dynamic_GloomrotCrate_Coilfactory_Destroy06 = new PrefabGUID(1718518885); public static readonly PrefabGUID Dynamic_GloomrotCrate_Destroy01 = new PrefabGUID(-817353800); public static readonly PrefabGUID Dynamic_GloomrotCrateLarge_Destroy01 = new PrefabGUID(-2012822908); public static readonly PrefabGUID Dynamic_GloomrotWoodenBarrel_Destroy01 = new PrefabGUID(-1441097129); public static readonly PrefabGUID Dynamic_Horsetrack_ArcheryTarget01 = new PrefabGUID(1753801346); public static readonly PrefabGUID Dynamic_Horsetrack_Fence01 = new PrefabGUID(918048395); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag01 = new PrefabGUID(-1988794995); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag02 = new PrefabGUID(-416944715); public static readonly PrefabGUID Dynamic_Horsetrack_MilitiaFlag03 = new PrefabGUID(1882169557); public static readonly PrefabGUID Dynamic_Horsetrack_Rack01 = new PrefabGUID(1792219266); public static readonly PrefabGUID Dynamic_Horsetrack_TargetDummy01 = new PrefabGUID(466193270); public static readonly PrefabGUID Dynamic_Horsetrack_TargetRings01 = new PrefabGUID(1958706375); public static readonly PrefabGUID Dynamic_HousePlant_Destroy01 = new PrefabGUID(1222567591); public static readonly PrefabGUID Dynamic_HousePlant_Destroy02 = new PrefabGUID(-1542815828); public static readonly PrefabGUID Dynamic_Laboratory_Chair_Leather_01 = new PrefabGUID(-1982053295); public static readonly PrefabGUID Dynamic_Laboratory_Chair_Leather_02 = new PrefabGUID(-383877941); public static readonly PrefabGUID Dynamic_Laboratory_ChalkBoard01 = new PrefabGUID(-1920847241); public static readonly PrefabGUID Dynamic_Laboratory_ChalkBoard02 = new PrefabGUID(-1736980107); public static readonly PrefabGUID Dynamic_LampPost01 = new PrefabGUID(1543892145); public static readonly PrefabGUID Dynamic_LampPost02 = new PrefabGUID(1611213570); public static readonly PrefabGUID Dynamic_LampPost03 = new PrefabGUID(-912195280); public static readonly PrefabGUID Dynamic_Lucie_PotionCabinet_02 = new PrefabGUID(418283489); public static readonly PrefabGUID Dynamic_Lucie_PotionCabinet_03 = new PrefabGUID(-665572988); public static readonly PrefabGUID Dynamic_MageTower_BigDesk01 = new PrefabGUID(975325435); public static readonly PrefabGUID Dynamic_MageTower_Bookcase01 = new PrefabGUID(1203082778); public static readonly PrefabGUID Dynamic_MageTower_Bookcase01_45deg = new PrefabGUID(-124310159); public static readonly PrefabGUID Dynamic_MageTower_Bookcase02 = new PrefabGUID(-1735782424); public static readonly PrefabGUID Dynamic_MageTower_Bookpile01 = new PrefabGUID(279122851); public static readonly PrefabGUID Dynamic_MageTower_CandleHolder01 = new PrefabGUID(1517851702); public static readonly PrefabGUID Dynamic_MageTower_Chair01 = new PrefabGUID(-1557460412); public static readonly PrefabGUID Dynamic_MageTower_Divan01 = new PrefabGUID(-1917779328); public static readonly PrefabGUID Dynamic_MageTower_FlowerPot01 = new PrefabGUID(-684955646); public static readonly PrefabGUID Dynamic_MageTower_Ladder01 = new PrefabGUID(2067924681); public static readonly PrefabGUID Dynamic_MageTower_Ladder02 = new PrefabGUID(1935586131); public static readonly PrefabGUID Dynamic_MageTower_Lantern01 = new PrefabGUID(1532272941); public static readonly PrefabGUID Dynamic_MageTower_Prop_Pillar01 = new PrefabGUID(1104654412); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk01 = new PrefabGUID(392867233); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk02 = new PrefabGUID(1972059895); public static readonly PrefabGUID Dynamic_MageTower_SmallDesk03 = new PrefabGUID(211238099); public static readonly PrefabGUID Dynamic_Militia_Barricade_01 = new PrefabGUID(729192032); public static readonly PrefabGUID Dynamic_MilitiaFlag01 = new PrefabGUID(1208502250); public static readonly PrefabGUID Dynamic_MilitiaFlag02 = new PrefabGUID(615807594); public static readonly PrefabGUID Dynamic_MilitiaFlag03 = new PrefabGUID(-1308887751); public static readonly PrefabGUID Dynamic_MilitiaFlag04 = new PrefabGUID(-148594189); public static readonly PrefabGUID Dynamic_MilitiaTableVar01 = new PrefabGUID(321704408); public static readonly PrefabGUID Dynamic_MilitiaTableVar02 = new PrefabGUID(-1730846693); public static readonly PrefabGUID Dynamic_MilitiaTableVar03 = new PrefabGUID(-1291689116); public static readonly PrefabGUID Dynamic_MineCart01 = new PrefabGUID(-513973549); public static readonly PrefabGUID Dynamic_MineCartBroken01 = new PrefabGUID(-1087086033); public static readonly PrefabGUID Dynamic_MonsterCastle_Door_Destroy01 = new PrefabGUID(-826704870); public static readonly PrefabGUID Dynamic_MonsterCastle_Gate_Destroy01 = new PrefabGUID(-773439332); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-512363641); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(-930049376); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-1645625963); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1023597816); public static readonly PrefabGUID Dynamic_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(-1026667462); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable01 = new PrefabGUID(-1831354027); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable02 = new PrefabGUID(-1074565154); public static readonly PrefabGUID Dynamic_Noctem_AlchemyTable03 = new PrefabGUID(-1307978620); public static readonly PrefabGUID Dynamic_Noctem_Banner01 = new PrefabGUID(627540783); public static readonly PrefabGUID Dynamic_Noctem_Barrel01 = new PrefabGUID(1417656045); public static readonly PrefabGUID Dynamic_Noctem_BloodTap01 = new PrefabGUID(1937606846); public static readonly PrefabGUID Dynamic_Noctem_Bonfire01 = new PrefabGUID(-934362571); public static readonly PrefabGUID Dynamic_Noctem_Cage01_Door01 = new PrefabGUID(33269409); public static readonly PrefabGUID Dynamic_Noctem_Candlestand01 = new PrefabGUID(6843061); public static readonly PrefabGUID Dynamic_Noctem_Catacomb_Brazier01 = new PrefabGUID(1511832688); public static readonly PrefabGUID Dynamic_Noctem_Cauldron01 = new PrefabGUID(1044882554); public static readonly PrefabGUID Dynamic_Noctem_Chair01 = new PrefabGUID(2013132153); public static readonly PrefabGUID Dynamic_Noctem_Chair02 = new PrefabGUID(-294303300); public static readonly PrefabGUID Dynamic_Noctem_Crate01 = new PrefabGUID(134628911); public static readonly PrefabGUID Dynamic_Noctem_CrateLarge01 = new PrefabGUID(2026862319); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Brazier01_Breakable = new PrefabGUID(678016184); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_BrazierAged01_Breakable = new PrefabGUID(-799678876); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(765067965); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_PodiumVaseAged01 = new PrefabGUID(-812293792); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Vase01 = new PrefabGUID(111407620); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-438582678); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_VaseAged01 = new PrefabGUID(1081093787); public static readonly PrefabGUID Dynamic_Noctem_DraculaCastle_VaseAged02 = new PrefabGUID(-674040415); public static readonly PrefabGUID Dynamic_Noctem_DraculaDemise_Barricade01 = new PrefabGUID(-1151571450); public static readonly PrefabGUID Dynamic_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(1545678837); public static readonly PrefabGUID Dynamic_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(890415818); public static readonly PrefabGUID Dynamic_Noctem_HangingTorch01 = new PrefabGUID(-889241408); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden01 = new PrefabGUID(1318129512); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden02 = new PrefabGUID(-1592853695); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden03 = new PrefabGUID(1183817789); public static readonly PrefabGUID Dynamic_Noctem_IronMaiden04 = new PrefabGUID(-1838057587); public static readonly PrefabGUID Dynamic_Noctem_Lantern01 = new PrefabGUID(-1851233260); public static readonly PrefabGUID Dynamic_Noctem_PillarRuin01_Destructable = new PrefabGUID(-1526738372); public static readonly PrefabGUID Dynamic_Noctem_PillarRuin02_Destructable = new PrefabGUID(-46854891); public static readonly PrefabGUID Dynamic_Noctem_RiftCrystalChild01 = new PrefabGUID(-979374025); public static readonly PrefabGUID Dynamic_Noctem_Tube01 = new PrefabGUID(1637739119); public static readonly PrefabGUID Dynamic_Noctem_Tube02 = new PrefabGUID(828793030); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone01 = new PrefabGUID(445039538); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone02 = new PrefabGUID(-828613254); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone03 = new PrefabGUID(61725534); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone04 = new PrefabGUID(-1155668994); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestone05 = new PrefabGUID(1277419644); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig01 = new PrefabGUID(-1406638343); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig02 = new PrefabGUID(705125561); public static readonly PrefabGUID Dynamic_Noctem_VampireGravestoneBig03 = new PrefabGUID(1595267882); public static readonly PrefabGUID Dynamic_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(1482528245); public static readonly PrefabGUID Dynamic_NoctemRuin_Pillar01 = new PrefabGUID(766271888); public static readonly PrefabGUID Dynamic_NoctemRuin_Wall01 = new PrefabGUID(1368657144); public static readonly PrefabGUID Dynamic_NoctemRuin_WallDiagonal01 = new PrefabGUID(-650488839); public static readonly PrefabGUID Dynamic_Pedestal_Candle01 = new PrefabGUID(1761647302); public static readonly PrefabGUID Dynamic_Pedestal_Lamp01 = new PrefabGUID(1011874261); public static readonly PrefabGUID Dynamic_Pedestal_Plant01 = new PrefabGUID(1592663009); public static readonly PrefabGUID Dynamic_Pole_Destory01 = new PrefabGUID(865388894); public static readonly PrefabGUID Dynamic_Runestone_fading02_Breakable = new PrefabGUID(1419058424); public static readonly PrefabGUID Dynamic_Rustic_Table_01 = new PrefabGUID(1231763100); public static readonly PrefabGUID Dynamic_Sign01 = new PrefabGUID(814466580); public static readonly PrefabGUID Dynamic_Silverhills_Banner01 = new PrefabGUID(33464712); public static readonly PrefabGUID Dynamic_Silverhills_Banner02 = new PrefabGUID(-1201376351); public static readonly PrefabGUID Dynamic_Silverhills_Banner03 = new PrefabGUID(34643548); public static readonly PrefabGUID Dynamic_Silverhills_Flowerpot01 = new PrefabGUID(861937308); public static readonly PrefabGUID Dynamic_Silverhills_Jetty_NetRack01 = new PrefabGUID(-27731895); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFish01_Destroy = new PrefabGUID(515154075); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFish02_Destroy = new PrefabGUID(-1949523505); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishCrab01_Destroy = new PrefabGUID(-625721709); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishCrab02_Destroy = new PrefabGUID(1932134868); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishFlounder01_Destroy = new PrefabGUID(-1968849252); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelFishFlounder02_Destroy = new PrefabGUID(1812152941); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelNet01_Destroy = new PrefabGUID(133298876); public static readonly PrefabGUID Dynamic_Silverhills_JettyBarrelNet02_Destroy = new PrefabGUID(-131150295); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate01_Destroy = new PrefabGUID(-765474328); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate02_Destroy = new PrefabGUID(1847924261); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrate03_Destroy = new PrefabGUID(-2050580394); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish01_Destroy = new PrefabGUID(-1051105029); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish02_Destroy = new PrefabGUID(323682477); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFish03_Destroy = new PrefabGUID(-1268024588); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishCrab01_Destroy = new PrefabGUID(282248430); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishCrab02_Destroy = new PrefabGUID(1878363462); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishFlounder01_Destroy = new PrefabGUID(-773732980); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateFishFlounder02_Destroy = new PrefabGUID(1125859050); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateNet01_Destroy = new PrefabGUID(1387585737); public static readonly PrefabGUID Dynamic_Silverhills_JettyCrateNet02_Destroy = new PrefabGUID(1966813685); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel01 = new PrefabGUID(-1764354460); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel02 = new PrefabGUID(1481764336); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel03 = new PrefabGUID(61478074); public static readonly PrefabGUID Dynamic_Silverhills_MineBarrel04 = new PrefabGUID(-559504457); public static readonly PrefabGUID Dynamic_Silverhills_Sign01 = new PrefabGUID(13063903); public static readonly PrefabGUID Dynamic_Silverhills_Sign02 = new PrefabGUID(124210558); public static readonly PrefabGUID Dynamic_Silverhills_Sign03 = new PrefabGUID(43860098); public static readonly PrefabGUID Dynamic_Silverhills_Sign04 = new PrefabGUID(-529886651); public static readonly PrefabGUID Dynamic_Silverhills_StoneSymbol01 = new PrefabGUID(-689051675); public static readonly PrefabGUID Dynamic_Silverhills_StoneSymbol02 = new PrefabGUID(840138011); public static readonly PrefabGUID Dynamic_SilverMine_StoneBench01 = new PrefabGUID(-1814681373); public static readonly PrefabGUID Dynamic_SilverMine_StoneBench02 = new PrefabGUID(-1836215627); public static readonly PrefabGUID Dynamic_SilverMine_StoneBookPedestal01 = new PrefabGUID(1856010207); public static readonly PrefabGUID Dynamic_SilverMine_StoneTable01 = new PrefabGUID(1832333364); public static readonly PrefabGUID Dynamic_SilverMine_StoneTable02 = new PrefabGUID(-750506812); public static readonly PrefabGUID Dynamic_SilverMines_Cage01_Door01 = new PrefabGUID(-1638822576); public static readonly PrefabGUID Dynamic_SilverMines_StoneSymbol03 = new PrefabGUID(2140372796); public static readonly PrefabGUID Dynamic_SimpleWoodenBed = new PrefabGUID(-788101484); public static readonly PrefabGUID Dynamic_SimpleWoodenTable_01 = new PrefabGUID(-1866060148); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-1175302049); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(324332963); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(-872202381); public static readonly PrefabGUID Dynamic_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(844463790); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(-1048994858); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table02 = new PrefabGUID(-1189070820); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(-617997049); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(-983864675); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(523387146); public static readonly PrefabGUID Dynamic_StrongBlade_AlchemyLab_Table06 = new PrefabGUID(251968437); public static readonly PrefabGUID Dynamic_Strongblade_Banner01 = new PrefabGUID(-1504210290); public static readonly PrefabGUID Dynamic_Strongblade_Banner02 = new PrefabGUID(1108631059); public static readonly PrefabGUID Dynamic_Strongblade_Banner03 = new PrefabGUID(-2140154396); public static readonly PrefabGUID Dynamic_Strongblade_Barrel01 = new PrefabGUID(-2122608214); public static readonly PrefabGUID Dynamic_Strongblade_Barrel02 = new PrefabGUID(8490927); public static readonly PrefabGUID Dynamic_Strongblade_Bed01 = new PrefabGUID(-2093299634); public static readonly PrefabGUID Dynamic_Strongblade_Bed02 = new PrefabGUID(1010369489); public static readonly PrefabGUID Dynamic_Strongblade_Brazier01 = new PrefabGUID(-1551609751); public static readonly PrefabGUID Dynamic_Strongblade_Brazier02 = new PrefabGUID(-814672745); public static readonly PrefabGUID Dynamic_Strongblade_Brazier03 = new PrefabGUID(-631016027); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed01 = new PrefabGUID(1330812402); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed02 = new PrefabGUID(-405712808); public static readonly PrefabGUID Dynamic_Strongblade_BunkBed03 = new PrefabGUID(746971555); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench01 = new PrefabGUID(-1753725304); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench02 = new PrefabGUID(75437562); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench03 = new PrefabGUID(2032984241); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench04 = new PrefabGUID(-1564346557); public static readonly PrefabGUID Dynamic_Strongblade_Carvers_Workbench05 = new PrefabGUID(-1367148339); public static readonly PrefabGUID Dynamic_Strongblade_Chair01 = new PrefabGUID(1261965721); public static readonly PrefabGUID Dynamic_Strongblade_Chair01_02 = new PrefabGUID(540931503); public static readonly PrefabGUID Dynamic_Strongblade_Chair02 = new PrefabGUID(1710831571); public static readonly PrefabGUID Dynamic_Strongblade_Chair03 = new PrefabGUID(-1777056595); public static readonly PrefabGUID Dynamic_Strongblade_Chair04 = new PrefabGUID(733466058); public static readonly PrefabGUID Dynamic_Strongblade_Crate01 = new PrefabGUID(-420803614); public static readonly PrefabGUID Dynamic_Strongblade_Crate01_Flasks01 = new PrefabGUID(2094291872); public static readonly PrefabGUID Dynamic_Strongblade_Crate01_Flasks02 = new PrefabGUID(-1078095729); public static readonly PrefabGUID Dynamic_Strongblade_Crate02 = new PrefabGUID(864523526); public static readonly PrefabGUID Dynamic_Strongblade_Crate03 = new PrefabGUID(570702715); public static readonly PrefabGUID Dynamic_Strongblade_Crate03_Flasks01 = new PrefabGUID(-1469972790); public static readonly PrefabGUID Dynamic_Strongblade_Crate03_Flasks02 = new PrefabGUID(-1132554682); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack01 = new PrefabGUID(1028532028); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack02 = new PrefabGUID(816198647); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack03 = new PrefabGUID(1658946590); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerRack04 = new PrefabGUID(-990332499); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(1464586946); public static readonly PrefabGUID Dynamic_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(-738152404); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Barrel01 = new PrefabGUID(-1611627832); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Barrel02 = new PrefabGUID(-2115447482); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Crate01 = new PrefabGUID(-378734983); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Crate02 = new PrefabGUID(353141106); public static readonly PrefabGUID Dynamic_Strongblade_Emery_ToolRack01 = new PrefabGUID(330803280); public static readonly PrefabGUID Dynamic_Strongblade_Emery_Wheelbarrow01 = new PrefabGUID(1892061460); public static readonly PrefabGUID Dynamic_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(1062425003); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(-1770056155); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(1804360939); public static readonly PrefabGUID Dynamic_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(-1631620150); public static readonly PrefabGUID Dynamic_Strongblade_Table_Carver01 = new PrefabGUID(-967715247); public static readonly PrefabGUID Dynamic_Strongblade_Table_Carver02 = new PrefabGUID(-1694410543); public static readonly PrefabGUID Dynamic_Strongblade_Table01 = new PrefabGUID(-2109613586); public static readonly PrefabGUID Dynamic_Strongblade_Table01_02 = new PrefabGUID(-1149627997); public static readonly PrefabGUID Dynamic_Strongblade_Table02 = new PrefabGUID(1573826676); public static readonly PrefabGUID Dynamic_Strongblade_Table02_02 = new PrefabGUID(-198513790); public static readonly PrefabGUID Dynamic_Strongblade_Table03 = new PrefabGUID(2026035370); public static readonly PrefabGUID Dynamic_Strongblade_Table03_02 = new PrefabGUID(1093809809); public static readonly PrefabGUID Dynamic_Strongblade_Target01 = new PrefabGUID(937517584); public static readonly PrefabGUID Dynamic_Strongblade_Target02 = new PrefabGUID(836435916); public static readonly PrefabGUID Dynamic_Strongblade_Target03 = new PrefabGUID(-1250558838); public static readonly PrefabGUID Dynamic_Strongblade_ToolRack01 = new PrefabGUID(2005713136); public static readonly PrefabGUID Dynamic_Strongblade_ToolRack02 = new PrefabGUID(-1947872155); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack01 = new PrefabGUID(-1205652273); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack02 = new PrefabGUID(-1869650771); public static readonly PrefabGUID Dynamic_Strongblade_Weaponrack03 = new PrefabGUID(1682016872); public static readonly PrefabGUID Dynamic_Strongblade_Wheelbarrow01 = new PrefabGUID(-831601581); public static readonly PrefabGUID Dynamic_TavernCounter01 = new PrefabGUID(-343090962); public static readonly PrefabGUID Dynamic_VampireGravestone01 = new PrefabGUID(1856724560); public static readonly PrefabGUID Dynamic_VampireGravestone02 = new PrefabGUID(-874554027); public static readonly PrefabGUID Dynamic_VampireGravestone03 = new PrefabGUID(1406471614); public static readonly PrefabGUID Dynamic_VampireGravestone04 = new PrefabGUID(-866366928); public static readonly PrefabGUID Dynamic_VampireGravestone05 = new PrefabGUID(159024948); public static readonly PrefabGUID Dynamic_VampireGravestoneBig01 = new PrefabGUID(-1721716929); public static readonly PrefabGUID Dynamic_VampireGravestoneBig02 = new PrefabGUID(686005394); public static readonly PrefabGUID Dynamic_VampireGravestoneBig03 = new PrefabGUID(-1861234994); public static readonly PrefabGUID Dynamic_VampireGraveyard_Brazier_01 = new PrefabGUID(1324282668); public static readonly PrefabGUID Dynamic_Village_CandleHolder01 = new PrefabGUID(-906553059); public static readonly PrefabGUID Dynamic_Village_MarketBarrel01 = new PrefabGUID(-1355981440); public static readonly PrefabGUID Dynamic_Village_MarketBarrel02 = new PrefabGUID(-1754267186); public static readonly PrefabGUID Dynamic_Village_MarketBarrel03 = new PrefabGUID(252191991); public static readonly PrefabGUID Dynamic_Village_MarketBarrel04 = new PrefabGUID(1945245854); public static readonly PrefabGUID Dynamic_Village_MarketCrate01 = new PrefabGUID(-501746101); public static readonly PrefabGUID Dynamic_Village_MarketCrate02 = new PrefabGUID(-1225741924); public static readonly PrefabGUID Dynamic_Village_MarketCrate03 = new PrefabGUID(-1924310509); public static readonly PrefabGUID Dynamic_Vineyard_BarrelShelf01 = new PrefabGUID(-1227668417); public static readonly PrefabGUID Dynamic_Vineyard_Distillery_Breakable01 = new PrefabGUID(874918996); public static readonly PrefabGUID Dynamic_Vineyard_Fence_Diagonal01 = new PrefabGUID(514382335); public static readonly PrefabGUID Dynamic_Vineyard_Fence_End01 = new PrefabGUID(178825099); public static readonly PrefabGUID Dynamic_Vineyard_Fence01 = new PrefabGUID(420531030); public static readonly PrefabGUID Dynamic_Vineyard_Table01 = new PrefabGUID(278930907); public static readonly PrefabGUID Dynamic_WerewolfVillage_CageDoor01 = new PrefabGUID(449605547); public static readonly PrefabGUID Dynamic_Wilderness_Pyre_Flag_01 = new PrefabGUID(-1185192049); public static readonly PrefabGUID Dynamic_WildlingFlag01 = new PrefabGUID(513765745); public static readonly PrefabGUID Dynamic_WildlingFlag03 = new PrefabGUID(-471017212); public static readonly PrefabGUID Dynamic_WildlingFlag04 = new PrefabGUID(1176864549); public static readonly PrefabGUID Dynamic_Witch_FrogTree_01 = new PrefabGUID(680354330); public static readonly PrefabGUID Dynamic_Witch_Stake_01 = new PrefabGUID(2033908910); public static readonly PrefabGUID Dynamic_Witch_Stake_02 = new PrefabGUID(-268526379); public static readonly PrefabGUID Dynamic_Witch_Stake_03 = new PrefabGUID(-1097825920); public static readonly PrefabGUID Dynamic_Witch_Stake_04 = new PrefabGUID(-1225604740); public static readonly PrefabGUID Dynamic_Witch_Stake_05 = new PrefabGUID(1004747507); public static readonly PrefabGUID Dynamic_Witch_Stake_06 = new PrefabGUID(-1850102949); public static readonly PrefabGUID Dynamic_Witch_Stake_07 = new PrefabGUID(-62803135); public static readonly PrefabGUID Dynamic_Witch_Stake_08 = new PrefabGUID(1866082990); public static readonly PrefabGUID Dynamic_Witch_Stake_09 = new PrefabGUID(-1023482921); public static readonly PrefabGUID Dynamic_Witch_Stake_10 = new PrefabGUID(1279575120); public static readonly PrefabGUID Dynamic_Witch_Stake_11 = new PrefabGUID(-1848716072); public static readonly PrefabGUID Dynamic_Witch_Stake_12 = new PrefabGUID(513789194); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Half = new PrefabGUID(-1617661000); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Short = new PrefabGUID(954663641); public static readonly PrefabGUID Dynamics_CastleRuins_Entrance_Whole = new PrefabGUID(711406315); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_HalfSize = new PrefabGUID(2001924492); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_SmallSize = new PrefabGUID(826621727); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_Standard01 = new PrefabGUID(-473356019); public static readonly PrefabGUID Dynamics_CastleRuins_Pillar_Standard02 = new PrefabGUID(-82761589); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_CornerMissing = new PrefabGUID(1486872108); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Half = new PrefabGUID(-1072920270); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Short = new PrefabGUID(2091993130); public static readonly PrefabGUID Dynamics_CastleRuins_Wall_Whole = new PrefabGUID(1032047554); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01 = new PrefabGUID(-234034474); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(-1784856563); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-656414839); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(816419225); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(-1425009997); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(1375521202); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02 = new PrefabGUID(1310137520); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(1202997443); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(1792637867); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(605959431); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(1894134215); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(-1496314039); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01 = new PrefabGUID(-1217974514); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(99655404); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-1123275364); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(1224567407); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(-718226233); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(-657538392); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02 = new PrefabGUID(1134008244); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(-1285226630); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(586681555); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(-1526178704); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(1455219536); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(1278517271); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03 = new PrefabGUID(-1797870599); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(845866970); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(1695856356); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(-70214350); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(2010294716); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(-1561832548); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04 = new PrefabGUID(-110595036); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(1037374543); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(593737256); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(-1904531952); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(-2128282228); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(141455145); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-18405904); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(720005223); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-409959009); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(-738592740); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1787441583); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-1100465668); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02 = new PrefabGUID(-904349188); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(-269446272); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(1255711678); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(877010730); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(1297691219); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(-323274524); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01 = new PrefabGUID(-1578059544); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(844319995); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-1243188819); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(-505123460); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(795916989); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-756183688); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02 = new PrefabGUID(199766782); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(905117942); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(519127440); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(803040786); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(72337094); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(-1267165659); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03 = new PrefabGUID(1601974840); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(-718484092); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(-1893095669); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(-351417972); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-735801197); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(495989089); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04 = new PrefabGUID(1818938058); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-1260082372); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(548947553); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(757222626); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-1317752815); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-960869484); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05 = new PrefabGUID(-2069498072); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(-1107241044); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1644603434); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(479831873); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(-331771737); public static readonly PrefabGUID Dynamics_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(1514629798); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01 = new PrefabGUID(1949185575); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(-1958595595); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1663750202); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(-1519672854); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_SilverHills = new PrefabGUID(1266343309); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-823427919); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02 = new PrefabGUID(1130863810); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(435569555); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(2027702249); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(1744922396); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(1828026123); public static readonly PrefabGUID Dynamics_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(-1248514786); public static readonly PrefabGUID EaseIn_GlassBlower_Cyclone_Curve = new PrefabGUID(-275791831); public static readonly PrefabGUID EaseInCurve = new PrefabGUID(1299958760); public static readonly PrefabGUID EaseInFlatCurve = new PrefabGUID(1797463934); public static readonly PrefabGUID EaseInFlatEarlyCurve = new PrefabGUID(746769511); public static readonly PrefabGUID EaseInFlatLongCurve = new PrefabGUID(-415987411); public static readonly PrefabGUID EaseInFlatStartCurve = new PrefabGUID(-572036026); public static readonly PrefabGUID EaseInLightCurve = new PrefabGUID(214609977); public static readonly PrefabGUID EaseInMediumCurve = new PrefabGUID(-357405154); public static readonly PrefabGUID EaseInOutAndBackCurve = new PrefabGUID(-1995917237); public static readonly PrefabGUID EaseInOutAndBackFastCurve = new PrefabGUID(1405245516); public static readonly PrefabGUID EaseInOutAndBackSlowCurve = new PrefabGUID(-880720849); public static readonly PrefabGUID EaseInOutAndBackVeryFastCurve = new PrefabGUID(-137895455); public static readonly PrefabGUID EaseInOutCurve = new PrefabGUID(844839218); public static readonly PrefabGUID EaseInSharpCurve = new PrefabGUID(-287475116); public static readonly PrefabGUID EaseOutCurve = new PrefabGUID(1983966703); public static readonly PrefabGUID EaseOutHeavyCurve = new PrefabGUID(1062980107); public static readonly PrefabGUID EaseOutLightCurve = new PrefabGUID(664011217); public static readonly PrefabGUID EdgeIcon_CustomMapMarker = new PrefabGUID(1225204967); public static readonly PrefabGUID EdgeIcon_DeathContainer = new PrefabGUID(-259034789); public static readonly PrefabGUID EdgeIcon_TerritoryMarker = new PrefabGUID(2051594793); public static readonly PrefabGUID EH_Bandit_ArmorRack_Active = new PrefabGUID(-457716662); public static readonly PrefabGUID EH_Bandit_ArmorRack_Inactive = new PrefabGUID(1309959325); public static readonly PrefabGUID EH_Bandit_BearCage = new PrefabGUID(2072218017); public static readonly PrefabGUID EH_Bandit_BearTrap_AggroBandits = new PrefabGUID(12647118); public static readonly PrefabGUID EH_Bandit_BearTrap_Ready = new PrefabGUID(604420572); public static readonly PrefabGUID EH_Bandit_BearTrap_Triggered = new PrefabGUID(50685491); public static readonly PrefabGUID EH_Curse_Wisp = new PrefabGUID(733970111); public static readonly PrefabGUID EH_EMP_ActivatedBuff_Standard = new PrefabGUID(1653285815); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel = new PrefabGUID(-993539378); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff = new PrefabGUID(-992614152); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Fast = new PrefabGUID(-895976821); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Standard_T01 = new PrefabGUID(-527595505); public static readonly PrefabGUID EH_Mines_ExplosiveBarrel_ActivatedBuff_Standard_T02 = new PrefabGUID(402396864); public static readonly PrefabGUID EH_Monster_EnergyBeam_Active = new PrefabGUID(-881548025); public static readonly PrefabGUID EH_Monster_EnergyBeam_Available = new PrefabGUID(317064549); public static readonly PrefabGUID EH_Monster_EnergyBeam_Inactive = new PrefabGUID(-1351333802); public static readonly PrefabGUID EH_Monster_EnergyBeam_Startup = new PrefabGUID(-937569366); public static readonly PrefabGUID EH_Spider_Cocoon_01 = new PrefabGUID(-126478565); public static readonly PrefabGUID EH_Spider_Cocoon_02 = new PrefabGUID(571929806); public static readonly PrefabGUID EH_Spider_Cocoon_03 = new PrefabGUID(1327926350); public static readonly PrefabGUID EH_Spider_Cocoon_Base = new PrefabGUID(-1682746393); public static readonly PrefabGUID EH_UnholyChasmEruption_Area = new PrefabGUID(-1231670632); public static readonly PrefabGUID EH_UnholyChasmEruption_Burn_Debuff = new PrefabGUID(-1572696947); public static readonly PrefabGUID EH_UnholyChasmEruption_Object = new PrefabGUID(1428486515); public static readonly PrefabGUID EH_UnholyChasmEruption_Throw = new PrefabGUID(-995980518); public static readonly PrefabGUID EH_WerewolfChieftain_FarmerCage_Closed = new PrefabGUID(1824098505); public static readonly PrefabGUID EH_WerewolfChieftain_FarmerCage_Open = new PrefabGUID(-15276443); public static readonly PrefabGUID Emery02_Broken = new PrefabGUID(2083796933); public static readonly PrefabGUID EmeryEmissiveCurve = new PrefabGUID(334573187); public static readonly PrefabGUID EmeryNode01_Broken = new PrefabGUID(-899969311); public static readonly PrefabGUID EmeryNode01_Broken_Small = new PrefabGUID(-80715900); public static readonly PrefabGUID EmeryNode02_Broken_Small = new PrefabGUID(2045195584); public static readonly PrefabGUID EmeryNode03_Broken = new PrefabGUID(1657423564); public static readonly PrefabGUID EmeryNode03_Broken_Small = new PrefabGUID(752405288); public static readonly PrefabGUID EnvironmentHazard_Base = new PrefabGUID(2052578655); public static readonly PrefabGUID EquipBuff_Bag_Base = new PrefabGUID(-783958722); public static readonly PrefabGUID EquipBuff_Boots_Base = new PrefabGUID(-1465458722); public static readonly PrefabGUID EquipBuff_Chest_Base = new PrefabGUID(1872694456); public static readonly PrefabGUID EquipBuff_Cloak_Base = new PrefabGUID(1409441911); public static readonly PrefabGUID EquipBuff_Gloves_Base = new PrefabGUID(541298575); public static readonly PrefabGUID EquipBuff_Headgear_Base = new PrefabGUID(-1390242325); public static readonly PrefabGUID EquipBuff_Legs_Base = new PrefabGUID(1971020070); public static readonly PrefabGUID EquipBuff_ShroudOfTheForest = new PrefabGUID(1504279833); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability01 = new PrefabGUID(1708326236); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability02 = new PrefabGUID(467582216); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Ability03 = new PrefabGUID(1164259129); public static readonly PrefabGUID EquipBuff_Weapon_Axe_Base = new PrefabGUID(-229134934); public static readonly PrefabGUID EquipBuff_Weapon_Claws_Ability03 = new PrefabGUID(-1231984717); public static readonly PrefabGUID EquipBuff_Weapon_Claws_Base = new PrefabGUID(1646709833); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability01 = new PrefabGUID(841833252); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability02 = new PrefabGUID(-622297013); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Ability03 = new PrefabGUID(-554016265); public static readonly PrefabGUID EquipBuff_Weapon_Crossbow_Base = new PrefabGUID(502842164); public static readonly PrefabGUID EquipBuff_Weapon_Daggers_Ability03 = new PrefabGUID(1240224003); public static readonly PrefabGUID EquipBuff_Weapon_Daggers_Base = new PrefabGUID(-770602451); public static readonly PrefabGUID EquipBuff_Weapon_DualHammers_Ability03 = new PrefabGUID(1644894901); public static readonly PrefabGUID EquipBuff_Weapon_DualHammers_Base = new PrefabGUID(-931878472); public static readonly PrefabGUID EquipBuff_Weapon_FishingPole_Base = new PrefabGUID(1697379100); public static readonly PrefabGUID EquipBuff_Weapon_FishingPole_Debug = new PrefabGUID(1575387321); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability01 = new PrefabGUID(382622020); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability02 = new PrefabGUID(755528190); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Ability03 = new PrefabGUID(-698138214); public static readonly PrefabGUID EquipBuff_Weapon_GreatSword_Base = new PrefabGUID(977673555); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability01 = new PrefabGUID(1799766155); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability02 = new PrefabGUID(443801770); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Ability03 = new PrefabGUID(-441436093); public static readonly PrefabGUID EquipBuff_Weapon_Longbow_Base = new PrefabGUID(-1467765290); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability01 = new PrefabGUID(1964376161); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability02 = new PrefabGUID(955941306); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Ability03 = new PrefabGUID(250456816); public static readonly PrefabGUID EquipBuff_Weapon_Mace_Base = new PrefabGUID(-1776512609); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability01 = new PrefabGUID(942607349); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability02 = new PrefabGUID(640056855); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Ability03 = new PrefabGUID(-187287183); public static readonly PrefabGUID EquipBuff_Weapon_Pistols_Base = new PrefabGUID(-1275287654); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability01 = new PrefabGUID(673013659); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability02 = new PrefabGUID(-1159900363); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Ability03 = new PrefabGUID(-1721561549); public static readonly PrefabGUID EquipBuff_Weapon_Pollaxe_Base = new PrefabGUID(1866720505); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability01 = new PrefabGUID(-1327674928); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability02 = new PrefabGUID(1503954288); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Ability03 = new PrefabGUID(-244154805); public static readonly PrefabGUID EquipBuff_Weapon_Reaper_Base = new PrefabGUID(-1588401644); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability01 = new PrefabGUID(1151296656); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability02 = new PrefabGUID(1731461994); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Ability03 = new PrefabGUID(2036742434); public static readonly PrefabGUID EquipBuff_Weapon_Slashers_Base = new PrefabGUID(1476263066); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability01 = new PrefabGUID(662509355); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability02 = new PrefabGUID(-1335720608); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Ability03 = new PrefabGUID(-552536675); public static readonly PrefabGUID EquipBuff_Weapon_Spear_Base = new PrefabGUID(502760675); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability01 = new PrefabGUID(436833018); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability02 = new PrefabGUID(239719656); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Ability03 = new PrefabGUID(1232942168); public static readonly PrefabGUID EquipBuff_Weapon_Sword_Base = new PrefabGUID(-1534520401); public static readonly PrefabGUID EquipBuff_Weapon_TwinBlades_Ability03 = new PrefabGUID(-1138655105); public static readonly PrefabGUID EquipBuff_Weapon_TwinBlades_Base = new PrefabGUID(188111866); public static readonly PrefabGUID EquipBuff_Weapon_Unarmed_Start01 = new PrefabGUID(-2075546002); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability01 = new PrefabGUID(1576309437); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability02 = new PrefabGUID(-954627543); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Ability03 = new PrefabGUID(-1414560949); public static readonly PrefabGUID EquipBuff_Weapon_Whip_Base = new PrefabGUID(881048998); public static readonly PrefabGUID EssenceDefaultCurve = new PrefabGUID(-2118651311); public static readonly PrefabGUID ExteriorFloorBuildMenuGroup = new PrefabGUID(-357655796); public static readonly PrefabGUID External_Inventory = new PrefabGUID(1183666186); public static readonly PrefabGUID Faction_Bandits = new PrefabGUID(-413163549); public static readonly PrefabGUID Faction_Bear = new PrefabGUID(1344481611); public static readonly PrefabGUID Faction_Blackfangs = new PrefabGUID(932337192); public static readonly PrefabGUID Faction_Blackfangs_Livith = new PrefabGUID(-1460095921); public static readonly PrefabGUID Faction_ChurchOfLum = new PrefabGUID(1094603131); public static readonly PrefabGUID Faction_ChurchOfLum_Slaves = new PrefabGUID(671871002); public static readonly PrefabGUID Faction_ChurchOfLum_Slaves_Rioters = new PrefabGUID(877850148); public static readonly PrefabGUID Faction_ChurchOfLum_SpotShapeshiftVampire = new PrefabGUID(2395673); public static readonly PrefabGUID Faction_Corrupted = new PrefabGUID(182714905); public static readonly PrefabGUID Faction_CorruptedBloodBuffSpawns = new PrefabGUID(-1702123687); public static readonly PrefabGUID Faction_Critters = new PrefabGUID(10678632); public static readonly PrefabGUID Faction_Cursed = new PrefabGUID(1522496317); public static readonly PrefabGUID Faction_Elementals = new PrefabGUID(1513046884); public static readonly PrefabGUID Faction_Gloomrot = new PrefabGUID(-1632475814); public static readonly PrefabGUID Faction_Harpy = new PrefabGUID(1731533561); public static readonly PrefabGUID Faction_Ignored = new PrefabGUID(-1430861195); public static readonly PrefabGUID Faction_Legion = new PrefabGUID(-772044125); public static readonly PrefabGUID Faction_Militia = new PrefabGUID(1057375699); public static readonly PrefabGUID Faction_Mutants = new PrefabGUID(-210606557); public static readonly PrefabGUID Faction_NatureSpirit = new PrefabGUID(1597367490); public static readonly PrefabGUID Faction_Plants = new PrefabGUID(-1414061934); public static readonly PrefabGUID Faction_Players = new PrefabGUID(1106458752); public static readonly PrefabGUID Faction_Players_Castle_Prisoners = new PrefabGUID(-394968526); public static readonly PrefabGUID Faction_Players_Mutant = new PrefabGUID(2146780972); public static readonly PrefabGUID Faction_Players_Shapeshift_Human = new PrefabGUID(-1036907707); public static readonly PrefabGUID Faction_Spiders = new PrefabGUID(-1632009503); public static readonly PrefabGUID Faction_Spiders_Shapeshifted = new PrefabGUID(-733057474); public static readonly PrefabGUID Faction_Traders_T01 = new PrefabGUID(30052367); public static readonly PrefabGUID Faction_Traders_T02 = new PrefabGUID(887347866); public static readonly PrefabGUID Faction_Undead = new PrefabGUID(929074293); public static readonly PrefabGUID Faction_VampireHunters = new PrefabGUID(2120169232); public static readonly PrefabGUID Faction_Wendigo = new PrefabGUID(-535162217); public static readonly PrefabGUID Faction_Werewolf = new PrefabGUID(-2024618997); public static readonly PrefabGUID Faction_WerewolfHuman = new PrefabGUID(62959306); public static readonly PrefabGUID Faction_Wolves = new PrefabGUID(-1671358863); public static readonly PrefabGUID Faction_World_Prisoners = new PrefabGUID(1977351396); public static readonly PrefabGUID FadeToBlackPrefab = new PrefabGUID(378089426); public static readonly PrefabGUID FadeTrailCurve = new PrefabGUID(-1914994394); public static readonly PrefabGUID FakeItem_AnyFish = new PrefabGUID(300582272); public static readonly PrefabGUID FakeItem_AnyFlower = new PrefabGUID(-2101941878); public static readonly PrefabGUID FakeItem_AnyGem = new PrefabGUID(1128027535); public static readonly PrefabGUID FakeItem_AnyGem_T01 = new PrefabGUID(-2039337521); public static readonly PrefabGUID FakeItem_AnyGem_T02 = new PrefabGUID(-2099422426); public static readonly PrefabGUID FakeItem_BloodTracking = new PrefabGUID(-170922187); public static readonly PrefabGUID FakeItem_FeedPrisoner_BloodSnapper = new PrefabGUID(526090146); public static readonly PrefabGUID FakeItem_FeedPrisoner_Corrupted = new PrefabGUID(714743556); public static readonly PrefabGUID FakeItem_FeedPrisoner_FatGoby = new PrefabGUID(-811840389); public static readonly PrefabGUID FakeItem_FeedPrisoner_FierceStinger = new PrefabGUID(-114411609); public static readonly PrefabGUID FakeItem_FeedPrisoner_GoldenRiverBass = new PrefabGUID(-684874624); public static readonly PrefabGUID FakeItem_FeedPrisoner_IrradiantGruel = new PrefabGUID(-1798608844); public static readonly PrefabGUID FakeItem_FeedPrisoner_RainbowTrout = new PrefabGUID(1814558673); public static readonly PrefabGUID FakeItem_FeedPrisoner_Rat = new PrefabGUID(1110550218); public static readonly PrefabGUID FakeItem_FeedPrisoner_SageFish = new PrefabGUID(172410251); public static readonly PrefabGUID FakeItem_FeedPrisoner_SwampDweller = new PrefabGUID(-314251399); public static readonly PrefabGUID FakeItem_FeedPrisoner_TwilightSnapper = new PrefabGUID(-1205777419); public static readonly PrefabGUID FakeItem_FlawlessGem_T03 = new PrefabGUID(1613130430); public static readonly PrefabGUID FakeItem_Prisoner_ExtractedBloodPotion = new PrefabGUID(-1871776321); public static readonly PrefabGUID FakeItem_Prisoner_ExtractedBloodwine = new PrefabGUID(-1624770558); public static readonly PrefabGUID FakeItem_Prisoner_ExtractEssence = new PrefabGUID(-911541799); public static readonly PrefabGUID FakeItem_RegularGem_T02 = new PrefabGUID(-36717533); public static readonly PrefabGUID FancyRugsBuildMenuGroup01 = new PrefabGUID(531546263); public static readonly PrefabGUID FeedBloodBeam = new PrefabGUID(129395516); public static readonly PrefabGUID FeedBloodBeam02 = new PrefabGUID(1513348921); public static readonly PrefabGUID FeedCurveX = new PrefabGUID(-1512829531); public static readonly PrefabGUID FeedCurveY = new PrefabGUID(1595901208); public static readonly PrefabGUID FeedCurveZ = new PrefabGUID(-1666023656); public static readonly PrefabGUID FireBombCurve = new PrefabGUID(1387640155); public static readonly PrefabGUID FireplaceBuildMenuGroup = new PrefabGUID(2000669537); public static readonly PrefabGUID Flat0 = new PrefabGUID(774301558); public static readonly PrefabGUID FlatCurve = new PrefabGUID(-271796435); public static readonly PrefabGUID FlatCurve05 = new PrefabGUID(-281628053); public static readonly PrefabGUID FlatCurve06 = new PrefabGUID(-1560414810); public static readonly PrefabGUID FlatInOutAndBackCurve = new PrefabGUID(953009975); public static readonly PrefabGUID FlatInOutAndBackCurve2 = new PrefabGUID(-519892389); public static readonly PrefabGUID FlatInOutAndBackCurve3 = new PrefabGUID(931351954); public static readonly PrefabGUID FloorFurnishingBuildMenuGroup = new PrefabGUID(-340095470); public static readonly PrefabGUID Forest_Bear_Dire_VBlood_Emote_OnAggro_Buff = new PrefabGUID(438313973); public static readonly PrefabGUID ForgeFloorBuildMenuGroup = new PrefabGUID(658659185); public static readonly PrefabGUID Frost_Vampire_Buff_Chill = new PrefabGUID(27300215); public static readonly PrefabGUID Frost_Vampire_Buff_Freeze = new PrefabGUID(612319955); public static readonly PrefabGUID Frost_Vampire_Buff_IceShield_Base = new PrefabGUID(-414011277); public static readonly PrefabGUID Frost_Vampire_Buff_IceShield_SpellMod = new PrefabGUID(57946762); public static readonly PrefabGUID Frost_Vampire_Buff_NoFreeze_Shared_DamageTrigger = new PrefabGUID(312176353); public static readonly PrefabGUID Frost_Vampire_Splinter_Projectile = new PrefabGUID(-1952476600); public static readonly PrefabGUID Frost_Vampire_Splinter_Projectile_HitBuff = new PrefabGUID(1688343470); public static readonly PrefabGUID FrostSpellSchoolAsset = new PrefabGUID(-823811825); public static readonly PrefabGUID FrozenTempestCurve = new PrefabGUID(-447032757); public static readonly PrefabGUID FurRugsBuildMenuGroup01 = new PrefabGUID(99797136); public static readonly PrefabGUID Garden_Child_LargeArchGrowth_BuildMenuGroup = new PrefabGUID(26202783); public static readonly PrefabGUID Garden_Child_ObeliskMetalGrowth_BuildMenuGroup = new PrefabGUID(1912576347); public static readonly PrefabGUID Garden_Child_ObeliskWoodGrowth_BuildMenuGroup = new PrefabGUID(-829543771); public static readonly PrefabGUID Garden_Child_PergolaGrowth_BuildMenuGroup = new PrefabGUID(1030088937); public static readonly PrefabGUID Garden_Child_PlanterGrowth_BuildMenuGroup = new PrefabGUID(307611651); public static readonly PrefabGUID Garden_Child_PlanterSmallGrowth_BuildMenuGroup = new PrefabGUID(575471000); public static readonly PrefabGUID Garden_Child_SmallArchGrowth_BuildMenuGroup = new PrefabGUID(-1080691672); public static readonly PrefabGUID Garden_Child_UrnPlant_BuildMenuGroup = new PrefabGUID(1882140039); public static readonly PrefabGUID Garden_Child_VasePlants_BuildMenuGroup = new PrefabGUID(-943888708); public static readonly PrefabGUID Garden_Fence_Noble_BuildMenuGroup = new PrefabGUID(93882805); public static readonly PrefabGUID Garden_Fence_Nocturne_BuildMenuGroup = new PrefabGUID(854172019); public static readonly PrefabGUID Garden_Fence_ProjectK01_BuildMenuGroup = new PrefabGUID(703643629); public static readonly PrefabGUID Garden_Fence_Stable01_BuildMenuGroup = new PrefabGUID(-697863956); public static readonly PrefabGUID Garden_Fence_Verdant_BuildMenuGroup = new PrefabGUID(-1126197513); public static readonly PrefabGUID Garden_Fence_Wood01_BuildMenuGroup = new PrefabGUID(-1380121552); public static readonly PrefabGUID Garden_Furniture01_BuildMenuGroup = new PrefabGUID(-998787793); public static readonly PrefabGUID Garden_HedgeMazeColumns01_BuildMenuGroup = new PrefabGUID(928070401); public static readonly PrefabGUID Garden_HedgeMazeColumns02_BuildMenuGroup = new PrefabGUID(-713181701); public static readonly PrefabGUID Garden_HedgeMazeSculptures01_BuildMenuGroup = new PrefabGUID(1856162195); public static readonly PrefabGUID Garden_HedgeMazeWalls01_BuildMenuGroup = new PrefabGUID(306707641); public static readonly PrefabGUID Garden_Parent_LargeArch_BuildMenuGroup = new PrefabGUID(-1487041071); public static readonly PrefabGUID Garden_Parent_ObeliskMetal_BuildMenuGroup = new PrefabGUID(1201592436); public static readonly PrefabGUID Garden_Parent_ObeliskWood_BuildMenuGroup = new PrefabGUID(1989624120); public static readonly PrefabGUID Garden_Parent_Pergola_BuildMenuGroup = new PrefabGUID(-560721299); public static readonly PrefabGUID Garden_Parent_Planters_BuildMenuGroup = new PrefabGUID(49591602); public static readonly PrefabGUID Garden_Parent_PlantersSmall_BuildMenuGroup = new PrefabGUID(941517155); public static readonly PrefabGUID Garden_Parent_SmallArch_BuildMenuGroup = new PrefabGUID(38757807); public static readonly PrefabGUID Garden_Parent_Urn_BuildMenuGroup = new PrefabGUID(946034208); public static readonly PrefabGUID Garden_Parent_VasesCabal_BuildMenuGroup = new PrefabGUID(-559330667); public static readonly PrefabGUID Garden_Parent_VasesFancy_BuildMenuGroup = new PrefabGUID(164750011); public static readonly PrefabGUID Garden_Parent_VasesMarble_BuildMenuGroup = new PrefabGUID(-838331782); public static readonly PrefabGUID Garden_Parent_VasesMetal_BuildMenuGroup = new PrefabGUID(176014446); public static readonly PrefabGUID GardenCastleWall_Pillar_BuildMenuGroup01 = new PrefabGUID(-722465769); public static readonly PrefabGUID GardenCastleWall_Wall_BuildMenuGroup01 = new PrefabGUID(-1121936044); public static readonly PrefabGUID GardenCastleWall_Window_BuildMenuGroup01 = new PrefabGUID(927576837); public static readonly PrefabGUID GardenFountainBuildMenuGroup = new PrefabGUID(1583999167); public static readonly PrefabGUID GarlicFullscrenFXCurve = new PrefabGUID(889427612); public static readonly PrefabGUID GateBossComponentsTemplate_Major = new PrefabGUID(-1695577577); public static readonly PrefabGUID GateBossComponentsTemplate_Minor = new PrefabGUID(-222706317); public static readonly PrefabGUID GenderCollection = new PrefabGUID(-738969776); public static readonly PrefabGUID GenderCollection_CustomizationScreen = new PrefabGUID(-2022511197); public static readonly PrefabGUID GeneralGameplayCollectionAset = new PrefabGUID(715471180); public static readonly PrefabGUID GentleLandingCurve = new PrefabGUID(2126701179); public static readonly PrefabGUID Geomancer_Human_Emote_OnAggro_Buff = new PrefabGUID(1127995064); public static readonly PrefabGUID GhostCrystalNode01_Broken = new PrefabGUID(193141048); public static readonly PrefabGUID GhostCrystalNode01_Broken_Small = new PrefabGUID(1701226856); public static readonly PrefabGUID GhostCrystalNode02_Broken = new PrefabGUID(1168863537); public static readonly PrefabGUID GhostCrystalNode02_Broken_Small = new PrefabGUID(-431869349); public static readonly PrefabGUID GhostCrystalNode03_Broken = new PrefabGUID(-1381994017); public static readonly PrefabGUID GhostCrystalNode03_Broken_Small = new PrefabGUID(-1924893924); public static readonly PrefabGUID Gloomrot_Iva_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-886233482); public static readonly PrefabGUID Gloomrot_Purifier_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2043907215); public static readonly PrefabGUID Gloomrot_RailgunSergeant_VBlood_Emote_OnAggro_Buff = new PrefabGUID(351247261); public static readonly PrefabGUID Gloomrot_TheProfessor_Debuff_ElectricAmplify = new PrefabGUID(-343432994); public static readonly PrefabGUID Gloomrot_Voltage_VBlood_Emote_OnAggro_Buff = new PrefabGUID(226666490); public static readonly PrefabGUID GloomrotDLC_MutantTanksBuildMenuGroup = new PrefabGUID(-1329918198); public static readonly PrefabGUID GloomrotDLC_StatuesBuildMenuGroup = new PrefabGUID(-1884041169); public static readonly PrefabGUID GloomrotDLC01WindowsBuildMenuGroup = new PrefabGUID(-1913275858); public static readonly PrefabGUID GM_GameplayProp = new PrefabGUID(-526992001); public static readonly PrefabGUID GM_Unit_Harpy_Base = new PrefabGUID(-1172003904); public static readonly PrefabGUID GoldNode01_Broken = new PrefabGUID(-1915684879); public static readonly PrefabGUID GoldNode02_Broken = new PrefabGUID(-1783043192); public static readonly PrefabGUID GoldNode03_Broken = new PrefabGUID(-903253937); public static readonly PrefabGUID GoldNode04_Broken = new PrefabGUID(-1035218679); public static readonly PrefabGUID GothicBustBuildMenuGroup = new PrefabGUID(-812506425); public static readonly PrefabGUID GothicGargoyleBuildMenuGroup = new PrefabGUID(1169831915); public static readonly PrefabGUID GothicRugsBuildMenuGroup01 = new PrefabGUID(-745761195); public static readonly PrefabGUID GothicStatueBuildMenuGroup = new PrefabGUID(1758115715); public static readonly PrefabGUID GothicVaseBuildMenuGroup = new PrefabGUID(1404642596); public static readonly PrefabGUID Grave_01_Shattered = new PrefabGUID(286954769); public static readonly PrefabGUID Grave_05_Shattered = new PrefabGUID(-1246402238); public static readonly PrefabGUID Grave_06_Shattered = new PrefabGUID(-995353334); public static readonly PrefabGUID Grave_Marker_02_Shattered = new PrefabGUID(-806601610); public static readonly PrefabGUID Grave_Site_01_Shattered = new PrefabGUID(-1431095964); public static readonly PrefabGUID GravelPathsBuildMenuGroup = new PrefabGUID(-2109516535); public static readonly PrefabGUID Gravestone_01_Shattered = new PrefabGUID(1355432424); public static readonly PrefabGUID Gravestone_02_Shattered = new PrefabGUID(2021557372); public static readonly PrefabGUID Gravestone_04_Shattered = new PrefabGUID(305629638); public static readonly PrefabGUID Gravestone_05_Shattered = new PrefabGUID(1099303023); public static readonly PrefabGUID Gravestone_07_Shattered = new PrefabGUID(-1429516488); public static readonly PrefabGUID Gravestone_08_Shattered = new PrefabGUID(-1090303681); public static readonly PrefabGUID Gravestone_09_Shattered = new PrefabGUID(-456361316); public static readonly PrefabGUID Gravestone_10_Shattered = new PrefabGUID(191605357); public static readonly PrefabGUID Gravestone_11_Shattered = new PrefabGUID(1428179209); public static readonly PrefabGUID Gravestone_12_Shattered = new PrefabGUID(2045152532); public static readonly PrefabGUID Gravestone_18_Shattered = new PrefabGUID(1121119965); public static readonly PrefabGUID Gravestone_34_Shattered = new PrefabGUID(1715560873); public static readonly PrefabGUID Graveyard_FineIronFence01_Gate_Shattered = new PrefabGUID(-1593268626); public static readonly PrefabGUID Graveyard_FineIronFence01_Shattered02 = new PrefabGUID(657284474); public static readonly PrefabGUID Graveyard_FineIronFencePole01_Shattered = new PrefabGUID(-1525063225); public static readonly PrefabGUID Graveyard_FineStoneBench01_Shattered = new PrefabGUID(-1109592244); public static readonly PrefabGUID Graveyard_FineTomb01_Shattered = new PrefabGUID(-1170141636); public static readonly PrefabGUID Graveyard_FineTomb02_Shattered = new PrefabGUID(-1533972463); public static readonly PrefabGUID Graveyard_FineTomb03_Shattered = new PrefabGUID(16311632); public static readonly PrefabGUID Graveyard_FineTomb04_Shattered = new PrefabGUID(-1758017803); public static readonly PrefabGUID Graveyard_FineTomb05_Shattered = new PrefabGUID(-1411336888); public static readonly PrefabGUID Graveyard_FineTomb06_Shattered = new PrefabGUID(1425671604); public static readonly PrefabGUID Graveyard_FineTomb07_Shattered = new PrefabGUID(806943938); public static readonly PrefabGUID Graveyard_FineTomb08_Shattered = new PrefabGUID(-258471525); public static readonly PrefabGUID Graveyard_FineTombBig01_Shattered = new PrefabGUID(-209854307); public static readonly PrefabGUID Graveyard_FineTombBig02_Shattered = new PrefabGUID(-899446957); public static readonly PrefabGUID Graveyard_FineTombBig03_Shattered = new PrefabGUID(-2030429600); public static readonly PrefabGUID Graveyard_IronFence01_Gate_Shattered = new PrefabGUID(-1362004217); public static readonly PrefabGUID Graveyard_IronFence01_Shattered = new PrefabGUID(-122751124); public static readonly PrefabGUID Graveyard_IronFencePole01_Shattered = new PrefabGUID(1934477096); public static readonly PrefabGUID Graveyard_Noctem_DraculaGarden_Urn02_Shatter = new PrefabGUID(-1208350609); public static readonly PrefabGUID Graveyard_Noctem_DraculaGarden_Urn03_Shatter = new PrefabGUID(-296668280); public static readonly PrefabGUID Graveyard_StoneBench01_Shattered = new PrefabGUID(1605468625); public static readonly PrefabGUID Graveyard_StoneBench01_Shattered_snow = new PrefabGUID(-1218680513); public static readonly PrefabGUID Graveyard_StoneUrn01_Shattered = new PrefabGUID(224551126); public static readonly PrefabGUID Graveyard_StoneUrn02_Shattered = new PrefabGUID(-1405332491); public static readonly PrefabGUID Graveyard_StoneUrn03_Shattered = new PrefabGUID(-1512172453); public static readonly PrefabGUID Graveyard_Tomb01_Shattered = new PrefabGUID(-726455656); public static readonly PrefabGUID Graveyard_Tomb02_Shattered = new PrefabGUID(2020696576); public static readonly PrefabGUID Graveyard_Tomb03_Shattered = new PrefabGUID(1657586735); public static readonly PrefabGUID Graveyard_Tomb04_Shattered = new PrefabGUID(-1295489739); public static readonly PrefabGUID Graveyard_Tomb05_Shattered = new PrefabGUID(-1631564949); public static readonly PrefabGUID Graveyard_Tomb06_Shattered = new PrefabGUID(230623755); public static readonly PrefabGUID Graveyard_Tomb07_Shattered = new PrefabGUID(-2077109383); public static readonly PrefabGUID Graveyard_Tomb08_Shattered = new PrefabGUID(-1109303889); public static readonly PrefabGUID Graveyard_TombBig01_Shattered = new PrefabGUID(-1732117368); public static readonly PrefabGUID Graveyard_TombBig02_Shattered = new PrefabGUID(531188033); public static readonly PrefabGUID Graveyard_TombBig03_Shattered = new PrefabGUID(-744534770); public static readonly PrefabGUID Graveyard_Vampire_FineIronFencePole01_Shattered = new PrefabGUID(-1185321264); public static readonly PrefabGUID Graveyard_Vampire_IronFencePole01_Shattered = new PrefabGUID(-555975213); public static readonly PrefabGUID GreenCarpetsBuildMenuGroup01 = new PrefabGUID(-1717736046); public static readonly PrefabGUID GreenCarpetsBuildMenuGroup02 = new PrefabGUID(-903940648); public static readonly PrefabGUID GreenWindowsBuildMenuGroup = new PrefabGUID(-555641794); public static readonly PrefabGUID GrimoireOfHealingBuff = new PrefabGUID(-1507374109); public static readonly PrefabGUID Halloween01WallpaperBuildMenuGroup = new PrefabGUID(-998766448); public static readonly PrefabGUID Halloween01WindowsBuildMenuGroup = new PrefabGUID(-1660281350); public static readonly PrefabGUID HangingLanternsBuildMenuGroup01 = new PrefabGUID(145245340); public static readonly PrefabGUID HangingLanternsBuildMenuGroup02_DLC_Strongblade = new PrefabGUID(104194691); public static readonly PrefabGUID HapticsBuildModeSettings = new PrefabGUID(-441676978); public static readonly PrefabGUID HapticsDamageSettings = new PrefabGUID(-1105417571); public static readonly PrefabGUID Harpy_Matriarch_Emote_OnAggro_Buff = new PrefabGUID(100397530); public static readonly PrefabGUID Harpy_Matriarch_Idle_Buff = new PrefabGUID(-479553028); public static readonly PrefabGUID HarpyActivityTimer = new PrefabGUID(1297559091); public static readonly PrefabGUID HealingOrbCount_Curve = new PrefabGUID(-1905577265); public static readonly PrefabGUID HideCharacterBuff = new PrefabGUID(-474283096); public static readonly PrefabGUID Highlord_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1545705819); public static readonly PrefabGUID HighLordLeapCurve = new PrefabGUID(-996899387); public static readonly PrefabGUID Hunter_Slide_Curve = new PrefabGUID(-1556003342); public static readonly PrefabGUID IceRanger_VBlood_Emote_OnAggro_Buff = new PrefabGUID(377384576); public static readonly PrefabGUID IdleInteractionBuffRegistry = new PrefabGUID(-1077964245); public static readonly PrefabGUID Illusion_Vampire_Buff_Phantasm = new PrefabGUID(470859825); public static readonly PrefabGUID Illusion_Vampire_Buff_Weaken = new PrefabGUID(1723455773); public static readonly PrefabGUID Illusion_Vampire_Haunted_ExpireArea_01 = new PrefabGUID(-1957135364); public static readonly PrefabGUID Illusion_Vampire_Projectile_Haunted = new PrefabGUID(1035678908); public static readonly PrefabGUID Illusion_Vampire_ProjectileSpawnerBuff_Haunted = new PrefabGUID(-1246686383); public static readonly PrefabGUID Illusion_Vampire_SpellMod_Shield_Buff = new PrefabGUID(1093914645); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile = new PrefabGUID(1187651307); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile_Curse = new PrefabGUID(1553637877); public static readonly PrefabGUID Illusion_Vampire_Wisp_Projectile_Mosquito = new PrefabGUID(-1325101036); public static readonly PrefabGUID IllusionSpellSchoolAsset = new PrefabGUID(-526263322); public static readonly PrefabGUID Imperious01WallpaperBuildMenuGroup = new PrefabGUID(-1325337620); public static readonly PrefabGUID ImprisonedBuff = new PrefabGUID(1603329680); public static readonly PrefabGUID ImprisonSuccessful_PlayerBuff = new PrefabGUID(-1939804277); public static readonly PrefabGUID InfiniteInvulnerabilityBuff = new PrefabGUID(454502690); public static readonly PrefabGUID InstrumentsBuildMenuGroup = new PrefabGUID(-1500149151); public static readonly PrefabGUID InventoryRoute_SyncBuff = new PrefabGUID(2128314821); public static readonly PrefabGUID InventoryRouteInstance_Both = new PrefabGUID(-1946518072); public static readonly PrefabGUID InventoryRouteInstance_Incoming = new PrefabGUID(1741593497); public static readonly PrefabGUID InventoryRouteInstance_Outgoing = new PrefabGUID(2051027792); public static readonly PrefabGUID InventoryRouteSingleton = new PrefabGUID(-2067847121); public static readonly PrefabGUID InventoryRouting_Art_Intersection = new PrefabGUID(1063230079); public static readonly PrefabGUID InventoryRouting_Art_OneWayConnection = new PrefabGUID(-1236109008); public static readonly PrefabGUID InventoryRouting_Art_TwoWayConnection = new PrefabGUID(-1292134806); public static readonly PrefabGUID InvulnerabilityBuff = new PrefabGUID(1811209060); public static readonly PrefabGUID IronNode01_Broken = new PrefabGUID(-29011550); public static readonly PrefabGUID IronNode01_Broken_Small = new PrefabGUID(-1500356636); public static readonly PrefabGUID IronNode02_Broken = new PrefabGUID(-227918782); public static readonly PrefabGUID IronNode02_Broken_Small = new PrefabGUID(2007011209); public static readonly PrefabGUID IronNode03_Broken = new PrefabGUID(424301146); public static readonly PrefabGUID IronNode03_Broken_Small = new PrefabGUID(1015530309); public static readonly PrefabGUID IronNode04_Broken = new PrefabGUID(-1043572632); public static readonly PrefabGUID IronNode04_Broken_Small = new PrefabGUID(933021589); public static readonly PrefabGUID IronNodeBig01_Broken = new PrefabGUID(1582495783); public static readonly PrefabGUID IronNodeMedium01_Broken = new PrefabGUID(-1226435012); public static readonly PrefabGUID Item_Armor_Chest_Base = new PrefabGUID(1328680870); public static readonly PrefabGUID Item_Armor_Gloves_Base = new PrefabGUID(-786493143); public static readonly PrefabGUID Item_Armor_Headgear_Base = new PrefabGUID(-1905547794); public static readonly PrefabGUID Item_Armor_Legs_Base = new PrefabGUID(269771183); public static readonly PrefabGUID Item_BloodEssence_T01 = new PrefabGUID(862477668); public static readonly PrefabGUID Item_BloodEssence_T02_Greater = new PrefabGUID(271594022); public static readonly PrefabGUID Item_BloodEssence_T03_Primal = new PrefabGUID(1566989408); public static readonly PrefabGUID Item_Boots_T00_StartingRags = new PrefabGUID(-2137364987); public static readonly PrefabGUID Item_Boots_T01_Bone = new PrefabGUID(711062517); public static readonly PrefabGUID Item_Boots_T02_BoneReinforced = new PrefabGUID(1241831522); public static readonly PrefabGUID Item_Boots_T03_Cloth = new PrefabGUID(-1354920908); public static readonly PrefabGUID Item_Boots_T04_Copper_Brute = new PrefabGUID(-1359494169); public static readonly PrefabGUID Item_Boots_T04_Copper_Rogue = new PrefabGUID(1101206623); public static readonly PrefabGUID Item_Boots_T04_Copper_Scholar = new PrefabGUID(1204352435); public static readonly PrefabGUID Item_Boots_T04_Copper_Warrior = new PrefabGUID(-15390086); public static readonly PrefabGUID Item_Boots_T05_Cotton = new PrefabGUID(-1837769884); public static readonly PrefabGUID Item_Boots_T06_Iron_Brute = new PrefabGUID(-1329744719); public static readonly PrefabGUID Item_Boots_T06_Iron_Rogue = new PrefabGUID(51576788); public static readonly PrefabGUID Item_Boots_T06_Iron_Scholar = new PrefabGUID(138060378); public static readonly PrefabGUID Item_Boots_T06_Iron_Warrior = new PrefabGUID(666433583); public static readonly PrefabGUID Item_Boots_T07_Silk = new PrefabGUID(560446510); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Brute = new PrefabGUID(-1023762087); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Rogue = new PrefabGUID(-1921018689); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Scholar = new PrefabGUID(1469185034); public static readonly PrefabGUID Item_Boots_T08_DarkSilver_Warrior = new PrefabGUID(1395895315); public static readonly PrefabGUID Item_Boots_T09_Dracula = new PrefabGUID(1400688919); public static readonly PrefabGUID Item_Boots_T09_Dracula_Brute = new PrefabGUID(1646489863); public static readonly PrefabGUID Item_Boots_T09_Dracula_Rogue = new PrefabGUID(1855323424); public static readonly PrefabGUID Item_Boots_T09_Dracula_Scholar = new PrefabGUID(1531721602); public static readonly PrefabGUID Item_Boots_T09_Dracula_Warrior = new PrefabGUID(-382349289); public static readonly PrefabGUID Item_Boots_T0X_BlackfangSultan = new PrefabGUID(540608060); public static readonly PrefabGUID Item_Boots_T0X_PMK01 = new PrefabGUID(-1214309698); public static readonly PrefabGUID Item_Boots_T0X_PMK03 = new PrefabGUID(-14368032); public static readonly PrefabGUID Item_Boots_T0X_VampireKnight = new PrefabGUID(830032282); public static readonly PrefabGUID Item_Building_DuelFlag = new PrefabGUID(-262414476); public static readonly PrefabGUID Item_Building_EMP_T01 = new PrefabGUID(-1447213995); public static readonly PrefabGUID Item_Building_Explosives_T01 = new PrefabGUID(1779299585); public static readonly PrefabGUID Item_Building_Explosives_T02 = new PrefabGUID(-1021407417); public static readonly PrefabGUID Item_Building_Plants_BleedingHeart_Seed = new PrefabGUID(-1463158090); public static readonly PrefabGUID Item_Building_Plants_BloodRose_Seed = new PrefabGUID(531984050); public static readonly PrefabGUID Item_Building_Plants_CorruptedFlower_Seed = new PrefabGUID(-410008482); public static readonly PrefabGUID Item_Building_Plants_Cotton_Seed = new PrefabGUID(-1289010178); public static readonly PrefabGUID Item_Building_Plants_FireBlossom_Seed = new PrefabGUID(675013523); public static readonly PrefabGUID Item_Building_Plants_GhostShroom_Seed = new PrefabGUID(1762839393); public static readonly PrefabGUID Item_Building_Plants_Grapes_Seed = new PrefabGUID(-1681104075); public static readonly PrefabGUID Item_Building_Plants_HellsClarion_Seed = new PrefabGUID(-1987586694); public static readonly PrefabGUID Item_Building_Plants_MourningLily_Seed = new PrefabGUID(-1386314668); public static readonly PrefabGUID Item_Building_Plants_PlagueBrier_Seed = new PrefabGUID(-1495639636); public static readonly PrefabGUID Item_Building_Plants_SnowFlower_Seed = new PrefabGUID(1985892973); public static readonly PrefabGUID Item_Building_Plants_Sunflower_Seed = new PrefabGUID(-473351958); public static readonly PrefabGUID Item_Building_Plants_Thistle_Seed = new PrefabGUID(-1370210913); public static readonly PrefabGUID Item_Building_Plants_TrippyShroom_Seed = new PrefabGUID(1915695899); public static readonly PrefabGUID Item_Building_Relic_Behemoth = new PrefabGUID(1247086852); public static readonly PrefabGUID Item_Building_Relic_Manticore = new PrefabGUID(-222860772); public static readonly PrefabGUID Item_Building_Relic_Monster = new PrefabGUID(-1619308732); public static readonly PrefabGUID Item_Building_Relic_Paladin = new PrefabGUID(2019195024); public static readonly PrefabGUID Item_Building_Sapling_AppleCursed_Seed = new PrefabGUID(-1897495615); public static readonly PrefabGUID Item_Building_Sapling_AppleTree_Seed = new PrefabGUID(1226559814); public static readonly PrefabGUID Item_Building_Sapling_Aspen_Seed = new PrefabGUID(1996361886); public static readonly PrefabGUID Item_Building_Sapling_AspenAutum_Seed = new PrefabGUID(-2035190786); public static readonly PrefabGUID Item_Building_Sapling_Birch_Seed = new PrefabGUID(1552240197); public static readonly PrefabGUID Item_Building_Sapling_BirchAutum_Seed = new PrefabGUID(2000981302); public static readonly PrefabGUID Item_Building_Sapling_Cherry_Blossom = new PrefabGUID(1818351545); public static readonly PrefabGUID Item_Building_Sapling_CherryWhite_Blossom = new PrefabGUID(1738392650); public static readonly PrefabGUID Item_Building_Sapling_Cypress_Seed = new PrefabGUID(-1043479168); public static readonly PrefabGUID Item_Building_Sapling_GloomTree_Seed = new PrefabGUID(-1800289670); public static readonly PrefabGUID Item_Building_Sapling_Oak_Acorn = new PrefabGUID(-626353315); public static readonly PrefabGUID Item_Building_Sapling_Spruce_Cone = new PrefabGUID(1227483037); public static readonly PrefabGUID Item_Building_Sapling_WeepingWillow = new PrefabGUID(858598154); public static readonly PrefabGUID Item_Building_Siege_Golem_T02 = new PrefabGUID(-1461326411); public static readonly PrefabGUID Item_Chest_T00_StartingRags = new PrefabGUID(-1723445833); public static readonly PrefabGUID Item_Chest_T01_Bone = new PrefabGUID(329301090); public static readonly PrefabGUID Item_Chest_T02_BoneReinforced = new PrefabGUID(-958936382); public static readonly PrefabGUID Item_Chest_T03_Cloth = new PrefabGUID(-957963240); public static readonly PrefabGUID Item_Chest_T04_Copper_Brute = new PrefabGUID(-112921782); public static readonly PrefabGUID Item_Chest_T04_Copper_Rogue = new PrefabGUID(763326246); public static readonly PrefabGUID Item_Chest_T04_Copper_Scholar = new PrefabGUID(-2100321922); public static readonly PrefabGUID Item_Chest_T04_Copper_Warrior = new PrefabGUID(1809631067); public static readonly PrefabGUID Item_Chest_T05_Cotton = new PrefabGUID(-604941435); public static readonly PrefabGUID Item_Chest_T06_Iron_Brute = new PrefabGUID(-1641042717); public static readonly PrefabGUID Item_Chest_T06_Iron_Rogue = new PrefabGUID(-69916288); public static readonly PrefabGUID Item_Chest_T06_Iron_Scholar = new PrefabGUID(-2127687996); public static readonly PrefabGUID Item_Chest_T06_Iron_Warrior = new PrefabGUID(-2102875089); public static readonly PrefabGUID Item_Chest_T07_Silk = new PrefabGUID(-930514044); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Brute = new PrefabGUID(-1279475298); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Rogue = new PrefabGUID(1871735757); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Scholar = new PrefabGUID(-919709436); public static readonly PrefabGUID Item_Chest_T08_DarkSilver_Warrior = new PrefabGUID(750788905); public static readonly PrefabGUID Item_Chest_T09_Dracula = new PrefabGUID(1055898174); public static readonly PrefabGUID Item_Chest_T09_Dracula_Brute = new PrefabGUID(1033753207); public static readonly PrefabGUID Item_Chest_T09_Dracula_Rogue = new PrefabGUID(933057100); public static readonly PrefabGUID Item_Chest_T09_Dracula_Scholar = new PrefabGUID(114259912); public static readonly PrefabGUID Item_Chest_T09_Dracula_Warrior = new PrefabGUID(1392314162); public static readonly PrefabGUID Item_Chest_T0X_BlackfangSultan = new PrefabGUID(-247737453); public static readonly PrefabGUID Item_Chest_T0X_Cosmetic_Dress01 = new PrefabGUID(-511360389); public static readonly PrefabGUID Item_Chest_T0X_Cosmetic_Suit01 = new PrefabGUID(538326235); public static readonly PrefabGUID Item_Chest_T0X_PMK01 = new PrefabGUID(1712262077); public static readonly PrefabGUID Item_Chest_T0X_PMK02 = new PrefabGUID(896678280); public static readonly PrefabGUID Item_Chest_T0X_PMK03 = new PrefabGUID(-1349059251); public static readonly PrefabGUID Item_Chest_T0X_TransmogTest = new PrefabGUID(-625033436); public static readonly PrefabGUID Item_Chest_T0X_VampireKnight = new PrefabGUID(1953885108); public static readonly PrefabGUID Item_Cloak_Main_ShroudOfTheForest = new PrefabGUID(1063517722); public static readonly PrefabGUID Item_Cloak_Main_T01_Travelers = new PrefabGUID(-1819786494); public static readonly PrefabGUID Item_Cloak_Main_T02_Hunter = new PrefabGUID(786585343); public static readonly PrefabGUID Item_Cloak_Main_T03_Phantom = new PrefabGUID(-227965303); public static readonly PrefabGUID Item_Cloak_T01_ChaosArcher = new PrefabGUID(-168044197); public static readonly PrefabGUID Item_Cloak_T01_Dracula = new PrefabGUID(1284160983); public static readonly PrefabGUID Item_Cloak_T01_FrostArrow = new PrefabGUID(-24337506); public static readonly PrefabGUID Item_Cloak_T01_Jade = new PrefabGUID(1261174372); public static readonly PrefabGUID Item_Cloak_T01_PlagueMaster = new PrefabGUID(-1514540144); public static readonly PrefabGUID Item_Cloak_T01_Razer = new PrefabGUID(-766642494); public static readonly PrefabGUID Item_Cloak_T01_UndeadMage = new PrefabGUID(-305440546); public static readonly PrefabGUID Item_Cloak_T01_VampireHunter = new PrefabGUID(1335546377); public static readonly PrefabGUID Item_Cloak_T01_ZealousCultist = new PrefabGUID(150621304); public static readonly PrefabGUID Item_Cloak_T02_Cardinal = new PrefabGUID(-1768698241); public static readonly PrefabGUID Item_Cloak_T02_Dracula = new PrefabGUID(-1067360120); public static readonly PrefabGUID Item_Cloak_T02_HarpyMatriarch = new PrefabGUID(1677983904); public static readonly PrefabGUID Item_Cloak_T02_HolyPaladin = new PrefabGUID(-2091288477); public static readonly PrefabGUID Item_Cloak_T02_MilitiaMonk = new PrefabGUID(2147390246); public static readonly PrefabGUID Item_Cloak_T02_PatchedCloak = new PrefabGUID(1275572025); public static readonly PrefabGUID Item_Cloak_T02_PlagueMaster = new PrefabGUID(-1324340002); public static readonly PrefabGUID Item_Cloak_T02_Poloma = new PrefabGUID(-589858836); public static readonly PrefabGUID Item_Cloak_T02_Razer = new PrefabGUID(1410262258); public static readonly PrefabGUID Item_Cloak_T02_Tailor = new PrefabGUID(-2081646636); public static readonly PrefabGUID Item_Cloak_T02_TornRags = new PrefabGUID(707710831); public static readonly PrefabGUID Item_Cloak_T02_WildlingBlue = new PrefabGUID(239338934); public static readonly PrefabGUID Item_Cloak_T02_WildlingRed = new PrefabGUID(-1023114892); public static readonly PrefabGUID Item_Cloak_T03_CrimsonWard = new PrefabGUID(-1755568324); public static readonly PrefabGUID Item_Cloak_T03_Dracula = new PrefabGUID(-1814109557); public static readonly PrefabGUID Item_Cloak_T03_Jester = new PrefabGUID(379281083); public static readonly PrefabGUID Item_Cloak_T03_PlagueMaster = new PrefabGUID(821609569); public static readonly PrefabGUID Item_Cloak_T03_Razer = new PrefabGUID(136740861); public static readonly PrefabGUID Item_Cloak_T03_Royal = new PrefabGUID(584164197); public static readonly PrefabGUID Item_Cloak_T03_UnholyShroud = new PrefabGUID(1863126275); public static readonly PrefabGUID Item_Cloak_T0X_PMK01 = new PrefabGUID(-1177172544); public static readonly PrefabGUID Item_Consumable_BarrelDisguise01 = new PrefabGUID(-82465606); public static readonly PrefabGUID Item_Consumable_Bottle_Water_T02 = new PrefabGUID(-1382451936); public static readonly PrefabGUID Item_Consumable_Canister_ToxicSludge = new PrefabGUID(-1823614190); public static readonly PrefabGUID Item_Consumable_DuskCaller = new PrefabGUID(1128262258); public static readonly PrefabGUID Item_Consumable_Eat_Rat = new PrefabGUID(-869864524); public static readonly PrefabGUID Item_Consumable_EmptyBottle = new PrefabGUID(-437611596); public static readonly PrefabGUID Item_Consumable_EmptyWaterskin = new PrefabGUID(-810738866); public static readonly PrefabGUID Item_Consumable_FireResistancePotion_T01 = new PrefabGUID(970650569); public static readonly PrefabGUID Item_Consumable_GarlicResistancePotion_T01 = new PrefabGUID(423790753); public static readonly PrefabGUID Item_Consumable_GarlicResistancePotion_T02 = new PrefabGUID(-2139183850); public static readonly PrefabGUID Item_Consumable_HealingPotion_T01 = new PrefabGUID(800879747); public static readonly PrefabGUID Item_Consumable_HealingPotion_T02 = new PrefabGUID(429052660); public static readonly PrefabGUID Item_Consumable_Heart_T02_Tainted = new PrefabGUID(947998050); public static readonly PrefabGUID Item_Consumable_Heart_T03_Unsullied = new PrefabGUID(-204051056); public static readonly PrefabGUID Item_Consumable_Heart_T04_Exquisite = new PrefabGUID(-1965958712); public static readonly PrefabGUID Item_Consumable_Heart_T05_Pristine = new PrefabGUID(-1413694594); public static readonly PrefabGUID Item_Consumable_HolyResistancePotion_T01 = new PrefabGUID(890484447); public static readonly PrefabGUID Item_Consumable_HolyResistancePotion_T02 = new PrefabGUID(639992282); public static readonly PrefabGUID Item_Consumable_IrradiantGruel = new PrefabGUID(1851490036); public static readonly PrefabGUID Item_Consumable_PhysicalPowerPotion_T01 = new PrefabGUID(-269326085); public static readonly PrefabGUID Item_Consumable_PhysicalPowerPotion_T02 = new PrefabGUID(-1568756102); public static readonly PrefabGUID Item_Consumable_PrisonPotion = new PrefabGUID(828432508); public static readonly PrefabGUID Item_Consumable_PrisonPotion_Bloodwine = new PrefabGUID(1223264867); public static readonly PrefabGUID Item_Consumable_PrisonPotion_Mixed = new PrefabGUID(2063723255); public static readonly PrefabGUID Item_Consumable_Salve_Vermin = new PrefabGUID(-1885959251); public static readonly PrefabGUID Item_Consumable_SilverResistancePotion_T01 = new PrefabGUID(272647158); public static readonly PrefabGUID Item_Consumable_SilverResistancePotion_T02 = new PrefabGUID(2107622409); public static readonly PrefabGUID Item_Consumable_SpellPowerPotion_T01 = new PrefabGUID(248289327); public static readonly PrefabGUID Item_Consumable_SpellPowerPotion_T02 = new PrefabGUID(1510182325); public static readonly PrefabGUID Item_Consumable_SunResistancePotion_T01 = new PrefabGUID(-38051433); public static readonly PrefabGUID Item_Consumable_TrippyShroom = new PrefabGUID(-1566269773); public static readonly PrefabGUID Item_Consumable_Waterskin_Water_T01 = new PrefabGUID(-1322000172); public static readonly PrefabGUID Item_Consumable_WranglersPotion_T01 = new PrefabGUID(541321301); public static readonly PrefabGUID Item_Dummy_Banshee = new PrefabGUID(-1513937321); public static readonly PrefabGUID Item_Dummy_Ghoul = new PrefabGUID(2042311455); public static readonly PrefabGUID Item_Dummy_GiantRat = new PrefabGUID(213967097); public static readonly PrefabGUID Item_Dummy_Mosquito = new PrefabGUID(961990006); public static readonly PrefabGUID Item_Dummy_Mutant = new PrefabGUID(-338333923); public static readonly PrefabGUID Item_Dummy_Necromancer = new PrefabGUID(1252366498); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_BloodSoul = new PrefabGUID(1395316286); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Knowledge = new PrefabGUID(215017089); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Minerals = new PrefabGUID(-2141642225); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Seeds = new PrefabGUID(-112151309); public static readonly PrefabGUID Item_Dummy_NetherDemon_T01_Weapons = new PrefabGUID(886819019); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Alchemy = new PrefabGUID(34841965); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_BloodSoul = new PrefabGUID(-107137497); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Knowledge = new PrefabGUID(1452779821); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Minerals = new PrefabGUID(-364321170); public static readonly PrefabGUID Item_Dummy_NetherDemon_T02_Weapons = new PrefabGUID(-1199531707); public static readonly PrefabGUID Item_Dummy_PutridRat = new PrefabGUID(927039475); public static readonly PrefabGUID Item_Dummy_Rat = new PrefabGUID(2029158532); public static readonly PrefabGUID Item_Dummy_Silkworm = new PrefabGUID(930747930); public static readonly PrefabGUID Item_Dummy_Skeleton = new PrefabGUID(-836889492); public static readonly PrefabGUID Item_Dummy_Spiderling = new PrefabGUID(2015299972); public static readonly PrefabGUID Item_Elixir_Bat_T01 = new PrefabGUID(-2102469163); public static readonly PrefabGUID Item_Elixir_Beast_T01 = new PrefabGUID(98952351); public static readonly PrefabGUID Item_Elixir_Blasphemous_T01 = new PrefabGUID(-978856806); public static readonly PrefabGUID Item_Elixir_Crow_T01 = new PrefabGUID(904226111); public static readonly PrefabGUID Item_Elixir_Prowler_T01 = new PrefabGUID(1186268870); public static readonly PrefabGUID Item_Elixir_Raven_T01 = new PrefabGUID(-1561468105); public static readonly PrefabGUID Item_Elixir_Twisted_T01 = new PrefabGUID(1646351394); public static readonly PrefabGUID Item_Elixir_Werewolf_T01 = new PrefabGUID(948466634); public static readonly PrefabGUID Item_EquipBuff_MagicSource_BloodKey_T01 = new PrefabGUID(-502657668); public static readonly PrefabGUID Item_EquipBuff_MagicSource_General = new PrefabGUID(1713274869); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Dracula = new PrefabGUID(-504120321); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Manticore = new PrefabGUID(1002452390); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Morgana = new PrefabGUID(-251408621); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_Solarus = new PrefabGUID(329820611); public static readonly PrefabGUID Item_EquipBuff_MagicSource_Soulshard_TheMonster = new PrefabGUID(403228886); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Blood = new PrefabGUID(-1913267809); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Chaos = new PrefabGUID(70790760); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Frost = new PrefabGUID(-1966309638); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Illusion = new PrefabGUID(758351209); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Storm = new PrefabGUID(-1294665102); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T06_Unholy = new PrefabGUID(-1970668481); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Blood = new PrefabGUID(-331907553); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Chaos = new PrefabGUID(-298146452); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Frost = new PrefabGUID(537568578); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Illusion = new PrefabGUID(1623411847); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Storm = new PrefabGUID(1466670454); public static readonly PrefabGUID Item_EquipBuff_MagicSource_T08_Unholy = new PrefabGUID(-1635653575); public static readonly PrefabGUID Item_EquipBuff_Shared_General = new PrefabGUID(343359674); public static readonly PrefabGUID Item_Gloves_T00_StartingRags = new PrefabGUID(1216450741); public static readonly PrefabGUID Item_Gloves_T01_Bone = new PrefabGUID(-2029933415); public static readonly PrefabGUID Item_Gloves_T02_BoneReinforced = new PrefabGUID(1746537832); public static readonly PrefabGUID Item_Gloves_T03_Cloth = new PrefabGUID(-1183157751); public static readonly PrefabGUID Item_Gloves_T04_Copper_Brute = new PrefabGUID(-258808647); public static readonly PrefabGUID Item_Gloves_T04_Copper_Rogue = new PrefabGUID(181112381); public static readonly PrefabGUID Item_Gloves_T04_Copper_Scholar = new PrefabGUID(-399521517); public static readonly PrefabGUID Item_Gloves_T04_Copper_Warrior = new PrefabGUID(-752418019); public static readonly PrefabGUID Item_Gloves_T05_Cotton = new PrefabGUID(-406808302); public static readonly PrefabGUID Item_Gloves_T06_Iron_Brute = new PrefabGUID(-327754127); public static readonly PrefabGUID Item_Gloves_T06_Iron_Rogue = new PrefabGUID(322804535); public static readonly PrefabGUID Item_Gloves_T06_Iron_Scholar = new PrefabGUID(1247389106); public static readonly PrefabGUID Item_Gloves_T06_Iron_Warrior = new PrefabGUID(1067300584); public static readonly PrefabGUID Item_Gloves_T07_Silk = new PrefabGUID(2055058719); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Brute = new PrefabGUID(998240678); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Rogue = new PrefabGUID(-1752332712); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Scholar = new PrefabGUID(1508214166); public static readonly PrefabGUID Item_Gloves_T08_DarkSilver_Warrior = new PrefabGUID(-1296203752); public static readonly PrefabGUID Item_Gloves_T09_Dracula = new PrefabGUID(-204401621); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Brute = new PrefabGUID(1039083725); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Rogue = new PrefabGUID(-1826382550); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Scholar = new PrefabGUID(-1899539896); public static readonly PrefabGUID Item_Gloves_T09_Dracula_Warrior = new PrefabGUID(1982551454); public static readonly PrefabGUID Item_Gloves_T0X_BlackfangSultan = new PrefabGUID(-749828559); public static readonly PrefabGUID Item_Gloves_T0X_PMK01 = new PrefabGUID(-1522497513); public static readonly PrefabGUID Item_Gloves_T0X_VampireKnight = new PrefabGUID(-745793193); public static readonly PrefabGUID Item_Headgear_ArcMageCrown = new PrefabGUID(-2128818978); public static readonly PrefabGUID Item_Headgear_AshfolkCrown = new PrefabGUID(-1988816037); public static readonly PrefabGUID Item_Headgear_AshfolkHelmet = new PrefabGUID(-1607893829); public static readonly PrefabGUID Item_Headgear_BearTrophy = new PrefabGUID(714007172); public static readonly PrefabGUID Item_Headgear_BlackfangSultan = new PrefabGUID(1729289046); public static readonly PrefabGUID Item_Headgear_BoneMask = new PrefabGUID(-2111388989); public static readonly PrefabGUID Item_Headgear_Bonnet = new PrefabGUID(-152150271); public static readonly PrefabGUID Item_Headgear_DeerTrophy = new PrefabGUID(1707139699); public static readonly PrefabGUID Item_Headgear_DraculaHelmet = new PrefabGUID(238268650); public static readonly PrefabGUID Item_Headgear_FootmansHelmet = new PrefabGUID(-353076115); public static readonly PrefabGUID Item_Headgear_GeneralHelmet = new PrefabGUID(409678749); public static readonly PrefabGUID Item_Headgear_KnightsHelmet = new PrefabGUID(-1818243335); public static readonly PrefabGUID Item_Headgear_MaidCap = new PrefabGUID(-1721887666); public static readonly PrefabGUID Item_Headgear_MaidScarf = new PrefabGUID(-1460281233); public static readonly PrefabGUID Item_Headgear_MilitiaHelmet = new PrefabGUID(417648894); public static readonly PrefabGUID Item_Headgear_NecromancerMitre = new PrefabGUID(607559019); public static readonly PrefabGUID Item_Headgear_NightlurkerTrophy = new PrefabGUID(-2073081569); public static readonly PrefabGUID Item_Headgear_PaladinsHelmet = new PrefabGUID(1780339680); public static readonly PrefabGUID Item_Headgear_PilgrimsHat = new PrefabGUID(-1071187362); public static readonly PrefabGUID Item_Headgear_Plaguemaster = new PrefabGUID(-262204844); public static readonly PrefabGUID Item_Headgear_PopeMitre = new PrefabGUID(-548847761); public static readonly PrefabGUID Item_Headgear_RazerHood = new PrefabGUID(-1797796642); public static readonly PrefabGUID Item_Headgear_RustedHelmet = new PrefabGUID(1364460757); public static readonly PrefabGUID Item_Headgear_RustedMilitiaHelmet = new PrefabGUID(764480170); public static readonly PrefabGUID Item_Headgear_Scarecrow = new PrefabGUID(403967307); public static readonly PrefabGUID Item_Headgear_SlaveHelmet = new PrefabGUID(1587354182); public static readonly PrefabGUID Item_Headgear_StartingRags = new PrefabGUID(-2125696865); public static readonly PrefabGUID Item_Headgear_Strawhat = new PrefabGUID(1375804543); public static readonly PrefabGUID Item_Headgear_TopHat = new PrefabGUID(690259405); public static readonly PrefabGUID Item_Headgear_VampireHunterHat = new PrefabGUID(974739126); public static readonly PrefabGUID Item_Headgear_VampireHunterHat02 = new PrefabGUID(-1785271534); public static readonly PrefabGUID Item_Headgear_WerewolfTrophy = new PrefabGUID(-2020831626); public static readonly PrefabGUID Item_Headgear_WolfTrophy01 = new PrefabGUID(-1169471531); public static readonly PrefabGUID Item_Ingredient_BatHide = new PrefabGUID(1262845777); public static readonly PrefabGUID Item_Ingredient_BatLeather = new PrefabGUID(-1886460367); public static readonly PrefabGUID Item_Ingredient_Battery = new PrefabGUID(1270271716); public static readonly PrefabGUID Item_Ingredient_BatteryCharged = new PrefabGUID(-412448857); public static readonly PrefabGUID Item_Ingredient_BloodCrystal = new PrefabGUID(-1913156733); public static readonly PrefabGUID Item_Ingredient_Bone = new PrefabGUID(1821405450); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Brute = new PrefabGUID(362386181); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Rogue = new PrefabGUID(-383004511); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Scholar = new PrefabGUID(-1601304786); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T04_Warrior = new PrefabGUID(-668460646); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Brute = new PrefabGUID(1529216919); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Rogue = new PrefabGUID(762038154); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Scholar = new PrefabGUID(-1147510581); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T06_Warrior = new PrefabGUID(-1788912715); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Brute = new PrefabGUID(-534142437); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Rogue = new PrefabGUID(-706178162); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Scholar = new PrefabGUID(-1958602686); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Boots_T08_Warrior = new PrefabGUID(1192629421); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Brute = new PrefabGUID(1850873910); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Rogue = new PrefabGUID(-849449432); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Scholar = new PrefabGUID(2025615662); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T04_Warrior = new PrefabGUID(1753801067); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Brute = new PrefabGUID(626083889); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Rogue = new PrefabGUID(-1595316636); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Scholar = new PrefabGUID(-2066262923); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T06_Warrior = new PrefabGUID(1561721357); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Brute = new PrefabGUID(-1261118965); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Rogue = new PrefabGUID(502133568); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Scholar = new PrefabGUID(-1840162782); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Chest_T08_Warrior = new PrefabGUID(-1161279574); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Brute = new PrefabGUID(-764630320); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Rogue = new PrefabGUID(1014370193); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Scholar = new PrefabGUID(1840869087); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T04_Warrior = new PrefabGUID(-1242910338); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Brute = new PrefabGUID(-1344118299); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Rogue = new PrefabGUID(735880687); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Scholar = new PrefabGUID(-46006079); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T06_Warrior = new PrefabGUID(-777417289); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Brute = new PrefabGUID(2020764183); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Rogue = new PrefabGUID(1485993952); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Scholar = new PrefabGUID(-1512099553); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Gloves_T08_Warrior = new PrefabGUID(-196284663); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Brute = new PrefabGUID(1172935197); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Rogue = new PrefabGUID(1364444719); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Scholar = new PrefabGUID(-117205517); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T04_Warrior = new PrefabGUID(347441899); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Brute = new PrefabGUID(1328323768); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Rogue = new PrefabGUID(1912738568); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Scholar = new PrefabGUID(-595456862); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T06_Warrior = new PrefabGUID(-1718233147); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Brute = new PrefabGUID(-996201260); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Rogue = new PrefabGUID(-1260890289); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Scholar = new PrefabGUID(-2049321404); public static readonly PrefabGUID Item_Ingredient_Book_Armor_Legs_T08_Warrior = new PrefabGUID(-2104396934); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_BloodRoseBrew_T01 = new PrefabGUID(-895015382); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_FireResistance_T02 = new PrefabGUID(2114304481); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_GarlicResistance_T02 = new PrefabGUID(791584738); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_PhysicalPower_T01 = new PrefabGUID(1556544548); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_PhysicalPower_T03 = new PrefabGUID(-2013887729); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SilverBrew_T01 = new PrefabGUID(-1269116849); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SpellPower_T01 = new PrefabGUID(492964298); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SpellPower_T03 = new PrefabGUID(-1563178470); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_SunResistance_T01 = new PrefabGUID(756555009); public static readonly PrefabGUID Item_Ingredient_Book_Consumable_Wranglers_T02 = new PrefabGUID(-1242947472); public static readonly PrefabGUID Item_Ingredient_Book_Floor_AlchemyLab = new PrefabGUID(978074988); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Forge = new PrefabGUID(-1233700610); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Jewelcrafting = new PrefabGUID(626118128); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Library = new PrefabGUID(-946177070); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Prison = new PrefabGUID(1718353003); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Tailor = new PrefabGUID(-137886670); public static readonly PrefabGUID Item_Ingredient_Book_Floor_Workshop = new PrefabGUID(1906638073); public static readonly PrefabGUID Item_Ingredient_Book_Interior_Planters = new PrefabGUID(1336896559); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_Duskwatcher = new PrefabGUID(-293419350); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_EmberChain = new PrefabGUID(-1542642288); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_FrozenEye = new PrefabGUID(-1913800363); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_MistSignet = new PrefabGUID(1310923765); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_RubyRing = new PrefabGUID(350769859); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T04_SorcererRing = new PrefabGUID(1458090717); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_AmethystPendant = new PrefabGUID(587164554); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_EmeraldNecklace = new PrefabGUID(-224716062); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_MistStoneNecklace = new PrefabGUID(759775881); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_RubyPendant = new PrefabGUID(-1658630722); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_SapphirePendant = new PrefabGUID(1939500376); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T06_TopazAmulet = new PrefabGUID(1474515294); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Beast = new PrefabGUID(1702347530); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_CrimsonSky = new PrefabGUID(-1063966176); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Delusion = new PrefabGUID(-1803818846); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_FrozenCrypt = new PrefabGUID(-749171183); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_Madness = new PrefabGUID(-1424521314); public static readonly PrefabGUID Item_Ingredient_Book_MagicSource_T08_WickedProphet = new PrefabGUID(860383634); public static readonly PrefabGUID Item_Ingredient_Book_Structure_ArtisanTable = new PrefabGUID(-1221174479); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Braziers_T02 = new PrefabGUID(742900616); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Braziers_T03 = new PrefabGUID(835610037); public static readonly PrefabGUID Item_Ingredient_Book_Structure_CandleStands_T02 = new PrefabGUID(1341367867); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T01 = new PrefabGUID(1383064284); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T02_Dux = new PrefabGUID(-96701352); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Carpets_T03_Distinguished = new PrefabGUID(-1696677607); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Chairs_Desk_T02 = new PrefabGUID(389446538); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Chairs_Red_T02 = new PrefabGUID(-1929817673); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Curtains_T03_Royal = new PrefabGUID(285318201); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Desks_T02 = new PrefabGUID(-840839363); public static readonly PrefabGUID Item_Ingredient_Book_Structure_DressingTablesFoldingWalls_T03 = new PrefabGUID(-1676748911); public static readonly PrefabGUID Item_Ingredient_Book_Structure_EnchantedTorches = new PrefabGUID(879103343); public static readonly PrefabGUID Item_Ingredient_Book_Structure_FenceFountains_T02 = new PrefabGUID(679755989); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Fireplaces_T02 = new PrefabGUID(-946597284); public static readonly PrefabGUID Item_Ingredient_Book_Structure_FlyingCandles_T03 = new PrefabGUID(1594270493); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Fountain_T03 = new PrefabGUID(-1171060793); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenFurniture_T02 = new PrefabGUID(-1060453249); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenLampPosts_T03 = new PrefabGUID(776216743); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T01 = new PrefabGUID(1307976528); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T02 = new PrefabGUID(-1383718976); public static readonly PrefabGUID Item_Ingredient_Book_Structure_GardenPlanters_T03 = new PrefabGUID(-1645899934); public static readonly PrefabGUID Item_Ingredient_Book_Structure_HangingLanterns_T02 = new PrefabGUID(-452767162); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Paintings_T01 = new PrefabGUID(38319072); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Path_Cobblestone_T02 = new PrefabGUID(2094602185); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Path_Dirt_T01 = new PrefabGUID(-94650344); public static readonly PrefabGUID Item_Ingredient_Book_Structure_PillarBanners_T02 = new PrefabGUID(-1321865795); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Sofas_T03 = new PrefabGUID(2053574378); public static readonly PrefabGUID Item_Ingredient_Book_Structure_StoneOrnaments_T01 = new PrefabGUID(-449615886); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Alchemy_T02 = new PrefabGUID(11798247); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Alchemy_T03 = new PrefabGUID(-67943596); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Armor_T02 = new PrefabGUID(207381334); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_BloodCase_T02 = new PrefabGUID(-130369231); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_BloodCase_T03 = new PrefabGUID(489001758); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Coins_T02 = new PrefabGUID(-832387204); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Consumable_T02 = new PrefabGUID(-1624005683); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Consumable_T03 = new PrefabGUID(824237901); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Fishing_T02 = new PrefabGUID(-205820651); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Gems_T01 = new PrefabGUID(1455590675); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Gems_T02 = new PrefabGUID(1150376281); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Herbs_T01 = new PrefabGUID(-853559619); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Herbs_T02 = new PrefabGUID(473545520); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Jewels_T02 = new PrefabGUID(-1870194782); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Knowledge_T02 = new PrefabGUID(-1394295910); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Knowledge_T03 = new PrefabGUID(1823379076); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Minerals_T01 = new PrefabGUID(-513865346); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Minerals_T02 = new PrefabGUID(-1061940339); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_Equipment_T02 = new PrefabGUID(1249076837); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_T01 = new PrefabGUID(686122001); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Pack_T02 = new PrefabGUID(1519475093); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T01 = new PrefabGUID(-651642571); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T02 = new PrefabGUID(-999518496); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_T03 = new PrefabGUID(1691702273); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Tailoring_T02 = new PrefabGUID(-1304625582); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Tailoring_T03 = new PrefabGUID(-63123159); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Weapons_T02 = new PrefabGUID(-1564741377); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Woodworking_T01 = new PrefabGUID(1040245278); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Storage_Woodworking_T02 = new PrefabGUID(206151993); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Tables_T02 = new PrefabGUID(-1236809045); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Vases_T01 = new PrefabGUID(1428883363); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Bricks_T01 = new PrefabGUID(-1957642407); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Classical_T03 = new PrefabGUID(1884115881); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Cordial_T02 = new PrefabGUID(-581757157); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Prison_T02 = new PrefabGUID(-2086890414); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_Stone_T01 = new PrefabGUID(-2017255390); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Wallpaper_WoodPanel_T01 = new PrefabGUID(-106224889); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Well_T01 = new PrefabGUID(-1205373095); public static readonly PrefabGUID Item_Ingredient_Book_Structure_Windows_T01 = new PrefabGUID(1905539368); public static readonly PrefabGUID Item_Ingredient_Book_Structure_WorkshopDecoration_T02 = new PrefabGUID(1413772406); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T04 = new PrefabGUID(660670410); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T06 = new PrefabGUID(-1596352033); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Axe_T08 = new PrefabGUID(-1519267007); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Claws_T06 = new PrefabGUID(574313564); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Claws_T08 = new PrefabGUID(-213056154); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T04 = new PrefabGUID(-192381912); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T06 = new PrefabGUID(937375187); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Crossbow_T08 = new PrefabGUID(1856338018); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Daggers_T06 = new PrefabGUID(1253216070); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Daggers_T08 = new PrefabGUID(1271236919); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_GreatSword_T06 = new PrefabGUID(1126901893); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_GreatSword_T08 = new PrefabGUID(730869315); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T04 = new PrefabGUID(460843266); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T06 = new PrefabGUID(-1793793429); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Longbow_T08 = new PrefabGUID(722498174); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T04 = new PrefabGUID(-1003381140); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T06 = new PrefabGUID(1526542305); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Mace_T08 = new PrefabGUID(-567468235); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Pistols_T06 = new PrefabGUID(1370998844); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Pistols_T08 = new PrefabGUID(-349470582); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Reaper_T06 = new PrefabGUID(-977419819); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Reaper_T08 = new PrefabGUID(1350548439); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Slashers_T06 = new PrefabGUID(1942009728); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Slashers_T08 = new PrefabGUID(615301463); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T04 = new PrefabGUID(-1690985210); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T06 = new PrefabGUID(-1783670291); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Spear_T08 = new PrefabGUID(-1396190808); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T04 = new PrefabGUID(-1455124124); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T06 = new PrefabGUID(1427084419); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Sword_T08 = new PrefabGUID(1075465533); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_TwinBlades_T06 = new PrefabGUID(-457986654); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_TwinBlades_T08 = new PrefabGUID(1200302278); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Whip_T06 = new PrefabGUID(710159072); public static readonly PrefabGUID Item_Ingredient_Book_Weapon_Whip_T08 = new PrefabGUID(-1033721040); public static readonly PrefabGUID Item_Ingredient_CarpetRoll = new PrefabGUID(1046366876); public static readonly PrefabGUID Item_Ingredient_CastleKey_T01 = new PrefabGUID(960030104); public static readonly PrefabGUID Item_Ingredient_CastleKey_T02 = new PrefabGUID(724428437); public static readonly PrefabGUID Item_Ingredient_CastleKey_T03 = new PrefabGUID(-950839771); public static readonly PrefabGUID Item_Ingredient_CastleKey_T04 = new PrefabGUID(551949280); public static readonly PrefabGUID Item_Ingredient_CastleUpkeep_Fake = new PrefabGUID(421203343); public static readonly PrefabGUID Item_Ingredient_Chitin = new PrefabGUID(-953253466); public static readonly PrefabGUID Item_Ingredient_Clay = new PrefabGUID(317317590); public static readonly PrefabGUID Item_Ingredient_ClayMold = new PrefabGUID(-1257026088); public static readonly PrefabGUID Item_Ingredient_Cloth = new PrefabGUID(-700774739); public static readonly PrefabGUID Item_Ingredient_Coal = new PrefabGUID(-1932461974); public static readonly PrefabGUID Item_Ingredient_Coin_Copper = new PrefabGUID(28625845); public static readonly PrefabGUID Item_Ingredient_Coin_Royal = new PrefabGUID(-571562864); public static readonly PrefabGUID Item_Ingredient_Coin_Silver = new PrefabGUID(-949672483); public static readonly PrefabGUID Item_Ingredient_CopperWires = new PrefabGUID(-456161884); public static readonly PrefabGUID Item_Ingredient_CorruptedSap = new PrefabGUID(2012771684); public static readonly PrefabGUID Item_Ingredient_CottonYarn = new PrefabGUID(444400639); public static readonly PrefabGUID Item_Ingredient_Crystal = new PrefabGUID(-257494203); public static readonly PrefabGUID Item_Ingredient_DemonFragment = new PrefabGUID(-77477508); public static readonly PrefabGUID Item_Ingredient_Document = new PrefabGUID(1334469825); public static readonly PrefabGUID Item_Ingredient_Emberglass = new PrefabGUID(-1715039285); public static readonly PrefabGUID Item_Ingredient_Emery = new PrefabGUID(-1578565561); public static readonly PrefabGUID Item_Ingredient_Fish_BloodSnapper_T02 = new PrefabGUID(-1779269313); public static readonly PrefabGUID Item_Ingredient_Fish_Corrupted_T03 = new PrefabGUID(2069171407); public static readonly PrefabGUID Item_Ingredient_Fish_FatGoby_T01 = new PrefabGUID(-1642545082); public static readonly PrefabGUID Item_Ingredient_Fish_FierceStinger_T01 = new PrefabGUID(447901086); public static readonly PrefabGUID Item_Ingredient_Fish_GoldenRiverBass_T03 = new PrefabGUID(67930804); public static readonly PrefabGUID Item_Ingredient_Fish_RainbowTrout_T01 = new PrefabGUID(-149778795); public static readonly PrefabGUID Item_Ingredient_Fish_SageFish_T02 = new PrefabGUID(736318803); public static readonly PrefabGUID Item_Ingredient_Fish_SwampDweller_T03 = new PrefabGUID(177845365); public static readonly PrefabGUID Item_Ingredient_Fish_TheFish = new PrefabGUID(176401052); public static readonly PrefabGUID Item_Ingredient_Fish_TwilightSnapper_T02 = new PrefabGUID(-570287766); public static readonly PrefabGUID Item_Ingredient_FishBone = new PrefabGUID(424158416); public static readonly PrefabGUID Item_Ingredient_Fishoil = new PrefabGUID(-242277891); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T01 = new PrefabGUID(225530658); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T02 = new PrefabGUID(-1962855117); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T03 = new PrefabGUID(1705028227); public static readonly PrefabGUID Item_Ingredient_Gem_Amethyst_T04 = new PrefabGUID(-106283194); public static readonly PrefabGUID Item_Ingredient_Gem_Base = new PrefabGUID(-656822228); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T01 = new PrefabGUID(-237441421); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T02 = new PrefabGUID(357608868); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T03 = new PrefabGUID(1898237421); public static readonly PrefabGUID Item_Ingredient_Gem_Emerald_T04 = new PrefabGUID(1354115931); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T01 = new PrefabGUID(-1129708579); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T02 = new PrefabGUID(802050789); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T03 = new PrefabGUID(-1963826510); public static readonly PrefabGUID Item_Ingredient_Gem_Miststone_T04 = new PrefabGUID(750542699); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T01 = new PrefabGUID(287586809); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T02 = new PrefabGUID(51046573); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T03 = new PrefabGUID(74811721); public static readonly PrefabGUID Item_Ingredient_Gem_Ruby_T04 = new PrefabGUID(188653143); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T01 = new PrefabGUID(552409457); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T02 = new PrefabGUID(131015492); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T03 = new PrefabGUID(-1147920398); public static readonly PrefabGUID Item_Ingredient_Gem_Sapphire_T04 = new PrefabGUID(-2020212226); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T01 = new PrefabGUID(867351268); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T02 = new PrefabGUID(-2118441460); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T03 = new PrefabGUID(-2051574178); public static readonly PrefabGUID Item_Ingredient_Gem_Topaz_T04 = new PrefabGUID(-1983566585); public static readonly PrefabGUID Item_Ingredient_Gemdust = new PrefabGUID(820932258); public static readonly PrefabGUID Item_Ingredient_Gemstone = new PrefabGUID(2115367516); public static readonly PrefabGUID Item_Ingredient_GhostYarn = new PrefabGUID(2106123809); public static readonly PrefabGUID Item_Ingredient_Glass = new PrefabGUID(-1233716303); public static readonly PrefabGUID Item_Ingredient_GoldenJewelry = new PrefabGUID(-1749304196); public static readonly PrefabGUID Item_Ingredient_Gravedust = new PrefabGUID(-608131642); public static readonly PrefabGUID Item_Ingredient_IronBody = new PrefabGUID(988417522); public static readonly PrefabGUID Item_Ingredient_Kit_Base = new PrefabGUID(1413130999); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T02 = new PrefabGUID(-167936394); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T03 = new PrefabGUID(-580716317); public static readonly PrefabGUID Item_Ingredient_Kit_Blacksmith_T04 = new PrefabGUID(-1838793646); public static readonly PrefabGUID Item_Ingredient_Kit_Magic_T04 = new PrefabGUID(1488205677); public static readonly PrefabGUID Item_Ingredient_Kit_Tailoring_T04 = new PrefabGUID(828271620); public static readonly PrefabGUID Item_Ingredient_Leather = new PrefabGUID(-1907572080); public static readonly PrefabGUID Item_Ingredient_MapZone_Fish = new PrefabGUID(193249843); public static readonly PrefabGUID Item_Ingredient_MapZone_GemVein_T02 = new PrefabGUID(889298519); public static readonly PrefabGUID Item_Ingredient_MapZone_GemVein_T03 = new PrefabGUID(301051123); public static readonly PrefabGUID Item_Ingredient_MapZone_Plants = new PrefabGUID(968796494); public static readonly PrefabGUID Item_Ingredient_MapZone_Potions = new PrefabGUID(-1617671082); public static readonly PrefabGUID Item_Ingredient_MapZone_Tesla = new PrefabGUID(-77555820); public static readonly PrefabGUID Item_Ingredient_MapZone_Vendor = new PrefabGUID(-696770536); public static readonly PrefabGUID Item_Ingredient_Mineral_CopperIngot = new PrefabGUID(-1237019921); public static readonly PrefabGUID Item_Ingredient_Mineral_CopperOre = new PrefabGUID(-1805325497); public static readonly PrefabGUID Item_Ingredient_Mineral_DarkSilverBar = new PrefabGUID(-762000259); public static readonly PrefabGUID Item_Ingredient_Mineral_GhostCrystal = new PrefabGUID(-1748835106); public static readonly PrefabGUID Item_Ingredient_Mineral_GoldBar = new PrefabGUID(-1027710236); public static readonly PrefabGUID Item_Ingredient_Mineral_GoldOre = new PrefabGUID(660533034); public static readonly PrefabGUID Item_Ingredient_Mineral_IronBar = new PrefabGUID(-1750550553); public static readonly PrefabGUID Item_Ingredient_Mineral_IronOre = new PrefabGUID(1332980397); public static readonly PrefabGUID Item_Ingredient_Mineral_Obsidian = new PrefabGUID(-543524210); public static readonly PrefabGUID Item_Ingredient_Mineral_Quartz = new PrefabGUID(-1583485601); public static readonly PrefabGUID Item_Ingredient_Mineral_SilverBar = new PrefabGUID(-1787563914); public static readonly PrefabGUID Item_Ingredient_Mineral_SilverOre = new PrefabGUID(1686577386); public static readonly PrefabGUID Item_Ingredient_Mineral_Sulfur = new PrefabGUID(880699252); public static readonly PrefabGUID Item_Ingredient_Mineral_SulfurOre = new PrefabGUID(1501868129); public static readonly PrefabGUID Item_Ingredient_MutantGrease = new PrefabGUID(-1527315816); public static readonly PrefabGUID Item_Ingredient_OnyxTear = new PrefabGUID(-651878258); public static readonly PrefabGUID Item_Ingredient_PaintingFrame = new PrefabGUID(1553481703); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ArcaneAnimator = new PrefabGUID(806031638); public static readonly PrefabGUID Item_Ingredient_Passive_T01_BloodSpray = new PrefabGUID(1561531999); public static readonly PrefabGUID Item_Ingredient_Passive_T01_BloodTypeEfficiency = new PrefabGUID(-1012087769); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ChaosKindling = new PrefabGUID(-744023422); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ChillWeave = new PrefabGUID(1314569175); public static readonly PrefabGUID Item_Ingredient_Passive_T01_ColdSoul = new PrefabGUID(759629166); public static readonly PrefabGUID Item_Ingredient_Passive_T01_EnhancedConductivity = new PrefabGUID(-295674777); public static readonly PrefabGUID Item_Ingredient_Passive_T01_FlowingSorcery = new PrefabGUID(1532551951); public static readonly PrefabGUID Item_Ingredient_Passive_T01_LightningFastStrikes = new PrefabGUID(177536500); public static readonly PrefabGUID Item_Ingredient_Passive_T01_RenewingFlames = new PrefabGUID(201124833); public static readonly PrefabGUID Item_Ingredient_Passive_T01_SoulDrinker = new PrefabGUID(-1150810012); public static readonly PrefabGUID Item_Ingredient_Passive_T01_SpiritualInfusion = new PrefabGUID(-1645974345); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Bastion = new PrefabGUID(583764996); public static readonly PrefabGUID Item_Ingredient_Passive_T02_DarkEnchantment = new PrefabGUID(-1289785922); public static readonly PrefabGUID Item_Ingredient_Passive_T02_EmbraceMayhem = new PrefabGUID(-1305686817); public static readonly PrefabGUID Item_Ingredient_Passive_T02_FeralHaste = new PrefabGUID(1725419936); public static readonly PrefabGUID Item_Ingredient_Passive_T02_HungerForPower = new PrefabGUID(-1361596609); public static readonly PrefabGUID Item_Ingredient_Passive_T02_LethalStrikes = new PrefabGUID(765693103); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Overpower = new PrefabGUID(-1402113736); public static readonly PrefabGUID Item_Ingredient_Passive_T02_Rampage = new PrefabGUID(1913822231); public static readonly PrefabGUID Item_Ingredient_Passive_T02_RavenousStrikes = new PrefabGUID(1703128595); public static readonly PrefabGUID Item_Ingredient_Passive_T02_TurbulentVelocity = new PrefabGUID(-1381982890); public static readonly PrefabGUID Item_Ingredient_Passive_T02_VBloodSlayer = new PrefabGUID(-1034273124); public static readonly PrefabGUID Item_Ingredient_Passive_T02_WickedPower = new PrefabGUID(814603706); public static readonly PrefabGUID Item_Ingredient_Plank = new PrefabGUID(-1017402979); public static readonly PrefabGUID Item_Ingredient_Plant_BleedingHeart = new PrefabGUID(-135435342); public static readonly PrefabGUID Item_Ingredient_Plant_BloodRose = new PrefabGUID(1726420644); public static readonly PrefabGUID Item_Ingredient_Plant_CorruptedFlower = new PrefabGUID(-926928101); public static readonly PrefabGUID Item_Ingredient_Plant_Cotton = new PrefabGUID(362941759); public static readonly PrefabGUID Item_Ingredient_Plant_FireBlossom = new PrefabGUID(455638025); public static readonly PrefabGUID Item_Ingredient_Plant_GhostShroom = new PrefabGUID(-164367832); public static readonly PrefabGUID Item_Ingredient_Plant_HellsClarion = new PrefabGUID(813370507); public static readonly PrefabGUID Item_Ingredient_Plant_MourningLily = new PrefabGUID(-363718499); public static readonly PrefabGUID Item_Ingredient_Plant_PlagueBrier = new PrefabGUID(1474643910); public static readonly PrefabGUID Item_Ingredient_Plant_PlantFiber = new PrefabGUID(-1409142667); public static readonly PrefabGUID Item_Ingredient_Plant_RadiantFiber = new PrefabGUID(-182923609); public static readonly PrefabGUID Item_Ingredient_Plant_SacredGrapes = new PrefabGUID(88009216); public static readonly PrefabGUID Item_Ingredient_Plant_SnowFlower = new PrefabGUID(106516056); public static readonly PrefabGUID Item_Ingredient_Plant_Sunflower = new PrefabGUID(1105981714); public static readonly PrefabGUID Item_Ingredient_Plant_Thistle = new PrefabGUID(-598100816); public static readonly PrefabGUID Item_Ingredient_Pollen = new PrefabGUID(855691699); public static readonly PrefabGUID Item_Ingredient_PowerCore = new PrefabGUID(-1190647720); public static readonly PrefabGUID Item_Ingredient_PristineHide = new PrefabGUID(1658596502); public static readonly PrefabGUID Item_Ingredient_PristineLeather = new PrefabGUID(-2043983118); public static readonly PrefabGUID Item_Ingredient_RadiumAlloy = new PrefabGUID(2116142390); public static readonly PrefabGUID Item_Ingredient_ReinforcedPlank = new PrefabGUID(-1397591435); public static readonly PrefabGUID Item_Ingredient_Research_Paper = new PrefabGUID(780044299); public static readonly PrefabGUID Item_Ingredient_Research_Schematic = new PrefabGUID(2085163661); public static readonly PrefabGUID Item_Ingredient_Research_Scroll = new PrefabGUID(2065714452); public static readonly PrefabGUID Item_Ingredient_Resonator = new PrefabGUID(-1629804427); public static readonly PrefabGUID Item_Ingredient_RuggedHide = new PrefabGUID(-1222725729); public static readonly PrefabGUID Item_Ingredient_Sawdust = new PrefabGUID(-1979905169); public static readonly PrefabGUID Item_Ingredient_Scales = new PrefabGUID(-1199259626); public static readonly PrefabGUID Item_Ingredient_Scourgestone = new PrefabGUID(1005440012); public static readonly PrefabGUID Item_Ingredient_SculpturedWood = new PrefabGUID(-793913499); public static readonly PrefabGUID Item_Ingredient_ShadowWeave = new PrefabGUID(-1458997116); public static readonly PrefabGUID Item_Ingredient_Silk = new PrefabGUID(702067317); public static readonly PrefabGUID Item_Ingredient_Silkworm = new PrefabGUID(-11246506); public static readonly PrefabGUID Item_Ingredient_Spectraldust = new PrefabGUID(-2130812821); public static readonly PrefabGUID Item_Ingredient_Stone = new PrefabGUID(-1531666018); public static readonly PrefabGUID Item_Ingredient_StoneBody = new PrefabGUID(689272399); public static readonly PrefabGUID Item_Ingredient_StoneBrick = new PrefabGUID(1788016417); public static readonly PrefabGUID Item_Ingredient_Stonedust = new PrefabGUID(1388962120); public static readonly PrefabGUID Item_Ingredient_TechScrap = new PrefabGUID(834864259); public static readonly PrefabGUID Item_Ingredient_ThickHide = new PrefabGUID(-2047402903); public static readonly PrefabGUID Item_Ingredient_ThickLeather = new PrefabGUID(-305160765); public static readonly PrefabGUID Item_Ingredient_Thread_Coarse = new PrefabGUID(-1562867444); public static readonly PrefabGUID Item_Ingredient_Thread_Imperial = new PrefabGUID(-898917584); public static readonly PrefabGUID Item_Ingredient_Thread_Wool = new PrefabGUID(1872733144); public static readonly PrefabGUID Item_Ingredient_Vampiricdust = new PrefabGUID(805157024); public static readonly PrefabGUID Item_Ingredient_Whetstone = new PrefabGUID(1252507075); public static readonly PrefabGUID Item_Ingredient_Witchdust = new PrefabGUID(-223452038); public static readonly PrefabGUID Item_Ingredient_Wood_CorruptedOak = new PrefabGUID(440780337); public static readonly PrefabGUID Item_Ingredient_Wood_Cursed = new PrefabGUID(608397239); public static readonly PrefabGUID Item_Ingredient_Wood_Gloom = new PrefabGUID(-1740500585); public static readonly PrefabGUID Item_Ingredient_Wood_Hallow = new PrefabGUID(-2014020548); public static readonly PrefabGUID Item_Ingredient_Wood_Standard = new PrefabGUID(-1593377811); public static readonly PrefabGUID Item_Jewel_Blood_T01 = new PrefabGUID(-113436752); public static readonly PrefabGUID Item_Jewel_Blood_T02 = new PrefabGUID(-996555621); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodFountain = new PrefabGUID(-1624411159); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodRage = new PrefabGUID(343217159); public static readonly PrefabGUID Item_Jewel_Blood_T02_BloodRite = new PrefabGUID(-2059886133); public static readonly PrefabGUID Item_Jewel_Blood_T02_CarrionSwarm = new PrefabGUID(-585346267); public static readonly PrefabGUID Item_Jewel_Blood_T02_SanguineCoil = new PrefabGUID(75934448); public static readonly PrefabGUID Item_Jewel_Blood_T02_Shadowbolt = new PrefabGUID(918613164); public static readonly PrefabGUID Item_Jewel_Blood_T02_VampiricCurse = new PrefabGUID(-1337809256); public static readonly PrefabGUID Item_Jewel_Blood_T02_VeilOfBlood = new PrefabGUID(-431964258); public static readonly PrefabGUID Item_Jewel_Blood_T03 = new PrefabGUID(-41686151); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodFountain = new PrefabGUID(-312598876); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodRage = new PrefabGUID(-1952560879); public static readonly PrefabGUID Item_Jewel_Blood_T03_BloodRite = new PrefabGUID(1881059081); public static readonly PrefabGUID Item_Jewel_Blood_T03_CarrionSwarm = new PrefabGUID(519281449); public static readonly PrefabGUID Item_Jewel_Blood_T03_SanguineCoil = new PrefabGUID(1785926321); public static readonly PrefabGUID Item_Jewel_Blood_T03_Shadowbolt = new PrefabGUID(738473666); public static readonly PrefabGUID Item_Jewel_Blood_T03_VampiricCurse = new PrefabGUID(-2137054310); public static readonly PrefabGUID Item_Jewel_Blood_T03_VeilOfBlood = new PrefabGUID(-1302801575); public static readonly PrefabGUID Item_Jewel_Blood_T04 = new PrefabGUID(271061481); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodFountain = new PrefabGUID(1755478077); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodRage = new PrefabGUID(662891042); public static readonly PrefabGUID Item_Jewel_Blood_T04_BloodRite = new PrefabGUID(1799289635); public static readonly PrefabGUID Item_Jewel_Blood_T04_CarrionSwarm = new PrefabGUID(1499979825); public static readonly PrefabGUID Item_Jewel_Blood_T04_SanguineCoil = new PrefabGUID(-562511117); public static readonly PrefabGUID Item_Jewel_Blood_T04_Shadowbolt = new PrefabGUID(1279283644); public static readonly PrefabGUID Item_Jewel_Blood_T04_VampiricCurse = new PrefabGUID(-1844141622); public static readonly PrefabGUID Item_Jewel_Blood_T04_VeilOfBlood = new PrefabGUID(1692133021); public static readonly PrefabGUID Item_Jewel_Chaos_T01 = new PrefabGUID(2130810069); public static readonly PrefabGUID Item_Jewel_Chaos_T02 = new PrefabGUID(1083105737); public static readonly PrefabGUID Item_Jewel_Chaos_T02_Aftershock = new PrefabGUID(1035334240); public static readonly PrefabGUID Item_Jewel_Chaos_T02_ChaosBarrier = new PrefabGUID(1112619884); public static readonly PrefabGUID Item_Jewel_Chaos_T02_ChaosVolley = new PrefabGUID(1243967840); public static readonly PrefabGUID Item_Jewel_Chaos_T02_PowerSurge = new PrefabGUID(1168555540); public static readonly PrefabGUID Item_Jewel_Chaos_T02_RainOfChaos = new PrefabGUID(-1674555897); public static readonly PrefabGUID Item_Jewel_Chaos_T02_VeilOfChaos = new PrefabGUID(-2133879652); public static readonly PrefabGUID Item_Jewel_Chaos_T02_Void = new PrefabGUID(157004582); public static readonly PrefabGUID Item_Jewel_Chaos_T03 = new PrefabGUID(-1601295908); public static readonly PrefabGUID Item_Jewel_Chaos_T03_Aftershock = new PrefabGUID(685024499); public static readonly PrefabGUID Item_Jewel_Chaos_T03_ChaosBarrier = new PrefabGUID(-209873380); public static readonly PrefabGUID Item_Jewel_Chaos_T03_ChaosVolley = new PrefabGUID(-1111771702); public static readonly PrefabGUID Item_Jewel_Chaos_T03_PowerSurge = new PrefabGUID(-1090887222); public static readonly PrefabGUID Item_Jewel_Chaos_T03_RainOfChaos = new PrefabGUID(-322544495); public static readonly PrefabGUID Item_Jewel_Chaos_T03_VeilOfChaos = new PrefabGUID(1613948207); public static readonly PrefabGUID Item_Jewel_Chaos_T03_Void = new PrefabGUID(-2054797612); public static readonly PrefabGUID Item_Jewel_Chaos_T04 = new PrefabGUID(-1796954295); public static readonly PrefabGUID Item_Jewel_Chaos_T04_Aftershock = new PrefabGUID(-651841188); public static readonly PrefabGUID Item_Jewel_Chaos_T04_ChaosBarrier = new PrefabGUID(-374243736); public static readonly PrefabGUID Item_Jewel_Chaos_T04_ChaosVolley = new PrefabGUID(818069106); public static readonly PrefabGUID Item_Jewel_Chaos_T04_PowerSurge = new PrefabGUID(-1166627007); public static readonly PrefabGUID Item_Jewel_Chaos_T04_RainOfChaos = new PrefabGUID(-443169356); public static readonly PrefabGUID Item_Jewel_Chaos_T04_VeilOfChaos = new PrefabGUID(155899991); public static readonly PrefabGUID Item_Jewel_Chaos_T04_Void = new PrefabGUID(666089763); public static readonly PrefabGUID Item_Jewel_Frost_T01 = new PrefabGUID(1908312304); public static readonly PrefabGUID Item_Jewel_Frost_T02 = new PrefabGUID(1030854657); public static readonly PrefabGUID Item_Jewel_Frost_T02_ColdSnap = new PrefabGUID(-441408420); public static readonly PrefabGUID Item_Jewel_Frost_T02_CrystalLance = new PrefabGUID(-390381611); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostBarrier = new PrefabGUID(2134082866); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostBat = new PrefabGUID(-309124704); public static readonly PrefabGUID Item_Jewel_Frost_T02_FrostCone = new PrefabGUID(-269336230); public static readonly PrefabGUID Item_Jewel_Frost_T02_IceNova = new PrefabGUID(-535477182); public static readonly PrefabGUID Item_Jewel_Frost_T02_VeilOfFrost = new PrefabGUID(-710738056); public static readonly PrefabGUID Item_Jewel_Frost_T03 = new PrefabGUID(223899244); public static readonly PrefabGUID Item_Jewel_Frost_T03_ColdSnap = new PrefabGUID(55473000); public static readonly PrefabGUID Item_Jewel_Frost_T03_CrystalLance = new PrefabGUID(594180030); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostBarrier = new PrefabGUID(1381699867); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostBat = new PrefabGUID(-1530254765); public static readonly PrefabGUID Item_Jewel_Frost_T03_FrostCone = new PrefabGUID(-16130732); public static readonly PrefabGUID Item_Jewel_Frost_T03_IceNova = new PrefabGUID(1123463900); public static readonly PrefabGUID Item_Jewel_Frost_T03_VeilOfFrost = new PrefabGUID(-1190496962); public static readonly PrefabGUID Item_Jewel_Frost_T04 = new PrefabGUID(-147757377); public static readonly PrefabGUID Item_Jewel_Frost_T04_ColdSnap = new PrefabGUID(-930352575); public static readonly PrefabGUID Item_Jewel_Frost_T04_CrystalLance = new PrefabGUID(-2117279191); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostBarrier = new PrefabGUID(-483235215); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostBat = new PrefabGUID(1793042384); public static readonly PrefabGUID Item_Jewel_Frost_T04_FrostCone = new PrefabGUID(320961855); public static readonly PrefabGUID Item_Jewel_Frost_T04_IceNova = new PrefabGUID(1947940084); public static readonly PrefabGUID Item_Jewel_Frost_T04_VeilOfFrost = new PrefabGUID(1729390800); public static readonly PrefabGUID Item_Jewel_Illusion_T01 = new PrefabGUID(1387124262); public static readonly PrefabGUID Item_Jewel_Illusion_T02 = new PrefabGUID(437696083); public static readonly PrefabGUID Item_Jewel_Illusion_T02_Curse = new PrefabGUID(-1255119436); public static readonly PrefabGUID Item_Jewel_Illusion_T02_MistTrance = new PrefabGUID(101601247); public static readonly PrefabGUID Item_Jewel_Illusion_T02_Mosquito = new PrefabGUID(-928330249); public static readonly PrefabGUID Item_Jewel_Illusion_T02_PhantomAegis = new PrefabGUID(1123282909); public static readonly PrefabGUID Item_Jewel_Illusion_T02_SpectralWolf = new PrefabGUID(1520619383); public static readonly PrefabGUID Item_Jewel_Illusion_T02_VeilOfIllusion = new PrefabGUID(606339127); public static readonly PrefabGUID Item_Jewel_Illusion_T02_WraithSpear = new PrefabGUID(665418354); public static readonly PrefabGUID Item_Jewel_Illusion_T03 = new PrefabGUID(1540217782); public static readonly PrefabGUID Item_Jewel_Illusion_T03_Curse = new PrefabGUID(-1952374182); public static readonly PrefabGUID Item_Jewel_Illusion_T03_MistTrance = new PrefabGUID(-1513121786); public static readonly PrefabGUID Item_Jewel_Illusion_T03_Mosquito = new PrefabGUID(-826325611); public static readonly PrefabGUID Item_Jewel_Illusion_T03_PhantomAegis = new PrefabGUID(870884715); public static readonly PrefabGUID Item_Jewel_Illusion_T03_SpectralWolf = new PrefabGUID(455494178); public static readonly PrefabGUID Item_Jewel_Illusion_T03_VeilOfIllusion = new PrefabGUID(-1206629745); public static readonly PrefabGUID Item_Jewel_Illusion_T03_WraithSpear = new PrefabGUID(998259069); public static readonly PrefabGUID Item_Jewel_Illusion_T04 = new PrefabGUID(97169184); public static readonly PrefabGUID Item_Jewel_Illusion_T04_Curse = new PrefabGUID(130269272); public static readonly PrefabGUID Item_Jewel_Illusion_T04_MistTrance = new PrefabGUID(2075997018); public static readonly PrefabGUID Item_Jewel_Illusion_T04_Mosquito = new PrefabGUID(902426262); public static readonly PrefabGUID Item_Jewel_Illusion_T04_PhantomAegis = new PrefabGUID(-1766731531); public static readonly PrefabGUID Item_Jewel_Illusion_T04_SpectralWolf = new PrefabGUID(-1444759832); public static readonly PrefabGUID Item_Jewel_Illusion_T04_VeilOfIllusion = new PrefabGUID(-941913536); public static readonly PrefabGUID Item_Jewel_Illusion_T04_WraithSpear = new PrefabGUID(-455117097); public static readonly PrefabGUID Item_Jewel_Storm_T01 = new PrefabGUID(-560146452); public static readonly PrefabGUID Item_Jewel_Storm_T02 = new PrefabGUID(876293388); public static readonly PrefabGUID Item_Jewel_Storm_T02_BallLightning = new PrefabGUID(-1703746731); public static readonly PrefabGUID Item_Jewel_Storm_T02_Cyclone = new PrefabGUID(994654794); public static readonly PrefabGUID Item_Jewel_Storm_T02_Discharge = new PrefabGUID(-313733383); public static readonly PrefabGUID Item_Jewel_Storm_T02_LightningTendrils = new PrefabGUID(90716564); public static readonly PrefabGUID Item_Jewel_Storm_T02_LightningWall = new PrefabGUID(394140527); public static readonly PrefabGUID Item_Jewel_Storm_T02_PolarityShift = new PrefabGUID(-944716649); public static readonly PrefabGUID Item_Jewel_Storm_T02_VeilOfStorm = new PrefabGUID(-1416449755); public static readonly PrefabGUID Item_Jewel_Storm_T03 = new PrefabGUID(189228039); public static readonly PrefabGUID Item_Jewel_Storm_T03_BallLightning = new PrefabGUID(973763812); public static readonly PrefabGUID Item_Jewel_Storm_T03_Cyclone = new PrefabGUID(-341717525); public static readonly PrefabGUID Item_Jewel_Storm_T03_Discharge = new PrefabGUID(1533847605); public static readonly PrefabGUID Item_Jewel_Storm_T03_LightningTendrils = new PrefabGUID(-703021474); public static readonly PrefabGUID Item_Jewel_Storm_T03_LightningWall = new PrefabGUID(-2134499162); public static readonly PrefabGUID Item_Jewel_Storm_T03_PolarityShift = new PrefabGUID(-844537086); public static readonly PrefabGUID Item_Jewel_Storm_T03_VeilOfStorm = new PrefabGUID(182214837); public static readonly PrefabGUID Item_Jewel_Storm_T04 = new PrefabGUID(2023809276); public static readonly PrefabGUID Item_Jewel_Storm_T04_BallLightning = new PrefabGUID(-1927784576); public static readonly PrefabGUID Item_Jewel_Storm_T04_Cyclone = new PrefabGUID(-1697520941); public static readonly PrefabGUID Item_Jewel_Storm_T04_Discharge = new PrefabGUID(1448686547); public static readonly PrefabGUID Item_Jewel_Storm_T04_LightningTendrils = new PrefabGUID(1909654697); public static readonly PrefabGUID Item_Jewel_Storm_T04_LightningWall = new PrefabGUID(-464466648); public static readonly PrefabGUID Item_Jewel_Storm_T04_PolarityShift = new PrefabGUID(-189270614); public static readonly PrefabGUID Item_Jewel_Storm_T04_VeilOfStorm = new PrefabGUID(-556391992); public static readonly PrefabGUID Item_Jewel_Template = new PrefabGUID(1075994038); public static readonly PrefabGUID Item_Jewel_Unholy_T01 = new PrefabGUID(803445709); public static readonly PrefabGUID Item_Jewel_Unholy_T02 = new PrefabGUID(-860388090); public static readonly PrefabGUID Item_Jewel_Unholy_T02_ChainsOfDeath = new PrefabGUID(-178249605); public static readonly PrefabGUID Item_Jewel_Unholy_T02_CorpseExplosion = new PrefabGUID(977816262); public static readonly PrefabGUID Item_Jewel_Unholy_T02_CorruptedSkull = new PrefabGUID(-1183600395); public static readonly PrefabGUID Item_Jewel_Unholy_T02_DeathKnight = new PrefabGUID(-173571027); public static readonly PrefabGUID Item_Jewel_Unholy_T02_Soulburn = new PrefabGUID(1277476884); public static readonly PrefabGUID Item_Jewel_Unholy_T02_VeilOfBones = new PrefabGUID(-1347054873); public static readonly PrefabGUID Item_Jewel_Unholy_T02_WardOfTheDamned = new PrefabGUID(-593608743); public static readonly PrefabGUID Item_Jewel_Unholy_T03 = new PrefabGUID(-647547545); public static readonly PrefabGUID Item_Jewel_Unholy_T03_ChainsOfDeath = new PrefabGUID(1042817390); public static readonly PrefabGUID Item_Jewel_Unholy_T03_CorpseExplosion = new PrefabGUID(-1123608041); public static readonly PrefabGUID Item_Jewel_Unholy_T03_CorruptedSkull = new PrefabGUID(-1508992859); public static readonly PrefabGUID Item_Jewel_Unholy_T03_DeathKnight = new PrefabGUID(-318118264); public static readonly PrefabGUID Item_Jewel_Unholy_T03_Soulburn = new PrefabGUID(282707515); public static readonly PrefabGUID Item_Jewel_Unholy_T03_VeilOfBones = new PrefabGUID(-1913987811); public static readonly PrefabGUID Item_Jewel_Unholy_T03_WardOfTheDamned = new PrefabGUID(665184248); public static readonly PrefabGUID Item_Jewel_Unholy_T04 = new PrefabGUID(1412786604); public static readonly PrefabGUID Item_Jewel_Unholy_T04_ChainsOfDeath = new PrefabGUID(-2100613085); public static readonly PrefabGUID Item_Jewel_Unholy_T04_CorpseExplosion = new PrefabGUID(-749764415); public static readonly PrefabGUID Item_Jewel_Unholy_T04_CorruptedSkull = new PrefabGUID(140526202); public static readonly PrefabGUID Item_Jewel_Unholy_T04_DeathKnight = new PrefabGUID(-340571020); public static readonly PrefabGUID Item_Jewel_Unholy_T04_Soulburn = new PrefabGUID(897635802); public static readonly PrefabGUID Item_Jewel_Unholy_T04_VeilOfBones = new PrefabGUID(-1180115034); public static readonly PrefabGUID Item_Jewel_Unholy_T04_WardOfTheDamned = new PrefabGUID(1479677538); public static readonly PrefabGUID Item_Legs_T00_StartingRags = new PrefabGUID(725607617); public static readonly PrefabGUID Item_Legs_T01_Bone = new PrefabGUID(1355823667); public static readonly PrefabGUID Item_Legs_T02_BoneReinforced = new PrefabGUID(-2036196416); public static readonly PrefabGUID Item_Legs_T03_Cloth = new PrefabGUID(1925394440); public static readonly PrefabGUID Item_Legs_T04_Copper_Brute = new PrefabGUID(-2095610608); public static readonly PrefabGUID Item_Legs_T04_Copper_Rogue = new PrefabGUID(-90702575); public static readonly PrefabGUID Item_Legs_T04_Copper_Scholar = new PrefabGUID(1458279255); public static readonly PrefabGUID Item_Legs_T04_Copper_Warrior = new PrefabGUID(-1993947781); public static readonly PrefabGUID Item_Legs_T05_Cotton = new PrefabGUID(12127911); public static readonly PrefabGUID Item_Legs_T06_Iron_Brute = new PrefabGUID(680112231); public static readonly PrefabGUID Item_Legs_T06_Iron_Rogue = new PrefabGUID(744344540); public static readonly PrefabGUID Item_Legs_T06_Iron_Scholar = new PrefabGUID(-454576348); public static readonly PrefabGUID Item_Legs_T06_Iron_Warrior = new PrefabGUID(206495029); public static readonly PrefabGUID Item_Legs_T07_Silk = new PrefabGUID(-1555051415); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Brute = new PrefabGUID(-1385786654); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Rogue = new PrefabGUID(-262114802); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Scholar = new PrefabGUID(703230071); public static readonly PrefabGUID Item_Legs_T08_DarkSilver_Warrior = new PrefabGUID(-481041545); public static readonly PrefabGUID Item_Legs_T09_Dracula = new PrefabGUID(125611165); public static readonly PrefabGUID Item_Legs_T09_Dracula_Brute = new PrefabGUID(993033515); public static readonly PrefabGUID Item_Legs_T09_Dracula_Rogue = new PrefabGUID(-345596442); public static readonly PrefabGUID Item_Legs_T09_Dracula_Scholar = new PrefabGUID(1592149279); public static readonly PrefabGUID Item_Legs_T09_Dracula_Warrior = new PrefabGUID(205207385); public static readonly PrefabGUID Item_Legs_T0X_BlackfangSultan = new PrefabGUID(-1558814807); public static readonly PrefabGUID Item_Legs_T0X_Cosmetic_Suit01 = new PrefabGUID(213736942); public static readonly PrefabGUID Item_Legs_T0X_PMK01 = new PrefabGUID(-1564372276); public static readonly PrefabGUID Item_Legs_T0X_PMK02 = new PrefabGUID(-536717606); public static readonly PrefabGUID Item_Legs_T0X_PMK03 = new PrefabGUID(1811913705); public static readonly PrefabGUID Item_Legs_T0X_TransmogTest = new PrefabGUID(1217578824); public static readonly PrefabGUID Item_Legs_T0X_VampireKnight = new PrefabGUID(1966590385); public static readonly PrefabGUID Item_MagicSource_BloodKey_T01 = new PrefabGUID(1655869633); public static readonly PrefabGUID Item_MagicSource_General_T01_BoneRing = new PrefabGUID(1557814269); public static readonly PrefabGUID Item_MagicSource_General_T02_BloodBoneRing = new PrefabGUID(-652069131); public static readonly PrefabGUID Item_MagicSource_General_T03_GravediggerRing = new PrefabGUID(-1588051702); public static readonly PrefabGUID Item_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-809059551); public static readonly PrefabGUID Item_MagicSource_General_T04_EmberChain = new PrefabGUID(50824544); public static readonly PrefabGUID Item_MagicSource_General_T04_FrozenEye = new PrefabGUID(336922685); public static readonly PrefabGUID Item_MagicSource_General_T04_MistSignet = new PrefabGUID(-886916793); public static readonly PrefabGUID Item_MagicSource_General_T04_RubyRing = new PrefabGUID(341837267); public static readonly PrefabGUID Item_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1184863500); public static readonly PrefabGUID Item_MagicSource_General_T05_Relic = new PrefabGUID(-650855520); public static readonly PrefabGUID Item_MagicSource_General_T06_AmethystPendant = new PrefabGUID(199425997); public static readonly PrefabGUID Item_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-1046748791); public static readonly PrefabGUID Item_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(1012837641); public static readonly PrefabGUID Item_MagicSource_General_T06_RubyPendant = new PrefabGUID(-425306671); public static readonly PrefabGUID Item_MagicSource_General_T06_SapphirePendant = new PrefabGUID(-651554566); public static readonly PrefabGUID Item_MagicSource_General_T06_TopazAmulet = new PrefabGUID(610958202); public static readonly PrefabGUID Item_MagicSource_General_T07_BloodwineAmulet = new PrefabGUID(991396285); public static readonly PrefabGUID Item_MagicSource_General_T08_Blood = new PrefabGUID(-104934480); public static readonly PrefabGUID Item_MagicSource_General_T08_Chaos = new PrefabGUID(-175650376); public static readonly PrefabGUID Item_MagicSource_General_T08_Frost = new PrefabGUID(1380368392); public static readonly PrefabGUID Item_MagicSource_General_T08_Illusion = new PrefabGUID(-1306155896); public static readonly PrefabGUID Item_MagicSource_General_T08_Storm = new PrefabGUID(-296161379); public static readonly PrefabGUID Item_MagicSource_General_T08_Unholy = new PrefabGUID(-1004351840); public static readonly PrefabGUID Item_MagicSource_SoulShard_Dracula = new PrefabGUID(666638454); public static readonly PrefabGUID Item_MagicSource_SoulShard_Manticore = new PrefabGUID(-1260254082); public static readonly PrefabGUID Item_MagicSource_SoulShard_Monster = new PrefabGUID(-1581189572); public static readonly PrefabGUID Item_MagicSource_SoulShard_Morgana = new PrefabGUID(1286615355); public static readonly PrefabGUID Item_MagicSource_SoulShard_Solarus = new PrefabGUID(-21943750); public static readonly PrefabGUID Item_NetherShard_T01 = new PrefabGUID(2103989354); public static readonly PrefabGUID Item_NetherShard_T02 = new PrefabGUID(576389135); public static readonly PrefabGUID Item_NetherShard_T03 = new PrefabGUID(28358550); public static readonly PrefabGUID Item_NewBag_T01 = new PrefabGUID(-219760992); public static readonly PrefabGUID Item_NewBag_T02 = new PrefabGUID(-1991977825); public static readonly PrefabGUID Item_NewBag_T03 = new PrefabGUID(-261654929); public static readonly PrefabGUID Item_NewBag_T04 = new PrefabGUID(-1922998918); public static readonly PrefabGUID Item_NewBag_T05 = new PrefabGUID(1117281334); public static readonly PrefabGUID Item_NewBag_T06 = new PrefabGUID(-181179773); public static readonly PrefabGUID Item_Saddle_Basic = new PrefabGUID(-1209228232); public static readonly PrefabGUID Item_Saddle_Blackfang_DLC = new PrefabGUID(-1793846754); public static readonly PrefabGUID Item_Saddle_Gloomrot_DLC = new PrefabGUID(-554782766); public static readonly PrefabGUID Item_Saddle_PMKSkeleton_DLC = new PrefabGUID(-1270904319); public static readonly PrefabGUID Item_Vampire_Coating_Blood = new PrefabGUID(-1617973064); public static readonly PrefabGUID Item_Vampire_Coating_Chaos = new PrefabGUID(-1051190225); public static readonly PrefabGUID Item_Vampire_Coating_Frost = new PrefabGUID(-1087318964); public static readonly PrefabGUID Item_Vampire_Coating_Illusion = new PrefabGUID(1148284648); public static readonly PrefabGUID Item_Vampire_Coating_Storm = new PrefabGUID(2128629897); public static readonly PrefabGUID Item_Vampire_Coating_Unholy = new PrefabGUID(1002732935); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_NameGenerator_T06 = new PrefabGUID(163122449); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_NameGenerator_T08 = new PrefabGUID(1570017693); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T06 = new PrefabGUID(1259464735); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T06_Shattered = new PrefabGUID(-2147445292); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08 = new PrefabGUID(-102830349); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08_Shattered = new PrefabGUID(442700150); public static readonly PrefabGUID Item_Weapon_Axe_Legendary_T08_Trader_Template = new PrefabGUID(-1024626758); public static readonly PrefabGUID Item_Weapon_Axe_T01_Bone = new PrefabGUID(-1958888844); public static readonly PrefabGUID Item_Weapon_Axe_T02_Bone_Reinforced = new PrefabGUID(-1391446205); public static readonly PrefabGUID Item_Weapon_Axe_T02_WoodCutter = new PrefabGUID(1541522788); public static readonly PrefabGUID Item_Weapon_Axe_T03_Copper = new PrefabGUID(518802008); public static readonly PrefabGUID Item_Weapon_Axe_T04_Copper_Reinforced = new PrefabGUID(-491969324); public static readonly PrefabGUID Item_Weapon_Axe_T05_Iron = new PrefabGUID(-1579575933); public static readonly PrefabGUID Item_Weapon_Axe_T06_Iron_Reinforced = new PrefabGUID(198951695); public static readonly PrefabGUID Item_Weapon_Axe_T07_DarkSilver = new PrefabGUID(-1130238142); public static readonly PrefabGUID Item_Weapon_Axe_T08_Sanguine = new PrefabGUID(-2044057823); public static readonly PrefabGUID Item_Weapon_Axe_T09_ShadowMatter = new PrefabGUID(2100090213); public static readonly PrefabGUID Item_Weapon_Axe_Unique_T08_Variation01 = new PrefabGUID(1239564213); public static readonly PrefabGUID Item_Weapon_Axe_Unique_T08_Variation01_Shattered = new PrefabGUID(2099198078); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_NameGenerator_T06 = new PrefabGUID(-444900575); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_NameGenerator_T08 = new PrefabGUID(-1774269887); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T06 = new PrefabGUID(-2060572315); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T06_Shattered = new PrefabGUID(-1746159915); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08 = new PrefabGUID(-27238530); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08_Shattered = new PrefabGUID(-655493979); public static readonly PrefabGUID Item_Weapon_Claws_Legendary_T08_Trader_Template = new PrefabGUID(1401940772); public static readonly PrefabGUID Item_Weapon_Claws_T05_Iron = new PrefabGUID(-1333849822); public static readonly PrefabGUID Item_Weapon_Claws_T06_Iron_Reinforced = new PrefabGUID(1748886117); public static readonly PrefabGUID Item_Weapon_Claws_T07_DarkSilver = new PrefabGUID(-1470260175); public static readonly PrefabGUID Item_Weapon_Claws_T08_Sanguine = new PrefabGUID(-1777908217); public static readonly PrefabGUID Item_Weapon_Claws_Unique_T08_Variation01 = new PrefabGUID(-996999913); public static readonly PrefabGUID Item_Weapon_Claws_Unique_T08_Variation01_Shattered = new PrefabGUID(-1024379681); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_NameGenerator_T06 = new PrefabGUID(1958482379); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_NameGenerator_T08 = new PrefabGUID(1716435762); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T06 = new PrefabGUID(-517906196); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T06_Shattered = new PrefabGUID(572026243); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08 = new PrefabGUID(935392085); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08_Shattered = new PrefabGUID(2061238391); public static readonly PrefabGUID Item_Weapon_Crossbow_Legendary_T08_Trader_Template = new PrefabGUID(517296275); public static readonly PrefabGUID Item_Weapon_Crossbow_T01_Bone = new PrefabGUID(-20041991); public static readonly PrefabGUID Item_Weapon_Crossbow_T02_Bone_Reinforced = new PrefabGUID(898159697); public static readonly PrefabGUID Item_Weapon_Crossbow_T03_Copper = new PrefabGUID(-1277074895); public static readonly PrefabGUID Item_Weapon_Crossbow_T04_Copper_Reinforced = new PrefabGUID(-1636801169); public static readonly PrefabGUID Item_Weapon_Crossbow_T05_Iron = new PrefabGUID(836066667); public static readonly PrefabGUID Item_Weapon_Crossbow_T06_Iron_Reinforced = new PrefabGUID(1221976097); public static readonly PrefabGUID Item_Weapon_Crossbow_T07_DarkSilver = new PrefabGUID(-814739263); public static readonly PrefabGUID Item_Weapon_Crossbow_T08_Sanguine = new PrefabGUID(1389040540); public static readonly PrefabGUID Item_Weapon_Crossbow_T09_ShadowMatter = new PrefabGUID(1957540013); public static readonly PrefabGUID Item_Weapon_Crossbow_Unique_T08_Variation01 = new PrefabGUID(-1401104184); public static readonly PrefabGUID Item_Weapon_Crossbow_Unique_T08_Variation01_Shattered = new PrefabGUID(781586362); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_NameGenerator_T06 = new PrefabGUID(-816018167); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_NameGenerator_T08 = new PrefabGUID(-1566606969); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T06 = new PrefabGUID(-1276458869); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T06_Shattered = new PrefabGUID(-1075670534); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08 = new PrefabGUID(140761255); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08_Shattered = new PrefabGUID(-2137269775); public static readonly PrefabGUID Item_Weapon_Daggers_Legendary_T08_Trader_Template = new PrefabGUID(1719144622); public static readonly PrefabGUID Item_Weapon_Daggers_T05_Iron = new PrefabGUID(1296724931); public static readonly PrefabGUID Item_Weapon_Daggers_T06_Iron_Reinforced = new PrefabGUID(703783407); public static readonly PrefabGUID Item_Weapon_Daggers_T07_DarkSilver = new PrefabGUID(-211034148); public static readonly PrefabGUID Item_Weapon_Daggers_T08_Sanguine = new PrefabGUID(1031107636); public static readonly PrefabGUID Item_Weapon_Daggers_T09_ShadowMatter = new PrefabGUID(-1961050884); public static readonly PrefabGUID Item_Weapon_Daggers_Unique_T08_Variation01 = new PrefabGUID(-1873605364); public static readonly PrefabGUID Item_Weapon_Daggers_Unique_T08_Variation01_Shattered = new PrefabGUID(-1233207977); public static readonly PrefabGUID Item_Weapon_FishingPole_Debug = new PrefabGUID(-1766408331); public static readonly PrefabGUID Item_Weapon_FishingPole_T01 = new PrefabGUID(1302850112); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_NameGenerator_T06 = new PrefabGUID(-437176953); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_NameGenerator_T08 = new PrefabGUID(-256643998); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T06 = new PrefabGUID(869276797); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T06_Shattered = new PrefabGUID(747911021); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08 = new PrefabGUID(-1173681254); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08_Shattered = new PrefabGUID(-1638796801); public static readonly PrefabGUID Item_Weapon_GreatSword_Legendary_T08_Trader_Template = new PrefabGUID(-1743584975); public static readonly PrefabGUID Item_Weapon_GreatSword_T05_Iron = new PrefabGUID(-768054337); public static readonly PrefabGUID Item_Weapon_GreatSword_T06_Iron_Reinforced = new PrefabGUID(82781195); public static readonly PrefabGUID Item_Weapon_GreatSword_T07_DarkSilver = new PrefabGUID(674704033); public static readonly PrefabGUID Item_Weapon_GreatSword_T08_Sanguine = new PrefabGUID(147836723); public static readonly PrefabGUID Item_Weapon_GreatSword_T09_ShadowMatter = new PrefabGUID(1322254792); public static readonly PrefabGUID Item_Weapon_GreatSword_Unique_T08_Variation01 = new PrefabGUID(820408138); public static readonly PrefabGUID Item_Weapon_GreatSword_Unique_T08_Variation01_Shattered = new PrefabGUID(1272855317); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_NameGenerator_T06 = new PrefabGUID(-726074700); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_NameGenerator_T08 = new PrefabGUID(288292636); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T06 = new PrefabGUID(-1003309553); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T06_Shattered = new PrefabGUID(649637190); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08 = new PrefabGUID(1177453385); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08_Shattered = new PrefabGUID(285875674); public static readonly PrefabGUID Item_Weapon_Longbow_Legendary_T08_Trader_Template = new PrefabGUID(19130904); public static readonly PrefabGUID Item_Weapon_Longbow_T03_Copper = new PrefabGUID(532033005); public static readonly PrefabGUID Item_Weapon_Longbow_T04_Copper_Reinforced = new PrefabGUID(352247730); public static readonly PrefabGUID Item_Weapon_Longbow_T05_Iron = new PrefabGUID(-1993708658); public static readonly PrefabGUID Item_Weapon_Longbow_T06_Iron_Reinforced = new PrefabGUID(1951565953); public static readonly PrefabGUID Item_Weapon_Longbow_T07_DarkSilver = new PrefabGUID(-1830162796); public static readonly PrefabGUID Item_Weapon_Longbow_T08_Sanguine = new PrefabGUID(1860352606); public static readonly PrefabGUID Item_Weapon_Longbow_T09_ShadowMatter = new PrefabGUID(1283345494); public static readonly PrefabGUID Item_Weapon_Longbow_Unique_T08_Variation01 = new PrefabGUID(-557203874); public static readonly PrefabGUID Item_Weapon_Longbow_Unique_T08_Variation01_Shattered = new PrefabGUID(1102277512); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_NameGenerator_T06 = new PrefabGUID(264593098); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_NameGenerator_T08 = new PrefabGUID(-2048346225); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T06 = new PrefabGUID(1177597629); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T06_Shattered = new PrefabGUID(1963988265); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08 = new PrefabGUID(1994084762); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08_Shattered = new PrefabGUID(-1810734832); public static readonly PrefabGUID Item_Weapon_Mace_Legendary_T08_Trader_Template = new PrefabGUID(-1845443712); public static readonly PrefabGUID Item_Weapon_Mace_T01_Bone = new PrefabGUID(1588258447); public static readonly PrefabGUID Item_Weapon_Mace_T02_Bone_Reinforced = new PrefabGUID(-1998017941); public static readonly PrefabGUID Item_Weapon_Mace_T02_Miners = new PrefabGUID(-687294429); public static readonly PrefabGUID Item_Weapon_Mace_T03_Copper = new PrefabGUID(-331345186); public static readonly PrefabGUID Item_Weapon_Mace_T04_Copper_Reinforced = new PrefabGUID(343324920); public static readonly PrefabGUID Item_Weapon_Mace_T05_Iron = new PrefabGUID(-1714012261); public static readonly PrefabGUID Item_Weapon_Mace_T06_Iron_Reinforced = new PrefabGUID(-276593802); public static readonly PrefabGUID Item_Weapon_Mace_T07_DarkSilver = new PrefabGUID(-184713893); public static readonly PrefabGUID Item_Weapon_Mace_T08_Sanguine = new PrefabGUID(-126076280); public static readonly PrefabGUID Item_Weapon_Mace_T09_ShadowMatter = new PrefabGUID(160471982); public static readonly PrefabGUID Item_Weapon_Mace_Unique_T08_Variation01 = new PrefabGUID(675187526); public static readonly PrefabGUID Item_Weapon_Mace_Unique_T08_Variation01_Shattered = new PrefabGUID(-915028618); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_NameGenerator_T06 = new PrefabGUID(1333624152); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_NameGenerator_T08 = new PrefabGUID(-1843989041); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T06 = new PrefabGUID(14297698); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T06_Shattered = new PrefabGUID(-1038642372); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08 = new PrefabGUID(-944318126); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08_Shattered = new PrefabGUID(1040125618); public static readonly PrefabGUID Item_Weapon_Pistols_Legendary_T08_Trader_Template = new PrefabGUID(-1502177717); public static readonly PrefabGUID Item_Weapon_Pistols_T05_Iron = new PrefabGUID(769603740); public static readonly PrefabGUID Item_Weapon_Pistols_T06_Iron_Reinforced = new PrefabGUID(1850870666); public static readonly PrefabGUID Item_Weapon_Pistols_T07_DarkSilver = new PrefabGUID(674407758); public static readonly PrefabGUID Item_Weapon_Pistols_T08_Sanguine = new PrefabGUID(1071656850); public static readonly PrefabGUID Item_Weapon_Pistols_T09_ShadowMatter = new PrefabGUID(-1265586439); public static readonly PrefabGUID Item_Weapon_Pistols_Unique_T08_Variation01 = new PrefabGUID(1759077469); public static readonly PrefabGUID Item_Weapon_Pistols_Unique_T08_Variation01_Shattered = new PrefabGUID(1630030026); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_NameGenerator_T06 = new PrefabGUID(-576626587); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_NameGenerator_T08 = new PrefabGUID(-383870009); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T06 = new PrefabGUID(-922125625); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T06_Shattered = new PrefabGUID(-413259500); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08 = new PrefabGUID(-105026635); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08_Shattered = new PrefabGUID(886814985); public static readonly PrefabGUID Item_Weapon_Reaper_Legendary_T08_Trader_Template = new PrefabGUID(-2136716453); public static readonly PrefabGUID Item_Weapon_Reaper_T01_Bone = new PrefabGUID(-152327780); public static readonly PrefabGUID Item_Weapon_Reaper_T02_Bone_Reinforced = new PrefabGUID(1402953369); public static readonly PrefabGUID Item_Weapon_Reaper_T03_Copper = new PrefabGUID(1522792650); public static readonly PrefabGUID Item_Weapon_Reaper_T04_Copper_Reinforced = new PrefabGUID(1048518929); public static readonly PrefabGUID Item_Weapon_Reaper_T05_Iron = new PrefabGUID(-2081286944); public static readonly PrefabGUID Item_Weapon_Reaper_T06_Iron_Reinforced = new PrefabGUID(1778128946); public static readonly PrefabGUID Item_Weapon_Reaper_T06_Iron_UndeadGeneral = new PrefabGUID(1887724512); public static readonly PrefabGUID Item_Weapon_Reaper_T07_DarkSilver = new PrefabGUID(6711686); public static readonly PrefabGUID Item_Weapon_Reaper_T08_Sanguine = new PrefabGUID(-2053917766); public static readonly PrefabGUID Item_Weapon_Reaper_T09_ShadowMatter = new PrefabGUID(-465491217); public static readonly PrefabGUID Item_Weapon_Reaper_Unique_T08_Variation01 = new PrefabGUID(-859437190); public static readonly PrefabGUID Item_Weapon_Reaper_Unique_T08_Variation01_Shattered = new PrefabGUID(1801132968); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_NameGenerator_T06 = new PrefabGUID(658426701); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_NameGenerator_T08 = new PrefabGUID(810808231); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T06 = new PrefabGUID(1930526079); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T06_Shattered = new PrefabGUID(3759455); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08 = new PrefabGUID(821410795); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08_Shattered = new PrefabGUID(1271087499); public static readonly PrefabGUID Item_Weapon_Slashers_Legendary_T08_Trader_Template = new PrefabGUID(-1390536751); public static readonly PrefabGUID Item_Weapon_Slashers_T01_Bone = new PrefabGUID(-588909332); public static readonly PrefabGUID Item_Weapon_Slashers_T02_Bone_Reinforced = new PrefabGUID(926722036); public static readonly PrefabGUID Item_Weapon_Slashers_T03_Copper = new PrefabGUID(1499160417); public static readonly PrefabGUID Item_Weapon_Slashers_T04_Copper_Reinforced = new PrefabGUID(-1042299347); public static readonly PrefabGUID Item_Weapon_Slashers_T05_Iron = new PrefabGUID(-314614708); public static readonly PrefabGUID Item_Weapon_Slashers_T06_Iron_Reinforced = new PrefabGUID(866934844); public static readonly PrefabGUID Item_Weapon_Slashers_T07_DarkSilver = new PrefabGUID(633666898); public static readonly PrefabGUID Item_Weapon_Slashers_T08_Sanguine = new PrefabGUID(1322545846); public static readonly PrefabGUID Item_Weapon_Slashers_T09_ShadowMatter = new PrefabGUID(506082542); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation01 = new PrefabGUID(-2068145306); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation01_Shattered = new PrefabGUID(1954207008); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation02 = new PrefabGUID(1570363331); public static readonly PrefabGUID Item_Weapon_Slashers_Unique_T08_Variation02_Shattered = new PrefabGUID(-1930402723); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_NameGenerator_T06 = new PrefabGUID(-1854790299); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_NameGenerator_T08 = new PrefabGUID(912809090); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T06 = new PrefabGUID(2001389164); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T06_Shattered = new PrefabGUID(2142983740); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08 = new PrefabGUID(-1931117134); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08_Shattered = new PrefabGUID(1717016192); public static readonly PrefabGUID Item_Weapon_Spear_Legendary_T08_Trader_Template = new PrefabGUID(-958110636); public static readonly PrefabGUID Item_Weapon_Spear_T01_Bone = new PrefabGUID(2038011836); public static readonly PrefabGUID Item_Weapon_Spear_T02_Bone_Reinforced = new PrefabGUID(1244180446); public static readonly PrefabGUID Item_Weapon_Spear_T03_Copper = new PrefabGUID(1370755976); public static readonly PrefabGUID Item_Weapon_Spear_T04_Copper_Reinforced = new PrefabGUID(790210443); public static readonly PrefabGUID Item_Weapon_Spear_T05_Iron = new PrefabGUID(1853029976); public static readonly PrefabGUID Item_Weapon_Spear_T06_Iron_Reinforced = new PrefabGUID(1065194820); public static readonly PrefabGUID Item_Weapon_Spear_T07_DarkSilver = new PrefabGUID(-352704566); public static readonly PrefabGUID Item_Weapon_Spear_T08_Sanguine = new PrefabGUID(-850142339); public static readonly PrefabGUID Item_Weapon_Spear_T09_ShadowMatter = new PrefabGUID(1307774440); public static readonly PrefabGUID Item_Weapon_Spear_Unique_T08_Variation01 = new PrefabGUID(-1674680373); public static readonly PrefabGUID Item_Weapon_Spear_Unique_T08_Variation01_Shattered = new PrefabGUID(124616797); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_NameGenerator_T06 = new PrefabGUID(1564801426); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_NameGenerator_T08 = new PrefabGUID(1908755405); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T06 = new PrefabGUID(1637216050); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T06_Shattered = new PrefabGUID(-1421775051); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08 = new PrefabGUID(195858450); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08_Shattered = new PrefabGUID(1048769481); public static readonly PrefabGUID Item_Weapon_Sword_Legendary_T08_Trader_Template = new PrefabGUID(-830893351); public static readonly PrefabGUID Item_Weapon_Sword_T01_Bone = new PrefabGUID(-2085919458); public static readonly PrefabGUID Item_Weapon_Sword_T02_Bone_Reinforced = new PrefabGUID(-796306296); public static readonly PrefabGUID Item_Weapon_Sword_T03_Copper = new PrefabGUID(-2037272000); public static readonly PrefabGUID Item_Weapon_Sword_T04_Copper_Reinforced = new PrefabGUID(-1219959051); public static readonly PrefabGUID Item_Weapon_Sword_T05_Iron = new PrefabGUID(-903587404); public static readonly PrefabGUID Item_Weapon_Sword_T06_Iron_Reinforced = new PrefabGUID(-435501075); public static readonly PrefabGUID Item_Weapon_Sword_T07_DarkSilver = new PrefabGUID(-1455388114); public static readonly PrefabGUID Item_Weapon_Sword_T08_Sanguine = new PrefabGUID(-774462329); public static readonly PrefabGUID Item_Weapon_Sword_T09_ShadowMatter = new PrefabGUID(-1215982687); public static readonly PrefabGUID Item_Weapon_Sword_Unique_T08_Variation01 = new PrefabGUID(2106567892); public static readonly PrefabGUID Item_Weapon_Sword_Unique_T08_Variation01_Shattered = new PrefabGUID(220001518); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_NameGenerator_T06 = new PrefabGUID(1835208468); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_NameGenerator_T08 = new PrefabGUID(2023500574); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T06 = new PrefabGUID(-1634108038); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T06_Shattered = new PrefabGUID(1579758125); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08 = new PrefabGUID(152014105); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08_Shattered = new PrefabGUID(1479621167); public static readonly PrefabGUID Item_Weapon_TwinBlades_Legendary_T08_Trader_Template = new PrefabGUID(-228881628); public static readonly PrefabGUID Item_Weapon_TwinBlades_T05_Iron = new PrefabGUID(-1122389049); public static readonly PrefabGUID Item_Weapon_TwinBlades_T06_Iron_Reinforced = new PrefabGUID(-1651990235); public static readonly PrefabGUID Item_Weapon_TwinBlades_T07_DarkSilver = new PrefabGUID(-1595292245); public static readonly PrefabGUID Item_Weapon_TwinBlades_T08_Sanguine = new PrefabGUID(-297349982); public static readonly PrefabGUID Item_Weapon_TwinBlades_T09_ShadowMatter = new PrefabGUID(-699863795); public static readonly PrefabGUID Item_Weapon_TwinBlades_Unique_T08_Variation01 = new PrefabGUID(601169005); public static readonly PrefabGUID Item_Weapon_TwinBlades_Unique_T08_Variation01_Shattered = new PrefabGUID(-1397287045); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_NameGenerator_T06 = new PrefabGUID(-882837429); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_NameGenerator_T08 = new PrefabGUID(1838862498); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T06 = new PrefabGUID(1705984031); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T06_Shattered = new PrefabGUID(-1222824286); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08 = new PrefabGUID(429323760); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08_Shattered = new PrefabGUID(1490846791); public static readonly PrefabGUID Item_Weapon_Whip_Legendary_T08_Trader_Template = new PrefabGUID(1340494453); public static readonly PrefabGUID Item_Weapon_Whip_T05_Iron = new PrefabGUID(-847062445); public static readonly PrefabGUID Item_Weapon_Whip_T06_Iron_Reinforced = new PrefabGUID(1393113320); public static readonly PrefabGUID Item_Weapon_Whip_T07_DarkSilver = new PrefabGUID(-960205578); public static readonly PrefabGUID Item_Weapon_Whip_T08_Sanguine = new PrefabGUID(-655095317); public static readonly PrefabGUID Item_Weapon_Whip_T09_ShadowMatter = new PrefabGUID(567413754); public static readonly PrefabGUID Item_Weapon_Whip_Unique_T08_Variation01 = new PrefabGUID(-671246832); public static readonly PrefabGUID Item_Weapon_Whip_Unique_T08_Variation01_Shattered = new PrefabGUID(950358400); public static readonly PrefabGUID ItemSet_Bags = new PrefabGUID(1414549584); public static readonly PrefabGUID ItemSet_BlackfangBossBrutal = new PrefabGUID(-1516830124); public static readonly PrefabGUID ItemSet_BlackfangSultan = new PrefabGUID(1624446354); public static readonly PrefabGUID ItemSet_BlackfangWeapons = new PrefabGUID(-1333030120); public static readonly PrefabGUID ItemSet_BoneSet = new PrefabGUID(-136285968); public static readonly PrefabGUID ItemSet_Books_Tier01 = new PrefabGUID(709277647); public static readonly PrefabGUID ItemSet_Books_Tier02 = new PrefabGUID(1841142040); public static readonly PrefabGUID ItemSet_CloakSet = new PrefabGUID(-16207254); public static readonly PrefabGUID ItemSet_ClothSet = new PrefabGUID(1120428504); public static readonly PrefabGUID ItemSet_Coating = new PrefabGUID(-463722364); public static readonly PrefabGUID ItemSet_Consumables = new PrefabGUID(-196242756); public static readonly PrefabGUID ItemSet_Consumables_PVP = new PrefabGUID(682937307); public static readonly PrefabGUID ItemSet_CopperSet = new PrefabGUID(1357780522); public static readonly PrefabGUID ItemSet_Cosmetic = new PrefabGUID(579427768); public static readonly PrefabGUID ItemSet_Cotton_Lvl47 = new PrefabGUID(-1144633555); public static readonly PrefabGUID ItemSet_CottonSet = new PrefabGUID(-1288353669); public static readonly PrefabGUID ItemSet_CottonSet_IronWeapons = new PrefabGUID(2093479860); public static readonly PrefabGUID ItemSet_CottonSet_IronWeapons_Lvl56 = new PrefabGUID(-1289195855); public static readonly PrefabGUID ItemSet_CursedForest = new PrefabGUID(-515036168); public static readonly PrefabGUID ItemSet_DarkSilverSet = new PrefabGUID(-1637805902); public static readonly PrefabGUID ItemSet_DarkSilverWeapons = new PrefabGUID(-861769370); public static readonly PrefabGUID ItemSet_DraculaSet = new PrefabGUID(-500645135); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Brute = new PrefabGUID(1123487794); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Rogue = new PrefabGUID(1303241666); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Scholar = new PrefabGUID(-252758424); public static readonly PrefabGUID ItemSet_DraculaSet_Armour_Warrior = new PrefabGUID(373637648); public static readonly PrefabGUID ItemSet_DraculaSet_NoWeapons = new PrefabGUID(1894455847); public static readonly PrefabGUID ItemSet_DraculaSet_RelaseMeta_PVP = new PrefabGUID(-830070877); public static readonly PrefabGUID ItemSet_Fish = new PrefabGUID(1327284579); public static readonly PrefabGUID ItemSet_Food = new PrefabGUID(484091631); public static readonly PrefabGUID ItemSet_Gems = new PrefabGUID(-610515613); public static readonly PrefabGUID ItemSet_Hats = new PrefabGUID(-1210785506); public static readonly PrefabGUID ItemSet_Ilves = new PrefabGUID(-1790676048); public static readonly PrefabGUID ItemSet_IronSet = new PrefabGUID(-2088928416); public static readonly PrefabGUID ItemSet_Legendary_T06 = new PrefabGUID(-370662923); public static readonly PrefabGUID ItemSet_Legendary_T06_Shattered = new PrefabGUID(731363603); public static readonly PrefabGUID ItemSet_Legendary_T08 = new PrefabGUID(2004281040); public static readonly PrefabGUID ItemSet_Legendary_T08_Shattered = new PrefabGUID(85533370); public static readonly PrefabGUID ItemSet_MagicSources = new PrefabGUID(646741696); public static readonly PrefabGUID ItemSet_MagicSourceT08 = new PrefabGUID(1399586961); public static readonly PrefabGUID ItemSet_MidTierSet = new PrefabGUID(-1626977891); public static readonly PrefabGUID ItemSet_Official_Equipment_T03 = new PrefabGUID(742198603); public static readonly PrefabGUID ItemSet_Official_Equipment_T04 = new PrefabGUID(-663535879); public static readonly PrefabGUID ItemSet_Official_Equipment_T05 = new PrefabGUID(688096336); public static readonly PrefabGUID ItemSet_Official_Equipment_T06 = new PrefabGUID(-1502721803); public static readonly PrefabGUID ItemSet_Official_Equipment_T07 = new PrefabGUID(28431735); public static readonly PrefabGUID ItemSet_Official_Equipment_T08 = new PrefabGUID(-983090495); public static readonly PrefabGUID ItemSet_Official_Equipment_T09 = new PrefabGUID(-1466803079); public static readonly PrefabGUID ItemSet_Official_Materials_T03 = new PrefabGUID(1982471388); public static readonly PrefabGUID ItemSet_Official_Materials_T04 = new PrefabGUID(1504234317); public static readonly PrefabGUID ItemSet_Official_Materials_T05 = new PrefabGUID(548330870); public static readonly PrefabGUID ItemSet_Official_Materials_T06 = new PrefabGUID(815373441); public static readonly PrefabGUID ItemSet_Official_Materials_T07 = new PrefabGUID(-1370930855); public static readonly PrefabGUID ItemSet_Official_Materials_T08 = new PrefabGUID(-1394108841); public static readonly PrefabGUID ItemSet_Passives_T01 = new PrefabGUID(-1302036775); public static readonly PrefabGUID ItemSet_Passives_T02 = new PrefabGUID(-479270617); public static readonly PrefabGUID ItemSet_Plants = new PrefabGUID(-1877193156); public static readonly PrefabGUID ItemSet_PMK01Set = new PrefabGUID(1172043481); public static readonly PrefabGUID ItemSet_PMK02Set = new PrefabGUID(1130055173); public static readonly PrefabGUID ItemSet_PMK03Set = new PrefabGUID(1470030151); public static readonly PrefabGUID ItemSet_ReinforcedBoneSet = new PrefabGUID(-484400788); public static readonly PrefabGUID ItemSet_SanguineSet = new PrefabGUID(-1860938785); public static readonly PrefabGUID ItemSet_SanguineSet_Lvl90_NoWeapons = new PrefabGUID(1085490356); public static readonly PrefabGUID ItemSet_SanguineSet_NoWeapons = new PrefabGUID(557527863); public static readonly PrefabGUID ItemSet_Seeds = new PrefabGUID(-1705042040); public static readonly PrefabGUID ItemSet_StartingRagsSet = new PrefabGUID(-1334748577); public static readonly PrefabGUID ItemSet_UniqueWeapons = new PrefabGUID(1570175408); public static readonly PrefabGUID Jewel_SpellMod_Tier_Curve = new PrefabGUID(-397540005); public static readonly PrefabGUID Jewel_SpellModTierSettings = new PrefabGUID(-639567330); public static readonly PrefabGUID JewelFloorBuildMenuGroup = new PrefabGUID(-111344929); public static readonly PrefabGUID Journal_AchievementsList = new PrefabGUID(957647889); public static readonly PrefabGUID Journal_ArmorOfBones_All = new PrefabGUID(1566228114); public static readonly PrefabGUID Journal_ArmorOfBones_Lower = new PrefabGUID(-1653648385); public static readonly PrefabGUID Journal_ArmorOfBones_Upper = new PrefabGUID(-2071097880); public static readonly PrefabGUID Journal_ArmyOfDarkness = new PrefabGUID(-437605270); public static readonly PrefabGUID Journal_BloodHunt = new PrefabGUID(-1995132640); public static readonly PrefabGUID Journal_BloodOnTap = new PrefabGUID(1248242594); public static readonly PrefabGUID Journal_BroadenHorizons = new PrefabGUID(-1472413073); public static readonly PrefabGUID Journal_CollectingTheRemains = new PrefabGUID(-1770927128); public static readonly PrefabGUID Journal_CompleteARoom = new PrefabGUID(334973636); public static readonly PrefabGUID Journal_CompleteARoomTreasury = new PrefabGUID(-686187838); public static readonly PrefabGUID Journal_ControllingMagic = new PrefabGUID(-1400391027); public static readonly PrefabGUID Journal_DarkCompanion = new PrefabGUID(-699165894); public static readonly PrefabGUID Journal_EyeOfMortium = new PrefabGUID(-452204266); public static readonly PrefabGUID Journal_Fortify = new PrefabGUID(-1899098914); public static readonly PrefabGUID Journal_Gathering = new PrefabGUID(-54280488); public static readonly PrefabGUID Journal_GettingReadyForTheHunt = new PrefabGUID(560247139); public static readonly PrefabGUID Journal_HuntingTheWild = new PrefabGUID(-1088424522); public static readonly PrefabGUID Journal_IntoTheWoods = new PrefabGUID(1695239324); public static readonly PrefabGUID Journal_LordOfTheManor = new PrefabGUID(606418711); public static readonly PrefabGUID Journal_LordOfTheNight = new PrefabGUID(1762480233); public static readonly PrefabGUID Journal_RepellingMagic = new PrefabGUID(-2102083739); public static readonly PrefabGUID Journal_ResearchDesk = new PrefabGUID(-1434604634); public static readonly PrefabGUID Journal_Reward_Tech_BatThrone = new PrefabGUID(1107902126); public static readonly PrefabGUID Journal_Reward_Tech_BloodAltar = new PrefabGUID(-1471814629); public static readonly PrefabGUID Journal_Reward_Tech_BloodKey = new PrefabGUID(-244657686); public static readonly PrefabGUID Journal_Reward_Tech_BloodTracking = new PrefabGUID(-1959133159); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmor = new PrefabGUID(1595560597); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmorLower = new PrefabGUID(-1309749813); public static readonly PrefabGUID Journal_Reward_Tech_BoneArmorUpperAndSalve = new PrefabGUID(-688527589); public static readonly PrefabGUID Journal_Reward_Tech_BoneAxe = new PrefabGUID(-1414383551); public static readonly PrefabGUID Journal_Reward_Tech_BoneAxeAndBoneMace = new PrefabGUID(-460319097); public static readonly PrefabGUID Journal_Reward_Tech_BoneMace = new PrefabGUID(-1704296059); public static readonly PrefabGUID Journal_Reward_Tech_BoneRing = new PrefabGUID(-16287215); public static readonly PrefabGUID Journal_Reward_Tech_BoneSpear = new PrefabGUID(382568697); public static readonly PrefabGUID Journal_Reward_Tech_BoneSword = new PrefabGUID(1183771910); public static readonly PrefabGUID Journal_Reward_Tech_BoneSwordAndBoneRing = new PrefabGUID(-18170500); public static readonly PrefabGUID Journal_Reward_Tech_CastleHeart = new PrefabGUID(-1498219974); public static readonly PrefabGUID Journal_Reward_Tech_CommandingForm = new PrefabGUID(-1941680956); public static readonly PrefabGUID Journal_Reward_Tech_CryptFloor = new PrefabGUID(1738745841); public static readonly PrefabGUID Journal_Reward_Tech_DraculaThrone = new PrefabGUID(-1462758332); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Stone = new PrefabGUID(-823914122); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Wood_Foundation = new PrefabGUID(1119342674); public static readonly PrefabGUID Journal_Reward_Tech_Framework_Wood_Structures = new PrefabGUID(-1315800811); public static readonly PrefabGUID Journal_Reward_Tech_JewelCraftingFloor = new PrefabGUID(140759426); public static readonly PrefabGUID Journal_Reward_Tech_Mirrors = new PrefabGUID(-477512582); public static readonly PrefabGUID Journal_Reward_Tech_MusicPlayer = new PrefabGUID(-765236681); public static readonly PrefabGUID Journal_Reward_Tech_NoctemRadar = new PrefabGUID(347964688); public static readonly PrefabGUID Journal_Reward_Tech_PrisonFloor = new PrefabGUID(687369718); public static readonly PrefabGUID Journal_Reward_Tech_PsychicForm = new PrefabGUID(1901315238); public static readonly PrefabGUID Journal_Reward_Tech_RelicRadar = new PrefabGUID(-1887126093); public static readonly PrefabGUID Journal_Reward_Tech_RelocationBeacon = new PrefabGUID(320271611); public static readonly PrefabGUID Journal_Reward_Tech_ResearchStation = new PrefabGUID(1296847090); public static readonly PrefabGUID Journal_Reward_Tech_Saddle = new PrefabGUID(-262116336); public static readonly PrefabGUID Journal_Reward_Tech_Salve = new PrefabGUID(-2040627193); public static readonly PrefabGUID Journal_Reward_Tech_ServantCoffin = new PrefabGUID(-217048074); public static readonly PrefabGUID Journal_Reward_Tech_SpecialStorage = new PrefabGUID(1436743006); public static readonly PrefabGUID Journal_Reward_Tech_SpellSlot1 = new PrefabGUID(-2023076386); public static readonly PrefabGUID Journal_Reward_Tech_SpellSlot2 = new PrefabGUID(1715810633); public static readonly PrefabGUID Journal_Reward_Tech_StoneCoffin = new PrefabGUID(1397633835); public static readonly PrefabGUID Journal_Reward_Tech_StructuresT01 = new PrefabGUID(-1950144618); public static readonly PrefabGUID Journal_Reward_Tech_TreasuryFloor = new PrefabGUID(1552474029); public static readonly PrefabGUID Journal_Reward_Tech_WallpaperImperious = new PrefabGUID(-485239202); public static readonly PrefabGUID Journal_Reward_Tech_Waypoint = new PrefabGUID(1733405785); public static readonly PrefabGUID Journal_Servants = new PrefabGUID(-892747762); public static readonly PrefabGUID Journal_Settling = new PrefabGUID(1694767961); public static readonly PrefabGUID Journal_Shelter = new PrefabGUID(-122882616); public static readonly PrefabGUID Journal_SoulStones = new PrefabGUID(-2104585843); public static readonly PrefabGUID Journal_StoneBreaker = new PrefabGUID(1502386974); public static readonly PrefabGUID Journal_SubTask_CommandHorse = new PrefabGUID(1886200394); public static readonly PrefabGUID Journal_SubTask_CompleteARoom = new PrefabGUID(-1280890101); public static readonly PrefabGUID Journal_SubTask_CompleteATreasury = new PrefabGUID(1493529939); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneBoots = new PrefabGUID(613087777); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneChest = new PrefabGUID(-1792608518); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneGloves = new PrefabGUID(-215213699); public static readonly PrefabGUID Journal_SubTask_Craft_Armor_BoneLeggings = new PrefabGUID(1613921629); public static readonly PrefabGUID Journal_SubTask_Craft_BloodPotion = new PrefabGUID(-505382241); public static readonly PrefabGUID Journal_SubTask_Craft_BoneAxe = new PrefabGUID(1649563361); public static readonly PrefabGUID Journal_SubTask_Craft_BoneMace = new PrefabGUID(-2140658599); public static readonly PrefabGUID Journal_SubTask_Craft_BoneRing = new PrefabGUID(894263396); public static readonly PrefabGUID Journal_SubTask_Craft_BoneSword = new PrefabGUID(-333019031); public static readonly PrefabGUID Journal_SubTask_EnteredTerritory = new PrefabGUID(1824476056); public static readonly PrefabGUID Journal_SubTask_Exit_Crypt = new PrefabGUID(-70416715); public static readonly PrefabGUID Journal_SubTask_Exit_DraculaThroneRoom = new PrefabGUID(1743914391); public static readonly PrefabGUID Journal_SubTask_Exit_Graveyard = new PrefabGUID(315784360); public static readonly PrefabGUID Journal_SubTask_Explore_NewBiome = new PrefabGUID(1235108858); public static readonly PrefabGUID Journal_SubTask_Feed = new PrefabGUID(430219294); public static readonly PrefabGUID Journal_SubTask_Hit_EnemyWithBloodRite = new PrefabGUID(1179711615); public static readonly PrefabGUID Journal_SubTask_Hit_EnemyWithShadowBolt = new PrefabGUID(1686171456); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Any = new PrefabGUID(853564950); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_BanditKing = new PrefabGUID(1811147566); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Dracula = new PrefabGUID(1295841871); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_FrostGuard = new PrefabGUID(-1222090013); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Keely = new PrefabGUID(-1515007114); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Nicholaus = new PrefabGUID(838689631); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Paladin = new PrefabGUID(-459875067); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Raziel = new PrefabGUID(-1337609527); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Three = new PrefabGUID(297067295); public static readonly PrefabGUID Journal_SubTask_InfuseVBlood_Tourok = new PrefabGUID(-327523340); public static readonly PrefabGUID Journal_SubTask_Interact_BloodAltar = new PrefabGUID(-1866284149); public static readonly PrefabGUID Journal_SubTask_Interact_BloodFountain_T01 = new PrefabGUID(878062219); public static readonly PrefabGUID Journal_SubTask_Interact_BloodPress = new PrefabGUID(-535764672); public static readonly PrefabGUID Journal_SubTask_Interact_EyeOfMortium = new PrefabGUID(-320407376); public static readonly PrefabGUID Journal_SubTask_Interact_Grinder = new PrefabGUID(1658353000); public static readonly PrefabGUID Journal_SubTask_Interact_Prison = new PrefabGUID(-1441066187); public static readonly PrefabGUID Journal_SubTask_Interact_RelicRadar = new PrefabGUID(-568627115); public static readonly PrefabGUID Journal_SubTask_Interact_ResearchDesk = new PrefabGUID(1378971140); public static readonly PrefabGUID Journal_SubTask_Interact_Sawmill = new PrefabGUID(167430230); public static readonly PrefabGUID Journal_SubTask_Interact_Servant = new PrefabGUID(723729339); public static readonly PrefabGUID Journal_SubTask_Interact_ServantCoffin = new PrefabGUID(-969297421); public static readonly PrefabGUID Journal_SubTask_Interact_SimpleWorkbench = new PrefabGUID(-400096203); public static readonly PrefabGUID Journal_SubTask_Interact_StoneCoffin = new PrefabGUID(-2058636945); public static readonly PrefabGUID Journal_SubTask_Interact_Throne = new PrefabGUID(1332804079); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl2 = new PrefabGUID(-2048048558); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl3 = new PrefabGUID(1934154656); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl4 = new PrefabGUID(-1024195028); public static readonly PrefabGUID Journal_SubTask_Interact_UpgradeHeart_Lvl5 = new PrefabGUID(159011421); public static readonly PrefabGUID Journal_SubTask_Interact_Waypoint = new PrefabGUID(-1304648326); public static readonly PrefabGUID Journal_SubTask_Kill_EnemiesWithSword = new PrefabGUID(-363083008); public static readonly PrefabGUID Journal_SubTask_Kill_Rocks = new PrefabGUID(-451753621); public static readonly PrefabGUID Journal_SubTask_Kill_RocksWithMaces = new PrefabGUID(2022269495); public static readonly PrefabGUID Journal_SubTask_Kill_Something = new PrefabGUID(1338261226); public static readonly PrefabGUID Journal_SubTask_Kill_Trees = new PrefabGUID(753353958); public static readonly PrefabGUID Journal_SubTask_Kill_TreeWithAxes = new PrefabGUID(-1976367576); public static readonly PrefabGUID Journal_SubTask_Obtain_AnimalHides = new PrefabGUID(-2016184431); public static readonly PrefabGUID Journal_SubTask_Obtain_BloodEssence = new PrefabGUID(635040254); public static readonly PrefabGUID Journal_SubTask_Obtain_Bones = new PrefabGUID(-1643854004); public static readonly PrefabGUID Journal_SubTask_Obtain_CoarseThread = new PrefabGUID(-2118994657); public static readonly PrefabGUID Journal_SubTask_Obtain_CopperIngot = new PrefabGUID(-65596053); public static readonly PrefabGUID Journal_SubTask_Obtain_CopperOre = new PrefabGUID(837381622); public static readonly PrefabGUID Journal_SubTask_Obtain_Leather = new PrefabGUID(1790152475); public static readonly PrefabGUID Journal_SubTask_Obtain_Lumber = new PrefabGUID(1990570379); public static readonly PrefabGUID Journal_SubTask_Obtain_PlantFibers = new PrefabGUID(1063312374); public static readonly PrefabGUID Journal_SubTask_Obtain_Rats = new PrefabGUID(1623265039); public static readonly PrefabGUID Journal_SubTask_Obtain_Stones = new PrefabGUID(1003051915); public static readonly PrefabGUID Journal_SubTask_OpenBuildMenu = new PrefabGUID(219936010); public static readonly PrefabGUID Journal_SubTask_OpenInventory = new PrefabGUID(-1183631535); public static readonly PrefabGUID Journal_SubTask_OpenMap = new PrefabGUID(-1243196902); public static readonly PrefabGUID Journal_SubTask_Reach_GearLevel = new PrefabGUID(1059247569); public static readonly PrefabGUID Journal_SubTask_Spawn_BloodFountain = new PrefabGUID(-1688286130); public static readonly PrefabGUID Journal_SubTask_Spawn_Bonfire = new PrefabGUID(1032741646); public static readonly PrefabGUID Journal_SubTask_Spawn_Castle_Foundation = new PrefabGUID(-1031271191); public static readonly PrefabGUID Journal_SubTask_Spawn_MistBrazier = new PrefabGUID(-1586770827); public static readonly PrefabGUID Journal_SubTask_Spawn_Palisades = new PrefabGUID(1601701965); public static readonly PrefabGUID Journal_SubTask_Spawn_PlainFloor = new PrefabGUID(204584750); public static readonly PrefabGUID Journal_SubTask_Spawn_Stash = new PrefabGUID(-2049723960); public static readonly PrefabGUID Journal_SubTask_Spawn_SunShelter = new PrefabGUID(861992743); public static readonly PrefabGUID Journal_SubTask_Spawn_WoodenCoffin = new PrefabGUID(-787032445); public static readonly PrefabGUID Journal_SubTask_UnlockNewSpell = new PrefabGUID(1901914570); public static readonly PrefabGUID Journal_SubTask_UnlockTech_CastleFramework = new PrefabGUID(-1655002978); public static readonly PrefabGUID Journal_SubTask_Use_VBloodMenu = new PrefabGUID(1842279965); public static readonly PrefabGUID Journal_ThirstForPower = new PrefabGUID(-302458684); public static readonly PrefabGUID Journal_ThroneOfCommand = new PrefabGUID(-327597689); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier02 = new PrefabGUID(1668809517); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier03 = new PrefabGUID(149111189); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier04 = new PrefabGUID(1805684941); public static readonly PrefabGUID Journal_UpgradeCastleHeart_Tier05 = new PrefabGUID(1861267375); public static readonly PrefabGUID Journal_Waypoint = new PrefabGUID(134993992); public static readonly PrefabGUID Journal_WieldTheSword = new PrefabGUID(436375429); public static readonly PrefabGUID JournalAsset_VBlood_Ability = new PrefabGUID(1808963981); public static readonly PrefabGUID JournalAsset_VBlood_Milestone = new PrefabGUID(631677825); public static readonly PrefabGUID JournalAsset_VBlood_Perk = new PrefabGUID(275198927); public static readonly PrefabGUID JournalAsset_VBlood_Shapeshift = new PrefabGUID(1097416038); public static readonly PrefabGUID JT_Test_Tooltip0 = new PrefabGUID(1512711212); public static readonly PrefabGUID JT_Test_Tooltip1 = new PrefabGUID(-1966508143); public static readonly PrefabGUID JT_Test_Tooltip2 = new PrefabGUID(602556420); public static readonly PrefabGUID JumpFromCliffs_AvoidDoubleJump = new PrefabGUID(-2140163907); public static readonly PrefabGUID JumpFromCliffs_Landing = new PrefabGUID(940232581); public static readonly PrefabGUID JumpFromCliffs_Travel = new PrefabGUID(691373616); public static readonly PrefabGUID JumpFromCliffs_Travel_Upwards = new PrefabGUID(-915122939); public static readonly PrefabGUID JumpFromCliffs_TriggerLeapUpAbility = new PrefabGUID(-1752769220); public static readonly PrefabGUID LavishBustBuildMenuGroup = new PrefabGUID(945053616); public static readonly PrefabGUID LavishGargoyleBuildMenuGroup = new PrefabGUID(1305900484); public static readonly PrefabGUID LavishStatueBuildMenuGroup = new PrefabGUID(1305218943); public static readonly PrefabGUID LavishVaseBuildMenuGroup = new PrefabGUID(1059987345); public static readonly PrefabGUID LegendaryItem_SpellModTierSettings = new PrefabGUID(-1706838853); public static readonly PrefabGUID LegendaryItem_StatModTierSettings = new PrefabGUID(717858233); public static readonly PrefabGUID LegendaryItem_Template = new PrefabGUID(-1573584970); public static readonly PrefabGUID LibraryFloorBuildMenuGroup = new PrefabGUID(-1218060785); public static readonly PrefabGUID LifeLeech_Settings_Default = new PrefabGUID(1949460792); public static readonly PrefabGUID LightningLightIntensityCurve = new PrefabGUID(1039030447); public static readonly PrefabGUID LightningStormType_CastleArea = new PrefabGUID(-1484860289); public static readonly PrefabGUID LightningStormType_GloomRot_General = new PrefabGUID(1089911584); public static readonly PrefabGUID LightningStormType_NoLightning = new PrefabGUID(1359681879); public static readonly PrefabGUID LightningStormType_TeslaHills = new PrefabGUID(520448353); public static readonly PrefabGUID LightningStormUnit_Example = new PrefabGUID(2016632390); public static readonly PrefabGUID LinearCurve = new PrefabGUID(1701453732); public static readonly PrefabGUID LinearCurve_MoreSmoothed = new PrefabGUID(677013970); public static readonly PrefabGUID LinearCurve_Smoothed = new PrefabGUID(-1408753583); public static readonly PrefabGUID LinearCurveInverted = new PrefabGUID(323979990); public static readonly PrefabGUID LinearInOutAndBackCurve = new PrefabGUID(-990642999); public static readonly PrefabGUID Liquid_TileModelPlacementRules = new PrefabGUID(-18625159); public static readonly PrefabGUID Liquid_TileModelPlacementRules_Sludge = new PrefabGUID(454966889); public static readonly PrefabGUID Liquid_TileModelPlacementRules_Small = new PrefabGUID(1374281814); public static readonly PrefabGUID LowActivityTimer = new PrefabGUID(-61918729); public static readonly PrefabGUID LowHealth_Curve = new PrefabGUID(1683841019); public static readonly PrefabGUID LumberJack_Ragdoll100_Prefab = new PrefabGUID(456978830); public static readonly PrefabGUID LumberJack_Ragdoll125_Prefab = new PrefabGUID(529825818); public static readonly PrefabGUID LumberJack_Ragdoll140_Prefab = new PrefabGUID(142009383); public static readonly PrefabGUID Magic_ImpactMapping = new PrefabGUID(-1184337946); public static readonly PrefabGUID Magic_ImpactMapping_No_Flesh_Impact = new PrefabGUID(-1156857871); public static readonly PrefabGUID Manticore_Spawn_FromSide = new PrefabGUID(1236029872); public static readonly PrefabGUID ManticoreLandingCurve = new PrefabGUID(-2146891481); public static readonly PrefabGUID ManticoreSupriseActiveTimer = new PrefabGUID(9869524); public static readonly PrefabGUID ManticoreSupriseHeightCurve = new PrefabGUID(1476497907); public static readonly PrefabGUID MapIcon_CastleObject_Anvil = new PrefabGUID(880725011); public static readonly PrefabGUID MapIcon_CastleObject_BloodAltar = new PrefabGUID(-1639620581); public static readonly PrefabGUID MapIcon_CastleObject_CastleHeart = new PrefabGUID(652170644); public static readonly PrefabGUID MapIcon_CastleObject_CraftingBench = new PrefabGUID(-2136859183); public static readonly PrefabGUID MapIcon_CastleObject_Default = new PrefabGUID(-1511010205); public static readonly PrefabGUID MapIcon_CastleObject_JewelCrafting = new PrefabGUID(268696952); public static readonly PrefabGUID MapIcon_CastleObject_ResearchStation = new PrefabGUID(-623144025); public static readonly PrefabGUID MapIcon_CastleObject_Tailor = new PrefabGUID(-1060998155); public static readonly PrefabGUID MapIcon_CastleWaypoint_Active = new PrefabGUID(404272564); public static readonly PrefabGUID MapIcon_Cave_Entryway = new PrefabGUID(743889990); public static readonly PrefabGUID MapIcon_CharmedUnit = new PrefabGUID(-1491648886); public static readonly PrefabGUID MapIcon_Crypt = new PrefabGUID(-2078904014); public static readonly PrefabGUID MapIcon_DeathContainer = new PrefabGUID(-1597024018); public static readonly PrefabGUID MapIcon_DraculasCastle = new PrefabGUID(-2066471106); public static readonly PrefabGUID MapIcon_Exit = new PrefabGUID(-1527777594); public static readonly PrefabGUID MapIcon_LocalPlayer = new PrefabGUID(-1323817571); public static readonly PrefabGUID MapIcon_Mount = new PrefabGUID(1495684919); public static readonly PrefabGUID MapIcon_Player = new PrefabGUID(-892362184); public static readonly PrefabGUID MapIcon_PlayerCustomMarker = new PrefabGUID(1716771727); public static readonly PrefabGUID MapIcon_PlayerCustomMarkerPathfindDot = new PrefabGUID(-438821425); public static readonly PrefabGUID MapIcon_PlayerPathDot = new PrefabGUID(467133242); public static readonly PrefabGUID MapIcon_POI_Discover_BanditCamp = new PrefabGUID(2043384709); public static readonly PrefabGUID MapIcon_POI_Discover_BanditEncampment = new PrefabGUID(1519700716); public static readonly PrefabGUID MapIcon_POI_Discover_BanditFortification = new PrefabGUID(1092950571); public static readonly PrefabGUID MapIcon_POI_Discover_BanditHideout = new PrefabGUID(1210453814); public static readonly PrefabGUID MapIcon_POI_Discover_BanditOutpost = new PrefabGUID(1957543975); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Bandit = new PrefabGUID(1501929529); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_GrizzlyBear = new PrefabGUID(400428420); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Militia = new PrefabGUID(216024887); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_SpiderQueen = new PrefabGUID(-1798124394); public static readonly PrefabGUID MapIcon_POI_Discover_Boss_Undead = new PrefabGUID(-1887784669); public static readonly PrefabGUID MapIcon_POI_Discover_ChurchFarmlands = new PrefabGUID(-1893591910); public static readonly PrefabGUID MapIcon_POI_Discover_CottonPlantation = new PrefabGUID(-768444788); public static readonly PrefabGUID MapIcon_POI_Discover_CryptVault = new PrefabGUID(603697502); public static readonly PrefabGUID MapIcon_POI_Discover_CultistSite = new PrefabGUID(931669506); public static readonly PrefabGUID MapIcon_POI_Discover_DunleyChurch = new PrefabGUID(632395128); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsChurch = new PrefabGUID(-1256336496); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsFarm = new PrefabGUID(239387799); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsGarlicFarm = new PrefabGUID(297452363); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsHorseFarm = new PrefabGUID(-948983333); public static readonly PrefabGUID MapIcon_POI_Discover_FarmlandsTown = new PrefabGUID(-1426507977); public static readonly PrefabGUID MapIcon_POI_Discover_ForgottenCemetery = new PrefabGUID(-2040967389); public static readonly PrefabGUID MapIcon_POI_Discover_GhostTown = new PrefabGUID(-1276819284); public static readonly PrefabGUID MapIcon_POI_Discover_Graveyard = new PrefabGUID(698241041); public static readonly PrefabGUID MapIcon_POI_Discover_InfestedMines = new PrefabGUID(1904546641); public static readonly PrefabGUID MapIcon_POI_Discover_IronMines = new PrefabGUID(1903833803); public static readonly PrefabGUID MapIcon_POI_Discover_LumberjackCamp = new PrefabGUID(1148857439); public static readonly PrefabGUID MapIcon_POI_Discover_Merchant = new PrefabGUID(-360752412); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaCommandPost = new PrefabGUID(105682385); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaEncampment = new PrefabGUID(-605145652); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaFortification = new PrefabGUID(1115067066); public static readonly PrefabGUID MapIcon_POI_Discover_MilitiaWatchTower = new PrefabGUID(-1768623961); public static readonly PrefabGUID MapIcon_POI_Discover_SpiderForest = new PrefabGUID(-680026394); public static readonly PrefabGUID MapIcon_POI_Discover_TerokiMeadows = new PrefabGUID(-1379366510); public static readonly PrefabGUID MapIcon_POI_Discover_TownFarmlands = new PrefabGUID(563819869); public static readonly PrefabGUID MapIcon_POI_Discover_Unknown = new PrefabGUID(-1443504104); public static readonly PrefabGUID MapIcon_POI_Discover_WolfDen = new PrefabGUID(-1443808553); public static readonly PrefabGUID MapIcon_POI_Knowledge_Church = new PrefabGUID(-1571811509); public static readonly PrefabGUID MapIcon_POI_Knowledge_LumberjackCamp = new PrefabGUID(351553164); public static readonly PrefabGUID MapIcon_POI_Knowledge_Settlement = new PrefabGUID(138663934); public static readonly PrefabGUID MapIcon_POI_Knowledge_Town = new PrefabGUID(-221292597); public static readonly PrefabGUID MapIcon_POI_Resource_CoalMine = new PrefabGUID(1992891574); public static readonly PrefabGUID MapIcon_POI_Resource_CopperQuarry = new PrefabGUID(419555810); public static readonly PrefabGUID MapIcon_POI_Resource_CottonPlantation = new PrefabGUID(468675810); public static readonly PrefabGUID MapIcon_POI_Resource_DuskbarkForest = new PrefabGUID(-1989680779); public static readonly PrefabGUID MapIcon_POI_Resource_ForgottenCemetery = new PrefabGUID(-1405787520); public static readonly PrefabGUID MapIcon_POI_Resource_GrizzlyBearDen = new PrefabGUID(-107944115); public static readonly PrefabGUID MapIcon_POI_Resource_IronMine = new PrefabGUID(-1725105796); public static readonly PrefabGUID MapIcon_POI_Resource_IronVein = new PrefabGUID(-1132008653); public static readonly PrefabGUID MapIcon_POI_Resource_Permanent_CopperQuarry = new PrefabGUID(701513285); public static readonly PrefabGUID MapIcon_POI_Resource_QuartzMine = new PrefabGUID(-853022254); public static readonly PrefabGUID MapIcon_POI_Resource_QuartzQuarry = new PrefabGUID(-426591728); public static readonly PrefabGUID MapIcon_POI_Resource_SaintLilyCemetery = new PrefabGUID(-1766751566); public static readonly PrefabGUID MapIcon_POI_Resource_SnowBlossomForest = new PrefabGUID(643012707); public static readonly PrefabGUID MapIcon_POI_Spawn_CoffinSelect = new PrefabGUID(1454830975); public static readonly PrefabGUID MapIcon_POI_Spawn_CryptSelect = new PrefabGUID(-1938049417); public static readonly PrefabGUID MapIcon_POI_Spawn_WaypointSelect = new PrefabGUID(-2098609826); public static readonly PrefabGUID MapIcon_POI_VBloodSource = new PrefabGUID(139106998); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditCamp = new PrefabGUID(-2024577803); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditEncampment = new PrefabGUID(-1284305052); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditFortification = new PrefabGUID(-1581266825); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditHideout = new PrefabGUID(1986924834); public static readonly PrefabGUID MapIcon_ProxyObject_POI_BanditOutpost = new PrefabGUID(452704314); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Bandit = new PrefabGUID(710975801); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_GrizzlyBear = new PrefabGUID(-145632811); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Militia = new PrefabGUID(370867222); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_SpiderQueen = new PrefabGUID(-1879843784); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Boss_Undead = new PrefabGUID(1767556146); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Church = new PrefabGUID(500071286); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CoalMine = new PrefabGUID(630501569); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CopperQuarry = new PrefabGUID(-585025165); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CottonPlantation = new PrefabGUID(965726709); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CryptVault = new PrefabGUID(-1082853182); public static readonly PrefabGUID MapIcon_ProxyObject_POI_CultistSite = new PrefabGUID(-65916532); public static readonly PrefabGUID MapIcon_ProxyObject_POI_DunleyChurch = new PrefabGUID(990569324); public static readonly PrefabGUID MapIcon_ProxyObject_POI_DuskbarkForest = new PrefabGUID(-106804874); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsChurch = new PrefabGUID(-1018104682); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsFarm = new PrefabGUID(-999746956); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsGarlicFarm = new PrefabGUID(-1084088565); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsHorseFarm = new PrefabGUID(-1777104040); public static readonly PrefabGUID MapIcon_ProxyObject_POI_FarmlandsTown = new PrefabGUID(1924630383); public static readonly PrefabGUID MapIcon_ProxyObject_POI_ForgottenCemetery = new PrefabGUID(408232291); public static readonly PrefabGUID MapIcon_ProxyObject_POI_GhostTown = new PrefabGUID(-1434570252); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Graveyard = new PrefabGUID(2045982916); public static readonly PrefabGUID MapIcon_ProxyObject_POI_InfestedMine = new PrefabGUID(-217075927); public static readonly PrefabGUID MapIcon_ProxyObject_POI_IronMine = new PrefabGUID(1180313228); public static readonly PrefabGUID MapIcon_ProxyObject_POI_IronVein = new PrefabGUID(-535576410); public static readonly PrefabGUID MapIcon_ProxyObject_POI_LumberjackCamp = new PrefabGUID(-1276797562); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Merchant = new PrefabGUID(-1881940993); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaCommandPost = new PrefabGUID(678331973); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaEncampment = new PrefabGUID(1243962780); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaFortification = new PrefabGUID(-1391409278); public static readonly PrefabGUID MapIcon_ProxyObject_POI_MilitiaWatchtower = new PrefabGUID(-142112866); public static readonly PrefabGUID MapIcon_ProxyObject_POI_QuartzMine = new PrefabGUID(-13809783); public static readonly PrefabGUID MapIcon_ProxyObject_POI_QuartzQuarry = new PrefabGUID(304028858); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SaintLilyCemetery = new PrefabGUID(489168296); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Settlement = new PrefabGUID(-1122624185); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SnowBlossomForest = new PrefabGUID(-945166875); public static readonly PrefabGUID MapIcon_ProxyObject_POI_SpiderForest = new PrefabGUID(-2037460151); public static readonly PrefabGUID MapIcon_ProxyObject_POI_TerokiMeadows = new PrefabGUID(-526736389); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Town = new PrefabGUID(22097164); public static readonly PrefabGUID MapIcon_ProxyObject_POI_Unknown = new PrefabGUID(636813227); public static readonly PrefabGUID MapIcon_ProxyObject_POI_VBloodSource = new PrefabGUID(-993684152); public static readonly PrefabGUID MapIcon_ProxyObject_POI_WerewolfSettlement = new PrefabGUID(1488363605); public static readonly PrefabGUID MapIcon_ProxyObject_POI_WolfDen = new PrefabGUID(-655042455); public static readonly PrefabGUID MapIcon_RecommendedTerritoryIcon = new PrefabGUID(906269163); public static readonly PrefabGUID MapIcon_Relic_Base = new PrefabGUID(638227411); public static readonly PrefabGUID MapIcon_Relic_Spawn_Base = new PrefabGUID(-1305965860); public static readonly PrefabGUID MapIcon_Relic_Spawn_Dracula = new PrefabGUID(-834249437); public static readonly PrefabGUID MapIcon_Relic_Spawn_Morgana = new PrefabGUID(1621891122); public static readonly PrefabGUID MapIcon_Relic_Spawn_Solarus = new PrefabGUID(-52304021); public static readonly PrefabGUID MapIcon_Relic_Spawn_TheMonster = new PrefabGUID(1570562186); public static readonly PrefabGUID MapIcon_Relic_Spawn_WingedHorror = new PrefabGUID(-199298876); public static readonly PrefabGUID MapIcon_Relic_Standard_Dracula = new PrefabGUID(1082059027); public static readonly PrefabGUID MapIcon_Relic_Standard_Morgana = new PrefabGUID(1172401273); public static readonly PrefabGUID MapIcon_Relic_Standard_Solarus = new PrefabGUID(2133172828); public static readonly PrefabGUID MapIcon_Relic_Standard_TheMonster = new PrefabGUID(1204693597); public static readonly PrefabGUID MapIcon_Relic_Standard_WingedHorror = new PrefabGUID(622223699); public static readonly PrefabGUID MapIcon_Siege_Summon_T02 = new PrefabGUID(-1769480952); public static readonly PrefabGUID MapIcon_Siege_Summon_T02_Complete = new PrefabGUID(1358914922); public static readonly PrefabGUID MapIcon_StartGraveyardExit = new PrefabGUID(-37003475); public static readonly PrefabGUID MapIcon_StoneCoffin = new PrefabGUID(985620050); public static readonly PrefabGUID MapIcon_UnclaimedCastle = new PrefabGUID(1556395508); public static readonly PrefabGUID MapIcon_WoodenCoffin = new PrefabGUID(1636226671); public static readonly PrefabGUID MapIcon_WorldWaypoint_Active = new PrefabGUID(-1510127174); public static readonly PrefabGUID MegaStaticManager = new PrefabGUID(1921688867); public static readonly PrefabGUID MicroPOI_Dunley_Large_AppelTrees01 = new PrefabGUID(-1210337659); public static readonly PrefabGUID MicroPOI_Dunley_Large_AppelTrees02 = new PrefabGUID(-1562640368); public static readonly PrefabGUID MicroPOI_Dunley_Large_Flowers01 = new PrefabGUID(1980641817); public static readonly PrefabGUID MicroPOI_Dunley_Large_Flowers02 = new PrefabGUID(1271807896); public static readonly PrefabGUID MicroPOI_Dunley_Large_Midsummer01 = new PrefabGUID(870462658); public static readonly PrefabGUID MicroPOI_Dunley_Large_Vegetation01 = new PrefabGUID(-72471177); public static readonly PrefabGUID MicroPOI_Dunley_Large_Vegetation02 = new PrefabGUID(159882170); public static readonly PrefabGUID MicroPOI_Dunley_Small_Copper01 = new PrefabGUID(-594287911); public static readonly PrefabGUID MicroPOI_Dunley_Small_Copper02 = new PrefabGUID(-2126192294); public static readonly PrefabGUID MicroPOI_Dunley_Small_Flowers01 = new PrefabGUID(417587719); public static readonly PrefabGUID MicroPOI_Dunley_Small_Flowers02 = new PrefabGUID(-1877665684); public static readonly PrefabGUID MicroPOI_Dunley_Small_Midsummer01 = new PrefabGUID(-2013850247); public static readonly PrefabGUID MicroPOI_Dunley_Small_Midsummer02 = new PrefabGUID(-486919002); public static readonly PrefabGUID MicroPOI_Dunley_Small_Militia01 = new PrefabGUID(-1782669943); public static readonly PrefabGUID MicroPOI_Dunley_Small_Militia02 = new PrefabGUID(1338878053); public static readonly PrefabGUID MicroPOI_Dunley_Small_SnowFlowers01_Deers01 = new PrefabGUID(-417138462); public static readonly PrefabGUID MicroPOI_Dunley_Small_SnowFlowers01_Deers02 = new PrefabGUID(-1599551402); public static readonly PrefabGUID MicroPOI_Dunley_Small_Tent01 = new PrefabGUID(-954948730); public static readonly PrefabGUID MicroPOI_Dunley_Small_Tent02 = new PrefabGUID(1504627891); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation01 = new PrefabGUID(-1991625430); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation02 = new PrefabGUID(-1915647948); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation03 = new PrefabGUID(-154341752); public static readonly PrefabGUID MicroPOI_Dunley_Small_Vegetation04 = new PrefabGUID(-620373617); public static readonly PrefabGUID MicroPOI_Dunley_Small_Werewolf01 = new PrefabGUID(1188964607); public static readonly PrefabGUID MicroPOI_Dunley_Small_Werewolf02 = new PrefabGUID(553199631); public static readonly PrefabGUID MicroPOI_Dunley_Small_Wolves01 = new PrefabGUID(142047282); public static readonly PrefabGUID MicroPOI_Farbane_Large_Spiders01 = new PrefabGUID(-1314140867); public static readonly PrefabGUID MicroPOI_Farbane_Large_Spiders02 = new PrefabGUID(1629728427); public static readonly PrefabGUID MicroPOI_Farbane_Large_Vegetation01 = new PrefabGUID(753599900); public static readonly PrefabGUID MicroPOI_Farbane_Large_Vegetation02 = new PrefabGUID(-696852918); public static readonly PrefabGUID MicroPOI_Farbane_Manticore_Small_Empty01 = new PrefabGUID(-1431734254); public static readonly PrefabGUID MicroPOI_Farbane_Manticore_Small_Manticore01 = new PrefabGUID(1796319312); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent01 = new PrefabGUID(657107699); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent02 = new PrefabGUID(-612718933); public static readonly PrefabGUID MicroPOI_Farbane_Small_BanditTent03 = new PrefabGUID(-2144772130); public static readonly PrefabGUID MicroPOI_Farbane_Small_Bears01 = new PrefabGUID(832367550); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap01 = new PrefabGUID(-564785241); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap02 = new PrefabGUID(-1817822068); public static readonly PrefabGUID MicroPOI_Farbane_Small_BearTrap03 = new PrefabGUID(1558437715); public static readonly PrefabGUID MicroPOI_Farbane_Small_BloodRoses01_Mantraps = new PrefabGUID(2010421737); public static readonly PrefabGUID MicroPOI_Farbane_Small_BloodRoses02 = new PrefabGUID(1848318604); public static readonly PrefabGUID MicroPOI_Farbane_Small_Copper01 = new PrefabGUID(-1339778715); public static readonly PrefabGUID MicroPOI_Farbane_Small_Crows01 = new PrefabGUID(-1078079211); public static readonly PrefabGUID MicroPOI_Farbane_Small_Graves01 = new PrefabGUID(362500234); public static readonly PrefabGUID MicroPOI_Farbane_Small_Graves02 = new PrefabGUID(912085285); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter01 = new PrefabGUID(229271139); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter02 = new PrefabGUID(793892165); public static readonly PrefabGUID MicroPOI_Farbane_Small_Hunter03 = new PrefabGUID(1650086643); public static readonly PrefabGUID MicroPOI_Farbane_Small_Sample02 = new PrefabGUID(-659748982); public static readonly PrefabGUID MicroPOI_Farbane_Small_SnowFlowers01_Deers = new PrefabGUID(59294084); public static readonly PrefabGUID MicroPOI_Farbane_Small_Spiders01 = new PrefabGUID(1985970891); public static readonly PrefabGUID MicroPOI_Farbane_Small_Spiders02 = new PrefabGUID(-1524472004); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation01 = new PrefabGUID(1366736737); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation02 = new PrefabGUID(585730248); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation03 = new PrefabGUID(-1630734834); public static readonly PrefabGUID MicroPOI_Farbane_Small_Vegetation04 = new PrefabGUID(868099802); public static readonly PrefabGUID MicroPOI_Farbane_Small_Wolves01 = new PrefabGUID(-1128862864); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Bears01 = new PrefabGUID(1785539142); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Bears02 = new PrefabGUID(-513422694); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Copper01 = new PrefabGUID(2007831563); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Copper02 = new PrefabGUID(-1936233477); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Crows01 = new PrefabGUID(-2110672596); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Crows02 = new PrefabGUID(-1679163292); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation01 = new PrefabGUID(1103465123); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation02 = new PrefabGUID(-318863314); public static readonly PrefabGUID MicroPOI_Hallowed_Small_Vegetation03 = new PrefabGUID(259867199); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Tent01 = new PrefabGUID(594457206); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Tent02 = new PrefabGUID(-1708193748); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation01 = new PrefabGUID(-1974088210); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation02 = new PrefabGUID(168811515); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Vegetation03 = new PrefabGUID(528364479); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Wolves01 = new PrefabGUID(-1449531798); public static readonly PrefabGUID MicroPOI_Silverlight_Small_Wolves02 = new PrefabGUID(-1737347203); public static readonly PrefabGUID MicroPOIEmptySpawner_A_Large = new PrefabGUID(-473492652); public static readonly PrefabGUID MicroPOIEmptySpawner_A_Small = new PrefabGUID(1009171661); public static readonly PrefabGUID MicroPOIEmptySpawner_B_Small = new PrefabGUID(-951780729); public static readonly PrefabGUID MicroPOIEmptySpawner_C_Small = new PrefabGUID(789321831); public static readonly PrefabGUID MicroPOISpawner_Dunley_Territory_Large = new PrefabGUID(-152605370); public static readonly PrefabGUID MicroPOISpawner_Dunley_Territory_Small = new PrefabGUID(1812317953); public static readonly PrefabGUID MicroPOISpawner_Farbane_Manticore_Territory_Small = new PrefabGUID(156260817); public static readonly PrefabGUID MicroPOISpawner_Farbane_Territory_Large = new PrefabGUID(1739478028); public static readonly PrefabGUID MicroPOISpawner_Farbane_Territory_Small = new PrefabGUID(-486938636); public static readonly PrefabGUID MicroPOISpawner_Farbane_World_Small = new PrefabGUID(1112322011); public static readonly PrefabGUID MicroPOISpawner_Hallowed_Territory_Small = new PrefabGUID(812086806); public static readonly PrefabGUID MicroPOISpawner_Silverlight_Territory_Small = new PrefabGUID(366092960); public static readonly PrefabGUID Militia_BishopOfDunley_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-722362615); public static readonly PrefabGUID Militia_Glassblower_Emote_OnAggro_Buff = new PrefabGUID(-656453991); public static readonly PrefabGUID Militia_Guard_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-540806602); public static readonly PrefabGUID Militia_Leader_Emote_OnAggro_Buff = new PrefabGUID(-2053380990); public static readonly PrefabGUID Militia_LightArrow_VBlood_Emote_OnAggro_Buff = new PrefabGUID(717888186); public static readonly PrefabGUID Militia_Nun_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1021830433); public static readonly PrefabGUID Militia_Scribe_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2118095425); public static readonly PrefabGUID MilitiaLeader_WhirlwindSlowDown_Curve = new PrefabGUID(-1536368198); public static readonly PrefabGUID MilitiaLeader_WhirlwindSpeed_Curve = new PrefabGUID(651312210); public static readonly PrefabGUID MirrorsBuildMenuGroup = new PrefabGUID(466535423); public static readonly PrefabGUID MiscBuildMenuGroup = new PrefabGUID(1393476424); public static readonly PrefabGUID MiscLocalizationKeysAsset = new PrefabGUID(1162706216); public static readonly PrefabGUID MiscStablesBuildMenuGroup = new PrefabGUID(-1279591497); public static readonly PrefabGUID MooseDashCurve = new PrefabGUID(-888570674); public static readonly PrefabGUID Mount_Deacceleration_Curve = new PrefabGUID(-2085759705); public static readonly PrefabGUID MOUNT_Farmlands_Pig_Standard = new PrefabGUID(-230748344); public static readonly PrefabGUID MOUNT_Farmlands_Ram_Standard = new PrefabGUID(-402434592); public static readonly PrefabGUID MOUNT_Farmlands_Sheep_Standard = new PrefabGUID(648794005); public static readonly PrefabGUID Mount_Feed_Inventory = new PrefabGUID(-323855418); public static readonly PrefabGUID MOUNT_Hound_Standard = new PrefabGUID(-1848948829); public static readonly PrefabGUID MOUNT_WinterWolf_Standard = new PrefabGUID(-1406608822); public static readonly PrefabGUID MOUNT_Wolf_Boss_Standard = new PrefabGUID(-1612655055); public static readonly PrefabGUID MusicPlayerStationTrack_00_DefaultCastle = new PrefabGUID(1713994656); public static readonly PrefabGUID MusicPlayerStationTrack_01_FarbaneDay = new PrefabGUID(1970325094); public static readonly PrefabGUID MusicPlayerStationTrack_02_FarbaneNight = new PrefabGUID(-440279150); public static readonly PrefabGUID MusicPlayerStationTrack_03_DunleyDay = new PrefabGUID(1446110644); public static readonly PrefabGUID MusicPlayerStationTrack_04_DunleyNight = new PrefabGUID(1137068605); public static readonly PrefabGUID MusicPlayerStationTrack_05_HallowedMountainDay = new PrefabGUID(-463366992); public static readonly PrefabGUID MusicPlayerStationTrack_06_HallowedMountainNight = new PrefabGUID(1358357667); public static readonly PrefabGUID MusicPlayerStationTrack_07_GloomrotSouthDay = new PrefabGUID(1268223145); public static readonly PrefabGUID MusicPlayerStationTrack_08_GloomrotSouthNight = new PrefabGUID(-1752143846); public static readonly PrefabGUID MusicPlayerStationTrack_09_GloomrotNorthDay = new PrefabGUID(1646256917); public static readonly PrefabGUID MusicPlayerStationTrack_10_GloomrotNorthNight = new PrefabGUID(2053439039); public static readonly PrefabGUID MusicPlayerStationTrack_11_CursedForestDay = new PrefabGUID(-239355968); public static readonly PrefabGUID MusicPlayerStationTrack_12_CursedForestNight = new PrefabGUID(-910675324); public static readonly PrefabGUID MusicPlayerStationTrack_13_SilverlightHillsDay = new PrefabGUID(-328690897); public static readonly PrefabGUID MusicPlayerStationTrack_14_SilverlighHillsNight = new PrefabGUID(-1542356669); public static readonly PrefabGUID MusicPlayerStationTrack_15_RuinsOfMortiumDay = new PrefabGUID(-1295363061); public static readonly PrefabGUID MusicPlayerStationTrack_16_RuinsOfMortiumNight = new PrefabGUID(-477374689); public static readonly PrefabGUID MusicPlayerStationTrack_17_StrongbladeDay = new PrefabGUID(-555132894); public static readonly PrefabGUID MusicPlayerStationTrack_18_StrongbladeNight = new PrefabGUID(1158372792); public static readonly PrefabGUID MusicPlayerStationTrack_19_VBloodCombat = new PrefabGUID(-1612574516); public static readonly PrefabGUID MusicPlayerStationTrack_20_DraculaCombat = new PrefabGUID(1915110023); public static readonly PrefabGUID MusicPlayerStationTrack_20_PMK_Castle = new PrefabGUID(384659227); public static readonly PrefabGUID MusicPlayerStationTrack_21_PMK_Boss = new PrefabGUID(1058220499); public static readonly PrefabGUID Mutant_FleshGolem_PoolJumpFollowup = new PrefabGUID(1851805302); public static readonly PrefabGUID Mutant_FleshGolem_Spawn_PoolJump = new PrefabGUID(290549683); public static readonly PrefabGUID Mutant_RatHorror_Spawn_PoolJump = new PrefabGUID(-79158284); public static readonly PrefabGUID Mutant_Spitter_Spawn_PoolJump = new PrefabGUID(-1529092559); public static readonly PrefabGUID MutantSpawnXCurve = new PrefabGUID(-1528489850); public static readonly PrefabGUID MutantSpitterSpawnCurve = new PrefabGUID(1098186763); public static readonly PrefabGUID NetworkedSequence = new PrefabGUID(651179295); public static readonly PrefabGUID NeutralTeam = new PrefabGUID(-672413924); public static readonly PrefabGUID NightMaidenSeduceCurve = new PrefabGUID(-407130650); public static readonly PrefabGUID Noctem_DraculaGarden_Bench01_Shatter = new PrefabGUID(1459301783); public static readonly PrefabGUID Noctem_DraculaGarden_Urn04_Shatter = new PrefabGUID(1314021119); public static readonly PrefabGUID Noctem_StoneUrn01_Shattered = new PrefabGUID(2102871228); public static readonly PrefabGUID NonAccurateSineCurveFromMiddle = new PrefabGUID(-796341555); public static readonly PrefabGUID NonAccurateSineCurveFromMiddleR = new PrefabGUID(1643180300); public static readonly PrefabGUID NoSound_ImpactMapping = new PrefabGUID(-1446028422); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__BlackWolf_ = new PrefabGUID(-17298757); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__Werewolf_ = new PrefabGUID(-94593903); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__WinterWolf_ = new PrefabGUID(2078433324); public static readonly PrefabGUID NPC_Creature_Fur_Color_Collection__Wolf_ = new PrefabGUID(-507617701); public static readonly PrefabGUID NPC_Cultist_Skin_Color_Collection__Guy_ = new PrefabGUID(1582094247); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__BigGuy_ = new PrefabGUID(-1312301922); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__Blackfang_ = new PrefabGUID(-1768882980); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__Deadeye_ = new PrefabGUID(956398077); public static readonly PrefabGUID NPC_Servant_Skin_Color_Collection__LittleGuy_ = new PrefabGUID(1316570996); public static readonly PrefabGUID NPCArchmage_Ragdoll100_Prefab = new PrefabGUID(1623309226); public static readonly PrefabGUID NPCArchmage_Ragdoll110_Prefab = new PrefabGUID(1141474507); public static readonly PrefabGUID NPCBigGuy_Ragdoll100_Prefab = new PrefabGUID(-2016249566); public static readonly PrefabGUID NPCBigGuy_Ragdoll115_CARVERBOSS_PLACEHOLDER_Prefab = new PrefabGUID(-1651972765); public static readonly PrefabGUID NPCBigGuy_Ragdoll115_Shield_Prefab = new PrefabGUID(-2094271300); public static readonly PrefabGUID NPCBigGuy_Ragdoll122_Prefab = new PrefabGUID(629504465); public static readonly PrefabGUID NPCBigGuy_Ragdoll125_Prefab = new PrefabGUID(-2068275797); public static readonly PrefabGUID NPCBigGuy_Ragdoll125_Shield_Prefab = new PrefabGUID(-1620976054); public static readonly PrefabGUID NPCBigGuy_Ragdoll145_Shield_Prefab = new PrefabGUID(-2075519339); public static readonly PrefabGUID NPCCultist_Ragdoll100_Prefab = new PrefabGUID(1209428227); public static readonly PrefabGUID NPCCultist_Ragdoll130_Prefab = new PrefabGUID(1467043483); public static readonly PrefabGUID NPCDeadeye_Bow_Ragdoll100_Prefab = new PrefabGUID(1904001419); public static readonly PrefabGUID NPCDeadeye_Bow_Ragdoll150_Prefab = new PrefabGUID(2107671772); public static readonly PrefabGUID NPCDeadeye_Ragdoll100_Prefab = new PrefabGUID(1642358057); public static readonly PrefabGUID NPCDeadeye_Ragdoll105_Prefab = new PrefabGUID(587113334); public static readonly PrefabGUID NPCDeadeye_Ragdoll110_Prefab = new PrefabGUID(1117944654); public static readonly PrefabGUID NPCDeadeye_Ragdoll125_Prefab = new PrefabGUID(1085455878); public static readonly PrefabGUID NPCDeadeye_Ragdoll140_Prefab = new PrefabGUID(-1795341545); public static readonly PrefabGUID NPCDeadeye_Ragdoll150_Prefab = new PrefabGUID(1117365645); public static readonly PrefabGUID NPCDeadeye_Railgunner_Ragdoll110_Prefab = new PrefabGUID(1182211632); public static readonly PrefabGUID NPCDeadeye_Railgunner_Ragdoll145_Prefab = new PrefabGUID(755098941); public static readonly PrefabGUID NPCDeadeye_RootDress_Ragdoll100_Prefab = new PrefabGUID(1545499994); public static readonly PrefabGUID NPCGunner_Ragdoll100_Prefab = new PrefabGUID(1226227843); public static readonly PrefabGUID NPCGuy_Ragdoll100_Prefab = new PrefabGUID(-827831460); public static readonly PrefabGUID NPCGuy_Ragdoll105_Prefab = new PrefabGUID(-57400309); public static readonly PrefabGUID NPCKnight_Ragdoll100_Prefab = new PrefabGUID(-1438299479); public static readonly PrefabGUID NPCLittleGuy_Ragdoll100_Prefab = new PrefabGUID(987392987); public static readonly PrefabGUID NPCLittleGuy_RagdollBandit115_Prefab = new PrefabGUID(-2036033925); public static readonly PrefabGUID NPCLittleGuy_RagdollBandit130_Prefab = new PrefabGUID(184271208); public static readonly PrefabGUID NPCLittleGuy_RagdollFarmer100_Prefab = new PrefabGUID(429093897); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton115_Prefab = new PrefabGUID(-200219672); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton160_Prefab = new PrefabGUID(-684085785); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeleton200_Prefab = new PrefabGUID(-995496346); public static readonly PrefabGUID NPCLittleGuy_RagdollSkeletonBroken115_Prefab = new PrefabGUID(-1185502390); public static readonly PrefabGUID NPCLittleGuy_RagdollSlave13_Prefab = new PrefabGUID(1044582719); public static readonly PrefabGUID NPCMilitiaLeader_Ragdoll100_Prefab = new PrefabGUID(1403646286); public static readonly PrefabGUID NPCMilitiaLeader_Ragdoll135_Prefab = new PrefabGUID(-529139821); public static readonly PrefabGUID NPCMilitiaLeader_UndeadLeader_Ragdoll160_Prefab = new PrefabGUID(-1870535539); public static readonly PrefabGUID NPCNecromancer_Ragdoll100_Prefab = new PrefabGUID(1997393014); public static readonly PrefabGUID NPCNecromancer_Ragdoll120_Prefab = new PrefabGUID(641571884); public static readonly PrefabGUID NPCPaladin_Ragdoll120_Prefab = new PrefabGUID(1436718613); public static readonly PrefabGUID NPCPaladin_Ragdoll180_Prefab = new PrefabGUID(-576334131); public static readonly PrefabGUID NPCTailor_Ragdoll100_Prefab = new PrefabGUID(984183203); public static readonly PrefabGUID NPCTallGuy_Ragdoll100_Prefab = new PrefabGUID(-2049121618); public static readonly PrefabGUID NPCTallGuy_Ragdoll100_Prefab_Sentinel = new PrefabGUID(-1413470678); public static readonly PrefabGUID NPCTallGuy_Ragdoll110_Prefab = new PrefabGUID(-664477091); public static readonly PrefabGUID NPCTallGuy_Ragdoll120_Prefab = new PrefabGUID(410073997); public static readonly PrefabGUID NPCTrooper_Flamethrower_Ragdoll110_Prefab = new PrefabGUID(-1804304436); public static readonly PrefabGUID NPCVampireFemale_Ragdoll100_Prefab = new PrefabGUID(-1573458306); public static readonly PrefabGUID NPCVampireHunter_Ragdoll100_Prefab = new PrefabGUID(-819471245); public static readonly PrefabGUID NPCVampireMale_Ragdoll100_Prefab = new PrefabGUID(930783815); public static readonly PrefabGUID OLD_VM_Player_Female_DONT_USE = new PrefabGUID(330992182); public static readonly PrefabGUID OLD_VM_Player_Male_DONT_USE = new PrefabGUID(-1308441114); public static readonly PrefabGUID OncePatrolDespawnBuff = new PrefabGUID(758863294); public static readonly PrefabGUID One = new PrefabGUID(-1274342143); public static readonly PrefabGUID Oscillating_Medium_Curve = new PrefabGUID(-1659374781); public static readonly PrefabGUID OutdoorStandingLightsBuildMenuGroup01 = new PrefabGUID(467492703); public static readonly PrefabGUID PaintingHorizontalBuildingMenuGroup = new PrefabGUID(-2139932892); public static readonly PrefabGUID PaintingOvalBuildingMenuGroup = new PrefabGUID(-1999286106); public static readonly PrefabGUID PaintingProjectKBuildMenuGroup = new PrefabGUID(-2003430006); public static readonly PrefabGUID PaintingSquareBuildingMenuGroup = new PrefabGUID(1840780971); public static readonly PrefabGUID PaintingStrongbladeDLC01BuildMenuGroup = new PrefabGUID(1138835019); public static readonly PrefabGUID PaintingVerticalBuildingMenuGroup = new PrefabGUID(-1260632034); public static readonly PrefabGUID PalisadesBuildMenuGroup = new PrefabGUID(889560609); public static readonly PrefabGUID PickingSettings = new PrefabGUID(1601806240); public static readonly PrefabGUID Pillar_Banners_BuildingMenuGroup = new PrefabGUID(732156278); public static readonly PrefabGUID Pillar_Bells_BuildingMenuGroup = new PrefabGUID(-1156462855); public static readonly PrefabGUID Pillar_DyeSwatch = new PrefabGUID(631243042); public static readonly PrefabGUID Pillar_DyeSwatchCollection = new PrefabGUID(-2048656392); public static readonly PrefabGUID Pillar_MiscOrnaments_BuildingMenuGroup = new PrefabGUID(-1685489020); public static readonly PrefabGUID Pillar_StoneOrnaments_BuildingMenuGroup = new PrefabGUID(-937998270); public static readonly PrefabGUID Pillar_StoneOrnaments_DLC01 = new PrefabGUID(-54154647); public static readonly PrefabGUID Plant_Forest01_Hedge01_Broken = new PrefabGUID(1909560955); public static readonly PrefabGUID Plant_Forest01_Hedge02_Broken = new PrefabGUID(-837456415); public static readonly PrefabGUID Plant_Forest01_HedgeCursed01_Broken = new PrefabGUID(-2106526909); public static readonly PrefabGUID Plant_Forest01_HedgeCursed02_Broken = new PrefabGUID(-51720040); public static readonly PrefabGUID Plant_WildRose01_Broken = new PrefabGUID(-352033015); public static readonly PrefabGUID PlantersExteriorBuildMenuGroup = new PrefabGUID(692816263); public static readonly PrefabGUID PlantersLargeBuildMenuGroup = new PrefabGUID(-901789829); public static readonly PrefabGUID PlantersLargeMegaBuildMenuGroup = new PrefabGUID(956790336); public static readonly PrefabGUID PlantersMediumBuildMenuGroup = new PrefabGUID(1621687723); public static readonly PrefabGUID PlantersSmallBuildMenuGroup = new PrefabGUID(1332563830); public static readonly PrefabGUID PlayerTeam = new PrefabGUID(1128897469); public static readonly PrefabGUID Poloma_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1513896601); public static readonly PrefabGUID Portal_Travel_Curve = new PrefabGUID(1499775392); public static readonly PrefabGUID Potatisbear_Ragdoll_Prefab = new PrefabGUID(1061125928); public static readonly PrefabGUID Potatispress_Ragdoll_prefab = new PrefabGUID(1777564790); public static readonly PrefabGUID Potatistree_RagdollPrefab = new PrefabGUID(-863747292); public static readonly PrefabGUID PrefabVariant_02_Prefab_Tree_01 = new PrefabGUID(384228836); public static readonly PrefabGUID PrefabVariant_02_Prefab_Tree_01_Dead = new PrefabGUID(-360850683); public static readonly PrefabGUID PrefabVariant_02_Prefab_TreeStump_01 = new PrefabGUID(1606558287); public static readonly PrefabGUID PrefabVariant_02_Prefab_TreeStump_01_SpiderWeb = new PrefabGUID(55230957); public static readonly PrefabGUID Prison01WallpaperBuildMenuGroup = new PrefabGUID(809387161); public static readonly PrefabGUID PrisonCellBuildMenuGroup = new PrefabGUID(-1703793729); public static readonly PrefabGUID PrisonerBloodQualityChangeFailBuff = new PrefabGUID(-638893418); public static readonly PrefabGUID PrisonerBloodQualityChangeSuccessBuff = new PrefabGUID(-167264377); public static readonly PrefabGUID PrisonFloorBuildMenuGroup = new PrefabGUID(353289575); public static readonly PrefabGUID ProfessorCoilBeam = new PrefabGUID(-1735851173); public static readonly PrefabGUID Progression_ArenaZonePlaced = new PrefabGUID(1844153864); public static readonly PrefabGUID ProgressionCollection = new PrefabGUID(259325625); public static readonly PrefabGUID ProgTestUnitActiveTimer = new PrefabGUID(-1518470375); public static readonly PrefabGUID Projectile = new PrefabGUID(1496743989); public static readonly PrefabGUID Projectile_Dual_Axes_Curve_X = new PrefabGUID(-1515066134); public static readonly PrefabGUID Projectile_Dual_Axes_Curve_Z = new PrefabGUID(1080306806); public static readonly PrefabGUID Projectile_OffsetAnimation_Curve = new PrefabGUID(1511317880); public static readonly PrefabGUID Projectile_Spear_Area_Curve = new PrefabGUID(2007100673); public static readonly PrefabGUID ProjectileBig = new PrefabGUID(1136068294); public static readonly PrefabGUID ProjectK01WindowsBuildMenuGroup = new PrefabGUID(1542881800); public static readonly PrefabGUID ProjectKDLC_StatuesBuildMenuGroup = new PrefabGUID(-1189411033); public static readonly PrefabGUID PurpleCarpetsBuildMenuGroup01 = new PrefabGUID(1144832236); public static readonly PrefabGUID PurpleCarpetsBuildMenuGroup02 = new PrefabGUID(1801004559); public static readonly PrefabGUID PurpleWindowsBuildMenuGroup = new PrefabGUID(667624227); public static readonly PrefabGUID PVP_CombatPreset_DefensiveSpellBuild = new PrefabGUID(669405535); public static readonly PrefabGUID PVP_CombatPreset_Endgame_Shmack = new PrefabGUID(1456936385); public static readonly PrefabGUID PVP_CombatPreset_Jewels_BiS = new PrefabGUID(135159818); public static readonly PrefabGUID PVP_CombatPreset_MinionBuild = new PrefabGUID(1366436603); public static readonly PrefabGUID PVP_CombatPreset_MovementBuild = new PrefabGUID(1571466947); public static readonly PrefabGUID PVP_CombatPreset_OffensiveSpellBuild = new PrefabGUID(-286350389); public static readonly PrefabGUID PVP_CombatPreset_ReleaseVersion_Endgame_BiS = new PrefabGUID(1369626232); public static readonly PrefabGUID PVP_CombatPreset_ReleaseVersion_Endgame_Shmack = new PrefabGUID(1862213784); public static readonly PrefabGUID PVP_CombatPreset_TankBuild = new PrefabGUID(2005383940); public static readonly PrefabGUID PVP_CombatPreset_WeaponBuild = new PrefabGUID(1139168502); public static readonly PrefabGUID RagdollSource_Melee = new PrefabGUID(1455784769); public static readonly PrefabGUID RagdollSource_Melee_Left = new PrefabGUID(1314975289); public static readonly PrefabGUID RagdollSource_Melee_Right = new PrefabGUID(1557785308); public static readonly PrefabGUID RagdollSource_Projectile = new PrefabGUID(-856857226); public static readonly PrefabGUID RagdollSource_Throw = new PrefabGUID(-1450115575); public static readonly PrefabGUID RagdollSource_ThrowInverted = new PrefabGUID(-1823134394); public static readonly PrefabGUID RandChain_Mechs_Type_A = new PrefabGUID(243807247); public static readonly PrefabGUID RandChain_Minerals_Type_A = new PrefabGUID(-482240288); public static readonly PrefabGUID RandChain_Minerals_Type_B = new PrefabGUID(1050329621); public static readonly PrefabGUID RandChain_Minerals_Type_C = new PrefabGUID(-372158513); public static readonly PrefabGUID RandChain_Minerals_Type_D = new PrefabGUID(-991500671); public static readonly PrefabGUID RandChain_Vegetation_Type_A = new PrefabGUID(686942566); public static readonly PrefabGUID RandChain_Vegetation_Type_B = new PrefabGUID(505948868); public static readonly PrefabGUID RandChain_Vegetation_Type_C = new PrefabGUID(710258077); public static readonly PrefabGUID RandomChain_Mechs_GloomRot_A = new PrefabGUID(922758622); public static readonly PrefabGUID RandomChain_Minerals = new PrefabGUID(616084525); public static readonly PrefabGUID RandomChain_Minerals_Cursed_General_A = new PrefabGUID(1215596531); public static readonly PrefabGUID RandomChain_Minerals_Cursed_GhostCrystal_B = new PrefabGUID(681634201); public static readonly PrefabGUID RandomChain_Minerals_Cursed_GhostVillage_B = new PrefabGUID(150196735); public static readonly PrefabGUID RandomChain_Minerals_Cursed_SpiderMine_B = new PrefabGUID(253064513); public static readonly PrefabGUID RandomChain_Minerals_DraculasDemise_B = new PrefabGUID(-1224342390); public static readonly PrefabGUID RandomChain_Minerals_Dunley_Churches_B = new PrefabGUID(1968084314); public static readonly PrefabGUID RandomChain_Minerals_Dunley_GemVeins_B = new PrefabGUID(-109414955); public static readonly PrefabGUID RandomChain_Minerals_Dunley_General_A = new PrefabGUID(-1686960061); public static readonly PrefabGUID RandomChain_Minerals_Dunley_General_C = new PrefabGUID(1883681676); public static readonly PrefabGUID RandomChain_Minerals_Dunley_IronMines_B = new PrefabGUID(69122226); public static readonly PrefabGUID RandomChain_Minerals_Dunley_QuartzQuarry_B = new PrefabGUID(-329543730); public static readonly PrefabGUID RandomChain_Minerals_Farbane_Copper_Guaranteed = new PrefabGUID(-1246980714); public static readonly PrefabGUID RandomChain_Minerals_Farbane_CopperQuarry_A = new PrefabGUID(-1508721555); public static readonly PrefabGUID RandomChain_Minerals_Farbane_Rock_A = new PrefabGUID(1699187683); public static readonly PrefabGUID RandomChain_Minerals_Farbane_SulfurMine_B = new PrefabGUID(1976530969); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_CopperMine_A = new PrefabGUID(332030847); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_North_General_A = new PrefabGUID(-936853849); public static readonly PrefabGUID RandomChain_Minerals_Gloomrot_South_General_A = new PrefabGUID(1581927905); public static readonly PrefabGUID RandomChain_Minerals_Noctem_General_A = new PrefabGUID(-1626851098); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_GemVeins_B = new PrefabGUID(949609432); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_General_A = new PrefabGUID(2044699992); public static readonly PrefabGUID RandomChain_Minerals_SilverHills_SilverMine_B = new PrefabGUID(-103943640); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_Emery_Guaranteed = new PrefabGUID(-1555903001); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_EmeryQuarry = new PrefabGUID(-13829184); public static readonly PrefabGUID RandomChain_Minerals_StrongBlade_General_A = new PrefabGUID(-730092869); public static readonly PrefabGUID RandomChain_Minerals_Type_A = new PrefabGUID(-2035732127); public static readonly PrefabGUID RandomChain_Minerals_Type_B = new PrefabGUID(668613367); public static readonly PrefabGUID RandomChain_Minerals_Type_C = new PrefabGUID(-488010311); public static readonly PrefabGUID RandomChain_Minerals_Type_D = new PrefabGUID(-574301209); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_General_A = new PrefabGUID(1989776056); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_Shrooms_B = new PrefabGUID(20818034); public static readonly PrefabGUID RandomChain_Vegetation_Cursed_Wisps_C = new PrefabGUID(-2144099588); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_Cave_B = new PrefabGUID(-1117329931); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_Cemetery_B = new PrefabGUID(1975962479); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_General_A = new PrefabGUID(-1743359472); public static readonly PrefabGUID RandomChain_Vegetation_Dunley_WaterStream_B = new PrefabGUID(1956785886); public static readonly PrefabGUID RandomChain_Vegetation_Elris_General_A = new PrefabGUID(1628564254); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Builder_B = new PrefabGUID(-184524172); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Cave_B = new PrefabGUID(1604507828); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Cemetery_B = new PrefabGUID(-1465440716); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_Meadow_C = new PrefabGUID(2078250001); public static readonly PrefabGUID RandomChain_Vegetation_Farbane_SulfurQuarry_B = new PrefabGUID(-1393878847); public static readonly PrefabGUID RandomChain_Vegetation_GloomNorth_General_A = new PrefabGUID(-1685461799); public static readonly PrefabGUID RandomChain_Vegetation_GloomSouth_General_A = new PrefabGUID(366723259); public static readonly PrefabGUID RandomChain_Vegetation_Noctem_General_A = new PrefabGUID(1821124652); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_General_A = new PrefabGUID(411261009); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_Grapes_C = new PrefabGUID(1310361680); public static readonly PrefabGUID RandomChain_Vegetation_SilverHills_Harpy_B = new PrefabGUID(-157729892); public static readonly PrefabGUID RandomChain_Vegetation_StrongBlade_General_A = new PrefabGUID(1555906197); public static readonly PrefabGUID RandomChain_Vegetation_StrongBlade_Mushroom_B = new PrefabGUID(-2053899965); public static readonly PrefabGUID RandomChain_Vegetation_Type_A = new PrefabGUID(-1770724568); public static readonly PrefabGUID RandomChain_Vegetation_Type_B = new PrefabGUID(-1011544551); public static readonly PrefabGUID RandomChain_Vegetation_Type_C = new PrefabGUID(193881496); public static readonly PrefabGUID RareUnitActiveTimer = new PrefabGUID(-1552014489); public static readonly PrefabGUID Recipe_Armor_Boots_T01_Bone = new PrefabGUID(-61202530); public static readonly PrefabGUID Recipe_Armor_Boots_T02_Bone_Reinforced = new PrefabGUID(785023263); public static readonly PrefabGUID Recipe_Armor_Boots_T03_Cloth = new PrefabGUID(1159379254); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Brute = new PrefabGUID(-211066785); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Rogue = new PrefabGUID(30410046); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Scholar = new PrefabGUID(1241016364); public static readonly PrefabGUID Recipe_Armor_Boots_T04_Copper_Warrior = new PrefabGUID(-1573355501); public static readonly PrefabGUID Recipe_Armor_Boots_T05_Cotton = new PrefabGUID(1859811298); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Brute = new PrefabGUID(564937663); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Rogue = new PrefabGUID(-501436877); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Scholar = new PrefabGUID(-1790839980); public static readonly PrefabGUID Recipe_Armor_Boots_T06_Iron_Warrior = new PrefabGUID(1598255582); public static readonly PrefabGUID Recipe_Armor_Boots_T07_Silk = new PrefabGUID(-18516146); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Brute = new PrefabGUID(481223129); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Rogue = new PrefabGUID(1020324654); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Scholar = new PrefabGUID(26969974); public static readonly PrefabGUID Recipe_Armor_Boots_T08_DarkSilver_Warrior = new PrefabGUID(-1671420432); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula = new PrefabGUID(-1626042682); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Brute = new PrefabGUID(240689181); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Rogue = new PrefabGUID(-850978565); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Scholar = new PrefabGUID(-2040897849); public static readonly PrefabGUID Recipe_Armor_Boots_T09_Dracula_Warrior = new PrefabGUID(-1023773403); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_BlackfangSultan = new PrefabGUID(-1358062441); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_PMK = new PrefabGUID(-2073504211); public static readonly PrefabGUID Recipe_Armor_Boots_T0X_PMK_03 = new PrefabGUID(-1595671236); public static readonly PrefabGUID Recipe_Armor_Chest_T01_Bone = new PrefabGUID(1961555084); public static readonly PrefabGUID Recipe_Armor_Chest_T02_Bone_Reinforced = new PrefabGUID(1236392443); public static readonly PrefabGUID Recipe_Armor_Chest_T03_Cloth = new PrefabGUID(1384522986); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Brute = new PrefabGUID(-42975513); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Rogue = new PrefabGUID(-235084625); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Scholar = new PrefabGUID(1490955797); public static readonly PrefabGUID Recipe_Armor_Chest_T04_Copper_Warrior = new PrefabGUID(-850288860); public static readonly PrefabGUID Recipe_Armor_Chest_T05_Cotton = new PrefabGUID(724016990); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Brute = new PrefabGUID(1640689004); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Rogue = new PrefabGUID(-921085381); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Scholar = new PrefabGUID(969479018); public static readonly PrefabGUID Recipe_Armor_Chest_T06_Iron_Warrior = new PrefabGUID(917114760); public static readonly PrefabGUID Recipe_Armor_Chest_T07_Silk = new PrefabGUID(590293987); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Brute = new PrefabGUID(909405972); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Rogue = new PrefabGUID(2080647005); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Scholar = new PrefabGUID(-246992105); public static readonly PrefabGUID Recipe_Armor_Chest_T08_DarkSilver_Warrior = new PrefabGUID(636393327); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula = new PrefabGUID(-530701068); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Brute = new PrefabGUID(1130263669); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Rogue = new PrefabGUID(-640317541); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Scholar = new PrefabGUID(-1905495055); public static readonly PrefabGUID Recipe_Armor_Chest_T09_Dracula_Warrior = new PrefabGUID(-510627751); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_BlackfangSultan = new PrefabGUID(2082549756); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_Cosmetic_Dress01 = new PrefabGUID(-790370630); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_Cosmetic_Suit01 = new PrefabGUID(115376160); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK = new PrefabGUID(-434051712); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK_02 = new PrefabGUID(639186567); public static readonly PrefabGUID Recipe_Armor_Chest_T0X_PMK_03 = new PrefabGUID(1712328309); public static readonly PrefabGUID Recipe_Armor_Gloves_T01_Bone = new PrefabGUID(1301724296); public static readonly PrefabGUID Recipe_Armor_Gloves_T02_Bone_Reinforced = new PrefabGUID(-2140040968); public static readonly PrefabGUID Recipe_Armor_Gloves_T03_Cloth = new PrefabGUID(-1213072175); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Brute = new PrefabGUID(928177888); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Rogue = new PrefabGUID(-1109520881); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Scholar = new PrefabGUID(1404998399); public static readonly PrefabGUID Recipe_Armor_Gloves_T04_Copper_Warrior = new PrefabGUID(872441116); public static readonly PrefabGUID Recipe_Armor_Gloves_T05_Cotton = new PrefabGUID(1314134803); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Brute = new PrefabGUID(55560401); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Rogue = new PrefabGUID(550971753); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Scholar = new PrefabGUID(2029351741); public static readonly PrefabGUID Recipe_Armor_Gloves_T06_Iron_Warrior = new PrefabGUID(1321683558); public static readonly PrefabGUID Recipe_Armor_Gloves_T07_Silk = new PrefabGUID(-1221068660); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Brute = new PrefabGUID(-693799437); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Rogue = new PrefabGUID(894482163); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Scholar = new PrefabGUID(-494730465); public static readonly PrefabGUID Recipe_Armor_Gloves_T08_DarkSilver_Warrior = new PrefabGUID(1193907705); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula = new PrefabGUID(735928485); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Brute = new PrefabGUID(-1622946659); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Rogue = new PrefabGUID(-338932204); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Scholar = new PrefabGUID(-1548502696); public static readonly PrefabGUID Recipe_Armor_Gloves_T09_Dracula_Warrior = new PrefabGUID(1103938523); public static readonly PrefabGUID Recipe_Armor_Gloves_T0X_BlackfangSultan = new PrefabGUID(-2121295872); public static readonly PrefabGUID Recipe_Armor_Gloves_T0X_PMK = new PrefabGUID(1318164039); public static readonly PrefabGUID Recipe_Armor_Legs_T01_Bone = new PrefabGUID(-1690725169); public static readonly PrefabGUID Recipe_Armor_Legs_T02_Bone_Reinforced = new PrefabGUID(-270797694); public static readonly PrefabGUID Recipe_Armor_Legs_T03_Cloth = new PrefabGUID(951656438); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Brute = new PrefabGUID(-1149764556); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Rogue = new PrefabGUID(-1585906930); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Scholar = new PrefabGUID(1891096609); public static readonly PrefabGUID Recipe_Armor_Legs_T04_Copper_Warrior = new PrefabGUID(-1228356397); public static readonly PrefabGUID Recipe_Armor_Legs_T05_Cotton = new PrefabGUID(321376258); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Brute = new PrefabGUID(1446070886); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Rogue = new PrefabGUID(1989724461); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Scholar = new PrefabGUID(1934342576); public static readonly PrefabGUID Recipe_Armor_Legs_T06_Iron_Warrior = new PrefabGUID(1489561003); public static readonly PrefabGUID Recipe_Armor_Legs_T07_Silk = new PrefabGUID(-1310297862); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Brute = new PrefabGUID(392270656); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Rogue = new PrefabGUID(24363319); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Scholar = new PrefabGUID(1352971933); public static readonly PrefabGUID Recipe_Armor_Legs_T08_DarkSilver_Warrior = new PrefabGUID(1912958943); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula = new PrefabGUID(67380899); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Brute = new PrefabGUID(39790654); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Rogue = new PrefabGUID(1779568881); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Scholar = new PrefabGUID(-195466783); public static readonly PrefabGUID Recipe_Armor_Legs_T09_Dracula_Warrior = new PrefabGUID(-1621263742); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_BlackfangSultan = new PrefabGUID(83251839); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_Cosmetic_Suit01 = new PrefabGUID(-1197884715); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK = new PrefabGUID(587362253); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK_02 = new PrefabGUID(-2087888734); public static readonly PrefabGUID Recipe_Armor_Legs_T0X_PMK_03 = new PrefabGUID(706994576); public static readonly PrefabGUID Recipe_Bag_New_T02 = new PrefabGUID(-316487143); public static readonly PrefabGUID Recipe_Bag_New_T03 = new PrefabGUID(-1025651560); public static readonly PrefabGUID Recipe_Bag_New_T04 = new PrefabGUID(898844948); public static readonly PrefabGUID Recipe_Bag_New_T05 = new PrefabGUID(-828703620); public static readonly PrefabGUID Recipe_Bag_New_T06 = new PrefabGUID(219921994); public static readonly PrefabGUID Recipe_BloodEssence_PristineHeart = new PrefabGUID(937701215); public static readonly PrefabGUID Recipe_BloodEssence_Rat = new PrefabGUID(-112456787); public static readonly PrefabGUID Recipe_BloodEssence_TaintedHeart = new PrefabGUID(-1619521520); public static readonly PrefabGUID Recipe_BloodEssence_UnsulliedHeart = new PrefabGUID(-626789771); public static readonly PrefabGUID Recipe_BloodEssence_Upgrade_T02 = new PrefabGUID(335190592); public static readonly PrefabGUID Recipe_BloodEssence_Upgrade_T03 = new PrefabGUID(-2050480946); public static readonly PrefabGUID Recipe_CastleUpkeep_T01 = new PrefabGUID(155119506); public static readonly PrefabGUID Recipe_CastleUpkeep_T02 = new PrefabGUID(-1281672171); public static readonly PrefabGUID Recipe_Cloak_Main_T01 = new PrefabGUID(-1602222491); public static readonly PrefabGUID Recipe_Cloak_Main_T02 = new PrefabGUID(1004984938); public static readonly PrefabGUID Recipe_Cloak_Main_T03 = new PrefabGUID(544114772); public static readonly PrefabGUID Recipe_Cloak_ShroudOfTheForest = new PrefabGUID(-1118059274); public static readonly PrefabGUID Recipe_Cloak_T01_DraculasCloak = new PrefabGUID(-71891063); public static readonly PrefabGUID Recipe_Cloak_T01_GloomrotCloak = new PrefabGUID(1882617197); public static readonly PrefabGUID Recipe_Cloak_T01_RazerCloak = new PrefabGUID(-778599774); public static readonly PrefabGUID Recipe_Cloak_T02_DraculasCloak = new PrefabGUID(1801950047); public static readonly PrefabGUID Recipe_Cloak_T02_GloomrotCloak = new PrefabGUID(950343746); public static readonly PrefabGUID Recipe_Cloak_T02_RazerCloak = new PrefabGUID(-2120661831); public static readonly PrefabGUID Recipe_Cloak_T03_DraculasCloak = new PrefabGUID(489696550); public static readonly PrefabGUID Recipe_Cloak_T03_GloomrotCloak = new PrefabGUID(1581753666); public static readonly PrefabGUID Recipe_Cloak_T03_RazerCloak = new PrefabGUID(-1620745454); public static readonly PrefabGUID Recipe_Cloak_T0X_PMK = new PrefabGUID(-682982599); public static readonly PrefabGUID Recipe_Consumable_BarrelDisguise01 = new PrefabGUID(-108869773); public static readonly PrefabGUID Recipe_Consumable_DuskCaller = new PrefabGUID(232213040); public static readonly PrefabGUID Recipe_Consumable_EMP_T01 = new PrefabGUID(164757222); public static readonly PrefabGUID Recipe_Consumable_EmptyBottle_T02_Crafting = new PrefabGUID(-97893307); public static readonly PrefabGUID Recipe_Consumable_EmptyBottle_T02_Refinement = new PrefabGUID(461575192); public static readonly PrefabGUID Recipe_Consumable_Explosives_Major_T02 = new PrefabGUID(-1848951671); public static readonly PrefabGUID Recipe_Consumable_Explosives_Major_T03_Trader = new PrefabGUID(-752799345); public static readonly PrefabGUID Recipe_Consumable_Explosives_Minor_T01 = new PrefabGUID(-854411210); public static readonly PrefabGUID Recipe_Consumable_Explosives_Minor_T01_Trader = new PrefabGUID(-149394540); public static readonly PrefabGUID Recipe_Consumable_FireResistancePotion_T01 = new PrefabGUID(-1265439368); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T01 = new PrefabGUID(1602635578); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T01_Trader = new PrefabGUID(-767965323); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T02 = new PrefabGUID(600697104); public static readonly PrefabGUID Recipe_Consumable_GarlicResistancePotion_T02_Trader = new PrefabGUID(177026075); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T01 = new PrefabGUID(223228069); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T01_Trader = new PrefabGUID(1446468348); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T02 = new PrefabGUID(-1715555190); public static readonly PrefabGUID Recipe_Consumable_HealingPotion_T02_Trader = new PrefabGUID(-1089714492); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T01 = new PrefabGUID(2121527776); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T01_Trader = new PrefabGUID(573978764); public static readonly PrefabGUID Recipe_Consumable_HolyResistancePotion_T02 = new PrefabGUID(-1672850870); public static readonly PrefabGUID Recipe_Consumable_IrradiantGruel = new PrefabGUID(-1031042460); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T01 = new PrefabGUID(2007269714); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T01_Trader = new PrefabGUID(-1373956725); public static readonly PrefabGUID Recipe_Consumable_PhysicalPowerPotion_T02 = new PrefabGUID(-1336809713); public static readonly PrefabGUID Recipe_Consumable_PrisonPotion = new PrefabGUID(1839006118); public static readonly PrefabGUID Recipe_Consumable_PrisonPotion_Bloodwine = new PrefabGUID(1930190516); public static readonly PrefabGUID Recipe_Consumable_Rat = new PrefabGUID(-1521588244); public static readonly PrefabGUID Recipe_Consumable_Salve_Vermin = new PrefabGUID(2119570180); public static readonly PrefabGUID Recipe_Consumable_Siege_StoneGolem_T02 = new PrefabGUID(-2012301598); public static readonly PrefabGUID Recipe_Consumable_SilverResistancePotion_T01 = new PrefabGUID(-1391967609); public static readonly PrefabGUID Recipe_Consumable_SilverResistancePotion_T02 = new PrefabGUID(-878651797); public static readonly PrefabGUID Recipe_Consumable_SpellPowerPotion_T01 = new PrefabGUID(1292082146); public static readonly PrefabGUID Recipe_Consumable_SpellPowerPotion_T02 = new PrefabGUID(-739203329); public static readonly PrefabGUID Recipe_Consumable_SunResistancePotion_T01 = new PrefabGUID(-339125757); public static readonly PrefabGUID Recipe_Consumable_Waterskin_Leather_Crafting = new PrefabGUID(-1609862569); public static readonly PrefabGUID Recipe_Consumable_Waterskin_Leather_Refinement = new PrefabGUID(37553703); public static readonly PrefabGUID Recipe_Consumable_Waterskin_ThickLeather_Crafting = new PrefabGUID(-457097974); public static readonly PrefabGUID Recipe_Consumable_Waterskin_ThickLeather_Refinement = new PrefabGUID(882503740); public static readonly PrefabGUID Recipe_Consumable_WranglerPotion_T01 = new PrefabGUID(-1728254159); public static readonly PrefabGUID Recipe_DuelFlag = new PrefabGUID(-728009045); public static readonly PrefabGUID Recipe_Elixir_Bat_T01 = new PrefabGUID(-1617853548); public static readonly PrefabGUID Recipe_Elixir_Beast_T01 = new PrefabGUID(-663811339); public static readonly PrefabGUID Recipe_Elixir_Blasphemous_T01 = new PrefabGUID(654360877); public static readonly PrefabGUID Recipe_Elixir_Crow_T01 = new PrefabGUID(155374920); public static readonly PrefabGUID Recipe_Elixir_Prowler_T01 = new PrefabGUID(79253993); public static readonly PrefabGUID Recipe_Elixir_Raven_T01 = new PrefabGUID(-109469679); public static readonly PrefabGUID Recipe_Elixir_Twisted_T01 = new PrefabGUID(-2138549072); public static readonly PrefabGUID Recipe_Elixir_Werewolf_T01 = new PrefabGUID(198966224); public static readonly PrefabGUID Recipe_Fake_DO_NOT_ADD_BloodTracking = new PrefabGUID(-726644851); public static readonly PrefabGUID Recipe_Fake_DO_NOT_ADD_ShardBearerTracking = new PrefabGUID(-1431813390); public static readonly PrefabGUID Recipe_FusionForge_FuseJewel = new PrefabGUID(-664369931); public static readonly PrefabGUID Recipe_FusionForge_FuseWeapon = new PrefabGUID(1716898700); public static readonly PrefabGUID Recipe_Gem_Amethyst_T01_Trader = new PrefabGUID(-1101407057); public static readonly PrefabGUID Recipe_Gem_Amethyst_T02 = new PrefabGUID(-439001894); public static readonly PrefabGUID Recipe_Gem_Amethyst_T02_Trader = new PrefabGUID(434649116); public static readonly PrefabGUID Recipe_Gem_Amethyst_T03 = new PrefabGUID(1447381920); public static readonly PrefabGUID Recipe_Gem_Amethyst_T03_Trader = new PrefabGUID(-85930173); public static readonly PrefabGUID Recipe_Gem_Emerald_T01_Trader = new PrefabGUID(777459323); public static readonly PrefabGUID Recipe_Gem_Emerald_T02 = new PrefabGUID(301294529); public static readonly PrefabGUID Recipe_Gem_Emerald_T02_Trader = new PrefabGUID(194379742); public static readonly PrefabGUID Recipe_Gem_Emerald_T03 = new PrefabGUID(349993374); public static readonly PrefabGUID Recipe_Gem_Emerald_T03_Trader = new PrefabGUID(-71067907); public static readonly PrefabGUID Recipe_Gem_MistStone_T01_Trader = new PrefabGUID(-1882174403); public static readonly PrefabGUID Recipe_Gem_MistStone_T02 = new PrefabGUID(1692364442); public static readonly PrefabGUID Recipe_Gem_MistStone_T02_Trader = new PrefabGUID(1550840254); public static readonly PrefabGUID Recipe_Gem_MistStone_T03 = new PrefabGUID(-1932461468); public static readonly PrefabGUID Recipe_Gem_MistStone_T03_Trader = new PrefabGUID(2025196283); public static readonly PrefabGUID Recipe_Gem_Ruby_T01_Trader = new PrefabGUID(2003589362); public static readonly PrefabGUID Recipe_Gem_Ruby_T02 = new PrefabGUID(1058500365); public static readonly PrefabGUID Recipe_Gem_Ruby_T02_Trader = new PrefabGUID(11460503); public static readonly PrefabGUID Recipe_Gem_Ruby_T03 = new PrefabGUID(640226225); public static readonly PrefabGUID Recipe_Gem_Ruby_T03_Trader = new PrefabGUID(-484624052); public static readonly PrefabGUID Recipe_Gem_Sapphire_T01_Trader = new PrefabGUID(1469919230); public static readonly PrefabGUID Recipe_Gem_Sapphire_T02 = new PrefabGUID(1944880503); public static readonly PrefabGUID Recipe_Gem_Sapphire_T02_Trader = new PrefabGUID(231142834); public static readonly PrefabGUID Recipe_Gem_Sapphire_T03 = new PrefabGUID(1627234060); public static readonly PrefabGUID Recipe_Gem_Sapphire_T03_Trader = new PrefabGUID(571367805); public static readonly PrefabGUID Recipe_Gem_Topaz_T01_Trader = new PrefabGUID(1741718241); public static readonly PrefabGUID Recipe_Gem_Topaz_T02 = new PrefabGUID(-1954352551); public static readonly PrefabGUID Recipe_Gem_Topaz_T02_Trader = new PrefabGUID(1903291770); public static readonly PrefabGUID Recipe_Gem_Topaz_T03 = new PrefabGUID(-755095440); public static readonly PrefabGUID Recipe_Gem_Topaz_T03_Trader = new PrefabGUID(595424808); public static readonly PrefabGUID Recipe_Headgear_AshfolkHelm_T03_Trader = new PrefabGUID(-1261638563); public static readonly PrefabGUID Recipe_Headgear_BearTrophy_T02_Trader = new PrefabGUID(-1897439354); public static readonly PrefabGUID Recipe_Headgear_DeerTrophy_T02_Trader = new PrefabGUID(-383995717); public static readonly PrefabGUID Recipe_Headgear_NecromancerHat_T01_Trader = new PrefabGUID(737997561); public static readonly PrefabGUID Recipe_Headgear_PilgrimHat_T01_Trader = new PrefabGUID(742875514); public static readonly PrefabGUID Recipe_Headgear_PopeMitre_T03_Trader = new PrefabGUID(-2011894921); public static readonly PrefabGUID Recipe_Headgear_T01_Blackfang = new PrefabGUID(704251871); public static readonly PrefabGUID Recipe_Headgear_T01_DraculasHelmet = new PrefabGUID(-32466106); public static readonly PrefabGUID Recipe_Headgear_T01_GloomrotHead = new PrefabGUID(-1119842484); public static readonly PrefabGUID Recipe_Headgear_T01_RazerHood = new PrefabGUID(1316743638); public static readonly PrefabGUID Recipe_Headgear_WolfTrophy_T02_Trader = new PrefabGUID(-2135052861); public static readonly PrefabGUID Recipe_Ingredient_BatLeather = new PrefabGUID(878778315); public static readonly PrefabGUID Recipe_Ingredient_BatteryCharged = new PrefabGUID(-40415372); public static readonly PrefabGUID Recipe_Ingredient_BatteryCharged_10x = new PrefabGUID(1499185347); public static readonly PrefabGUID Recipe_Ingredient_Canister = new PrefabGUID(-1219663401); public static readonly PrefabGUID Recipe_Ingredient_CarpetRoll = new PrefabGUID(-76978559); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T01 = new PrefabGUID(-1158613345); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T02 = new PrefabGUID(-1538704240); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T03 = new PrefabGUID(690675608); public static readonly PrefabGUID Recipe_Ingredient_CastleKey_T04 = new PrefabGUID(1627186216); public static readonly PrefabGUID Recipe_Ingredient_ClayMold = new PrefabGUID(-1039804369); public static readonly PrefabGUID Recipe_Ingredient_Cloth01 = new PrefabGUID(-535699316); public static readonly PrefabGUID Recipe_Ingredient_Cloth02 = new PrefabGUID(691688637); public static readonly PrefabGUID Recipe_Ingredient_Cloth03 = new PrefabGUID(-18607093); public static readonly PrefabGUID Recipe_Ingredient_CoarseThread = new PrefabGUID(217985609); public static readonly PrefabGUID Recipe_Ingredient_Coin_Copper = new PrefabGUID(1611921852); public static readonly PrefabGUID Recipe_Ingredient_Coin_Royal = new PrefabGUID(1679369423); public static readonly PrefabGUID Recipe_Ingredient_Coin_Silver = new PrefabGUID(1987529758); public static readonly PrefabGUID Recipe_Ingredient_CopperBar = new PrefabGUID(43160202); public static readonly PrefabGUID Recipe_Ingredient_CopperWires = new PrefabGUID(-2031309726); public static readonly PrefabGUID Recipe_Ingredient_CottonYarn = new PrefabGUID(-1463059104); public static readonly PrefabGUID Recipe_Ingredient_DarkSilverBar = new PrefabGUID(1763037087); public static readonly PrefabGUID Recipe_Ingredient_Emberglass = new PrefabGUID(1907177885); public static readonly PrefabGUID Recipe_Ingredient_Fake_Gems_T02 = new PrefabGUID(1333711523); public static readonly PrefabGUID Recipe_Ingredient_Fake_Gems_T03 = new PrefabGUID(1197952732); public static readonly PrefabGUID Recipe_Ingredient_FakeFish = new PrefabGUID(-1690732149); public static readonly PrefabGUID Recipe_Ingredient_FakeGemDust = new PrefabGUID(-1105418306); public static readonly PrefabGUID Recipe_Ingredient_FakePollen = new PrefabGUID(-2095604835); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_FatGoby_Fishoil = new PrefabGUID(1456918437); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_FierceStinger_Fishoil = new PrefabGUID(310077690); public static readonly PrefabGUID Recipe_Ingredient_Fish_T01_RainbowTrout_Fishoil = new PrefabGUID(-1998323031); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_BloodSnapper_Fishoil = new PrefabGUID(2073670444); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_SageFish_Fishoil = new PrefabGUID(2034067759); public static readonly PrefabGUID Recipe_Ingredient_Fish_T02_TwilightSnapper_Fishoil = new PrefabGUID(-1158638582); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_CorruptedFish_Sap = new PrefabGUID(2001831411); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_GoldenRiverBass_Fishoil = new PrefabGUID(-579466337); public static readonly PrefabGUID Recipe_Ingredient_Fish_T03_SwampDweller_Fishoil = new PrefabGUID(-914403055); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T01 = new PrefabGUID(794513497); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T02 = new PrefabGUID(1267772432); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T03 = new PrefabGUID(-1305847600); public static readonly PrefabGUID Recipe_Ingredient_Gem_Amethyst_T04 = new PrefabGUID(-259193408); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T01 = new PrefabGUID(-818431229); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T02 = new PrefabGUID(2145878785); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T03 = new PrefabGUID(-49650299); public static readonly PrefabGUID Recipe_Ingredient_Gem_Emerald_T04 = new PrefabGUID(824127202); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T01 = new PrefabGUID(1511000106); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T02 = new PrefabGUID(-1803835046); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T03 = new PrefabGUID(-793702579); public static readonly PrefabGUID Recipe_Ingredient_Gem_Miststone_T04 = new PrefabGUID(191342827); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T01 = new PrefabGUID(510709307); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T02 = new PrefabGUID(1574438607); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T03 = new PrefabGUID(494499358); public static readonly PrefabGUID Recipe_Ingredient_Gem_Ruby_T04 = new PrefabGUID(438072551); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T01 = new PrefabGUID(224077013); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T02 = new PrefabGUID(-1411717403); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T03 = new PrefabGUID(-830475571); public static readonly PrefabGUID Recipe_Ingredient_Gem_Sapphire_T04 = new PrefabGUID(-97850613); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T01 = new PrefabGUID(-671939022); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T02 = new PrefabGUID(-900164684); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T03 = new PrefabGUID(-680521717); public static readonly PrefabGUID Recipe_Ingredient_Gem_Topaz_T04 = new PrefabGUID(-597461125); public static readonly PrefabGUID Recipe_Ingredient_GhostYarn = new PrefabGUID(-312139320); public static readonly PrefabGUID Recipe_Ingredient_Glass = new PrefabGUID(-1035277730); public static readonly PrefabGUID Recipe_Ingredient_GoldBar = new PrefabGUID(-882942445); public static readonly PrefabGUID Recipe_Ingredient_Gravedust = new PrefabGUID(-621968576); public static readonly PrefabGUID Recipe_Ingredient_ImperialThread = new PrefabGUID(-2087869889); public static readonly PrefabGUID Recipe_Ingredient_IronBar = new PrefabGUID(182584043); public static readonly PrefabGUID Recipe_Ingredient_IronBody = new PrefabGUID(-1270503528); public static readonly PrefabGUID Recipe_Ingredient_Leather = new PrefabGUID(1299251205); public static readonly PrefabGUID Recipe_Ingredient_NetherShard_T02 = new PrefabGUID(830427227); public static readonly PrefabGUID Recipe_Ingredient_Obsidian_NetherShards = new PrefabGUID(-1046062818); public static readonly PrefabGUID Recipe_Ingredient_Obsidian_RadiumAlloy = new PrefabGUID(-755040396); public static readonly PrefabGUID Recipe_Ingredient_OnyxTear = new PrefabGUID(-1624699880); public static readonly PrefabGUID Recipe_Ingredient_PaintingFrame = new PrefabGUID(639947458); public static readonly PrefabGUID Recipe_Ingredient_Paper = new PrefabGUID(1972184798); public static readonly PrefabGUID Recipe_Ingredient_Plank = new PrefabGUID(-7510953); public static readonly PrefabGUID Recipe_Ingredient_Plank_CorruptedSap = new PrefabGUID(1938879259); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodCurse = new PrefabGUID(1933452299); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodGloom = new PrefabGUID(1004035314); public static readonly PrefabGUID Recipe_Ingredient_Plank_WoodHallow = new PrefabGUID(-1161643303); public static readonly PrefabGUID Recipe_Ingredient_Plant_BleedingHeart_Pollen = new PrefabGUID(-1406676278); public static readonly PrefabGUID Recipe_Ingredient_Plant_BloodRose_Pollen = new PrefabGUID(-1262386399); public static readonly PrefabGUID Recipe_Ingredient_Plant_CorruptedFlower_Pollen = new PrefabGUID(312087613); public static readonly PrefabGUID Recipe_Ingredient_Plant_Cotton_Pollen = new PrefabGUID(-318813623); public static readonly PrefabGUID Recipe_Ingredient_Plant_FireBlossom_Pollen = new PrefabGUID(1492043256); public static readonly PrefabGUID Recipe_Ingredient_Plant_GhostShroom_Pollen = new PrefabGUID(981205115); public static readonly PrefabGUID Recipe_Ingredient_Plant_HellsClarion_Pollen = new PrefabGUID(-807387227); public static readonly PrefabGUID Recipe_Ingredient_Plant_MourningLily_Pollen = new PrefabGUID(1987128673); public static readonly PrefabGUID Recipe_Ingredient_Plant_PlagueBrier_Pollen = new PrefabGUID(-1209065169); public static readonly PrefabGUID Recipe_Ingredient_Plant_SnowFlower_Pollen = new PrefabGUID(-1444512478); public static readonly PrefabGUID Recipe_Ingredient_Plant_SunFlower_Pollen = new PrefabGUID(-731341444); public static readonly PrefabGUID Recipe_Ingredient_PowerCore = new PrefabGUID(1399845400); public static readonly PrefabGUID Recipe_Ingredient_PristineLeather = new PrefabGUID(3903463); public static readonly PrefabGUID Recipe_Ingredient_RadiumAlloy = new PrefabGUID(1802509122); public static readonly PrefabGUID Recipe_Ingredient_ReinforcedPlank = new PrefabGUID(-1038174753); public static readonly PrefabGUID Recipe_Ingredient_Schematic = new PrefabGUID(1665157021); public static readonly PrefabGUID Recipe_Ingredient_Scourgestone = new PrefabGUID(667958797); public static readonly PrefabGUID Recipe_Ingredient_Scroll = new PrefabGUID(-1639279845); public static readonly PrefabGUID Recipe_Ingredient_SculpturedWood = new PrefabGUID(222408145); public static readonly PrefabGUID Recipe_Ingredient_ShadowWeave = new PrefabGUID(-279454572); public static readonly PrefabGUID Recipe_Ingredient_Silk = new PrefabGUID(-1803829778); public static readonly PrefabGUID Recipe_Ingredient_SilverBar = new PrefabGUID(-1633898285); public static readonly PrefabGUID Recipe_Ingredient_Spectraldust = new PrefabGUID(-329288568); public static readonly PrefabGUID Recipe_Ingredient_StoneBody = new PrefabGUID(1356454823); public static readonly PrefabGUID Recipe_Ingredient_StoneBrick = new PrefabGUID(484814347); public static readonly PrefabGUID Recipe_Ingredient_Sulfur = new PrefabGUID(-1718362434); public static readonly PrefabGUID Recipe_Ingredient_ThickLeather = new PrefabGUID(1265153742); public static readonly PrefabGUID Recipe_Ingredient_Vampiricdust = new PrefabGUID(311920560); public static readonly PrefabGUID Recipe_Ingredient_Whetstone = new PrefabGUID(-1490920585); public static readonly PrefabGUID Recipe_Ingredient_WoolThread = new PrefabGUID(-387502181); public static readonly PrefabGUID Recipe_Jewel_Blood_T01 = new PrefabGUID(-445494585); public static readonly PrefabGUID Recipe_Jewel_Blood_T02 = new PrefabGUID(279714151); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodFountain = new PrefabGUID(1790399614); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodRage = new PrefabGUID(-1730685483); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_BloodRite = new PrefabGUID(-1673417294); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_CarrionSwarm = new PrefabGUID(1327091316); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_SanguineCoil = new PrefabGUID(805999157); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_Shadowbolt = new PrefabGUID(2140352508); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_VampiricCurse = new PrefabGUID(-1221458026); public static readonly PrefabGUID Recipe_Jewel_Blood_T02_VeilOfBlood = new PrefabGUID(-471735309); public static readonly PrefabGUID Recipe_Jewel_Blood_T03 = new PrefabGUID(1484442015); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodFountain = new PrefabGUID(1536138304); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodRage = new PrefabGUID(-117709259); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_BloodRite = new PrefabGUID(1332879261); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_CarrionSwarm = new PrefabGUID(265064568); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_SanguineCoil = new PrefabGUID(-998540356); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_Shadowbolt = new PrefabGUID(-132912845); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_VampiricCurse = new PrefabGUID(641872418); public static readonly PrefabGUID Recipe_Jewel_Blood_T03_VeilOfBlood = new PrefabGUID(-1280075933); public static readonly PrefabGUID Recipe_Jewel_Blood_T04 = new PrefabGUID(-1589272885); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodFountain = new PrefabGUID(-1647468496); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodRage = new PrefabGUID(1616468375); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_BloodRite = new PrefabGUID(1349479077); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_CarrionSwarm = new PrefabGUID(1394410783); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_SanguineCoil = new PrefabGUID(-1824834918); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_Shadowbolt = new PrefabGUID(-1124531408); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_VampiricCurse = new PrefabGUID(1500294983); public static readonly PrefabGUID Recipe_Jewel_Blood_T04_VeilOfBlood = new PrefabGUID(-389291045); public static readonly PrefabGUID Recipe_Jewel_Chaos_T01 = new PrefabGUID(-945572632); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02 = new PrefabGUID(-845714536); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_Aftershock = new PrefabGUID(-2125962345); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_ChaosBarrier = new PrefabGUID(-1441194655); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_ChaosVolley = new PrefabGUID(2130221261); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_PowerSurge = new PrefabGUID(-421166152); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_RainOfChaos = new PrefabGUID(-354986500); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_VeilOfChaos = new PrefabGUID(-712982171); public static readonly PrefabGUID Recipe_Jewel_Chaos_T02_Void = new PrefabGUID(1804676837); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03 = new PrefabGUID(-455612969); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_Aftershock = new PrefabGUID(19321091); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_ChaosBarrier = new PrefabGUID(-1390850741); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_ChaosVolley = new PrefabGUID(1013687480); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_PowerSurge = new PrefabGUID(-621123461); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_RainOfChaos = new PrefabGUID(-620902396); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_VeilOfChaos = new PrefabGUID(-871123559); public static readonly PrefabGUID Recipe_Jewel_Chaos_T03_Void = new PrefabGUID(-1993706550); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04 = new PrefabGUID(2092747590); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_Aftershock = new PrefabGUID(-1432868001); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_ChaosBarrier = new PrefabGUID(249492436); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_ChaosVolley = new PrefabGUID(-1862071851); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_PowerSurge = new PrefabGUID(-1231616717); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_RainOfChaos = new PrefabGUID(-255313331); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_VeilOfChaos = new PrefabGUID(-273088264); public static readonly PrefabGUID Recipe_Jewel_Chaos_T04_Void = new PrefabGUID(1628679944); public static readonly PrefabGUID Recipe_Jewel_Frost_T01 = new PrefabGUID(-184777350); public static readonly PrefabGUID Recipe_Jewel_Frost_T02 = new PrefabGUID(-1982816801); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_ColdSnap = new PrefabGUID(-1921009561); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_CrystalLance = new PrefabGUID(-295731844); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostBarrier = new PrefabGUID(-722322275); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostBat = new PrefabGUID(-739674375); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_FrostCone = new PrefabGUID(-1885123423); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_IceNova = new PrefabGUID(-1743625798); public static readonly PrefabGUID Recipe_Jewel_Frost_T02_VeilOfFrost = new PrefabGUID(955124009); public static readonly PrefabGUID Recipe_Jewel_Frost_T03 = new PrefabGUID(106264515); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_ColdSnap = new PrefabGUID(-1863610651); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_CrystalLance = new PrefabGUID(-1334648733); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostBarrier = new PrefabGUID(513866428); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostBat = new PrefabGUID(1589453917); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_FrostCone = new PrefabGUID(-1217040138); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_IceNova = new PrefabGUID(995009212); public static readonly PrefabGUID Recipe_Jewel_Frost_T03_VeilOfFrost = new PrefabGUID(-245144906); public static readonly PrefabGUID Recipe_Jewel_Frost_T04 = new PrefabGUID(1220982133); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_ColdSnap = new PrefabGUID(1548333309); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_CrystalLance = new PrefabGUID(-366508312); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostBarrier = new PrefabGUID(-1916181867); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostBat = new PrefabGUID(1669439853); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_FrostCone = new PrefabGUID(-586089909); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_IceNova = new PrefabGUID(2058110132); public static readonly PrefabGUID Recipe_Jewel_Frost_T04_VeilOfFrost = new PrefabGUID(-1413146031); public static readonly PrefabGUID Recipe_Jewel_Illusion_T01 = new PrefabGUID(1885790026); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02 = new PrefabGUID(-443627358); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_Curse = new PrefabGUID(-1928857475); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_MistTrance = new PrefabGUID(-1972338710); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_Mosquito = new PrefabGUID(251557275); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_PhantomAegis = new PrefabGUID(1588865021); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_SpectralWolf = new PrefabGUID(-1099144954); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_VeilOfIllusion = new PrefabGUID(-899623094); public static readonly PrefabGUID Recipe_Jewel_Illusion_T02_WraithSpear = new PrefabGUID(1130803007); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03 = new PrefabGUID(-1638077703); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_Curse = new PrefabGUID(1646432213); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_MistTrance = new PrefabGUID(593821386); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_Mosquito = new PrefabGUID(1949752494); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_PhantomAegis = new PrefabGUID(-244123374); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_SpectralWolf = new PrefabGUID(1192126839); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_VeilOfIllusion = new PrefabGUID(832118211); public static readonly PrefabGUID Recipe_Jewel_Illusion_T03_WraithSpear = new PrefabGUID(-970138509); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04 = new PrefabGUID(86391798); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_Curse = new PrefabGUID(-1255084741); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_MistTrance = new PrefabGUID(113014730); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_Mosquito = new PrefabGUID(817310228); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_PhantomAegis = new PrefabGUID(-32531606); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_SpectralWolf = new PrefabGUID(253232005); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_VeilOfIllusion = new PrefabGUID(941258392); public static readonly PrefabGUID Recipe_Jewel_Illusion_T04_WraithSpear = new PrefabGUID(1099730006); public static readonly PrefabGUID Recipe_Jewel_Storm_T01 = new PrefabGUID(81501826); public static readonly PrefabGUID Recipe_Jewel_Storm_T02 = new PrefabGUID(687440022); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_BallLightning = new PrefabGUID(-269714118); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_Cyclone = new PrefabGUID(-1385380788); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_Discharge = new PrefabGUID(-1829203567); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_LightningTendrils = new PrefabGUID(1839373951); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_LightningWall = new PrefabGUID(793838493); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_PolarityShift = new PrefabGUID(-1843641524); public static readonly PrefabGUID Recipe_Jewel_Storm_T02_VeilOfStorm = new PrefabGUID(-2021884201); public static readonly PrefabGUID Recipe_Jewel_Storm_T03 = new PrefabGUID(-1901900501); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_BallLightning = new PrefabGUID(595324174); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_Cyclone = new PrefabGUID(-57395936); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_Discharge = new PrefabGUID(20833766); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_LightningTendrils = new PrefabGUID(1717016346); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_LightningWall = new PrefabGUID(-12176904); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_PolarityShift = new PrefabGUID(-697842923); public static readonly PrefabGUID Recipe_Jewel_Storm_T03_VeilOfStorm = new PrefabGUID(-1164864103); public static readonly PrefabGUID Recipe_Jewel_Storm_T04 = new PrefabGUID(310567762); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_BallLightning = new PrefabGUID(891968939); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_Cyclone = new PrefabGUID(-794779743); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_Discharge = new PrefabGUID(1385565480); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_LightningTendrils = new PrefabGUID(-38691585); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_LightningWall = new PrefabGUID(199150725); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_PolarityShift = new PrefabGUID(-636221299); public static readonly PrefabGUID Recipe_Jewel_Storm_T04_VeilOfStorm = new PrefabGUID(185593335); public static readonly PrefabGUID Recipe_Jewel_Unholy_T01 = new PrefabGUID(-1841149251); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02 = new PrefabGUID(1628896277); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_ChainsOfDeath = new PrefabGUID(1098089916); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_CorpseExplosion = new PrefabGUID(-548400473); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_CorruptedSkull = new PrefabGUID(986923658); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_DeathKnight = new PrefabGUID(-338535841); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_Soulburn = new PrefabGUID(1259976804); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_VeilOfBones = new PrefabGUID(-20844245); public static readonly PrefabGUID Recipe_Jewel_Unholy_T02_WardOfTheDamned = new PrefabGUID(812735179); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03 = new PrefabGUID(-1441428013); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_ChainsOfDeath = new PrefabGUID(912357966); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_CorpseExplosion = new PrefabGUID(-476269715); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_CorruptedSkull = new PrefabGUID(625989230); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_DeathKnight = new PrefabGUID(-145359715); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_Soulburn = new PrefabGUID(-1836185186); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_VeilOfBones = new PrefabGUID(-1660160596); public static readonly PrefabGUID Recipe_Jewel_Unholy_T03_WardOfTheDamned = new PrefabGUID(405933740); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04 = new PrefabGUID(-459320498); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_ChainsOfDeath = new PrefabGUID(495345726); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_CorpseExplosion = new PrefabGUID(-263798740); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_CorruptedSkull = new PrefabGUID(-299276760); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_DeathKnight = new PrefabGUID(-624069541); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_Soulburn = new PrefabGUID(-530631333); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_VeilOfBones = new PrefabGUID(-1669971047); public static readonly PrefabGUID Recipe_Jewel_Unholy_T04_WardOfTheDamned = new PrefabGUID(-1026108429); public static readonly PrefabGUID Recipe_MagicSource_BloodKey_T01 = new PrefabGUID(152004500); public static readonly PrefabGUID Recipe_MagicSource_General_T01_BoneRing = new PrefabGUID(2112434273); public static readonly PrefabGUID Recipe_MagicSource_General_T02_BloodRoseRing = new PrefabGUID(-377694156); public static readonly PrefabGUID Recipe_MagicSource_General_T03_GravediggerRing = new PrefabGUID(-84929462); public static readonly PrefabGUID Recipe_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-1392969895); public static readonly PrefabGUID Recipe_MagicSource_General_T04_EmberChain = new PrefabGUID(606793986); public static readonly PrefabGUID Recipe_MagicSource_General_T04_FrozenEye = new PrefabGUID(-1252143324); public static readonly PrefabGUID Recipe_MagicSource_General_T04_KnightRing = new PrefabGUID(134822591); public static readonly PrefabGUID Recipe_MagicSource_General_T04_MistSignet = new PrefabGUID(-1643108625); public static readonly PrefabGUID Recipe_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1954484110); public static readonly PrefabGUID Recipe_MagicSource_General_T05_Relic = new PrefabGUID(464548553); public static readonly PrefabGUID Recipe_MagicSource_General_T06_AmethystPendant = new PrefabGUID(575942293); public static readonly PrefabGUID Recipe_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-1789687685); public static readonly PrefabGUID Recipe_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(2113597811); public static readonly PrefabGUID Recipe_MagicSource_General_T06_RubyPendant = new PrefabGUID(1192551289); public static readonly PrefabGUID Recipe_MagicSource_General_T06_SapphirePendant = new PrefabGUID(932186802); public static readonly PrefabGUID Recipe_MagicSource_General_T06_TopazAmulet = new PrefabGUID(1272778289); public static readonly PrefabGUID Recipe_MagicSource_General_T07_BloodwineAmulet = new PrefabGUID(307631810); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Beast = new PrefabGUID(-590297568); public static readonly PrefabGUID Recipe_MagicSource_General_T08_CrimsonSky = new PrefabGUID(-1485680334); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Delusion = new PrefabGUID(-321571889); public static readonly PrefabGUID Recipe_MagicSource_General_T08_FrozenCrypt = new PrefabGUID(-831940419); public static readonly PrefabGUID Recipe_MagicSource_General_T08_Madness = new PrefabGUID(1926933208); public static readonly PrefabGUID Recipe_MagicSource_General_T08_WickedProphet = new PrefabGUID(-715761764); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Dracula = new PrefabGUID(-414358988); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Manticore = new PrefabGUID(-111826090); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Monster = new PrefabGUID(1791150988); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Morgana = new PrefabGUID(1129993300); public static readonly PrefabGUID Recipe_MagicSource_General_T09_Solarus = new PrefabGUID(-958598508); public static readonly PrefabGUID Recipe_Misc_ExtractEssencePrisoner = new PrefabGUID(1716338316); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_BloodSnapper = new PrefabGUID(956953141); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_Corrupted = new PrefabGUID(493259323); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_FatGoby = new PrefabGUID(-2047246570); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_FierceStinger = new PrefabGUID(-37587809); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_GoldenRiverBass = new PrefabGUID(1816434122); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_RainbowTrout = new PrefabGUID(-1206171767); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_SageFish = new PrefabGUID(1800570390); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_SwampDweller = new PrefabGUID(-460272822); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Fish_TwilightSnapper = new PrefabGUID(-252411567); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_IrradiantGruel = new PrefabGUID(-279936313); public static readonly PrefabGUID Recipe_Misc_FeedPrisoner_Rat = new PrefabGUID(1469101010); public static readonly PrefabGUID Recipe_Saddle_Basic_T01 = new PrefabGUID(367529732); public static readonly PrefabGUID Recipe_Saddle_Blackfang_DLC_T01 = new PrefabGUID(1477520375); public static readonly PrefabGUID Recipe_Saddle_Gloomrot_DLC_T01 = new PrefabGUID(-2076606690); public static readonly PrefabGUID Recipe_Saddle_ProjectK_DLC_T01 = new PrefabGUID(841431479); public static readonly PrefabGUID Recipe_Seed_BloodRose_T01_Trader = new PrefabGUID(1930056104); public static readonly PrefabGUID Recipe_Seed_FireBlossom_T01_Trader = new PrefabGUID(-693582888); public static readonly PrefabGUID Recipe_Seed_GhostShroom_T03_Trader = new PrefabGUID(-56026974); public static readonly PrefabGUID Recipe_Seed_HellsClarion_T01_Trader = new PrefabGUID(-1079722820); public static readonly PrefabGUID Recipe_Seed_Lotus_T03_Trader = new PrefabGUID(-1660279142); public static readonly PrefabGUID Recipe_Seed_MourningLily_T01_Trader = new PrefabGUID(-1271741418); public static readonly PrefabGUID Recipe_Seed_SnowFlower_T01_Trader = new PrefabGUID(640919389); public static readonly PrefabGUID Recipe_Seed_SunFlower_T02_Trader = new PrefabGUID(-486247420); public static readonly PrefabGUID Recipe_Soulshard_Extract_TheMonster = new PrefabGUID(1743327679); public static readonly PrefabGUID Recipe_UnitSpawn_Banshee = new PrefabGUID(1065325546); public static readonly PrefabGUID Recipe_UnitSpawn_Ghoul = new PrefabGUID(1470479508); public static readonly PrefabGUID Recipe_UnitSpawn_GiantRat = new PrefabGUID(-1953870432); public static readonly PrefabGUID Recipe_UnitSpawn_Mosquito = new PrefabGUID(-614781206); public static readonly PrefabGUID Recipe_UnitSpawn_Mutant = new PrefabGUID(-591009330); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_BloodSoul = new PrefabGUID(286874232); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Knowledge = new PrefabGUID(99503299); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Minerals = new PrefabGUID(-1050470705); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T01_Seed = new PrefabGUID(535319065); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Alchemy = new PrefabGUID(-1555052563); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_BloodSoul = new PrefabGUID(-1679457981); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Knowledge = new PrefabGUID(-1569877264); public static readonly PrefabGUID Recipe_UnitSpawn_NetherDemon_T02_Minerals = new PrefabGUID(329917761); public static readonly PrefabGUID Recipe_UnitSpawn_PutridRat = new PrefabGUID(-753029646); public static readonly PrefabGUID Recipe_UnitSpawn_Rat = new PrefabGUID(255936441); public static readonly PrefabGUID Recipe_UnitSpawn_Silkworm = new PrefabGUID(-96946162); public static readonly PrefabGUID Recipe_UnitSpawn_Skeleton = new PrefabGUID(365601143); public static readonly PrefabGUID Recipe_UnitSpawn_SkeletonPriest = new PrefabGUID(-2114825141); public static readonly PrefabGUID Recipe_UnitSpawn_Spiderling = new PrefabGUID(1172635875); public static readonly PrefabGUID Recipe_Weapon_Axe_T01_Bone = new PrefabGUID(-837028877); public static readonly PrefabGUID Recipe_Weapon_Axe_T02_Bone_Reinforced = new PrefabGUID(1031414138); public static readonly PrefabGUID Recipe_Weapon_Axe_T03_Copper = new PrefabGUID(-1864396632); public static readonly PrefabGUID Recipe_Weapon_Axe_T04_Copper_Reinforced = new PrefabGUID(-411123427); public static readonly PrefabGUID Recipe_Weapon_Axe_T05_Iron = new PrefabGUID(305819079); public static readonly PrefabGUID Recipe_Weapon_Axe_T06_Iron_Reinforced = new PrefabGUID(690858507); public static readonly PrefabGUID Recipe_Weapon_Axe_T07_DarkSilver = new PrefabGUID(-1896566066); public static readonly PrefabGUID Recipe_Weapon_Axe_T08_Sanguine = new PrefabGUID(-67490827); public static readonly PrefabGUID Recipe_Weapon_Axe_T09_ShadowMatter = new PrefabGUID(-998610023); public static readonly PrefabGUID Recipe_Weapon_Claws_T05_Iron = new PrefabGUID(-1520452495); public static readonly PrefabGUID Recipe_Weapon_Claws_T06_Iron_Reinforced = new PrefabGUID(-1690827442); public static readonly PrefabGUID Recipe_Weapon_Claws_T07_DarkSilver = new PrefabGUID(1020521578); public static readonly PrefabGUID Recipe_Weapon_Claws_T08_Sanguine = new PrefabGUID(-749910443); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T01_Bone = new PrefabGUID(-1384817143); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T02_Bone_Reinforced = new PrefabGUID(-1421664082); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T03_Copper = new PrefabGUID(841082368); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T04_Copper_Reinforced = new PrefabGUID(-283375796); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T05_Iron = new PrefabGUID(1268051742); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T06_Iron_Reinforced = new PrefabGUID(1341382268); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T07_DarkSilver = new PrefabGUID(-971743976); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T08_Sanguine = new PrefabGUID(-1064000514); public static readonly PrefabGUID Recipe_Weapon_Crossbow_T09_ShadowMatter = new PrefabGUID(-178724798); public static readonly PrefabGUID Recipe_Weapon_Daggers_T05_Iron = new PrefabGUID(908837210); public static readonly PrefabGUID Recipe_Weapon_Daggers_T06_Iron_Reinforced = new PrefabGUID(-328931595); public static readonly PrefabGUID Recipe_Weapon_Daggers_T07_DarkSilver = new PrefabGUID(847424089); public static readonly PrefabGUID Recipe_Weapon_Daggers_T08_Sanguine = new PrefabGUID(268825874); public static readonly PrefabGUID Recipe_Weapon_FishingPole_T01 = new PrefabGUID(319663209); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T05_Iron = new PrefabGUID(1731901666); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T06_Iron_Reinforced = new PrefabGUID(648459378); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T07_DarkSilver = new PrefabGUID(-2116357114); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T08_Sanguine = new PrefabGUID(1944286219); public static readonly PrefabGUID Recipe_Weapon_GreatSword_T09_ShadowMatter = new PrefabGUID(-1525227854); public static readonly PrefabGUID Recipe_Weapon_Longbow_T03_Copper = new PrefabGUID(-514405267); public static readonly PrefabGUID Recipe_Weapon_Longbow_T04_Copper_Reinforced = new PrefabGUID(777859879); public static readonly PrefabGUID Recipe_Weapon_Longbow_T05_Iron = new PrefabGUID(-80393444); public static readonly PrefabGUID Recipe_Weapon_Longbow_T06_Iron_Reinforced = new PrefabGUID(-149592989); public static readonly PrefabGUID Recipe_Weapon_Longbow_T07_DarkSilver = new PrefabGUID(-1063439615); public static readonly PrefabGUID Recipe_Weapon_Longbow_T08_Sanguine = new PrefabGUID(-603557479); public static readonly PrefabGUID Recipe_Weapon_Longbow_T09_ShadowMatter = new PrefabGUID(1378881717); public static readonly PrefabGUID Recipe_Weapon_LumberjackAxe_T01_Trader = new PrefabGUID(2136704250); public static readonly PrefabGUID Recipe_Weapon_Mace_T01_Bone = new PrefabGUID(-1064109772); public static readonly PrefabGUID Recipe_Weapon_Mace_T02_Bone_Reinforced = new PrefabGUID(1377610318); public static readonly PrefabGUID Recipe_Weapon_Mace_T03_Copper = new PrefabGUID(-356991727); public static readonly PrefabGUID Recipe_Weapon_Mace_T04_Copper_Reinforced = new PrefabGUID(897446828); public static readonly PrefabGUID Recipe_Weapon_Mace_T05_Iron = new PrefabGUID(-612459251); public static readonly PrefabGUID Recipe_Weapon_Mace_T06_Iron_Reinforced = new PrefabGUID(-1538728965); public static readonly PrefabGUID Recipe_Weapon_Mace_T07_DarkSilver = new PrefabGUID(532951453); public static readonly PrefabGUID Recipe_Weapon_Mace_T08_Sanguine = new PrefabGUID(-1492594940); public static readonly PrefabGUID Recipe_Weapon_Mace_T09_ShadowMatter = new PrefabGUID(-240353582); public static readonly PrefabGUID Recipe_Weapon_MinersMace_T01_Trader = new PrefabGUID(-1476908192); public static readonly PrefabGUID Recipe_Weapon_Pistols_T05_Iron = new PrefabGUID(1314793960); public static readonly PrefabGUID Recipe_Weapon_Pistols_T06_Iron_Reinforced = new PrefabGUID(-1015239074); public static readonly PrefabGUID Recipe_Weapon_Pistols_T07_DarkSilver = new PrefabGUID(-296690999); public static readonly PrefabGUID Recipe_Weapon_Pistols_T08_Sanguine = new PrefabGUID(1058461467); public static readonly PrefabGUID Recipe_Weapon_Pistols_T09_ShadowMatter = new PrefabGUID(-299780538); public static readonly PrefabGUID Recipe_Weapon_Reaper_T01_Bone = new PrefabGUID(1678839668); public static readonly PrefabGUID Recipe_Weapon_Reaper_T02_Bone_Reinforced = new PrefabGUID(-238493462); public static readonly PrefabGUID Recipe_Weapon_Reaper_T03_Copper = new PrefabGUID(787254471); public static readonly PrefabGUID Recipe_Weapon_Reaper_T04_Copper_Reinforced = new PrefabGUID(-681071811); public static readonly PrefabGUID Recipe_Weapon_Reaper_T05_Iron = new PrefabGUID(1109951557); public static readonly PrefabGUID Recipe_Weapon_Reaper_T06_Iron_Reinforced = new PrefabGUID(537685806); public static readonly PrefabGUID Recipe_Weapon_Reaper_T07_DarkSilver = new PrefabGUID(-1112081437); public static readonly PrefabGUID Recipe_Weapon_Reaper_T08_Sanguine = new PrefabGUID(-1816552963); public static readonly PrefabGUID Recipe_Weapon_Reaper_T09_ShadowMatter = new PrefabGUID(-884753903); public static readonly PrefabGUID Recipe_Weapon_Slashers_T01_Bone = new PrefabGUID(-1536889801); public static readonly PrefabGUID Recipe_Weapon_Slashers_T02_Bone_Reinforced = new PrefabGUID(1679813913); public static readonly PrefabGUID Recipe_Weapon_Slashers_T03_Copper = new PrefabGUID(-1560601100); public static readonly PrefabGUID Recipe_Weapon_Slashers_T04_Copper_Reinforced = new PrefabGUID(396156173); public static readonly PrefabGUID Recipe_Weapon_Slashers_T05_Iron = new PrefabGUID(-808348493); public static readonly PrefabGUID Recipe_Weapon_Slashers_T06_Iron_Reinforced = new PrefabGUID(1469893872); public static readonly PrefabGUID Recipe_Weapon_Slashers_T07_DarkSilver = new PrefabGUID(-1919160227); public static readonly PrefabGUID Recipe_Weapon_Slashers_T08_Sanguine = new PrefabGUID(373339628); public static readonly PrefabGUID Recipe_Weapon_Slashers_T09_ShadowMatter = new PrefabGUID(501702204); public static readonly PrefabGUID Recipe_Weapon_Spear_T01_Bone = new PrefabGUID(1394854694); public static readonly PrefabGUID Recipe_Weapon_Spear_T02_Bone_Reinforced = new PrefabGUID(-1328539101); public static readonly PrefabGUID Recipe_Weapon_Spear_T03_Copper = new PrefabGUID(-791471134); public static readonly PrefabGUID Recipe_Weapon_Spear_T04_Copper_Reinforced = new PrefabGUID(-118222260); public static readonly PrefabGUID Recipe_Weapon_Spear_T05_Iron = new PrefabGUID(239811022); public static readonly PrefabGUID Recipe_Weapon_Spear_T06_Iron_Reinforced = new PrefabGUID(-499925914); public static readonly PrefabGUID Recipe_Weapon_Spear_T07_DarkSilver = new PrefabGUID(-194303255); public static readonly PrefabGUID Recipe_Weapon_Spear_T08_Sanguine = new PrefabGUID(-314047482); public static readonly PrefabGUID Recipe_Weapon_Spear_T09_ShadowMatter = new PrefabGUID(-190896313); public static readonly PrefabGUID Recipe_Weapon_Sword_T01_Bone = new PrefabGUID(-2125590443); public static readonly PrefabGUID Recipe_Weapon_Sword_T02_Bone_Reinforced = new PrefabGUID(1742703328); public static readonly PrefabGUID Recipe_Weapon_Sword_T03_Copper = new PrefabGUID(-267802321); public static readonly PrefabGUID Recipe_Weapon_Sword_T04_Copper_Reinforced = new PrefabGUID(774557022); public static readonly PrefabGUID Recipe_Weapon_Sword_T05_Iron = new PrefabGUID(-2098625697); public static readonly PrefabGUID Recipe_Weapon_Sword_T06_Iron_Reinforced = new PrefabGUID(-1052674868); public static readonly PrefabGUID Recipe_Weapon_Sword_T07_DarkSilver = new PrefabGUID(374085302); public static readonly PrefabGUID Recipe_Weapon_Sword_T08_Sanguine = new PrefabGUID(895742048); public static readonly PrefabGUID Recipe_Weapon_Sword_T09_ShadowMatter = new PrefabGUID(1363919271); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T05_Iron = new PrefabGUID(-496801516); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T06_Iron_Reinforced = new PrefabGUID(1687058710); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T07_DarkSilver = new PrefabGUID(895579931); public static readonly PrefabGUID Recipe_Weapon_TwinBlades_T08_Sanguine = new PrefabGUID(1259720344); public static readonly PrefabGUID Recipe_Weapon_Whip_T05_Iron = new PrefabGUID(688528978); public static readonly PrefabGUID Recipe_Weapon_Whip_T06_Iron_Reinforced = new PrefabGUID(465080212); public static readonly PrefabGUID Recipe_Weapon_Whip_T07_DarkSilver = new PrefabGUID(1507781061); public static readonly PrefabGUID Recipe_Weapon_Whip_T08_Sanguine = new PrefabGUID(-1968497565); public static readonly PrefabGUID Recipe_Weapon_Whip_T09_ShadowMatter = new PrefabGUID(-941901707); public static readonly PrefabGUID Recipe_WeaponCoating_Blood = new PrefabGUID(-1487423952); public static readonly PrefabGUID Recipe_WeaponCoating_Chaos = new PrefabGUID(-338717708); public static readonly PrefabGUID Recipe_WeaponCoating_Frost = new PrefabGUID(-789668816); public static readonly PrefabGUID Recipe_WeaponCoating_Illusion = new PrefabGUID(405829513); public static readonly PrefabGUID Recipe_WeaponCoating_Storm = new PrefabGUID(-2034775483); public static readonly PrefabGUID Recipe_WeaponCoating_Unholy = new PrefabGUID(216972181); public static readonly PrefabGUID RedCarpetsBuildMenuGroup01 = new PrefabGUID(837616279); public static readonly PrefabGUID RedCarpetsBuildMenuGroup02 = new PrefabGUID(1307908983); public static readonly PrefabGUID ReducedActivityTimer = new PrefabGUID(276853963); public static readonly PrefabGUID Refinementstation_Inventory = new PrefabGUID(-534407618); public static readonly PrefabGUID Refinementstation_Inventory_Big = new PrefabGUID(1436956144); public static readonly PrefabGUID Refinementstation_Inventory_Soulshard = new PrefabGUID(-1814907421); public static readonly PrefabGUID RegularScrap01_Broken = new PrefabGUID(955047892); public static readonly PrefabGUID RegularScrap02_Broken = new PrefabGUID(-1180133071); public static readonly PrefabGUID RegularScrap03_Broken = new PrefabGUID(-2137026243); public static readonly PrefabGUID RegularScrap04_Broken = new PrefabGUID(1253256675); public static readonly PrefabGUID Resource_DeathContainer_Drop = new PrefabGUID(55868820); public static readonly PrefabGUID Resource_Drop_Bag = new PrefabGUID(-132814229); public static readonly PrefabGUID Resource_Drop_BloodCrystal = new PrefabGUID(-2134166369); public static readonly PrefabGUID Resource_Drop_BloodRose = new PrefabGUID(2035436823); public static readonly PrefabGUID Resource_Drop_Bone = new PrefabGUID(741092750); public static readonly PrefabGUID Resource_Drop_Bricks = new PrefabGUID(-786648468); public static readonly PrefabGUID Resource_Drop_Canister_01 = new PrefabGUID(1008788107); public static readonly PrefabGUID Resource_Drop_Canister_02 = new PrefabGUID(1617336008); public static readonly PrefabGUID Resource_Drop_Canteen = new PrefabGUID(338642029); public static readonly PrefabGUID Resource_Drop_CarpetRoll = new PrefabGUID(273090451); public static readonly PrefabGUID Resource_Drop_Clay = new PrefabGUID(2132573277); public static readonly PrefabGUID Resource_Drop_Cloak = new PrefabGUID(1521943193); public static readonly PrefabGUID Resource_Drop_Cloth = new PrefabGUID(-1560414694); public static readonly PrefabGUID Resource_Drop_Coal = new PrefabGUID(672726950); public static readonly PrefabGUID Resource_Drop_CoarseThread = new PrefabGUID(-1463968409); public static readonly PrefabGUID Resource_Drop_CoilCircuit = new PrefabGUID(2109036970); public static readonly PrefabGUID Resource_Drop_CoinCopper = new PrefabGUID(-863944122); public static readonly PrefabGUID Resource_Drop_CoinGold = new PrefabGUID(-945352002); public static readonly PrefabGUID Resource_Drop_CoinSilver = new PrefabGUID(636843233); public static readonly PrefabGUID Resource_Drop_Component = new PrefabGUID(-259659176); public static readonly PrefabGUID Resource_Drop_CopperIngot = new PrefabGUID(1231830058); public static readonly PrefabGUID Resource_Drop_CopperOre = new PrefabGUID(-1293505743); public static readonly PrefabGUID Resource_Drop_Cotton = new PrefabGUID(-584778120); public static readonly PrefabGUID Resource_Drop_CottonYarn = new PrefabGUID(470647052); public static readonly PrefabGUID Resource_Drop_Emery = new PrefabGUID(1954116869); public static readonly PrefabGUID Resource_Drop_EMP = new PrefabGUID(1188008126); public static readonly PrefabGUID Resource_Drop_EnergyCore01 = new PrefabGUID(-1751477752); public static readonly PrefabGUID Resource_Drop_EnergyCore02 = new PrefabGUID(-1758094831); public static readonly PrefabGUID Resource_Drop_Essence_Ancestral = new PrefabGUID(705511783); public static readonly PrefabGUID Resource_Drop_Essence_Greater = new PrefabGUID(-294351577); public static readonly PrefabGUID Resource_Drop_Essence_T01 = new PrefabGUID(-967912460); public static readonly PrefabGUID Resource_Drop_FireBlossom = new PrefabGUID(-1261102854); public static readonly PrefabGUID Resource_Drop_Fish = new PrefabGUID(526872006); public static readonly PrefabGUID Resource_Drop_FishOil = new PrefabGUID(-834438334); public static readonly PrefabGUID Resource_Drop_Fragments = new PrefabGUID(-290346143); public static readonly PrefabGUID Resource_Drop_Garment_Boots = new PrefabGUID(-1055389478); public static readonly PrefabGUID Resource_Drop_Garment_Gloves = new PrefabGUID(1116210695); public static readonly PrefabGUID Resource_Drop_Garment_Pants = new PrefabGUID(1871602977); public static readonly PrefabGUID Resource_Drop_Garment_Shirt = new PrefabGUID(-5892362); public static readonly PrefabGUID Resource_Drop_Gear = new PrefabGUID(1402023307); public static readonly PrefabGUID Resource_Drop_Gem = new PrefabGUID(1365230928); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T01 = new PrefabGUID(1340305950); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T02 = new PrefabGUID(-1522062715); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T03 = new PrefabGUID(1507288770); public static readonly PrefabGUID Resource_Drop_GemAmethyst_T04 = new PrefabGUID(-1107505282); public static readonly PrefabGUID Resource_Drop_Gemdust = new PrefabGUID(-874871536); public static readonly PrefabGUID Resource_Drop_GemEmerald_T01 = new PrefabGUID(-1881141613); public static readonly PrefabGUID Resource_Drop_GemEmerald_T02 = new PrefabGUID(84842326); public static readonly PrefabGUID Resource_Drop_GemEmerald_T03 = new PrefabGUID(-1743633722); public static readonly PrefabGUID Resource_Drop_GemEmerald_T04 = new PrefabGUID(-420137271); public static readonly PrefabGUID Resource_Drop_GemOpal_T01 = new PrefabGUID(-699097755); public static readonly PrefabGUID Resource_Drop_GemOpal_T02 = new PrefabGUID(1351986583); public static readonly PrefabGUID Resource_Drop_GemOpal_T03 = new PrefabGUID(1167189460); public static readonly PrefabGUID Resource_Drop_GemOpal_T04 = new PrefabGUID(-49717999); public static readonly PrefabGUID Resource_Drop_GemRuby_T01 = new PrefabGUID(-1965092460); public static readonly PrefabGUID Resource_Drop_GemRuby_T02 = new PrefabGUID(1749912032); public static readonly PrefabGUID Resource_Drop_GemRuby_T03 = new PrefabGUID(1497878745); public static readonly PrefabGUID Resource_Drop_GemRuby_T04 = new PrefabGUID(1014893329); public static readonly PrefabGUID Resource_Drop_GemSapphire_T01 = new PrefabGUID(-926390268); public static readonly PrefabGUID Resource_Drop_GemSapphire_T02 = new PrefabGUID(-288789863); public static readonly PrefabGUID Resource_Drop_GemSapphire_T03 = new PrefabGUID(-1445210561); public static readonly PrefabGUID Resource_Drop_GemSapphire_T04 = new PrefabGUID(2104051835); public static readonly PrefabGUID Resource_Drop_GemTopaz_T01 = new PrefabGUID(258998099); public static readonly PrefabGUID Resource_Drop_GemTopaz_T02 = new PrefabGUID(349566843); public static readonly PrefabGUID Resource_Drop_GemTopaz_T03 = new PrefabGUID(1958027464); public static readonly PrefabGUID Resource_Drop_GemTopaz_T04 = new PrefabGUID(146261020); public static readonly PrefabGUID Resource_Drop_General = new PrefabGUID(-1221682951); public static readonly PrefabGUID Resource_Drop_GhostCrystal = new PrefabGUID(881945195); public static readonly PrefabGUID Resource_Drop_GhostShroom = new PrefabGUID(1680406965); public static readonly PrefabGUID Resource_Drop_GhostYarn = new PrefabGUID(391609785); public static readonly PrefabGUID Resource_Drop_Glass = new PrefabGUID(639818560); public static readonly PrefabGUID Resource_Drop_GlassBottle = new PrefabGUID(1121583475); public static readonly PrefabGUID Resource_Drop_Grapes = new PrefabGUID(658951117); public static readonly PrefabGUID Resource_Drop_Gravedust = new PrefabGUID(2036389174); public static readonly PrefabGUID Resource_Drop_Headgear = new PrefabGUID(362690558); public static readonly PrefabGUID Resource_Drop_Heart = new PrefabGUID(648059360); public static readonly PrefabGUID Resource_Drop_Heart_Basic = new PrefabGUID(-446137777); public static readonly PrefabGUID Resource_Drop_Heart_Rare = new PrefabGUID(-1025260281); public static readonly PrefabGUID Resource_Drop_HellsClarion = new PrefabGUID(725236544); public static readonly PrefabGUID Resource_Drop_Hide = new PrefabGUID(2086608040); public static readonly PrefabGUID Resource_Drop_HighlandLotus = new PrefabGUID(1670221615); public static readonly PrefabGUID Resource_Drop_IronIngot = new PrefabGUID(-1617135517); public static readonly PrefabGUID Resource_Drop_IronOre = new PrefabGUID(-1357977690); public static readonly PrefabGUID Resource_Drop_Jewel = new PrefabGUID(2114665159); public static readonly PrefabGUID Resource_Drop_Jewel_T04 = new PrefabGUID(1345661752); public static readonly PrefabGUID Resource_Drop_Leather = new PrefabGUID(-40351197); public static readonly PrefabGUID Resource_Drop_LegendaryWeapons = new PrefabGUID(-376707940); public static readonly PrefabGUID Resource_Drop_Lumber = new PrefabGUID(-1086097069); public static readonly PrefabGUID Resource_Drop_MourningLily = new PrefabGUID(-384761539); public static readonly PrefabGUID Resource_Drop_MutantGrease = new PrefabGUID(-797430410); public static readonly PrefabGUID Resource_Drop_NetherShard_T01 = new PrefabGUID(-1692425655); public static readonly PrefabGUID Resource_Drop_NetherShard_T02 = new PrefabGUID(-193094031); public static readonly PrefabGUID Resource_Drop_NetherShard_T03 = new PrefabGUID(644720806); public static readonly PrefabGUID Resource_Drop_OnyxTear = new PrefabGUID(-2073210980); public static readonly PrefabGUID Resource_Drop_PaintingFrame = new PrefabGUID(1582869873); public static readonly PrefabGUID Resource_Drop_Paper = new PrefabGUID(-1707229047); public static readonly PrefabGUID Resource_Drop_Passive = new PrefabGUID(-1674657717); public static readonly PrefabGUID Resource_Drop_Pendant = new PrefabGUID(-583542658); public static readonly PrefabGUID Resource_Drop_Plantfiber = new PrefabGUID(-2146401969); public static readonly PrefabGUID Resource_Drop_PotionBottle = new PrefabGUID(-1094561191); public static readonly PrefabGUID Resource_Drop_PrimalLeather = new PrefabGUID(155317997); public static readonly PrefabGUID Resource_Drop_Quartz = new PrefabGUID(-842432547); public static readonly PrefabGUID Resource_Drop_RaidItem = new PrefabGUID(-1588736269); public static readonly PrefabGUID Resource_Drop_ReinforcedPlank = new PrefabGUID(-1125205733); public static readonly PrefabGUID Resource_Drop_Relic = new PrefabGUID(-1693842783); public static readonly PrefabGUID Resource_Drop_Ring = new PrefabGUID(925101108); public static readonly PrefabGUID Resource_Drop_Rock = new PrefabGUID(-796841019); public static readonly PrefabGUID Resource_Drop_Sawdust = new PrefabGUID(-382879005); public static readonly PrefabGUID Resource_Drop_Schematic = new PrefabGUID(532174117); public static readonly PrefabGUID Resource_Drop_Scourgestone = new PrefabGUID(1097674092); public static readonly PrefabGUID Resource_Drop_Scroll = new PrefabGUID(-2067985489); public static readonly PrefabGUID Resource_Drop_SculpturedWood = new PrefabGUID(14280401); public static readonly PrefabGUID Resource_Drop_Seeds = new PrefabGUID(-1444686586); public static readonly PrefabGUID Resource_Drop_Silk = new PrefabGUID(1992618619); public static readonly PrefabGUID Resource_Drop_Snowflower = new PrefabGUID(1899422145); public static readonly PrefabGUID Resource_Drop_SoulShard = new PrefabGUID(2088872209); public static readonly PrefabGUID Resource_Drop_Spectraldust = new PrefabGUID(-970714772); public static readonly PrefabGUID Resource_Drop_SpiderWeb = new PrefabGUID(710409210); public static readonly PrefabGUID Resource_Drop_SteelIngot = new PrefabGUID(96881789); public static readonly PrefabGUID Resource_Drop_StoneBody = new PrefabGUID(-773308565); public static readonly PrefabGUID Resource_Drop_Stonedust = new PrefabGUID(-1718242130); public static readonly PrefabGUID Resource_Drop_Sulfur = new PrefabGUID(-1782215599); public static readonly PrefabGUID Resource_Drop_Sunflower = new PrefabGUID(1191294763); public static readonly PrefabGUID Resource_Drop_Tech = new PrefabGUID(-1168158116); public static readonly PrefabGUID Resource_Drop_TechScrap = new PrefabGUID(1266142904); public static readonly PrefabGUID Resource_Drop_ThickLeather = new PrefabGUID(-1305286125); public static readonly PrefabGUID Resource_Drop_TrippyShroom = new PrefabGUID(1360483679); public static readonly PrefabGUID Resource_Drop_WaterGlassBottle = new PrefabGUID(776167693); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster = new PrefabGUID(2080553210); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Epic = new PrefabGUID(-1623103673); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Legendary = new PrefabGUID(-749126916); public static readonly PrefabGUID Resource_Drop_Weapon_Cluster_Rare = new PrefabGUID(1349020541); public static readonly PrefabGUID Resource_Drop_Whetstone = new PrefabGUID(482313771); public static readonly PrefabGUID Resource_Drop_WoodenPlank = new PrefabGUID(-1635345321); public static readonly PrefabGUID Resource_Drop_WoolThread = new PrefabGUID(-1101718335); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop = new PrefabGUID(-1167134977); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop_ClanMembers = new PrefabGUID(1988127386); public static readonly PrefabGUID Resource_PlayerDeathContainer_Drop_Self = new PrefabGUID(-145322157); public static readonly PrefabGUID Resource_PlayerEntireInventoryContainer_Drop = new PrefabGUID(388822843); public static readonly PrefabGUID RippedRugsBuildMenuGroup01 = new PrefabGUID(555159354); public static readonly PrefabGUID RobotTurret_Ragdoll100_Prefab = new PrefabGUID(-1631011417); public static readonly PrefabGUID RockLaunchBounceHeightCurve = new PrefabGUID(521821910); public static readonly PrefabGUID RockNode01_Broken = new PrefabGUID(498034569); public static readonly PrefabGUID RockNode01_Broken_Small = new PrefabGUID(-2030727104); public static readonly PrefabGUID RockNode02_Broken = new PrefabGUID(-775406803); public static readonly PrefabGUID RockNode02_Broken_Small = new PrefabGUID(2122487943); public static readonly PrefabGUID RockNode03_Broken = new PrefabGUID(551929350); public static readonly PrefabGUID RockNode03_Broken_Small = new PrefabGUID(639740132); public static readonly PrefabGUID RockNode04_Broken = new PrefabGUID(-1169207343); public static readonly PrefabGUID RockNode04_Broken_Small = new PrefabGUID(-1459707548); public static readonly PrefabGUID RockNodeBig01_Broken = new PrefabGUID(321324502); public static readonly PrefabGUID RockNodeMedium01_Broken = new PrefabGUID(-159799385); public static readonly PrefabGUID RoofCategory_Castle = new PrefabGUID(-1718269807); public static readonly PrefabGUID RoofCategory_RusticHouse = new PrefabGUID(800161619); public static readonly PrefabGUID RoyalDLC01WindowsBuildMenuGroup = new PrefabGUID(133133579); public static readonly PrefabGUID RugsBuildMenuGroup01 = new PrefabGUID(-438029986); public static readonly PrefabGUID RuntimeSequenceConversion = new PrefabGUID(-2119731411); public static readonly PrefabGUID Rustle_Curve_Leaves = new PrefabGUID(-408855615); public static readonly PrefabGUID Rustle_Curve_PlantFiber = new PrefabGUID(230408611); public static readonly PrefabGUID Rustle_Curve_Stone = new PrefabGUID(1638161369); public static readonly PrefabGUID Rustle_Curve_Wood = new PrefabGUID(-1287158218); public static readonly PrefabGUID Scenery_CritterGroup_Bunny = new PrefabGUID(-726797863); public static readonly PrefabGUID Scenery_CritterGroup_Cat = new PrefabGUID(-462619446); public static readonly PrefabGUID Scenery_CritterGroup_Chicken = new PrefabGUID(-513938186); public static readonly PrefabGUID Scenery_CritterGroup_Cockroach = new PrefabGUID(-2070712292); public static readonly PrefabGUID Scenery_CritterGroup_Crow = new PrefabGUID(-1635715249); public static readonly PrefabGUID Scenery_CritterGroup_Mouse = new PrefabGUID(161195385); public static readonly PrefabGUID Scenery_CritterGroup_Single_Crow = new PrefabGUID(819393749); public static readonly PrefabGUID Scenery_CritterGroup_Spider = new PrefabGUID(338617196); public static readonly PrefabGUID Scenery_CritterGroup_Squirrel = new PrefabGUID(-1481118347); public static readonly PrefabGUID ScrollingCombatTextMessage = new PrefabGUID(-1661525964); public static readonly PrefabGUID SCT_Type_Absorb = new PrefabGUID(-1507060983); public static readonly PrefabGUID SCT_Type_AIReaction = new PrefabGUID(2058410553); public static readonly PrefabGUID SCT_Type_BloodEssenceGain = new PrefabGUID(2131080437); public static readonly PrefabGUID SCT_Type_BloodGain = new PrefabGUID(-999981247); public static readonly PrefabGUID SCT_Type_BloodTypeChange = new PrefabGUID(1154316853); public static readonly PrefabGUID SCT_Type_CannotTeleport = new PrefabGUID(-1203529515); public static readonly PrefabGUID SCT_Type_CastFailResult = new PrefabGUID(-1404311249); public static readonly PrefabGUID SCT_Type_CritDamage = new PrefabGUID(71612833); public static readonly PrefabGUID SCT_Type_Damage = new PrefabGUID(1185773513); public static readonly PrefabGUID SCT_Type_DamageDone = new PrefabGUID(781573820); public static readonly PrefabGUID SCT_Type_DamageDoneWeak = new PrefabGUID(-403787477); public static readonly PrefabGUID SCT_Type_DamageTaken = new PrefabGUID(-1967038487); public static readonly PrefabGUID SCT_Type_DamageTakenCorruption = new PrefabGUID(2141794156); public static readonly PrefabGUID SCT_Type_Generic = new PrefabGUID(-1687715009); public static readonly PrefabGUID SCT_Type_HaveEquippedItems = new PrefabGUID(1868620532); public static readonly PrefabGUID SCT_Type_Healing = new PrefabGUID(-856835573); public static readonly PrefabGUID SCT_Type_HealingMinor = new PrefabGUID(-1081349591); public static readonly PrefabGUID SCT_Type_IgniteExtinguished = new PrefabGUID(-544486556); public static readonly PrefabGUID SCT_Type_Immune = new PrefabGUID(-1203333778); public static readonly PrefabGUID SCT_Type_InfoError = new PrefabGUID(311215354); public static readonly PrefabGUID SCT_Type_InfoMessage = new PrefabGUID(-118474030); public static readonly PrefabGUID SCT_Type_InfoWarning = new PrefabGUID(106212079); public static readonly PrefabGUID SCT_Type_InventoryFull = new PrefabGUID(-1223353367); public static readonly PrefabGUID SCT_Type_Invulernable = new PrefabGUID(-1872940151); public static readonly PrefabGUID SCT_Type_LocalChat = new PrefabGUID(-1855103687); public static readonly PrefabGUID SCT_Type_MAX = new PrefabGUID(1783352458); public static readonly PrefabGUID SCT_Type_MissingLiquidSource = new PrefabGUID(-1891230577); public static readonly PrefabGUID SCT_Type_MissingMaterials = new PrefabGUID(1192126406); public static readonly PrefabGUID SCT_Type_NeedBetterTool = new PrefabGUID(1823472841); public static readonly PrefabGUID SCT_Type_PvECastleDamage = new PrefabGUID(321841627); public static readonly PrefabGUID SCT_Type_PvPCastleDamageOutsideTime = new PrefabGUID(944031787); public static readonly PrefabGUID SCT_Type_PVPProtectionIN = new PrefabGUID(-2002168845); public static readonly PrefabGUID SCT_Type_PVPProtectionOUT = new PrefabGUID(917424779); public static readonly PrefabGUID SCT_Type_RequiredExplosives = new PrefabGUID(750222285); public static readonly PrefabGUID SCT_Type_RequiredExplosivesOrBear = new PrefabGUID(-928087973); public static readonly PrefabGUID SCT_Type_RequiresEMP = new PrefabGUID(-1849014216); public static readonly PrefabGUID SCT_Type_RequiresRecipe = new PrefabGUID(415888609); public static readonly PrefabGUID SCT_Type_ResouceGain = new PrefabGUID(1876501183); public static readonly PrefabGUID SCT_Type_StoneWalls = new PrefabGUID(-581098863); public static readonly PrefabGUID SCT_Type_WoodenWalls = new PrefabGUID(-802591385); public static readonly PrefabGUID SCTTypeCollection = new PrefabGUID(1328911186); public static readonly PrefabGUID SequenceTestCollection = new PrefabGUID(1945063752); public static readonly PrefabGUID ServantCoffinBuildMenuGroup = new PrefabGUID(709084037); public static readonly PrefabGUID ServantComponentsTemplate = new PrefabGUID(-1746730611); public static readonly PrefabGUID ServantInjury_BloodLoss = new PrefabGUID(-2075488993); public static readonly PrefabGUID ServantInjury_Cross = new PrefabGUID(935529743); public static readonly PrefabGUID ServantInjury_ExposedToHolyWater = new PrefabGUID(186809177); public static readonly PrefabGUID ServantInjury_Farmer = new PrefabGUID(-351784592); public static readonly PrefabGUID ServantInjury_Fight = new PrefabGUID(1951642705); public static readonly PrefabGUID ServantInjury_Fire = new PrefabGUID(156962313); public static readonly PrefabGUID ServantInjury_Garlic = new PrefabGUID(1747602415); public static readonly PrefabGUID ServantInjury_Ratform = new PrefabGUID(-1304230302); public static readonly PrefabGUID ServantInjury_SilverArrow = new PrefabGUID(1612634118); public static readonly PrefabGUID ServantInjury_StabbedByStake = new PrefabGUID(-421754319); public static readonly PrefabGUID ServantInjury_SunBurned = new PrefabGUID(685584511); public static readonly PrefabGUID ServantInjury_VampireHunter = new PrefabGUID(1092922249); public static readonly PrefabGUID ServantMission_Cursed_AncientVillage = new PrefabGUID(-395595366); public static readonly PrefabGUID ServantMission_Cursed_CursedVillage = new PrefabGUID(1596714739); public static readonly PrefabGUID ServantMission_Cursed_Forest = new PrefabGUID(589926828); public static readonly PrefabGUID ServantMission_Cursed_SpiderCave = new PrefabGUID(-313828225); public static readonly PrefabGUID ServantMission_Cursed_Swamp = new PrefabGUID(-679169716); public static readonly PrefabGUID ServantMission_Dunley_ChurchOfTheDamned = new PrefabGUID(107611488); public static readonly PrefabGUID ServantMission_Dunley_CottonFarm_East = new PrefabGUID(-1925203213); public static readonly PrefabGUID ServantMission_Dunley_CottonFarm_West = new PrefabGUID(-577507732); public static readonly PrefabGUID ServantMission_Dunley_IronMine = new PrefabGUID(-1591895762); public static readonly PrefabGUID ServantMission_Dunley_MilitiaFort = new PrefabGUID(-1658007185); public static readonly PrefabGUID ServantMission_Dunley_Monastery = new PrefabGUID(-1248995433); public static readonly PrefabGUID ServantMission_Dunley_Mountains = new PrefabGUID(-1409789123); public static readonly PrefabGUID ServantMission_Dunley_QuartzQuarry = new PrefabGUID(55657928); public static readonly PrefabGUID ServantMission_Dunley_VillageDawnbreak = new PrefabGUID(1811427365); public static readonly PrefabGUID ServantMission_Dunley_VillageMosswick = new PrefabGUID(1971860195); public static readonly PrefabGUID ServantMission_Farbane_AnimalCamp = new PrefabGUID(602495896); public static readonly PrefabGUID ServantMission_Farbane_BanditFortress = new PrefabGUID(-297512745); public static readonly PrefabGUID ServantMission_Farbane_CopperQuarry = new PrefabGUID(-1617816771); public static readonly PrefabGUID ServantMission_Farbane_Fisherman = new PrefabGUID(-327479531); public static readonly PrefabGUID ServantMission_Farbane_FlowerMeadows = new PrefabGUID(399747737); public static readonly PrefabGUID ServantMission_Farbane_Forge = new PrefabGUID(51694127); public static readonly PrefabGUID ServantMission_Farbane_HauntedGraveyard = new PrefabGUID(-1154991380); public static readonly PrefabGUID ServantMission_Farbane_LumberjackCamp = new PrefabGUID(195492129); public static readonly PrefabGUID ServantMission_Farbane_SulfurQuarry = new PrefabGUID(568952932); public static readonly PrefabGUID ServantMission_Gloomrot_CoilFactory = new PrefabGUID(610822105); public static readonly PrefabGUID ServantMission_Gloomrot_CopperMine = new PrefabGUID(-706951992); public static readonly PrefabGUID ServantMission_Gloomrot_Lab = new PrefabGUID(-506759403); public static readonly PrefabGUID ServantMission_Gloomrot_PestPools = new PrefabGUID(-1170116308); public static readonly PrefabGUID ServantMission_Gloomrot_PowerPlant = new PrefabGUID(1301932941); public static readonly PrefabGUID ServantMission_Gloomrot_Village = new PrefabGUID(271417492); public static readonly PrefabGUID ServantMission_HallowedMountain_Wild = new PrefabGUID(1796467976); public static readonly PrefabGUID ServantMission_Noctem_Garden = new PrefabGUID(1915682015); public static readonly PrefabGUID ServantMission_Noctem_Ruins = new PrefabGUID(311828353); public static readonly PrefabGUID ServantMission_Silverlight_ArchmagePOI = new PrefabGUID(295204422); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Cathedral = new PrefabGUID(-1034748789); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Harbor = new PrefabGUID(-1079312509); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Slums = new PrefabGUID(-1353577732); public static readonly PrefabGUID ServantMission_Silverlight_Brighthaven_Square = new PrefabGUID(1561380478); public static readonly PrefabGUID ServantMission_Silverlight_HarpyNest_North = new PrefabGUID(179835121); public static readonly PrefabGUID ServantMission_Silverlight_HarpyNest_South = new PrefabGUID(-389296424); public static readonly PrefabGUID ServantMission_Silverlight_SilverMines = new PrefabGUID(348653938); public static readonly PrefabGUID ServantMission_Silverlight_Vineyard = new PrefabGUID(-851359443); public static readonly PrefabGUID ServantMission_Strongblade_Bastion = new PrefabGUID(222147257); public static readonly PrefabGUID ServantMission_Strongblade_CarversLoggingOutpost = new PrefabGUID(2064518699); public static readonly PrefabGUID ServantMission_Strongblade_Shoreline = new PrefabGUID(1928198431); public static readonly PrefabGUID ServantMission_Strongblade_VenomMixingOutpost = new PrefabGUID(2051852663); public static readonly PrefabGUID ServantMission_TEST = new PrefabGUID(-756885851); public static readonly PrefabGUID ServantMissionBuff = new PrefabGUID(-1100464221); public static readonly PrefabGUID ServantMissionSettings = new PrefabGUID(-1830466155); public static readonly PrefabGUID ServantPerk_BloodType_Brute = new PrefabGUID(740985277); public static readonly PrefabGUID ServantPerk_BloodType_Rogue = new PrefabGUID(-1937299872); public static readonly PrefabGUID ServantPerk_BloodType_Scholar = new PrefabGUID(-1410655756); public static readonly PrefabGUID ServantPerk_BloodType_Warrior = new PrefabGUID(-1947526080); public static readonly PrefabGUID ServantPerk_BloodType_Worker = new PrefabGUID(-49207502); public static readonly PrefabGUID ServantPerk_Faction_CursedExpert = new PrefabGUID(-1394605411); public static readonly PrefabGUID ServantPerk_Faction_DunleyExpert = new PrefabGUID(81754057); public static readonly PrefabGUID ServantPerk_Faction_FarbaneExpert = new PrefabGUID(1427742366); public static readonly PrefabGUID ServantPerk_Faction_GloomrotExpert = new PrefabGUID(-1509519094); public static readonly PrefabGUID ServantPerk_Faction_NoctemExpert = new PrefabGUID(-1031211388); public static readonly PrefabGUID ServantPerk_Faction_OakveilExpert = new PrefabGUID(-1745352584); public static readonly PrefabGUID ServantPerk_Faction_SilverExpert = new PrefabGUID(226032448); public static readonly PrefabGUID ServantPerkCollection = new PrefabGUID(-64904809); public static readonly PrefabGUID ServerDebugLogs = new PrefabGUID(1538180840); public static readonly PrefabGUID ServerDebugSettings = new PrefabGUID(1388494640); public static readonly PrefabGUID ServerDebugViewData = new PrefabGUID(-192904674); public static readonly PrefabGUID ServerResetScheduleNoticeSettings = new PrefabGUID(-1354241064); public static readonly PrefabGUID SetBonus_AllLeech_T09 = new PrefabGUID(1774716596); public static readonly PrefabGUID SetBonus_DamageReduction_T04 = new PrefabGUID(-1194884384); public static readonly PrefabGUID SetBonus_DamageReduction_T06 = new PrefabGUID(547075454); public static readonly PrefabGUID SetBonus_DamageReduction_T08 = new PrefabGUID(1291208985); public static readonly PrefabGUID SetBonus_DamageReduction_T09 = new PrefabGUID(572492278); public static readonly PrefabGUID SetBonus_GearLevel_01 = new PrefabGUID(-1469378405); public static readonly PrefabGUID SetBonus_GearLevel_02 = new PrefabGUID(244750581); public static readonly PrefabGUID SetBonus_MaxHealth_01 = new PrefabGUID(-161632603); public static readonly PrefabGUID SetBonus_MaxHealth_T04 = new PrefabGUID(-1833184773); public static readonly PrefabGUID SetBonus_MaxHealth_T06 = new PrefabGUID(-1109053021); public static readonly PrefabGUID SetBonus_MaxHealth_T08 = new PrefabGUID(-870510971); public static readonly PrefabGUID SetBonus_MaxHealth_T09 = new PrefabGUID(-1971511915); public static readonly PrefabGUID SetBonus_MovementSpeed_T04 = new PrefabGUID(-1240045321); public static readonly PrefabGUID SetBonus_MovementSpeed_T06 = new PrefabGUID(1966156848); public static readonly PrefabGUID SetBonus_MovementSpeed_T08 = new PrefabGUID(1079442692); public static readonly PrefabGUID SetBonus_MovementSpeed_T09 = new PrefabGUID(-252942383); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T05 = new PrefabGUID(-1672433701); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T08 = new PrefabGUID(-1122472005); public static readonly PrefabGUID SetBonus_PhysicalAndSpellPower_T09 = new PrefabGUID(-1825126422); public static readonly PrefabGUID SetBonus_PhysicalCritChance_T04 = new PrefabGUID(-1161614593); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T06 = new PrefabGUID(1394868853); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T08 = new PrefabGUID(1013898296); public static readonly PrefabGUID SetBonus_PhysicalCritPower_T09 = new PrefabGUID(-93763706); public static readonly PrefabGUID SetBonus_PhysicalLeech_T06 = new PrefabGUID(76282300); public static readonly PrefabGUID SetBonus_PhysicalPower_01 = new PrefabGUID(1444835872); public static readonly PrefabGUID SetBonus_PrimaryLeech_T04 = new PrefabGUID(-2031427570); public static readonly PrefabGUID SetBonus_PrimaryLeech_T06 = new PrefabGUID(322688242); public static readonly PrefabGUID SetBonus_PrimaryLeech_T08 = new PrefabGUID(247251959); public static readonly PrefabGUID SetBonus_PrimaryLeech_T09 = new PrefabGUID(529890028); public static readonly PrefabGUID SetBonus_ShieldPowerAndHealingReceived_T08 = new PrefabGUID(-809648681); public static readonly PrefabGUID SetBonus_ShieldPowerAndHealingReceived_T09 = new PrefabGUID(1486229325); public static readonly PrefabGUID SetBonus_Silk_Twilight = new PrefabGUID(32681348); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T04 = new PrefabGUID(-356131055); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T06 = new PrefabGUID(868810527); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T08 = new PrefabGUID(541136174); public static readonly PrefabGUID SetBonus_SpellCooldownRecovery_T09 = new PrefabGUID(754479248); public static readonly PrefabGUID SetBonus_SpellCritChance_T06 = new PrefabGUID(254588562); public static readonly PrefabGUID SetBonus_SpellLeech_T04 = new PrefabGUID(1346704977); public static readonly PrefabGUID SetBonus_SpellLeech_T06 = new PrefabGUID(-386548305); public static readonly PrefabGUID SetBonus_SpellLeech_T08 = new PrefabGUID(-1438282243); public static readonly PrefabGUID SetBonus_SpellLeech_T09 = new PrefabGUID(-349368984); public static readonly PrefabGUID SetBonus_T02_BoneguardReinforced = new PrefabGUID(1581003665); public static readonly PrefabGUID SetBonus_T04_Copper_Brute = new PrefabGUID(1121142849); public static readonly PrefabGUID SetBonus_T04_Copper_Rogue = new PrefabGUID(-593972812); public static readonly PrefabGUID SetBonus_T04_Copper_Scholar = new PrefabGUID(-1174630965); public static readonly PrefabGUID SetBonus_T04_Copper_Warrior = new PrefabGUID(-909697685); public static readonly PrefabGUID SetBonus_T05_Iron = new PrefabGUID(443172945); public static readonly PrefabGUID SetBonus_T06_Iron_Brute = new PrefabGUID(1863848884); public static readonly PrefabGUID SetBonus_T06_Iron_Rogue = new PrefabGUID(-776568419); public static readonly PrefabGUID SetBonus_T06_Iron_Scholar = new PrefabGUID(-559686728); public static readonly PrefabGUID SetBonus_T06_Iron_Warrior = new PrefabGUID(532997228); public static readonly PrefabGUID SetBonus_T07_Dawnthorn = new PrefabGUID(772440843); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Brute = new PrefabGUID(320623981); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Rogue = new PrefabGUID(-2006015924); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Scholar = new PrefabGUID(1766981478); public static readonly PrefabGUID SetBonus_T08_DarkSilver_Warrior = new PrefabGUID(523774634); public static readonly PrefabGUID SetBonus_T09_Dracula = new PrefabGUID(1757441634); public static readonly PrefabGUID SetBonus_T09_Dracula_Brute = new PrefabGUID(-1970130150); public static readonly PrefabGUID SetBonus_T09_Dracula_Rogue = new PrefabGUID(-973082812); public static readonly PrefabGUID SetBonus_T09_Dracula_Scholar = new PrefabGUID(1458910387); public static readonly PrefabGUID SetBonus_T09_Dracula_Warrior = new PrefabGUID(-913344764); public static readonly PrefabGUID SetBonus_Veil_BonusDamage_T09 = new PrefabGUID(-564979747); public static readonly PrefabGUID SetBonus_Veil_HealAttackSpeed_T09 = new PrefabGUID(1126020850); public static readonly PrefabGUID SetBonus_Veil_PhysCrit_T09 = new PrefabGUID(-45464851); public static readonly PrefabGUID SetBonus_Veil_SpellCrit_T09 = new PrefabGUID(1796711064); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T06 = new PrefabGUID(-1711241549); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T08 = new PrefabGUID(-1541850088); public static readonly PrefabGUID SetBonus_VeilCooldownRecovery_T09 = new PrefabGUID(-1689852255); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T04 = new PrefabGUID(-2084311603); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T06 = new PrefabGUID(529499943); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T08 = new PrefabGUID(-1892430788); public static readonly PrefabGUID SetBonus_WeaponCooldownRecovery_T09 = new PrefabGUID(46345251); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T04 = new PrefabGUID(-735670327); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T06 = new PrefabGUID(1699593962); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T08 = new PrefabGUID(562186869); public static readonly PrefabGUID SetBonus_WeaponSkillPower_T09 = new PrefabGUID(-1449839186); public static readonly PrefabGUID ShadowSpellSchoolAsset = new PrefabGUID(-420104199); public static readonly PrefabGUID Shared_Affix_LevelAura_Buff = new PrefabGUID(-463147620); public static readonly PrefabGUID Shared_Affix_LevelAura_Self = new PrefabGUID(-2104035188); public static readonly PrefabGUID Shared_Affix_LevelAura_Trigger = new PrefabGUID(-304023722); public static readonly PrefabGUID Shared_CosineAboveOneLoop_Curve = new PrefabGUID(2068089580); public static readonly PrefabGUID Shared_LeapMovementCurve = new PrefabGUID(1287678087); public static readonly PrefabGUID ShieldBlockCurve = new PrefabGUID(-1712263022); public static readonly PrefabGUID SilverNode01_Shattered = new PrefabGUID(980522282); public static readonly PrefabGUID SilverNode01_Shattered_Small = new PrefabGUID(-237709830); public static readonly PrefabGUID SilverNode02_Shattered = new PrefabGUID(-357372486); public static readonly PrefabGUID SilverNode02_Shattered_Small = new PrefabGUID(1022913195); public static readonly PrefabGUID SilverNode03_Shattered = new PrefabGUID(420810643); public static readonly PrefabGUID SilverNode03_Shattered_Small = new PrefabGUID(1922266562); public static readonly PrefabGUID SimpleBustBuildMenuGroup = new PrefabGUID(1374073181); public static readonly PrefabGUID SimpleFloorBuildMenuGroup = new PrefabGUID(1370035216); public static readonly PrefabGUID SimpleGargoyleBuildMenuGroup = new PrefabGUID(-1953051592); public static readonly PrefabGUID SimpleStatueBuildMenuGroup = new PrefabGUID(256740223); public static readonly PrefabGUID SkyBlueWindowsBuildMenuGroup = new PrefabGUID(-1719171290); public static readonly PrefabGUID SmallStashBuildMenuGroup = new PrefabGUID(1357162194); public static readonly PrefabGUID Snapping_Point_Carpet = new PrefabGUID(-405810096); public static readonly PrefabGUID Snapping_Point_CastleEntrance = new PrefabGUID(192047127); public static readonly PrefabGUID Snapping_Point_CastleEntranceWide = new PrefabGUID(1684992744); public static readonly PrefabGUID Snapping_Point_CastleWallCurtain = new PrefabGUID(1310745578); public static readonly PrefabGUID Snapping_Point_CastleWindow = new PrefabGUID(-629206606); public static readonly PrefabGUID Snapping_Point_CastleWindowCurtain = new PrefabGUID(1431129932); public static readonly PrefabGUID Snapping_Point_Floor_Castle = new PrefabGUID(-891391036); public static readonly PrefabGUID Snapping_Point_Floor_Pillars = new PrefabGUID(1107064508); public static readonly PrefabGUID Snapping_Point_Hedge = new PrefabGUID(-1296878775); public static readonly PrefabGUID Snapping_Point_HouseWindow = new PrefabGUID(-293373435); public static readonly PrefabGUID Snapping_Point_Module = new PrefabGUID(-329891278); public static readonly PrefabGUID Snapping_Point_PillarDecor = new PrefabGUID(672221628); public static readonly PrefabGUID Snapping_Point_Seed = new PrefabGUID(1492094160); public static readonly PrefabGUID Snapping_Point_Trees = new PrefabGUID(-2115189399); public static readonly PrefabGUID Snapping_Point_WallObject = new PrefabGUID(-77072833); public static readonly PrefabGUID Snapping_Point_Wallpaper = new PrefabGUID(811937554); public static readonly PrefabGUID Snapping_PrefabSet_Carpets = new PrefabGUID(-1803589826); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Floors = new PrefabGUID(1734982571); public static readonly PrefabGUID Snapping_PrefabSet_Castle_PillarsAndWideWalls = new PrefabGUID(2103452847); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Walls = new PrefabGUID(797917351); public static readonly PrefabGUID Snapping_PrefabSet_Castle_Walls_AllTiers = new PrefabGUID(1633669796); public static readonly PrefabGUID Snapping_PrefabSet_CastleDoors = new PrefabGUID(-815752177); public static readonly PrefabGUID Snapping_PrefabSet_CastleDoorsWide = new PrefabGUID(-1670833887); public static readonly PrefabGUID Snapping_PrefabSet_CastleWallCurtains = new PrefabGUID(1193860088); public static readonly PrefabGUID Snapping_PrefabSet_CastleWindowCurtains = new PrefabGUID(1683897205); public static readonly PrefabGUID Snapping_PrefabSet_CastleWindows = new PrefabGUID(651487096); public static readonly PrefabGUID Snapping_PrefabSet_Graveyard_Fence = new PrefabGUID(-1056508325); public static readonly PrefabGUID Snapping_PrefabSet_HedgeCorners = new PrefabGUID(816992238); public static readonly PrefabGUID Snapping_PrefabSet_HedgePillars = new PrefabGUID(1947118461); public static readonly PrefabGUID Snapping_PrefabSet_Hedges = new PrefabGUID(-1644466152); public static readonly PrefabGUID Snapping_PrefabSet_HouseWindows = new PrefabGUID(-1240247986); public static readonly PrefabGUID Snapping_PrefabSet_Modules = new PrefabGUID(-2003280162); public static readonly PrefabGUID Snapping_PrefabSet_Pavement = new PrefabGUID(913493006); public static readonly PrefabGUID Snapping_PrefabSet_PillarTorches = new PrefabGUID(1907761274); public static readonly PrefabGUID Snapping_PrefabSet_Seeds = new PrefabGUID(-1450226155); public static readonly PrefabGUID Snapping_PrefabSet_Trees = new PrefabGUID(-67371969); public static readonly PrefabGUID Snapping_PrefabSet_WallObjects = new PrefabGUID(295358146); public static readonly PrefabGUID Snapping_PrefabSet_Wallpapers = new PrefabGUID(-70934868); public static readonly PrefabGUID SofaBuildMenuGroup = new PrefabGUID(-473102442); public static readonly PrefabGUID SpawnMutantFromBiteBuff = new PrefabGUID(-651661301); public static readonly PrefabGUID SpectralAssassin_Lunge_Curve = new PrefabGUID(844050996); public static readonly PrefabGUID SpectralTravelCurve = new PrefabGUID(-1133311450); public static readonly PrefabGUID Spell_Corruption_Tier3_Snare_Throw = new PrefabGUID(123399875); public static readonly PrefabGUID SpellMod_Axe_Frenzy_Duration = new PrefabGUID(-728210223); public static readonly PrefabGUID SpellMod_Axe_XStrike_MultiThrow = new PrefabGUID(-1434279243); public static readonly PrefabGUID SpellMod_BallLightning_BonusDamage = new PrefabGUID(-531481445); public static readonly PrefabGUID SpellMod_BallLightning_DetonateOnRecast = new PrefabGUID(353305817); public static readonly PrefabGUID SpellMod_BallLightning_Haste = new PrefabGUID(-485022350); public static readonly PrefabGUID SpellMod_BallLightning_KnockbackOnExplode = new PrefabGUID(-316223882); public static readonly PrefabGUID SpellMod_BloodFountain_ConsumeLeechBonusDamage = new PrefabGUID(1317706622); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactApplyLeech = new PrefabGUID(306122420); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactDispell = new PrefabGUID(-1068750721); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactFadingSnare = new PrefabGUID(-1789930630); public static readonly PrefabGUID SpellMod_BloodFountain_FirstImpactHealIncrease = new PrefabGUID(-946443951); public static readonly PrefabGUID SpellMod_BloodFountain_IncreaseArea = new PrefabGUID(1143457644); public static readonly PrefabGUID SpellMod_BloodFountain_RecastLesser = new PrefabGUID(681330075); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactDamageIncrease = new PrefabGUID(-209970409); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactHealIncrease = new PrefabGUID(-1612403007); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactKnockback = new PrefabGUID(2051676361); public static readonly PrefabGUID SpellMod_BloodFountain_SecondImpactSpeedBuff = new PrefabGUID(1475152083); public static readonly PrefabGUID SpellMod_BloodRage_DamageBoost = new PrefabGUID(1612736867); public static readonly PrefabGUID SpellMod_BloodRage_HealOnKill = new PrefabGUID(-503268826); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseArea = new PrefabGUID(-1663211505); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseLifetime = new PrefabGUID(1585822911); public static readonly PrefabGUID SpellMod_BloodRage_IncreaseMoveSpeed = new PrefabGUID(2035114890); public static readonly PrefabGUID SpellMod_BloodRage_Shield = new PrefabGUID(2088281423); public static readonly PrefabGUID SpellMod_BloodRite_ApplyFadingSnare = new PrefabGUID(-2135785408); public static readonly PrefabGUID SpellMod_BloodRite_BonusDaggers = new PrefabGUID(1819957855); public static readonly PrefabGUID SpellMod_BloodRite_BonusDamage = new PrefabGUID(361109184); public static readonly PrefabGUID SpellMod_BloodRite_ConsumeLeechHealXTimes = new PrefabGUID(610780185); public static readonly PrefabGUID SpellMod_BloodRite_ConsumeLeechReduceCooldownXTimes = new PrefabGUID(1578280782); public static readonly PrefabGUID SpellMod_BloodRite_DaggerBonusDamage = new PrefabGUID(-921605525); public static readonly PrefabGUID SpellMod_BloodRite_DamageOnAttack = new PrefabGUID(395008950); public static readonly PrefabGUID SpellMod_BloodRite_HealOnTrigger = new PrefabGUID(-1298328788); public static readonly PrefabGUID SpellMod_BloodRite_IncreaseLifetime = new PrefabGUID(-1364514258); public static readonly PrefabGUID SpellMod_BloodRite_Stealth = new PrefabGUID(-1514094720); public static readonly PrefabGUID SpellMod_BloodRite_TossDaggers = new PrefabGUID(864217573); public static readonly PrefabGUID SpellMod_CarrionSwam_BonusDamage = new PrefabGUID(-1547199412); public static readonly PrefabGUID SpellMod_CarrionSwam_Explode = new PrefabGUID(-884299127); public static readonly PrefabGUID SpellMod_CarrionSwam_Leech = new PrefabGUID(-2020998085); public static readonly PrefabGUID SpellMod_CarrionSwam_StunOnHit = new PrefabGUID(-1837470543); public static readonly PrefabGUID SpellMod_CarrionSwam_VampiricCurse = new PrefabGUID(1940553981); public static readonly PrefabGUID SpellMod_ChainsOfDeath_BoneSpirit = new PrefabGUID(-1214230143); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Dot = new PrefabGUID(599900100); public static readonly PrefabGUID SpellMod_ChainsOfDeath_DurationAndDamage = new PrefabGUID(1558320813); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Explosion = new PrefabGUID(1549057800); public static readonly PrefabGUID SpellMod_ChainsOfDeath_FadingSnare = new PrefabGUID(-1529767682); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Haste = new PrefabGUID(1756722785); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Leech = new PrefabGUID(1235988685); public static readonly PrefabGUID SpellMod_ChainsOfDeath_ReducedDamage = new PrefabGUID(1618961316); public static readonly PrefabGUID SpellMod_ChainsOfDeath_SkullNova = new PrefabGUID(-1853462369); public static readonly PrefabGUID SpellMod_ChainsOfDeath_Slow = new PrefabGUID(-1709420734); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_BonusDamage = new PrefabGUID(-648008702); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_InflictSlowOnProjectile = new PrefabGUID(-68573491); public static readonly PrefabGUID SpellMod_Chaos_Aftershock_KnockbackArea = new PrefabGUID(-960235388); public static readonly PrefabGUID SpellMod_Chaos_Barrier_BonusDamage = new PrefabGUID(-547116142); public static readonly PrefabGUID SpellMod_Chaos_Barrier_ConsumeAttackReduceCooldownXTimes = new PrefabGUID(-1611128617); public static readonly PrefabGUID SpellMod_Chaos_Barrier_ExplodeOnHit = new PrefabGUID(1906516980); public static readonly PrefabGUID SpellMod_Chaos_Barrier_LesserPowerSurge = new PrefabGUID(1600880528); public static readonly PrefabGUID SpellMod_Chaos_Barrier_StunOnHit = new PrefabGUID(-1251505269); public static readonly PrefabGUID SpellMod_Chaos_Void_BonusDamage = new PrefabGUID(281216122); public static readonly PrefabGUID SpellMod_Chaos_Void_BurnArea = new PrefabGUID(-1310320536); public static readonly PrefabGUID SpellMod_Chaos_Void_FragBomb = new PrefabGUID(-2083269917); public static readonly PrefabGUID SpellMod_Chaos_Void_ReduceChargeCD = new PrefabGUID(1886458301); public static readonly PrefabGUID SpellMod_Chaos_Volley_BonusDamage = new PrefabGUID(1104681306); public static readonly PrefabGUID SpellMod_Chaos_Volley_SecondProjectileBonusDamage = new PrefabGUID(-681348970); public static readonly PrefabGUID SpellMod_Claws_SkeweringLeap_Unholy = new PrefabGUID(-1115342146); public static readonly PrefabGUID SpellMod_Claws_VaultSlash_Unholy = new PrefabGUID(-588535952); public static readonly PrefabGUID SpellMod_ColdSnap_BonusAbsorb = new PrefabGUID(1336836422); public static readonly PrefabGUID SpellMod_ColdSnap_BonusDamage = new PrefabGUID(-1757583318); public static readonly PrefabGUID SpellMod_ColdSnap_HasteWhileShielded = new PrefabGUID(986977415); public static readonly PrefabGUID SpellMod_ColdSnap_Immaterial = new PrefabGUID(1616797198); public static readonly PrefabGUID SpellMod_CorpseExplosion_BonusDamage = new PrefabGUID(585605138); public static readonly PrefabGUID SpellMod_CorpseExplosion_DoubleImpact = new PrefabGUID(-968605931); public static readonly PrefabGUID SpellMod_CorpseExplosion_HealMinions = new PrefabGUID(1291379982); public static readonly PrefabGUID SpellMod_CorpseExplosion_KillingBlow = new PrefabGUID(-612004637); public static readonly PrefabGUID SpellMod_CorpseExplosion_SkullNova = new PrefabGUID(47727933); public static readonly PrefabGUID SpellMod_CorpseExplosion_SnareBonus = new PrefabGUID(419000172); public static readonly PrefabGUID SpellMod_CorruptedSkull_BoneSpirit = new PrefabGUID(1562979558); public static readonly PrefabGUID SpellMod_CorruptedSkull_BonusDamage = new PrefabGUID(538792139); public static readonly PrefabGUID SpellMod_CorruptedSkull_DetonateSkeleton = new PrefabGUID(1944307151); public static readonly PrefabGUID SpellMod_CorruptedSkull_LesserProjectiles = new PrefabGUID(-203019589); public static readonly PrefabGUID SpellMod_Crossbow_Primary_CritMark = new PrefabGUID(-1150792867); public static readonly PrefabGUID SpellMod_Crossbow_RainOfBolts_BonusArrows = new PrefabGUID(-281838471); public static readonly PrefabGUID SpellMod_Crossbow_Snapshot_BonusArrows = new PrefabGUID(-1912502761); public static readonly PrefabGUID SpellMod_Crossbow_Snapshot_Fear = new PrefabGUID(350145324); public static readonly PrefabGUID SpellMod_CrystalLance_BonusDamageToFrosty = new PrefabGUID(-771579655); public static readonly PrefabGUID SpellMod_CrystalLance_PierceEnemies = new PrefabGUID(-30104212); public static readonly PrefabGUID SpellMod_Curse_DamageFactor = new PrefabGUID(240097113); public static readonly PrefabGUID SpellMod_Curse_DamageOnHit = new PrefabGUID(401599216); public static readonly PrefabGUID SpellMod_Curse_IncreaseDuration = new PrefabGUID(-1926752281); public static readonly PrefabGUID SpellMod_Curse_ReapplyWeaken = new PrefabGUID(570496464); public static readonly PrefabGUID SpellMod_Curse_SpawnWispOnDeath = new PrefabGUID(1881441820); public static readonly PrefabGUID SpellMod_Cyclone_BonusDamage = new PrefabGUID(-1643437789); public static readonly PrefabGUID SpellMod_Cyclone_BonusDamageStormShield = new PrefabGUID(-1842616277); public static readonly PrefabGUID SpellMod_Cyclone_BonusShield = new PrefabGUID(-703040254); public static readonly PrefabGUID SpellMod_Cyclone_IncreaseLifetime = new PrefabGUID(2062783787); public static readonly PrefabGUID SpellMod_Cyclone_ReducedDamageReduction = new PrefabGUID(1974249816); public static readonly PrefabGUID SpellMod_Cyclone_SpellLeechStormShield = new PrefabGUID(-1730057341); public static readonly PrefabGUID SpellMod_Daggers_CallDaggers_GainPhantasm = new PrefabGUID(-1333522898); public static readonly PrefabGUID SpellMod_Daggers_RainOfDaggers_DamagePhantasm = new PrefabGUID(-215395888); public static readonly PrefabGUID SpellMod_DeathKnight_BonusDamage = new PrefabGUID(406584937); public static readonly PrefabGUID SpellMod_DeathKnight_BonusDamageBelowTreshhold = new PrefabGUID(-46382355); public static readonly PrefabGUID SpellMod_DeathKnight_IncreaseLifetime = new PrefabGUID(771873857); public static readonly PrefabGUID SpellMod_DeathKnight_LifeLeech = new PrefabGUID(1163307889); public static readonly PrefabGUID SpellMod_DeathKnight_MaxHealth = new PrefabGUID(655278112); public static readonly PrefabGUID SpellMod_DeathKnight_SkeletonMageOnDeath = new PrefabGUID(391324937); public static readonly PrefabGUID SpellMod_DeathKnight_SkeletonMageOnLifetimeEnded = new PrefabGUID(-750244242); public static readonly PrefabGUID SpellMod_DeathKnight_SnareEnemiesOnSummon = new PrefabGUID(1830138631); public static readonly PrefabGUID SpellMod_DefaultCurve = new PrefabGUID(2105087445); public static readonly PrefabGUID SpellMod_Discharge_BonusDamage = new PrefabGUID(171817139); public static readonly PrefabGUID SpellMod_Discharge_Immaterial = new PrefabGUID(-2071143392); public static readonly PrefabGUID SpellMod_Discharge_IncreaseStormShieldDuration = new PrefabGUID(-511085637); public static readonly PrefabGUID SpellMod_Discharge_IncreaseStunDuration = new PrefabGUID(98803150); public static readonly PrefabGUID SpellMod_Discharge_RecastDetonate = new PrefabGUID(1158616225); public static readonly PrefabGUID SpellMod_Discharge_SpellLeech = new PrefabGUID(1113225149); public static readonly PrefabGUID SpellMod_FrostBarrier_BonusDamage = new PrefabGUID(-178978862); public static readonly PrefabGUID SpellMod_FrostBarrier_BonusSpellPowerOnAbsorb = new PrefabGUID(-581148490); public static readonly PrefabGUID SpellMod_FrostBarrier_ConsumeAttackReduceCooldownXTimes = new PrefabGUID(631373543); public static readonly PrefabGUID SpellMod_FrostBarrier_KnockbackOnRecast = new PrefabGUID(1944125102); public static readonly PrefabGUID SpellMod_FrostBarrier_ShieldOnFrostyRecast = new PrefabGUID(536126279); public static readonly PrefabGUID SpellMod_FrostBat_AreaDamage = new PrefabGUID(1644464649); public static readonly PrefabGUID SpellMod_FrostBat_BonusDamageToFrosty = new PrefabGUID(440375591); public static readonly PrefabGUID SpellMod_FrostCone_BonusDamage = new PrefabGUID(287381106); public static readonly PrefabGUID SpellMod_FrostCone_BonusSpeed = new PrefabGUID(1362931942); public static readonly PrefabGUID SpellMod_FrostCone_FrostWave = new PrefabGUID(-1578113529); public static readonly PrefabGUID SpellMod_FrostCone_IncreaseFreeze = new PrefabGUID(-1829520054); public static readonly PrefabGUID SpellMod_FrostCone_KnockbackOnEnd = new PrefabGUID(1471056038); public static readonly PrefabGUID SpellMod_FrostCone_Leech = new PrefabGUID(-539833003); public static readonly PrefabGUID SpellMod_FrostCone_Shield = new PrefabGUID(1476790178); public static readonly PrefabGUID SpellMod_GreatSword_GreatCleaver_ChaosDamage = new PrefabGUID(305929028); public static readonly PrefabGUID SpellMod_GreatSword_LeapAttack_Aftershock = new PrefabGUID(2047998866); public static readonly PrefabGUID SpellMod_IceNova_ApplyShield = new PrefabGUID(-1070941840); public static readonly PrefabGUID SpellMod_IceNova_BonusDamageToFrosty = new PrefabGUID(-1916056946); public static readonly PrefabGUID SpellMod_IceNova_IncreaseRadius = new PrefabGUID(-1570661806); public static readonly PrefabGUID SpellMod_IceNova_RecastLesserNova = new PrefabGUID(1934366532); public static readonly PrefabGUID SpellMod_LightningTendrils_BonusDamage = new PrefabGUID(723250184); public static readonly PrefabGUID SpellMod_LightningTendrils_BonusProjectile = new PrefabGUID(1576597957); public static readonly PrefabGUID SpellMod_LightningTendrils_ChainLightning = new PrefabGUID(-1680074607); public static readonly PrefabGUID SpellMod_LightningTendrils_SpeedChanneling = new PrefabGUID(-402953124); public static readonly PrefabGUID SpellMod_LightningTendrils_StunOnHit = new PrefabGUID(1488885094); public static readonly PrefabGUID SpellMod_LightningWall_ApplyShield = new PrefabGUID(1780108774); public static readonly PrefabGUID SpellMod_LightningWall_BonusDamage = new PrefabGUID(-928750139); public static readonly PrefabGUID SpellMod_LightningWall_ConsumeProjectileWeaponCharge = new PrefabGUID(-635781998); public static readonly PrefabGUID SpellMod_LightningWall_FadingSnare = new PrefabGUID(-743834336); public static readonly PrefabGUID SpellMod_LightningWall_IncreaseMovementSpeed = new PrefabGUID(-2109940363); public static readonly PrefabGUID SpellMod_Longbow_GuidedArrow_FirstHit = new PrefabGUID(734427846); public static readonly PrefabGUID SpellMod_Longbow_Multishot_Focus = new PrefabGUID(1352089265); public static readonly PrefabGUID SpellMod_Mace_CrushingBlow_Shatter = new PrefabGUID(-1103044109); public static readonly PrefabGUID SpellMod_Mace_Smack_Freeze = new PrefabGUID(1066839075); public static readonly PrefabGUID SpellMod_MIstTrance_DamageOnAttack = new PrefabGUID(-845453001); public static readonly PrefabGUID SpellMod_MistTrance_FearOnTrigger = new PrefabGUID(1301174222); public static readonly PrefabGUID SpellMod_MistTrance_HasteOnTrigger = new PrefabGUID(-415768376); public static readonly PrefabGUID SpellMod_MistTrance_PhantasmOnTrigger = new PrefabGUID(1891772829); public static readonly PrefabGUID SpellMod_MistTrance_ReduceSecondaryWeaponCD = new PrefabGUID(1552774208); public static readonly PrefabGUID SpellMod_Mosquito_BonusDamage = new PrefabGUID(-529803606); public static readonly PrefabGUID SpellMod_Mosquito_BonusFearDuration = new PrefabGUID(1212582123); public static readonly PrefabGUID SpellMod_Mosquito_BonusHealthAndSpeed = new PrefabGUID(-1928057811); public static readonly PrefabGUID SpellMod_Mosquito_ShieldOnSpawn = new PrefabGUID(-1673859267); public static readonly PrefabGUID SpellMod_Mosquito_WispsOnDestroy = new PrefabGUID(-1087850059); public static readonly PrefabGUID SpellMod_PhantomAegis_ConsumeShieldAndPullAlly = new PrefabGUID(928811526); public static readonly PrefabGUID SpellMod_PhantomAegis_ConsumeWeakenIntoFear = new PrefabGUID(-2088123746); public static readonly PrefabGUID SpellMod_PhantomAegis_ExplodeOnDestroy = new PrefabGUID(-1904117138); public static readonly PrefabGUID SpellMod_PhantomAegis_IncreaseLifetime = new PrefabGUID(804206378); public static readonly PrefabGUID SpellMod_PhantomAegis_IncreaseSpellPower = new PrefabGUID(1484898935); public static readonly PrefabGUID SpellMod_Pistols_ExplosiveShot_DoubleBarrel = new PrefabGUID(1658350517); public static readonly PrefabGUID SpellMod_Pistols_FanTheHammer_Move = new PrefabGUID(1311781547); public static readonly PrefabGUID SpellMod_PowerSurge_AttackSpeed = new PrefabGUID(23473943); public static readonly PrefabGUID SpellMod_PowerSurge_EmpowerPhysical = new PrefabGUID(10430423); public static readonly PrefabGUID SpellMod_PowerSurge_Haste = new PrefabGUID(-1414823595); public static readonly PrefabGUID SpellMod_PowerSurge_IncreaseDurationOnKill = new PrefabGUID(1749175755); public static readonly PrefabGUID SpellMod_PowerSurge_Lifetime = new PrefabGUID(-842072895); public static readonly PrefabGUID SpellMod_PowerSurge_RecastDestonate = new PrefabGUID(2062624895); public static readonly PrefabGUID SpellMod_PowerSurge_Shield = new PrefabGUID(-581430582); public static readonly PrefabGUID SpellMod_RainOfChaos_BonusMeteor = new PrefabGUID(-33694441); public static readonly PrefabGUID SpellMod_RainOfChaos_BurnArea = new PrefabGUID(956784340); public static readonly PrefabGUID SpellMod_RainOfChaos_MegaMeteor = new PrefabGUID(-305171830); public static readonly PrefabGUID SpellMod_Reaper_HowlingReaper_SpawnSkeleton = new PrefabGUID(1523741236); public static readonly PrefabGUID SpellMod_Reaper_HowlingReaper_VeilResetCD = new PrefabGUID(1426874591); public static readonly PrefabGUID SpellMod_Reaper_TendonSwing_Consume = new PrefabGUID(-1160585374); public static readonly PrefabGUID SpellMod_SanguineCoil_AddBounces = new PrefabGUID(459492812); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusDamage = new PrefabGUID(786676751); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusHealing = new PrefabGUID(515468772); public static readonly PrefabGUID SpellMod_SanguineCoil_BonusLifeLeech = new PrefabGUID(-1106879810); public static readonly PrefabGUID SpellMod_SanguineCoil_KillRecharge = new PrefabGUID(-2026740129); public static readonly PrefabGUID SpellMod_SanguineCoil_LeechBonusDamage = new PrefabGUID(2115999081); public static readonly PrefabGUID SpellMod_Shadowbolt_ExplodeOnHit = new PrefabGUID(-1144993512); public static readonly PrefabGUID SpellMod_Shadowbolt_ForkOnHit = new PrefabGUID(1308571570); public static readonly PrefabGUID SpellMod_Shadowbolt_LeechBonusDamage = new PrefabGUID(411514116); public static readonly PrefabGUID SpellMod_Shadowbolt_VampiricCurse = new PrefabGUID(-218122346); public static readonly PrefabGUID SpellMod_Shared_AddCharges = new PrefabGUID(-1721922606); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Long = new PrefabGUID(1915162299); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Medium = new PrefabGUID(-1565427919); public static readonly PrefabGUID SpellMod_Shared_ApplyFadingSnare_Short = new PrefabGUID(1326058627); public static readonly PrefabGUID SpellMod_Shared_Blood_ConsumeLeechSelfHeal_Big = new PrefabGUID(585897634); public static readonly PrefabGUID SpellMod_Shared_Blood_ConsumeLeechSelfHeal_Small = new PrefabGUID(-1967214301); public static readonly PrefabGUID SpellMod_Shared_CastRate = new PrefabGUID(-111114882); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames = new PrefabGUID(2113057383); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteAgonizingFlames_OnAttack = new PrefabGUID(1702103303); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoCombustion = new PrefabGUID(-1714479986); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoCombustion_OnAttack = new PrefabGUID(-1534415419); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoHeated = new PrefabGUID(-2085767639); public static readonly PrefabGUID SpellMod_Shared_Chaos_ConsumeIgniteIntoHeated_OnAttack = new PrefabGUID(1698069117); public static readonly PrefabGUID SpellMod_Shared_Cooldown_Medium = new PrefabGUID(1439297485); public static readonly PrefabGUID SpellMod_Shared_DispellDebuffs = new PrefabGUID(-47350874); public static readonly PrefabGUID SpellMod_Shared_DispellDebuffs_Self = new PrefabGUID(-696735285); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze = new PrefabGUID(1152422729); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_Nova = new PrefabGUID(-36383536); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_OnAttack = new PrefabGUID(-292495274); public static readonly PrefabGUID SpellMod_Shared_Frost_ConsumeChillIntoFreeze_Recast = new PrefabGUID(774570130); public static readonly PrefabGUID SpellMod_Shared_Frost_IncreaseFreezeWhenChill = new PrefabGUID(-311910625); public static readonly PrefabGUID SpellMod_Shared_Frost_ShieldOnFrosty = new PrefabGUID(950989548); public static readonly PrefabGUID SpellMod_Shared_Frost_SplinterNovaOnFrosty = new PrefabGUID(-2047023759); public static readonly PrefabGUID SpellMod_Shared_FrostWeapon = new PrefabGUID(1222918506); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenReduceCooldown = new PrefabGUID(-304492703); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenShield_Counter = new PrefabGUID(-1449937438); public static readonly PrefabGUID SpellMod_Shared_Illusion_ConsumeWeakenSpawnWisp = new PrefabGUID(1531499726); public static readonly PrefabGUID SpellMod_Shared_Illusion_WeakenShield = new PrefabGUID(1610681142); public static readonly PrefabGUID SpellMod_Shared_Illusion_WeakenShield_OnAttack = new PrefabGUID(-450361030); public static readonly PrefabGUID SpellMod_Shared_IncreaseArea_Normal = new PrefabGUID(-2054206667); public static readonly PrefabGUID SpellMod_Shared_IncreaseMoveSpeedDuringChannel_High = new PrefabGUID(291310353); public static readonly PrefabGUID SpellMod_Shared_IncreaseMoveSpeedDuringChannel_Low = new PrefabGUID(1930502023); public static readonly PrefabGUID SpellMod_Shared_KnockbackOnHit_Light = new PrefabGUID(-628722771); public static readonly PrefabGUID SpellMod_Shared_KnockbackOnHit_Medium = new PrefabGUID(-1967899075); public static readonly PrefabGUID SpellMod_Shared_MovementSpeed_Normal = new PrefabGUID(-491408666); public static readonly PrefabGUID SpellMod_Shared_Projectile_IncreaseRange_Medium = new PrefabGUID(-1772665607); public static readonly PrefabGUID SpellMod_Shared_Projectile_IncreaseVelocity_Medium = new PrefabGUID(1098753243); public static readonly PrefabGUID SpellMod_Shared_Projectile_RangeAndVelocity = new PrefabGUID(-2009288107); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoStun = new PrefabGUID(1215957974); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoStun_Explode = new PrefabGUID(292333199); public static readonly PrefabGUID SpellMod_Shared_Storm_ConsumeStaticIntoWeaponCharge = new PrefabGUID(946721895); public static readonly PrefabGUID SpellMod_Shared_Storm_GrantWeaponCharge = new PrefabGUID(-1202845465); public static readonly PrefabGUID SpellMod_Shared_TargetAoE_IncreaseRange_Medium = new PrefabGUID(681802645); public static readonly PrefabGUID SpellMod_Shared_TravelBuff_IncreaseRange_Medium = new PrefabGUID(-1274845133); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyAgony = new PrefabGUID(-1111601927); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyAgony_OnAttack = new PrefabGUID(-1103091347); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyBane = new PrefabGUID(602003155); public static readonly PrefabGUID SpellMod_Shared_Unholy_ApplyBane_OnAttack = new PrefabGUID(-331245931); public static readonly PrefabGUID SpellMod_Shared_Unholy_SkeletonBomb = new PrefabGUID(715404066); public static readonly PrefabGUID SpellMod_Shared_Veil_BonusDamageOnPrimary = new PrefabGUID(255266111); public static readonly PrefabGUID SpellMod_Shared_Veil_BuffAndIllusionDuration = new PrefabGUID(-1430581265); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Blood = new PrefabGUID(-393121490); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Chaos = new PrefabGUID(-803412822); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Frost = new PrefabGUID(-143254053); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Illusion = new PrefabGUID(1924953980); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Storm = new PrefabGUID(-409118621); public static readonly PrefabGUID SpellMod_Shared_Weapon_Elemental_Unholy = new PrefabGUID(2128100437); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_BonusDamage = new PrefabGUID(975988820); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_Main_Speed = new PrefabGUID(770026876); public static readonly PrefabGUID SpellMod_Slashers_Camouflage_Rupture = new PrefabGUID(1550976453); public static readonly PrefabGUID SpellMod_Slashers_ElusiveStrike_BloodFountain = new PrefabGUID(1095611673); public static readonly PrefabGUID SpellMod_Slashers_ElusiveStrike_TripleDash = new PrefabGUID(-1228842551); public static readonly PrefabGUID SpellMod_Soulburn_BonusDamage = new PrefabGUID(-1096014124); public static readonly PrefabGUID SpellMod_Soulburn_BonusLifeDrain = new PrefabGUID(1670819844); public static readonly PrefabGUID SpellMod_Soulburn_ConsumeSkeletonEmpower = new PrefabGUID(-249390913); public static readonly PrefabGUID SpellMod_Soulburn_ConsumeSkeletonHeal = new PrefabGUID(15549217); public static readonly PrefabGUID SpellMod_Soulburn_IncreasedSilenceDuration = new PrefabGUID(219517192); public static readonly PrefabGUID SpellMod_Soulburn_IncreaseTriggerCount = new PrefabGUID(-770033390); public static readonly PrefabGUID SpellMod_Soulburn_ReduceCooldownOnSilence = new PrefabGUID(1871790882); public static readonly PrefabGUID SpellMod_Soulburn_Shield = new PrefabGUID(-700379423); public static readonly PrefabGUID SpellMod_Soulburn_SpawnSkeleton = new PrefabGUID(1195000360); public static readonly PrefabGUID SpellMod_Spear_AThousandSpears_BallLightning = new PrefabGUID(-471217599); public static readonly PrefabGUID SpellMod_Spear_Harpoon_DragSelf = new PrefabGUID(2065538060); public static readonly PrefabGUID SpellMod_SpectralWolf_AddBounces = new PrefabGUID(1499233761); public static readonly PrefabGUID SpellMod_SpectralWolf_DecreaseBounceDamageReduction = new PrefabGUID(-389780147); public static readonly PrefabGUID SpellMod_SpectralWolf_FirstBounceInflictFadingSnare = new PrefabGUID(-1224808007); public static readonly PrefabGUID SpellMod_SpectralWolf_ReturnToOwner = new PrefabGUID(424876885); public static readonly PrefabGUID SpellMod_SpectralWolf_WeakenApplyXPhantasm = new PrefabGUID(-191364711); public static readonly PrefabGUID SpellMod_Storm_PolarityShift_AreaImpactDestination = new PrefabGUID(958439837); public static readonly PrefabGUID SpellMod_Storm_PolarityShift_AreaImpactOrigin = new PrefabGUID(578859494); public static readonly PrefabGUID SpellMod_Sword_Shockwave_ReduceWhirlwindCDOnHit = new PrefabGUID(224337721); public static readonly PrefabGUID SpellMod_Sword_Whirlwind_ResetDurationOnKill = new PrefabGUID(-1020791769); public static readonly PrefabGUID SpellMod_TwinBlades_Javelin_Freeze = new PrefabGUID(1754381439); public static readonly PrefabGUID SpellMod_TwinBlades_SweepingStrike_DamageToFrost = new PrefabGUID(-802983036); public static readonly PrefabGUID SpellMod_VampiricCurse_Amplify = new PrefabGUID(-1334050748); public static readonly PrefabGUID SpellMod_VampiricCurse_BonusLeech = new PrefabGUID(-236968097); public static readonly PrefabGUID SpellMod_VampiricCurse_ExplodeOnHit = new PrefabGUID(-1033753337); public static readonly PrefabGUID SpellMod_VampiricCurse_Slow = new PrefabGUID(1024644257); public static readonly PrefabGUID SpellMod_VeilOfBlood_AttackInflictFadingSnare = new PrefabGUID(626026650); public static readonly PrefabGUID SpellMod_VeilOfBlood_BloodNova = new PrefabGUID(1886596801); public static readonly PrefabGUID SpellMod_VeilOfBlood_BloodNovaArea = new PrefabGUID(1884623864); public static readonly PrefabGUID SpellMod_VeilOfBlood_DashInflictLeech = new PrefabGUID(1855739816); public static readonly PrefabGUID SpellMod_VeilOfBlood_Empower = new PrefabGUID(156877668); public static readonly PrefabGUID SpellMod_VeilOfBlood_SelfHealing = new PrefabGUID(1384658374); public static readonly PrefabGUID SpellMod_VeilOfBones_BonusDamageBelowTreshhold = new PrefabGUID(-319638993); public static readonly PrefabGUID SpellMod_VeilOfBones_DashHealMinions = new PrefabGUID(-394612778); public static readonly PrefabGUID SpellMod_VeilOfBones_DashInflictCondemn = new PrefabGUID(-1776361271); public static readonly PrefabGUID SpellMod_VeilOfBones_SkeletonBomb = new PrefabGUID(1795974165); public static readonly PrefabGUID SpellMod_VeilOfBones_SpawnSkeleton = new PrefabGUID(-2075676460); public static readonly PrefabGUID SpellMod_VeilOfBones_SpawnSkeletonMage = new PrefabGUID(952126692); public static readonly PrefabGUID SpellMod_VeilOfChaos_ApplySnareOnExplode = new PrefabGUID(2000559018); public static readonly PrefabGUID SpellMod_VeilOfChaos_BonusDamageOnExplode = new PrefabGUID(-593156502); public static readonly PrefabGUID SpellMod_VeilOfChaos_BonusIllusion = new PrefabGUID(-812464660); public static readonly PrefabGUID SpellMod_VeilOfFrost_BonusDamage = new PrefabGUID(-18291527); public static readonly PrefabGUID SpellMod_VeilOfFrost_FrostNova = new PrefabGUID(1126070097); public static readonly PrefabGUID SpellMod_VeilOfFrost_IllusionFrostBlast = new PrefabGUID(-1378154439); public static readonly PrefabGUID SpellMod_VeilOfFrost_ShieldBonus = new PrefabGUID(620700670); public static readonly PrefabGUID SpellMod_VeilOfIllusion_AttackInflictFadingSnare = new PrefabGUID(2138408718); public static readonly PrefabGUID SpellMod_VeilOfIllusion_IllusionFireProjectiles = new PrefabGUID(-1087841111); public static readonly PrefabGUID SpellMod_VeilOfIllusion_IllusionProjectileDamage = new PrefabGUID(557219983); public static readonly PrefabGUID SpellMod_VeilOfIllusion_PhantasmOnHit = new PrefabGUID(1016557168); public static readonly PrefabGUID SpellMod_VeilOfIllusion_RecastDetonate = new PrefabGUID(-1743623080); public static readonly PrefabGUID SpellMod_VeilOfStorm_AttackInflictFadingSnare = new PrefabGUID(-387102419); public static readonly PrefabGUID SpellMod_VeilOfStorm_DashInflictStatic = new PrefabGUID(-115293432); public static readonly PrefabGUID SpellMod_VeilOfStorm_RecastIllusionDash = new PrefabGUID(1799076972); public static readonly PrefabGUID SpellMod_VeilOfStorm_SparklingIllusion = new PrefabGUID(1221500964); public static readonly PrefabGUID SpellMod_WardOfTheDamned_BonusDamageOnRecast = new PrefabGUID(-1729725919); public static readonly PrefabGUID SpellMod_WardOfTheDamned_DamageMeleeAttackers = new PrefabGUID(1998410228); public static readonly PrefabGUID SpellMod_WardOfTheDamned_EmpowerSkeletonsOnRecast = new PrefabGUID(761541981); public static readonly PrefabGUID SpellMod_WardOfTheDamned_HealOnAbsorbProjectile = new PrefabGUID(-649562549); public static readonly PrefabGUID SpellMod_WardOfTheDamned_KnockbackOnRecast = new PrefabGUID(909721987); public static readonly PrefabGUID SpellMod_WardOfTheDamned_MightSpawnMageSkeleton = new PrefabGUID(-2133606415); public static readonly PrefabGUID SpellMod_WardOfTheDamned_ShieldSkeletonsOnRecast = new PrefabGUID(-1840862497); public static readonly PrefabGUID SpellMod_Weapon_BloodInfused = new PrefabGUID(-634479113); public static readonly PrefabGUID SpellMod_Weapon_ChaosInfused = new PrefabGUID(-1102157891); public static readonly PrefabGUID SpellMod_Weapon_FrostInfused = new PrefabGUID(-1538516012); public static readonly PrefabGUID SpellMod_Weapon_IllusionInfused = new PrefabGUID(-1957977808); public static readonly PrefabGUID SpellMod_Weapon_StormInfused = new PrefabGUID(-1099263242); public static readonly PrefabGUID SpellMod_Weapon_UndeadInfused = new PrefabGUID(-766734228); public static readonly PrefabGUID SpellMod_Whip_Dash_FlameWhip = new PrefabGUID(-942513246); public static readonly PrefabGUID SpellMod_Whip_Entangle_FlameWhip = new PrefabGUID(-28667500); public static readonly PrefabGUID SpellMod_WraithSpear_BonusDamage = new PrefabGUID(-1653068805); public static readonly PrefabGUID SpellMod_WraithSpear_ReducedDamageReduction = new PrefabGUID(-233951066); public static readonly PrefabGUID SpellMod_WraithSpear_ShieldAlly = new PrefabGUID(-1538705520); public static readonly PrefabGUID SpellPassive_Blood_T01_BloodSpray = new PrefabGUID(-1027845865); public static readonly PrefabGUID SpellPassive_Blood_T02_BloodTypeEfficiency = new PrefabGUID(-441009092); public static readonly PrefabGUID SpellPassive_Blood_T03_VBloodSlayer = new PrefabGUID(896859617); public static readonly PrefabGUID SpellPassive_Blood_T04_Rampage = new PrefabGUID(596456522); public static readonly PrefabGUID SpellPassive_Chaos_T01_ChaosKindling = new PrefabGUID(1088642354); public static readonly PrefabGUID SpellPassive_Chaos_T02_RenewingFlames = new PrefabGUID(2088195977); public static readonly PrefabGUID SpellPassive_Chaos_T03_Overpower = new PrefabGUID(1250779598); public static readonly PrefabGUID SpellPassive_Chaos_T04_RavenousStrikes = new PrefabGUID(-1251152602); public static readonly PrefabGUID SpellPassive_Frost_T01_ColdSoul = new PrefabGUID(1855867703); public static readonly PrefabGUID SpellPassive_Frost_T02_ChillWeave = new PrefabGUID(-492383335); public static readonly PrefabGUID SpellPassive_Frost_T03_Bastion = new PrefabGUID(1023033912); public static readonly PrefabGUID SpellPassive_Frost_T04_DarkEnchantment = new PrefabGUID(1865004925); public static readonly PrefabGUID SpellPassive_Illusion_T01_SpiritualInfusion = new PrefabGUID(-204224143); public static readonly PrefabGUID SpellPassive_Illusion_T02_FlowingSorcery = new PrefabGUID(-1979168975); public static readonly PrefabGUID SpellPassive_Illusion_T03_FeralHaste = new PrefabGUID(-2136476823); public static readonly PrefabGUID SpellPassive_Illusion_T04_WickedPower = new PrefabGUID(21458851); public static readonly PrefabGUID SpellPassive_Storm_T01_LightningFastStrikes = new PrefabGUID(-1042692472); public static readonly PrefabGUID SpellPassive_Storm_T02_EnhancedConductivity = new PrefabGUID(-395364978); public static readonly PrefabGUID SpellPassive_Storm_T03_HungerForPower = new PrefabGUID(594395982); public static readonly PrefabGUID SpellPassive_Storm_T04_TurbulentVelocity = new PrefabGUID(-1148833103); public static readonly PrefabGUID SpellPassive_Unholy_T01_ArcaneAnimator = new PrefabGUID(-539962543); public static readonly PrefabGUID SpellPassive_Unholy_T02_SoulDrinker = new PrefabGUID(-1612317745); public static readonly PrefabGUID SpellPassive_Unholy_T03_LethalStrikes = new PrefabGUID(-2124258403); public static readonly PrefabGUID SpellPassive_Unholy_T04_EmbraceMayhem = new PrefabGUID(422612021); public static readonly PrefabGUID Spider_Queen_VBlood_Emote_OnAggro_Buff = new PrefabGUID(585358044); public static readonly PrefabGUID SpiderTank_Zapper_HeavyProjectileCurve = new PrefabGUID(-539144352); public static readonly PrefabGUID SpiderTankScrap01_Broken = new PrefabGUID(-1491988914); public static readonly PrefabGUID SpiderTankScrap01_Growing_Broken = new PrefabGUID(-235808734); public static readonly PrefabGUID SpiderTankScrap02_Broken = new PrefabGUID(-227993692); public static readonly PrefabGUID SpiderTankScrap02_Growing_Broken = new PrefabGUID(-2020176430); public static readonly PrefabGUID SpiderTankScrap03_Broken = new PrefabGUID(1699935899); public static readonly PrefabGUID SpiderTankScrap03_Growing_Broken = new PrefabGUID(-899607691); public static readonly PrefabGUID Stable01WallpaperBuildMenuGroup = new PrefabGUID(-1549349956); public static readonly PrefabGUID Stable02WallpaperBuildMenuGroup = new PrefabGUID(1868524555); public static readonly PrefabGUID StablesPerk_Athletics = new PrefabGUID(538052140); public static readonly PrefabGUID StablesPerk_Base = new PrefabGUID(1602989945); public static readonly PrefabGUID StablesPerk_DemountProtection = new PrefabGUID(1447490736); public static readonly PrefabGUID StablesPerk_NPCInvisibility = new PrefabGUID(-1055295487); public static readonly PrefabGUID StablesPerk_Severance = new PrefabGUID(587673163); public static readonly PrefabGUID StablesPerk_Thrust = new PrefabGUID(-860970951); public static readonly PrefabGUID StairsBuildMenuCCWGroup = new PrefabGUID(-898414953); public static readonly PrefabGUID StairsBuildMenuCWGroup = new PrefabGUID(1234946809); public static readonly PrefabGUID StairsBuildMenuGroup = new PrefabGUID(1644560853); public static readonly PrefabGUID StairsWideBuildMenuGroup = new PrefabGUID(-356886481); public static readonly PrefabGUID StartGraveyardExitWaypoint = new PrefabGUID(-1705688562); public static readonly PrefabGUID Stash_Alchemy_BuildMenuGroup = new PrefabGUID(1947207681); public static readonly PrefabGUID Stash_Armor_BuildMenuGroup = new PrefabGUID(1674083567); public static readonly PrefabGUID Stash_BloodPotion_BuildMenuGroup = new PrefabGUID(-1235156482); public static readonly PrefabGUID Stash_Coins_BuildMenuGroup = new PrefabGUID(-10142565); public static readonly PrefabGUID Stash_Consumables_BuildMenuGroup = new PrefabGUID(-503398133); public static readonly PrefabGUID Stash_Fish_BuildMenuGroup = new PrefabGUID(-1738594904); public static readonly PrefabGUID Stash_Gems_BuildMenuGroup = new PrefabGUID(-1658383476); public static readonly PrefabGUID Stash_Herbs_BuildMenuGroup = new PrefabGUID(-1927367771); public static readonly PrefabGUID Stash_Jewels_BuildMenuGroup = new PrefabGUID(-1346859888); public static readonly PrefabGUID Stash_Knowledge_BuildMenuGroup = new PrefabGUID(-1234459791); public static readonly PrefabGUID Stash_Minerals_BuildMenuGroup = new PrefabGUID(-1591920392); public static readonly PrefabGUID Stash_ShardPedestal_BuildMenuGroup = new PrefabGUID(1738253630); public static readonly PrefabGUID Stash_SoulShards_BuildMenuGroup = new PrefabGUID(842209218); public static readonly PrefabGUID Stash_Tailoring_BuildMenuGroup = new PrefabGUID(28844335); public static readonly PrefabGUID Stash_Weapons_BuildMenuGroup = new PrefabGUID(673536256); public static readonly PrefabGUID Stash_Woodworking_BuildMenuGroup = new PrefabGUID(-482144407); public static readonly PrefabGUID StashBuildMenuGroup = new PrefabGUID(773961284); public static readonly PrefabGUID StationBonus_Prison_BloodEssence_Power = new PrefabGUID(-1550842326); public static readonly PrefabGUID StationBonus_Prison_MatchingFloor = new PrefabGUID(1792532014); public static readonly PrefabGUID StationBonus_Refinementstation_1_ConfinedRoom = new PrefabGUID(538725667); public static readonly PrefabGUID StationBonus_Refinementstation_2_MatchingFloor = new PrefabGUID(19937529); public static readonly PrefabGUID StationBonus_Refinementstation_3_Servant = new PrefabGUID(390109582); public static readonly PrefabGUID StationBonus_Refinementstation_4_BloodEssence_Power = new PrefabGUID(587452849); public static readonly PrefabGUID StationBonus_Refinementstation_5_BloodEssence_TimeModifier = new PrefabGUID(-766586367); public static readonly PrefabGUID StationBonus_Refinementstation_6_ConfinedRoom_Big = new PrefabGUID(1561598423); public static readonly PrefabGUID StationBonus_Refinementstation_7_ConfinedRoom_SharedInventory = new PrefabGUID(-1322083259); public static readonly PrefabGUID StationBonus_Research_1_ConfinedRoom = new PrefabGUID(-1143076987); public static readonly PrefabGUID StationBonus_Research_2_MatchingFloor = new PrefabGUID(-1273877682); public static readonly PrefabGUID StationBonus_Research_4_BloodEssence_Power = new PrefabGUID(-1528697074); public static readonly PrefabGUID StationBonus_Research_5_BloodEssence_TimeModifier = new PrefabGUID(-518983852); public static readonly PrefabGUID StationBonus_Salvagestation_1_ConfinedRoom = new PrefabGUID(-610002994); public static readonly PrefabGUID StationBonus_Salvagestation_2_MatchingFloor = new PrefabGUID(-1341018638); public static readonly PrefabGUID StationBonus_Salvagestation_4_BloodEssence_Power = new PrefabGUID(596857655); public static readonly PrefabGUID StationBonus_ServantCoffin_1_MatchingFloor = new PrefabGUID(-1542442059); public static readonly PrefabGUID StationBonus_Stash_1_ConfinedRoom_SharedInventory = new PrefabGUID(646815477); public static readonly PrefabGUID StationBonus_Workstation_1_ConfinedRoom = new PrefabGUID(-559914291); public static readonly PrefabGUID StationBonus_Workstation_2_MatchingFloor = new PrefabGUID(2138932807); public static readonly PrefabGUID StationBonus_Workstation_3_Servant = new PrefabGUID(-1663322960); public static readonly PrefabGUID StationBonus_Workstation_4_BloodEssence_Power = new PrefabGUID(-1264959599); public static readonly PrefabGUID StationBonus_Workstation_5_BloodEssence_TimeModifier = new PrefabGUID(-1641834739); public static readonly PrefabGUID StatMod_AttackSpeed = new PrefabGUID(-542568600); public static readonly PrefabGUID StatMod_CriticalStrikePhysical = new PrefabGUID(-184681371); public static readonly PrefabGUID StatMod_CriticalStrikePhysicalPower = new PrefabGUID(-1480767601); public static readonly PrefabGUID StatMod_CriticalStrikeSpellPower = new PrefabGUID(-1157374165); public static readonly PrefabGUID StatMod_CriticalStrikeSpells = new PrefabGUID(193642528); public static readonly PrefabGUID StatMod_DamageReduction = new PrefabGUID(303731846); public static readonly PrefabGUID StatMod_HealthRegen = new PrefabGUID(-1644092685); public static readonly PrefabGUID StatMod_MaxHealth = new PrefabGUID(1915954443); public static readonly PrefabGUID StatMod_MovementSpeed = new PrefabGUID(-285192213); public static readonly PrefabGUID StatMod_PhysicalPower = new PrefabGUID(-1917650844); public static readonly PrefabGUID StatMod_ResourceYield = new PrefabGUID(-1276596814); public static readonly PrefabGUID StatMod_SpellCooldownReduction = new PrefabGUID(-1639076208); public static readonly PrefabGUID StatMod_SpellLeech = new PrefabGUID(-427223401); public static readonly PrefabGUID StatMod_SpellPower = new PrefabGUID(1705753146); public static readonly PrefabGUID StatMod_TravelCooldownReduction = new PrefabGUID(703010343); public static readonly PrefabGUID StatMod_Unique_AttackSpeed_High = new PrefabGUID(-1545133628); public static readonly PrefabGUID StatMod_Unique_AttackSpeed_Mid = new PrefabGUID(1448170922); public static readonly PrefabGUID StatMod_Unique_BloodEfficiency_High = new PrefabGUID(-1700712765); public static readonly PrefabGUID StatMod_Unique_BonusPhysicalPower_Mid = new PrefabGUID(523084427); public static readonly PrefabGUID StatMod_Unique_BonusSpellPower_Mid = new PrefabGUID(1179205309); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysical_Low = new PrefabGUID(-1274939577); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysical_Mid = new PrefabGUID(1032018140); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysicalPower_Low = new PrefabGUID(-2004879548); public static readonly PrefabGUID StatMod_Unique_CriticalStrikePhysicalPower_Mid = new PrefabGUID(539854831); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpell_Low = new PrefabGUID(-269007548); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpell_Mid = new PrefabGUID(-1466424600); public static readonly PrefabGUID StatMod_Unique_CriticalStrikeSpellPower_Mid = new PrefabGUID(1842448780); public static readonly PrefabGUID StatMod_Unique_DamageReduction_Low = new PrefabGUID(-1282352396); public static readonly PrefabGUID StatMod_Unique_DamageToDemons_Mid = new PrefabGUID(369266120); public static readonly PrefabGUID StatMod_Unique_MaxHealth_High = new PrefabGUID(1732724221); public static readonly PrefabGUID StatMod_Unique_MaxHealth_Mid = new PrefabGUID(1410628524); public static readonly PrefabGUID StatMod_Unique_MovementSpeed_Mid = new PrefabGUID(-1088278970); public static readonly PrefabGUID StatMod_Unique_PlayerResist_Mid = new PrefabGUID(-20933838); public static readonly PrefabGUID StatMod_Unique_SpellCooldown_High = new PrefabGUID(-394348256); public static readonly PrefabGUID StatMod_Unique_SpellCooldown_Mid = new PrefabGUID(-1171110486); public static readonly PrefabGUID StatMod_Unique_VampireDamage_High = new PrefabGUID(-1659606994); public static readonly PrefabGUID StatMod_Unique_VampireDamage_Mid = new PrefabGUID(530283515); public static readonly PrefabGUID StatMod_Unique_WeaponCooldown_Mid = new PrefabGUID(29688024); public static readonly PrefabGUID StatMod_Unique_WeaponLeech_Mid = new PrefabGUID(1996994528); public static readonly PrefabGUID StatMod_WeaponCooldownReduction = new PrefabGUID(-1122907647); public static readonly PrefabGUID StatMod_WeaponSkillPower = new PrefabGUID(1683818955); public static readonly PrefabGUID Statue_02_Shattered = new PrefabGUID(-342991758); public static readonly PrefabGUID Statue_07_Shattered = new PrefabGUID(1817524993); public static readonly PrefabGUID Statue_11_Shattered = new PrefabGUID(-540164461); public static readonly PrefabGUID Statue_13_Shattered = new PrefabGUID(-204722750); public static readonly PrefabGUID Statue_22_Shattered = new PrefabGUID(-115542485); public static readonly PrefabGUID StoneCoffinBuildMenuGroup = new PrefabGUID(2144088157); public static readonly PrefabGUID StoneWallpaperBuildMenuGroup = new PrefabGUID(-249919151); public static readonly PrefabGUID Storm_Vampire_Buff_Static = new PrefabGUID(-1576512627); public static readonly PrefabGUID Storm_Vampire_Buff_Static_Stun = new PrefabGUID(-1590232453); public static readonly PrefabGUID Storm_Vampire_Buff_Static_WeaponCharge = new PrefabGUID(665288451); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning = new PrefabGUID(1076663023); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_AreaCheck = new PrefabGUID(-2101801592); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_HitBuff = new PrefabGUID(-543256675); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_01 = new PrefabGUID(-704926422); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_02 = new PrefabGUID(-1963704797); public static readonly PrefabGUID Storm_Vampire_Static_ChainLightning_Target_03 = new PrefabGUID(-837878143); public static readonly PrefabGUID Storm_Windbolt_AirHeightCurve = new PrefabGUID(-1181048596); public static readonly PrefabGUID StormSpellSchoolAsset = new PrefabGUID(-829934972); public static readonly PrefabGUID StrongbladeDLC_PoolsBuildMenuGroup = new PrefabGUID(700649584); public static readonly PrefabGUID StrongbladeDLC_SeatingBuildMenuGroup = new PrefabGUID(-1272030379); public static readonly PrefabGUID StrongbladeDLC_StatuesBuildMenuGroup = new PrefabGUID(1622119866); public static readonly PrefabGUID Styx_AirDrop_X_Curve = new PrefabGUID(-169185670); public static readonly PrefabGUID Styx_AirDrop_Y_Curve = new PrefabGUID(1445792877); public static readonly PrefabGUID SulfurNode01_Broken = new PrefabGUID(-1990720752); public static readonly PrefabGUID SulfurNode01_Broken_Small = new PrefabGUID(-364714325); public static readonly PrefabGUID SulfurNode02_Broken = new PrefabGUID(912452523); public static readonly PrefabGUID SulfurNode02_Broken_Small = new PrefabGUID(-1018886947); public static readonly PrefabGUID SulfurNode03_Broken = new PrefabGUID(-169624846); public static readonly PrefabGUID SulfurNode03_Broken_Small = new PrefabGUID(-896346948); public static readonly PrefabGUID SulfurNodeBig01_Broken = new PrefabGUID(465015265); public static readonly PrefabGUID SulfurNodeMedium01_Broken = new PrefabGUID(-1226826158); public static readonly PrefabGUID SUMMON_Forest_Wolf = new PrefabGUID(-2110724275); public static readonly PrefabGUID SummonCastle_TileModelPlacementRules = new PrefabGUID(-1168096405); public static readonly PrefabGUID SunDamageDebuff = new PrefabGUID(-1315531444); public static readonly PrefabGUID SunFullScreenBuildUpCurve = new PrefabGUID(795834085); public static readonly PrefabGUID SunInitFlash = new PrefabGUID(-245738049); public static readonly PrefabGUID SunRayAlpha = new PrefabGUID(-1286274685); public static readonly PrefabGUID SunRayColor = new PrefabGUID(-1568885694); public static readonly PrefabGUID SunRayColorBlue = new PrefabGUID(-1953241118); public static readonly PrefabGUID SunRayColorGreen = new PrefabGUID(-1310890254); public static readonly PrefabGUID SunRayColorRed = new PrefabGUID(-617668592); public static readonly PrefabGUID SunRayEmber = new PrefabGUID(-809681720); public static readonly PrefabGUID SunRayScale = new PrefabGUID(929522326); public static readonly PrefabGUID SunRayScale_v2 = new PrefabGUID(241792091); public static readonly PrefabGUID SunRaySmoke = new PrefabGUID(1706898129); public static readonly PrefabGUID TailorFloorBuildMenuGroup = new PrefabGUID(28852821); public static readonly PrefabGUID TargetDummyBuildMenuGroup = new PrefabGUID(-1590776918); public static readonly PrefabGUID Tech_Ability_CommandingForm = new PrefabGUID(-1301155150); public static readonly PrefabGUID Tech_Ability_PsychicForm = new PrefabGUID(-647200166); public static readonly PrefabGUID Tech_Armor_Boots_T04_Brute = new PrefabGUID(676266407); public static readonly PrefabGUID Tech_Armor_Boots_T04_Rogue = new PrefabGUID(2120172621); public static readonly PrefabGUID Tech_Armor_Boots_T04_Scholar = new PrefabGUID(1906599762); public static readonly PrefabGUID Tech_Armor_Boots_T04_Warrior = new PrefabGUID(1879028083); public static readonly PrefabGUID Tech_Armor_Boots_T06_Brute = new PrefabGUID(-867568357); public static readonly PrefabGUID Tech_Armor_Boots_T06_Rogue = new PrefabGUID(399247086); public static readonly PrefabGUID Tech_Armor_Boots_T06_Scholar = new PrefabGUID(-2051781325); public static readonly PrefabGUID Tech_Armor_Boots_T06_Warrior = new PrefabGUID(-2023969604); public static readonly PrefabGUID Tech_Armor_Boots_T08_Brute = new PrefabGUID(1941997114); public static readonly PrefabGUID Tech_Armor_Boots_T08_Rogue = new PrefabGUID(-592100304); public static readonly PrefabGUID Tech_Armor_Boots_T08_Scholar = new PrefabGUID(-1816818535); public static readonly PrefabGUID Tech_Armor_Boots_T08_Warrior = new PrefabGUID(1673193738); public static readonly PrefabGUID Tech_Armor_Chest_T04_Brute = new PrefabGUID(-178432582); public static readonly PrefabGUID Tech_Armor_Chest_T04_Rogue = new PrefabGUID(1868487918); public static readonly PrefabGUID Tech_Armor_Chest_T04_Scholar = new PrefabGUID(755372402); public static readonly PrefabGUID Tech_Armor_Chest_T04_Warrior = new PrefabGUID(657926195); public static readonly PrefabGUID Tech_Armor_Chest_T06_Brute = new PrefabGUID(320958383); public static readonly PrefabGUID Tech_Armor_Chest_T06_Rogue = new PrefabGUID(-962794065); public static readonly PrefabGUID Tech_Armor_Chest_T06_Scholar = new PrefabGUID(1291904224); public static readonly PrefabGUID Tech_Armor_Chest_T06_Warrior = new PrefabGUID(-1191678823); public static readonly PrefabGUID Tech_Armor_Chest_T08_Brute = new PrefabGUID(750468260); public static readonly PrefabGUID Tech_Armor_Chest_T08_Rogue = new PrefabGUID(-1170753047); public static readonly PrefabGUID Tech_Armor_Chest_T08_Scholar = new PrefabGUID(1188570352); public static readonly PrefabGUID Tech_Armor_Chest_T08_Warrior = new PrefabGUID(-1435202677); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Brute = new PrefabGUID(935228271); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Rogue = new PrefabGUID(1577296935); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Scholar = new PrefabGUID(-1611749320); public static readonly PrefabGUID Tech_Armor_Gloves_T04_Warrior = new PrefabGUID(2125292818); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Brute = new PrefabGUID(1232232420); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Rogue = new PrefabGUID(-1831064302); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Scholar = new PrefabGUID(-2034432336); public static readonly PrefabGUID Tech_Armor_Gloves_T06_Warrior = new PrefabGUID(-215891793); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Brute = new PrefabGUID(-371547835); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Rogue = new PrefabGUID(693752504); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Scholar = new PrefabGUID(-2038786647); public static readonly PrefabGUID Tech_Armor_Gloves_T08_Warrior = new PrefabGUID(-1696823248); public static readonly PrefabGUID Tech_Armor_Legs_T04_Brute = new PrefabGUID(352798374); public static readonly PrefabGUID Tech_Armor_Legs_T04_Rogue = new PrefabGUID(-366570135); public static readonly PrefabGUID Tech_Armor_Legs_T04_Scholar = new PrefabGUID(-1510681319); public static readonly PrefabGUID Tech_Armor_Legs_T04_Warrior = new PrefabGUID(-466068499); public static readonly PrefabGUID Tech_Armor_Legs_T06_Brute = new PrefabGUID(754248969); public static readonly PrefabGUID Tech_Armor_Legs_T06_Rogue = new PrefabGUID(1811127257); public static readonly PrefabGUID Tech_Armor_Legs_T06_Scholar = new PrefabGUID(-1857837378); public static readonly PrefabGUID Tech_Armor_Legs_T06_Warrior = new PrefabGUID(-1866364260); public static readonly PrefabGUID Tech_Armor_Legs_T08_Brute = new PrefabGUID(-996734096); public static readonly PrefabGUID Tech_Armor_Legs_T08_Rogue = new PrefabGUID(419994007); public static readonly PrefabGUID Tech_Armor_Legs_T08_Scholar = new PrefabGUID(1190578873); public static readonly PrefabGUID Tech_Armor_Legs_T08_Warrior = new PrefabGUID(1738492884); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneAll = new PrefabGUID(-347160774); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneLower = new PrefabGUID(376701344); public static readonly PrefabGUID Tech_Collection_Armor_T01_BoneUpper_Salve = new PrefabGUID(-1657036518); public static readonly PrefabGUID Tech_Collection_ArtisansCorner = new PrefabGUID(2022418671); public static readonly PrefabGUID Tech_Collection_BloodTracking = new PrefabGUID(1396665832); public static readonly PrefabGUID Tech_Collection_Brazier_01 = new PrefabGUID(1789166952); public static readonly PrefabGUID Tech_Collection_Braziers02 = new PrefabGUID(1928348865); public static readonly PrefabGUID Tech_Collection_Braziers03 = new PrefabGUID(-1841292034); public static readonly PrefabGUID Tech_Collection_BustStatues_Vampire = new PrefabGUID(-1045980026); public static readonly PrefabGUID Tech_Collection_Candles_T02 = new PrefabGUID(1982396745); public static readonly PrefabGUID Tech_Collection_CandleStands_T01 = new PrefabGUID(-1032220214); public static readonly PrefabGUID Tech_Collection_CandleStands_T02 = new PrefabGUID(1186146964); public static readonly PrefabGUID Tech_Collection_Carpet_Ostenstatious = new PrefabGUID(377882346); public static readonly PrefabGUID Tech_Collection_Carpet_Stately = new PrefabGUID(-1363487077); public static readonly PrefabGUID Tech_Collection_Carpet_T01 = new PrefabGUID(971588976); public static readonly PrefabGUID Tech_Collection_Carpet_T02 = new PrefabGUID(-59044434); public static readonly PrefabGUID Tech_Collection_Carpet_T03 = new PrefabGUID(-166104992); public static readonly PrefabGUID Tech_Collection_Castle_Paintings = new PrefabGUID(698575581); public static readonly PrefabGUID Tech_Collection_Castle_Windows_T01 = new PrefabGUID(-1270150309); public static readonly PrefabGUID Tech_Collection_Clocks = new PrefabGUID(-1847627135); public static readonly PrefabGUID Tech_Collection_CoatOfArms = new PrefabGUID(-1637580865); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Boots = new PrefabGUID(-1000381969); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Chest = new PrefabGUID(-784761022); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Gloves = new PrefabGUID(1518908715); public static readonly PrefabGUID Tech_Collection_Dracula_Armor_Legs = new PrefabGUID(-997181076); public static readonly PrefabGUID Tech_Collection_Fence_Rural = new PrefabGUID(1194397556); public static readonly PrefabGUID Tech_Collection_Fence_Verdant = new PrefabGUID(-4950312); public static readonly PrefabGUID Tech_Collection_FenceFountain_Noble_T02 = new PrefabGUID(-1776617088); public static readonly PrefabGUID Tech_Collection_Fireplaces = new PrefabGUID(-820554605); public static readonly PrefabGUID Tech_Collection_FlyingCandles_T03 = new PrefabGUID(1863270378); public static readonly PrefabGUID Tech_Collection_Fountain_T03 = new PrefabGUID(-1296064423); public static readonly PrefabGUID Tech_Collection_Framework_CastleHeart = new PrefabGUID(-1377692981); public static readonly PrefabGUID Tech_Collection_Framework_Gargoyles_and_DLC = new PrefabGUID(-2118176472); public static readonly PrefabGUID Tech_Collection_Framework_T01_Wood_Foundation = new PrefabGUID(-219528846); public static readonly PrefabGUID Tech_Collection_Framework_T01_Wood_Structures = new PrefabGUID(-1010843571); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone = new PrefabGUID(1908774048); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Dracula = new PrefabGUID(-447888984); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Gloomrot = new PrefabGUID(-1485413430); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_ProjectK = new PrefabGUID(763319653); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_DLC_Strongblade = new PrefabGUID(-2146477131); public static readonly PrefabGUID Tech_Collection_Framework_T02_Stone_Halloween2022 = new PrefabGUID(-729522822); public static readonly PrefabGUID Tech_Collection_FrayedDecor = new PrefabGUID(524373519); public static readonly PrefabGUID Tech_Collection_Furniture_Chairs_T02 = new PrefabGUID(-1393827852); public static readonly PrefabGUID Tech_Collection_Furniture_Desk_Chairs_T02 = new PrefabGUID(-398123938); public static readonly PrefabGUID Tech_Collection_Furniture_Desks_T02 = new PrefabGUID(-1949258784); public static readonly PrefabGUID Tech_Collection_Furniture_DressingTables_T03 = new PrefabGUID(-1708158238); public static readonly PrefabGUID Tech_Collection_Furniture_Simple_T01 = new PrefabGUID(1549360318); public static readonly PrefabGUID Tech_Collection_Furniture_Sofas_T03 = new PrefabGUID(1333706297); public static readonly PrefabGUID Tech_Collection_Furniture_Tables_T02 = new PrefabGUID(1970685025); public static readonly PrefabGUID Tech_Collection_Garden_Furniture_Lanterns_T02 = new PrefabGUID(-547241268); public static readonly PrefabGUID Tech_Collection_Garden_Hedges_T02 = new PrefabGUID(1158190765); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T01 = new PrefabGUID(-3886426); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T02 = new PrefabGUID(1643488994); public static readonly PrefabGUID Tech_Collection_Garden_PlantersDecor_T03 = new PrefabGUID(303243522); public static readonly PrefabGUID Tech_Collection_HangingLanterns_T02 = new PrefabGUID(-986883360); public static readonly PrefabGUID Tech_Collection_Light_GardenLampPosts_T03 = new PrefabGUID(-732367543); public static readonly PrefabGUID Tech_Collection_Mirrors = new PrefabGUID(437493175); public static readonly PrefabGUID Tech_Collection_Mirrors_Halloween2022 = new PrefabGUID(153177445); public static readonly PrefabGUID Tech_Collection_Ornaments_Banners_T02 = new PrefabGUID(2134771043); public static readonly PrefabGUID Tech_Collection_Ornaments_Stone_T01 = new PrefabGUID(498212120); public static readonly PrefabGUID Tech_Collection_Outdoor_Floors = new PrefabGUID(1426681031); public static readonly PrefabGUID Tech_Collection_Pavement_Cobblestone = new PrefabGUID(1029462093); public static readonly PrefabGUID Tech_Collection_Pavement_Dirt = new PrefabGUID(2080238877); public static readonly PrefabGUID Tech_Collection_Salve = new PrefabGUID(-1279942095); public static readonly PrefabGUID Tech_Collection_Stables_Furnishing = new PrefabGUID(2128476081); public static readonly PrefabGUID Tech_Collection_Statues_Vampire = new PrefabGUID(192335890); public static readonly PrefabGUID Tech_Collection_Structures_T01 = new PrefabGUID(-998624122); public static readonly PrefabGUID Tech_Collection_Vases01 = new PrefabGUID(1449355366); public static readonly PrefabGUID Tech_Collection_VBlood_ArenaDecorations = new PrefabGUID(959981888); public static readonly PrefabGUID Tech_Collection_VBlood_CrystalLamp = new PrefabGUID(1120119195); public static readonly PrefabGUID Tech_Collection_VBlood_JewelsT04 = new PrefabGUID(514472877); public static readonly PrefabGUID Tech_Collection_VBlood_T02_AlphaWolf = new PrefabGUID(-1031733757); public static readonly PrefabGUID Tech_Collection_VBlood_T02_Keely_Armor = new PrefabGUID(537293692); public static readonly PrefabGUID Tech_Collection_VBlood_T02_KeelyFrostArrow = new PrefabGUID(792292662); public static readonly PrefabGUID Tech_Collection_VBlood_T02_KeelyFrostArrow_Canteen = new PrefabGUID(1500994622); public static readonly PrefabGUID Tech_Collection_VBlood_T02_LidiaChaosArrow = new PrefabGUID(873587326); public static readonly PrefabGUID Tech_Collection_VBlood_T02_LidiaChaosArrow_Longbow = new PrefabGUID(-272307342); public static readonly PrefabGUID Tech_Collection_VBlood_T02_RufusForeman = new PrefabGUID(-1375294270); public static readonly PrefabGUID Tech_Collection_VBlood_T02_RufusForeman_Crossbow = new PrefabGUID(1080245850); public static readonly PrefabGUID Tech_Collection_VBlood_T02_StoneBreaker = new PrefabGUID(-1230635663); public static readonly PrefabGUID Tech_Collection_VBlood_T02_StoneBreaker_CopperWeapons = new PrefabGUID(-681604451); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Fisherman = new PrefabGUID(-1955769660); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine = new PrefabGUID(503108272); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine_MagicSource = new PrefabGUID(-934771037); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Goreswine_Units = new PrefabGUID(1226331752); public static readonly PrefabGUID Tech_Collection_VBlood_T03_GoreswineFence = new PrefabGUID(-1852229711); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson = new PrefabGUID(-819263071); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson_Floors = new PrefabGUID(613260763); public static readonly PrefabGUID Tech_Collection_VBlood_T03_Grayson_TargetDummies = new PrefabGUID(-1484059874); public static readonly PrefabGUID Tech_Collection_VBlood_T03_PutridRat = new PrefabGUID(-482440851); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Ball_Cosmetic = new PrefabGUID(-1140095741); public static readonly PrefabGUID Tech_Collection_VBlood_T04_CliveTheFirestarter = new PrefabGUID(1165734787); public static readonly PrefabGUID Tech_Collection_VBlood_T04_FrostGuard = new PrefabGUID(627388312); public static readonly PrefabGUID Tech_Collection_VBlood_T04_FrostGuard_PrisonFramework = new PrefabGUID(1286356808); public static readonly PrefabGUID Tech_Collection_VBlood_T04_NicholausTheFallen = new PrefabGUID(656825307); public static readonly PrefabGUID Tech_Collection_VBlood_T04_NicholausTheFallen_MagicSource = new PrefabGUID(189289255); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Poloma = new PrefabGUID(-1138769053); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaGardenFloors = new PrefabGUID(196684992); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaPlantersExterior = new PrefabGUID(35536792); public static readonly PrefabGUID Tech_Collection_VBlood_T04_PolomaPlantersInterior = new PrefabGUID(6233001); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey = new PrefabGUID(798280158); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_CottonArmor = new PrefabGUID(981172472); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_Decoration = new PrefabGUID(-1204804925); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Quincey_IronWeapons = new PrefabGUID(1452185822); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Tailor = new PrefabGUID(1748243393); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Tailor_Curtains = new PrefabGUID(-1291119657); public static readonly PrefabGUID Tech_Collection_VBlood_T04_VampireHunter = new PrefabGUID(1812666586); public static readonly PrefabGUID Tech_Collection_VBlood_T04_VampireHunter_GreatSword = new PrefabGUID(2076894288); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Wendigo = new PrefabGUID(43505638); public static readonly PrefabGUID Tech_Collection_VBlood_T04_Wendigo_Claws = new PrefabGUID(803940486); public static readonly PrefabGUID Tech_Collection_VBlood_T05_ArenaChampion = new PrefabGUID(-2144827499); public static readonly PrefabGUID Tech_Collection_VBlood_T05_ArenaChampion_TwinBlades = new PrefabGUID(1469248266); public static readonly PrefabGUID Tech_Collection_VBlood_T05_BishopOfShadow = new PrefabGUID(1795449585); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Fabian = new PrefabGUID(-1659396939); public static readonly PrefabGUID Tech_Collection_VBlood_T05_FerociousBear = new PrefabGUID(1481816999); public static readonly PrefabGUID Tech_Collection_VBlood_T05_FerociousBear_Rugs = new PrefabGUID(-979296135); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GlassBlower = new PrefabGUID(836932829); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Golem = new PrefabGUID(292267578); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GolemGems = new PrefabGUID(-1074691879); public static readonly PrefabGUID Tech_Collection_VBlood_T05_GolemObsidian = new PrefabGUID(-318857592); public static readonly PrefabGUID Tech_Collection_VBlood_T05_HolyNun = new PrefabGUID(1509833074); public static readonly PrefabGUID Tech_Collection_VBlood_T05_IceRanger = new PrefabGUID(-1286478056); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Infiltrator = new PrefabGUID(1499385606); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Infiltrator_Daggers = new PrefabGUID(1521034384); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Meredith = new PrefabGUID(-124171135); public static readonly PrefabGUID Tech_Collection_VBlood_T05_Scribe = new PrefabGUID(1096972300); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader = new PrefabGUID(684401761); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader_Bells = new PrefabGUID(-1062774694); public static readonly PrefabGUID Tech_Collection_VBlood_T05_UndeadLeader_Reaper = new PrefabGUID(-1631949089); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Armor_Silk = new PrefabGUID(574648849); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Castleman = new PrefabGUID(963388509); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Castleman_SanguineWhip = new PrefabGUID(499979034); public static readonly PrefabGUID Tech_Collection_VBlood_T06_CursedWanderer = new PrefabGUID(-608704270); public static readonly PrefabGUID Tech_Collection_VBlood_T06_HeadlessHorseman = new PrefabGUID(1993827563); public static readonly PrefabGUID Tech_Collection_VBlood_T06_HighLord = new PrefabGUID(2003830913); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Iva = new PrefabGUID(-1168862239); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Jade = new PrefabGUID(-1809787416); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Jade_Pistols = new PrefabGUID(-1329550886); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander = new PrefabGUID(-1747434949); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_GreatSword = new PrefabGUID(1430937326); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_Weapons = new PrefabGUID(252901819); public static readonly PrefabGUID Tech_Collection_VBlood_T06_MilitiaCommander_WideGate = new PrefabGUID(2053355293); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Purifier = new PrefabGUID(-794945828); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Purifier_Gruel = new PrefabGUID(-513542593); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel = new PrefabGUID(177893377); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_Armor = new PrefabGUID(1383473060); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_Decoration = new PrefabGUID(961368319); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Raziel_MagicSource = new PrefabGUID(1008496220); public static readonly PrefabGUID Tech_Collection_VBlood_T06_SpiderQueen = new PrefabGUID(693361325); public static readonly PrefabGUID Tech_Collection_VBlood_T06_ToadKing = new PrefabGUID(1846992402); public static readonly PrefabGUID Tech_Collection_VBlood_T06_ToadKing_Coins = new PrefabGUID(-837551957); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Voltage = new PrefabGUID(228678537); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Voltage_Teleporters = new PrefabGUID(902743573); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Werewolf = new PrefabGUID(-330347291); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Whip = new PrefabGUID(142799020); public static readonly PrefabGUID Tech_Collection_VBlood_T06_Yeti = new PrefabGUID(-1435750586); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Archmage = new PrefabGUID(26064539); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Archmage_JewelsT03 = new PrefabGUID(-942401074); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CardinalPriest = new PrefabGUID(1270259509); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Carver = new PrefabGUID(1092543000); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Carver_Coating = new PrefabGUID(-1318816407); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CursedSmith = new PrefabGUID(-1633289177); public static readonly PrefabGUID Tech_Collection_VBlood_T07_CursedSmith_MagicSource = new PrefabGUID(-778842690); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Gerard = new PrefabGUID(701618642); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Harpy = new PrefabGUID(56158045); public static readonly PrefabGUID Tech_Collection_VBlood_T07_HarpyGems = new PrefabGUID(-477566763); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Livith = new PrefabGUID(1851932061); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Livith_Slashers = new PrefabGUID(1262310143); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Lucie = new PrefabGUID(-1642797098); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Lucie_Elixirs = new PrefabGUID(-367655643); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Overseer = new PrefabGUID(-1652178969); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Professor = new PrefabGUID(-1199699442); public static readonly PrefabGUID Tech_Collection_VBlood_T07_RailgunSergeant = new PrefabGUID(-1166562965); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier = new PrefabGUID(2086705669); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier_Bloodwine = new PrefabGUID(-797717364); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Sommelier_MagicSource = new PrefabGUID(134700304); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Valyr = new PrefabGUID(-1224541374); public static readonly PrefabGUID Tech_Collection_VBlood_T07_Witch = new PrefabGUID(739063686); public static readonly PrefabGUID Tech_Collection_VBlood_T07_ZealousCultist = new PrefabGUID(-242619336); public static readonly PrefabGUID Tech_Collection_VBlood_T08_BatVampire = new PrefabGUID(644170529); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Behemoth = new PrefabGUID(-2059047777); public static readonly PrefabGUID Tech_Collection_VBlood_T08_BloodKnight = new PrefabGUID(90328407); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Dracula = new PrefabGUID(956657660); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Manticore = new PrefabGUID(28013331); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Monster = new PrefabGUID(-1579828449); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Morgana = new PrefabGUID(-1902462638); public static readonly PrefabGUID Tech_Collection_VBlood_T08_Paladin = new PrefabGUID(-1627795309); public static readonly PrefabGUID Tech_Collection_WallHangingMirrors_T02 = new PrefabGUID(-505308287); public static readonly PrefabGUID Tech_Collection_WallHangingShelves_T02 = new PrefabGUID(1738542265); public static readonly PrefabGUID Tech_Collection_Wallpapers_Bricks01 = new PrefabGUID(-1471943197); public static readonly PrefabGUID Tech_Collection_Wallpapers_Classical01 = new PrefabGUID(1405536938); public static readonly PrefabGUID Tech_Collection_Wallpapers_Cordial01 = new PrefabGUID(-1047045523); public static readonly PrefabGUID Tech_Collection_Wallpapers_Imperious01 = new PrefabGUID(302835542); public static readonly PrefabGUID Tech_Collection_Wallpapers_Prison01 = new PrefabGUID(1345992385); public static readonly PrefabGUID Tech_Collection_Wallpapers_Stone01 = new PrefabGUID(2087478902); public static readonly PrefabGUID Tech_Collection_Wallpapers_WoodPanel01 = new PrefabGUID(649753246); public static readonly PrefabGUID Tech_Collection_Waypoint = new PrefabGUID(-1380817858); public static readonly PrefabGUID Tech_Collection_Workshop_Decoration = new PrefabGUID(-1212695091); public static readonly PrefabGUID Tech_Consumable_FireResistance_Canteen_T01 = new PrefabGUID(844019492); public static readonly PrefabGUID Tech_Consumable_GarlicResistance_GlassBottle_T02 = new PrefabGUID(1329925559); public static readonly PrefabGUID Tech_Consumable_PhysicalBrew_Canteen_T01 = new PrefabGUID(-537813334); public static readonly PrefabGUID Tech_Consumable_PhysicalBrew_Potion_T03 = new PrefabGUID(-11827994); public static readonly PrefabGUID Tech_Consumable_RoseHealing_Canteen_T01 = new PrefabGUID(70753269); public static readonly PrefabGUID Tech_Consumable_SilverBrew_Canteen_T01 = new PrefabGUID(-845792723); public static readonly PrefabGUID Tech_Consumable_SpellBrew_Canteen_T01 = new PrefabGUID(1934754319); public static readonly PrefabGUID Tech_Consumable_SpellBrew_Potion_T03 = new PrefabGUID(-446090633); public static readonly PrefabGUID Tech_Consumable_SunResistance_Canteen_T01 = new PrefabGUID(-680166074); public static readonly PrefabGUID Tech_Consumable_WranglersTea_GlassBottle_T01 = new PrefabGUID(-1805160530); public static readonly PrefabGUID Tech_Curtains_T03_Royal = new PrefabGUID(638346506); public static readonly PrefabGUID Tech_Floor_AlchemyLab = new PrefabGUID(-55882446); public static readonly PrefabGUID Tech_Floor_Crypt = new PrefabGUID(308890669); public static readonly PrefabGUID Tech_Floor_Forge = new PrefabGUID(-508159781); public static readonly PrefabGUID Tech_Floor_Jewelcrafting = new PrefabGUID(414215710); public static readonly PrefabGUID Tech_Floor_Library = new PrefabGUID(-1851035383); public static readonly PrefabGUID Tech_Floor_Prison = new PrefabGUID(-876687572); public static readonly PrefabGUID Tech_Floor_Tailor = new PrefabGUID(-49029138); public static readonly PrefabGUID Tech_Floor_Treasury = new PrefabGUID(833988507); public static readonly PrefabGUID Tech_LiquidStatiom_Water_Well01 = new PrefabGUID(-554785122); public static readonly PrefabGUID Tech_MagicSource_General_T01_BoneRing = new PrefabGUID(-1261543603); public static readonly PrefabGUID Tech_MagicSource_General_T04_Duskwatcher = new PrefabGUID(-939673215); public static readonly PrefabGUID Tech_MagicSource_General_T04_EmberChain = new PrefabGUID(688580986); public static readonly PrefabGUID Tech_MagicSource_General_T04_FrozenEye = new PrefabGUID(-1183635267); public static readonly PrefabGUID Tech_MagicSource_General_T04_KnightRing = new PrefabGUID(596593772); public static readonly PrefabGUID Tech_MagicSource_General_T04_MistSignet = new PrefabGUID(-987554233); public static readonly PrefabGUID Tech_MagicSource_General_T04_SorcererRing = new PrefabGUID(-1597622418); public static readonly PrefabGUID Tech_MagicSource_General_T06_AmethystPendant = new PrefabGUID(2120978146); public static readonly PrefabGUID Tech_MagicSource_General_T06_EmeraldNecklace = new PrefabGUID(-2004423580); public static readonly PrefabGUID Tech_MagicSource_General_T06_MistStoneNecklace = new PrefabGUID(-678626936); public static readonly PrefabGUID Tech_MagicSource_General_T06_RubyPendant = new PrefabGUID(75174829); public static readonly PrefabGUID Tech_MagicSource_General_T06_SapphirePendant = new PrefabGUID(2105959904); public static readonly PrefabGUID Tech_MagicSource_General_T06_TopazAmulet = new PrefabGUID(1266173480); public static readonly PrefabGUID Tech_MagicSource_General_T08_Beast = new PrefabGUID(2057306510); public static readonly PrefabGUID Tech_MagicSource_General_T08_CrimsonSky = new PrefabGUID(-1976191252); public static readonly PrefabGUID Tech_MagicSource_General_T08_Delusion = new PrefabGUID(1827501900); public static readonly PrefabGUID Tech_MagicSource_General_T08_FrozenCrypt = new PrefabGUID(-1618357223); public static readonly PrefabGUID Tech_MagicSource_General_T08_Madness = new PrefabGUID(438329698); public static readonly PrefabGUID Tech_MagicSource_General_T08_WickedProphet = new PrefabGUID(1018971284); public static readonly PrefabGUID Tech_SpellPassive_Blood_T01_BloodSpray = new PrefabGUID(-1435275335); public static readonly PrefabGUID Tech_SpellPassive_Blood_T02_BloodTypeEfficiency = new PrefabGUID(-1672153699); public static readonly PrefabGUID Tech_SpellPassive_Blood_T03_VBloodSlayer = new PrefabGUID(-798456253); public static readonly PrefabGUID Tech_SpellPassive_Blood_T04_Rampage = new PrefabGUID(1425732083); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T01_ChaosKindling = new PrefabGUID(1843485926); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T02_RenewingFlames = new PrefabGUID(-1267731653); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T03_Overpower = new PrefabGUID(2009766737); public static readonly PrefabGUID Tech_SpellPassive_Chaos_T04_RavenousStrikes = new PrefabGUID(1027528474); public static readonly PrefabGUID Tech_SpellPassive_Frost_T01_ColdSoul = new PrefabGUID(-1243503477); public static readonly PrefabGUID Tech_SpellPassive_Frost_T02_ChillWeave = new PrefabGUID(-634698501); public static readonly PrefabGUID Tech_SpellPassive_Frost_T03_Bastion = new PrefabGUID(167793585); public static readonly PrefabGUID Tech_SpellPassive_Frost_T04_DarkEnchantment = new PrefabGUID(-476299746); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T01_SpiritualInfusion = new PrefabGUID(443034615); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T02_FlowingSorcery = new PrefabGUID(1166977128); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T03_FeralHaste = new PrefabGUID(87181825); public static readonly PrefabGUID Tech_SpellPassive_Illusion_T04_WickedPower = new PrefabGUID(839015128); public static readonly PrefabGUID Tech_SpellPassive_Storm_T01_LightningFastStrikes = new PrefabGUID(216926005); public static readonly PrefabGUID Tech_SpellPassive_Storm_T02_EnhancedConductivity = new PrefabGUID(-421268939); public static readonly PrefabGUID Tech_SpellPassive_Storm_T03_HungerForPower = new PrefabGUID(416186705); public static readonly PrefabGUID Tech_SpellPassive_Storm_T04_TurbulentVelocity = new PrefabGUID(-6320984); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T01_ArcaneAnimator = new PrefabGUID(-759918389); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T02_SoulDrinker = new PrefabGUID(1841694629); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T03_LethalStrikes = new PrefabGUID(1930313893); public static readonly PrefabGUID Tech_SpellPassive_Unholy_T04_EmbraceMayhem = new PrefabGUID(550246163); public static readonly PrefabGUID Tech_Storage_Alchemy_T02 = new PrefabGUID(1517382260); public static readonly PrefabGUID Tech_Storage_Alchemy_T03 = new PrefabGUID(1625843968); public static readonly PrefabGUID Tech_Storage_Armor_T02 = new PrefabGUID(1081189242); public static readonly PrefabGUID Tech_Storage_Blood_T02 = new PrefabGUID(977509050); public static readonly PrefabGUID Tech_Storage_Blood_T03 = new PrefabGUID(1047288877); public static readonly PrefabGUID Tech_Storage_Coins_T02 = new PrefabGUID(1415500586); public static readonly PrefabGUID Tech_Storage_Consumable_T02 = new PrefabGUID(-799314882); public static readonly PrefabGUID Tech_Storage_Consumable_T03 = new PrefabGUID(-895778945); public static readonly PrefabGUID Tech_Storage_Fish_T02 = new PrefabGUID(1464078715); public static readonly PrefabGUID Tech_Storage_Gems_T01 = new PrefabGUID(283418827); public static readonly PrefabGUID Tech_Storage_Gems_T02 = new PrefabGUID(1546021583); public static readonly PrefabGUID Tech_Storage_Herbs_T01 = new PrefabGUID(1919678927); public static readonly PrefabGUID Tech_Storage_Herbs_T02 = new PrefabGUID(-1430391301); public static readonly PrefabGUID Tech_Storage_Jewels_T02 = new PrefabGUID(1839251968); public static readonly PrefabGUID Tech_Storage_Knowledge_T02 = new PrefabGUID(-1233545962); public static readonly PrefabGUID Tech_Storage_Knowledge_T03 = new PrefabGUID(-1309377338); public static readonly PrefabGUID Tech_Storage_Minerals_T01 = new PrefabGUID(503660474); public static readonly PrefabGUID Tech_Storage_Minerals_T02 = new PrefabGUID(659306848); public static readonly PrefabGUID Tech_Storage_Pack_Equipment_T02 = new PrefabGUID(-1605857820); public static readonly PrefabGUID Tech_Storage_Pack_T01_A = new PrefabGUID(134968992); public static readonly PrefabGUID Tech_Storage_Pack_T01_B = new PrefabGUID(-1700135018); public static readonly PrefabGUID Tech_Storage_Pack_T02 = new PrefabGUID(-612322185); public static readonly PrefabGUID Tech_Storage_T01 = new PrefabGUID(-1065914013); public static readonly PrefabGUID Tech_Storage_T02 = new PrefabGUID(2081297006); public static readonly PrefabGUID Tech_Storage_T03 = new PrefabGUID(-527623056); public static readonly PrefabGUID Tech_Storage_Tailoring_T02 = new PrefabGUID(-1208628879); public static readonly PrefabGUID Tech_Storage_Tailoring_T03 = new PrefabGUID(1648033500); public static readonly PrefabGUID Tech_Storage_Weapons_T02 = new PrefabGUID(-917955046); public static readonly PrefabGUID Tech_Storage_Woodworking_T01 = new PrefabGUID(-1972974567); public static readonly PrefabGUID Tech_Storage_Woodworking_T02 = new PrefabGUID(1090765974); public static readonly PrefabGUID Tech_Weapon_Axe_T04 = new PrefabGUID(-632708133); public static readonly PrefabGUID Tech_Weapon_Axe_T06 = new PrefabGUID(-2012042353); public static readonly PrefabGUID Tech_Weapon_Axe_T08 = new PrefabGUID(1895745785); public static readonly PrefabGUID Tech_Weapon_Claws_T06 = new PrefabGUID(1738256866); public static readonly PrefabGUID Tech_Weapon_Claws_T08 = new PrefabGUID(574338808); public static readonly PrefabGUID Tech_Weapon_Crossbow_T04 = new PrefabGUID(-997169234); public static readonly PrefabGUID Tech_Weapon_Crossbow_T06 = new PrefabGUID(1000023879); public static readonly PrefabGUID Tech_Weapon_Crossbow_T08 = new PrefabGUID(-1333600826); public static readonly PrefabGUID Tech_Weapon_Daggers_T06 = new PrefabGUID(-1688466299); public static readonly PrefabGUID Tech_Weapon_Daggers_T08 = new PrefabGUID(867896907); public static readonly PrefabGUID Tech_Weapon_GreatSword_T06 = new PrefabGUID(175562220); public static readonly PrefabGUID Tech_Weapon_GreatSword_T08 = new PrefabGUID(-976123885); public static readonly PrefabGUID Tech_Weapon_Longbow_T04 = new PrefabGUID(-212104516); public static readonly PrefabGUID Tech_Weapon_Longbow_T06 = new PrefabGUID(-1988689265); public static readonly PrefabGUID Tech_Weapon_Longbow_T08 = new PrefabGUID(-396858635); public static readonly PrefabGUID Tech_Weapon_Mace_T04 = new PrefabGUID(507915220); public static readonly PrefabGUID Tech_Weapon_Mace_T06 = new PrefabGUID(-437562995); public static readonly PrefabGUID Tech_Weapon_Mace_T08 = new PrefabGUID(-412324833); public static readonly PrefabGUID Tech_Weapon_Pistols_T06 = new PrefabGUID(-1341416577); public static readonly PrefabGUID Tech_Weapon_Pistols_T08 = new PrefabGUID(-1917260012); public static readonly PrefabGUID Tech_Weapon_Reaper_T04 = new PrefabGUID(-1073336085); public static readonly PrefabGUID Tech_Weapon_Reaper_T06 = new PrefabGUID(1184108243); public static readonly PrefabGUID Tech_Weapon_Reaper_T08 = new PrefabGUID(-409067814); public static readonly PrefabGUID Tech_Weapon_Slashers_T04 = new PrefabGUID(-9976124); public static readonly PrefabGUID Tech_Weapon_Slashers_T06 = new PrefabGUID(-2121238754); public static readonly PrefabGUID Tech_Weapon_Slashers_T08 = new PrefabGUID(575105000); public static readonly PrefabGUID Tech_Weapon_Spear_T04 = new PrefabGUID(-54738837); public static readonly PrefabGUID Tech_Weapon_Spear_T06 = new PrefabGUID(-1396617298); public static readonly PrefabGUID Tech_Weapon_Spear_T08 = new PrefabGUID(-759663833); public static readonly PrefabGUID Tech_Weapon_Sword_T04 = new PrefabGUID(1950052883); public static readonly PrefabGUID Tech_Weapon_Sword_T06 = new PrefabGUID(-1685075160); public static readonly PrefabGUID Tech_Weapon_Sword_T08 = new PrefabGUID(361533671); public static readonly PrefabGUID Tech_Weapon_TwinBlades_T06 = new PrefabGUID(928267897); public static readonly PrefabGUID Tech_Weapon_TwinBlades_T08 = new PrefabGUID(-711409497); public static readonly PrefabGUID Tech_Weapon_Whip_T06 = new PrefabGUID(1500666524); public static readonly PrefabGUID Tech_Weapon_Whip_T08 = new PrefabGUID(1515808838); public static readonly PrefabGUID TESTSEQ_Base = new PrefabGUID(-1440805359); public static readonly PrefabGUID TESTSEQ_Flow = new PrefabGUID(1212854027); public static readonly PrefabGUID TESTSEQ_Particle = new PrefabGUID(1705534416); public static readonly PrefabGUID TESTSEQ_Sound = new PrefabGUID(113092852); public static readonly PrefabGUID ThroneBuildMenuGroup = new PrefabGUID(998196343); public static readonly PrefabGUID Throw_DownCurve = new PrefabGUID(1783011586); public static readonly PrefabGUID Throw_UpCurve = new PrefabGUID(-2024079383); public static readonly PrefabGUID TimeScale = new PrefabGUID(-587555975); public static readonly PrefabGUID TM_AmbientLightningAttractor_Emanuel_Test = new PrefabGUID(1376997758); public static readonly PrefabGUID TM_AnimalCage_01 = new PrefabGUID(228202475); public static readonly PrefabGUID TM_AnimalCage_02 = new PrefabGUID(-1240287685); public static readonly PrefabGUID TM_AnimalCage_03 = new PrefabGUID(-750118024); public static readonly PrefabGUID TM_AnimalCage_04 = new PrefabGUID(541013972); public static readonly PrefabGUID TM_AnimalCage_05 = new PrefabGUID(262341373); public static readonly PrefabGUID TM_AnimalCage_06 = new PrefabGUID(2038475776); public static readonly PrefabGUID TM_AnimalCage_07 = new PrefabGUID(-905830677); public static readonly PrefabGUID TM_AnimalCage_Snow_01 = new PrefabGUID(-217603604); public static readonly PrefabGUID TM_AnimalCage_Snow_02 = new PrefabGUID(-172981558); public static readonly PrefabGUID TM_AnimalCage_Snow_03 = new PrefabGUID(699191772); public static readonly PrefabGUID TM_AnimalCage_Snow_04 = new PrefabGUID(1578900849); public static readonly PrefabGUID TM_AnimalCage_Snow_05 = new PrefabGUID(-518301011); public static readonly PrefabGUID TM_AnimalCage_Snow_07 = new PrefabGUID(322884697); public static readonly PrefabGUID TM_AnimalGraintank01 = new PrefabGUID(-72375828); public static readonly PrefabGUID TM_AnimalGraintank02 = new PrefabGUID(-464446338); public static readonly PrefabGUID TM_Animalpen_Gate_01 = new PrefabGUID(1382309239); public static readonly PrefabGUID TM_Animalpen_Roof_01_Broken = new PrefabGUID(1519356552); public static readonly PrefabGUID TM_AnimalWatertank01 = new PrefabGUID(-1534290131); public static readonly PrefabGUID TM_AnimalWatertank02 = new PrefabGUID(1123278633); public static readonly PrefabGUID TM_Apple_01_Stage0 = new PrefabGUID(-1857257172); public static readonly PrefabGUID TM_Apple_01_Stage0_Stump = new PrefabGUID(-1559009850); public static readonly PrefabGUID TM_Apple_01_Stage1 = new PrefabGUID(-86282561); public static readonly PrefabGUID TM_Apple_01_Stage1_Stump = new PrefabGUID(1800723537); public static readonly PrefabGUID TM_Apple_02_Stage0 = new PrefabGUID(1678440190); public static readonly PrefabGUID TM_Apple_02_Stage0_Stump = new PrefabGUID(386834462); public static readonly PrefabGUID TM_Apple_02_Stage1 = new PrefabGUID(-647217167); public static readonly PrefabGUID TM_Apple_02_Stage1_Stump = new PrefabGUID(-880503030); public static readonly PrefabGUID TM_Apple_03_Stage0 = new PrefabGUID(-1076916125); public static readonly PrefabGUID TM_Apple_03_Stage0_Stump = new PrefabGUID(-1995344215); public static readonly PrefabGUID TM_Apple_03_Stage1 = new PrefabGUID(1628390435); public static readonly PrefabGUID TM_Apple_03_Stage1_Stump = new PrefabGUID(-500148127); public static readonly PrefabGUID TM_Apple_Sapling = new PrefabGUID(302718653); public static readonly PrefabGUID TM_AppleCursed_01_Stage0 = new PrefabGUID(907959418); public static readonly PrefabGUID TM_AppleCursed_01_Stage0_Stump = new PrefabGUID(1346467425); public static readonly PrefabGUID TM_AppleCursed_01_Stage1 = new PrefabGUID(703333328); public static readonly PrefabGUID TM_AppleCursed_01_Stage1_Stump = new PrefabGUID(1701268153); public static readonly PrefabGUID TM_AppleCursed_02_Stage0 = new PrefabGUID(1257285943); public static readonly PrefabGUID TM_AppleCursed_02_Stage0_Stump = new PrefabGUID(187723581); public static readonly PrefabGUID TM_AppleCursed_02_Stage1 = new PrefabGUID(291068058); public static readonly PrefabGUID TM_AppleCursed_02_Stage1_Stump = new PrefabGUID(-1654131094); public static readonly PrefabGUID TM_AppleCursed_03_Stage0 = new PrefabGUID(1759219212); public static readonly PrefabGUID TM_AppleCursed_03_Stage0_Stump = new PrefabGUID(-58053580); public static readonly PrefabGUID TM_AppleCursed_03_Stage1 = new PrefabGUID(1857761351); public static readonly PrefabGUID TM_AppleCursed_03_Stage1_Stump = new PrefabGUID(148982032); public static readonly PrefabGUID TM_AppleCursed_Sapling = new PrefabGUID(1197321873); public static readonly PrefabGUID TM_AppleCursed_Symbol_01_Stage0 = new PrefabGUID(-269775810); public static readonly PrefabGUID TM_AppleCursed_Symbol_01_Stage1 = new PrefabGUID(-582718332); public static readonly PrefabGUID TM_AppleCursed_Symbol_02_Stage0 = new PrefabGUID(288939347); public static readonly PrefabGUID TM_AppleCursed_Symbol_02_Stage1 = new PrefabGUID(-917453069); public static readonly PrefabGUID TM_AppleCursed_Symbol_03_Stage0 = new PrefabGUID(48948979); public static readonly PrefabGUID TM_AppleCursed_Symbol_03_Stage1 = new PrefabGUID(-1313724032); public static readonly PrefabGUID TM_ArcheryTarget01 = new PrefabGUID(278181465); public static readonly PrefabGUID TM_Aspen_01_Stage0 = new PrefabGUID(1570572385); public static readonly PrefabGUID TM_Aspen_01_Stage0_Stump = new PrefabGUID(1622491911); public static readonly PrefabGUID TM_Aspen_01_Stage1 = new PrefabGUID(-658197317); public static readonly PrefabGUID TM_Aspen_01_Stage1_Stump = new PrefabGUID(1429895087); public static readonly PrefabGUID TM_Aspen_02_Stage0 = new PrefabGUID(1617854397); public static readonly PrefabGUID TM_Aspen_02_Stage0_Stump = new PrefabGUID(1472996245); public static readonly PrefabGUID TM_Aspen_02_Stage1 = new PrefabGUID(-58403509); public static readonly PrefabGUID TM_Aspen_02_Stage1_Stump = new PrefabGUID(-523429309); public static readonly PrefabGUID TM_Aspen_03_Stage0 = new PrefabGUID(-988937236); public static readonly PrefabGUID TM_Aspen_03_Stage0_Stump = new PrefabGUID(539064048); public static readonly PrefabGUID TM_Aspen_03_Stage1 = new PrefabGUID(-216529083); public static readonly PrefabGUID TM_Aspen_03_Stage1_Stump = new PrefabGUID(164476469); public static readonly PrefabGUID TM_Aspen_Sapling = new PrefabGUID(-897101629); public static readonly PrefabGUID TM_AspenAutumn_01_Stage0 = new PrefabGUID(-51839131); public static readonly PrefabGUID TM_AspenAutumn_01_Stage0_Stump = new PrefabGUID(1218306711); public static readonly PrefabGUID TM_AspenAutumn_01_Stage1 = new PrefabGUID(-760048364); public static readonly PrefabGUID TM_AspenAutumn_01_Stage1_Stump = new PrefabGUID(-1896507917); public static readonly PrefabGUID TM_AspenAutumn_02_Stage0 = new PrefabGUID(-1861388077); public static readonly PrefabGUID TM_AspenAutumn_02_Stage0_Stump = new PrefabGUID(1422066735); public static readonly PrefabGUID TM_AspenAutumn_02_Stage1 = new PrefabGUID(1965810664); public static readonly PrefabGUID TM_AspenAutumn_02_Stage1_Stump = new PrefabGUID(209245029); public static readonly PrefabGUID TM_AspenAutumn_03_Stage0 = new PrefabGUID(-1494621501); public static readonly PrefabGUID TM_AspenAutumn_03_Stage0_Stump = new PrefabGUID(-491804479); public static readonly PrefabGUID TM_AspenAutumn_03_Stage1 = new PrefabGUID(-713797222); public static readonly PrefabGUID TM_AspenAutumn_03_Stage1_Stump = new PrefabGUID(1816453786); public static readonly PrefabGUID TM_AspenAutumn_04_Stage0 = new PrefabGUID(-582326354); public static readonly PrefabGUID TM_AspenAutumn_04_Stage0_Stump = new PrefabGUID(1600146091); public static readonly PrefabGUID TM_AspenAutumn_04_Stage1 = new PrefabGUID(-1779780007); public static readonly PrefabGUID TM_AspenAutumn_04_Stage1_Stump = new PrefabGUID(1906601667); public static readonly PrefabGUID TM_AspenAutumn_05_Stage0 = new PrefabGUID(-1274836267); public static readonly PrefabGUID TM_AspenAutumn_05_Stage0_Stump = new PrefabGUID(1294189954); public static readonly PrefabGUID TM_AspenAutumn_05_Stage1 = new PrefabGUID(1034457980); public static readonly PrefabGUID TM_AspenAutumn_05_Stage1_Stump = new PrefabGUID(1562729865); public static readonly PrefabGUID TM_AspenAutumn_06_Stage0 = new PrefabGUID(1257105536); public static readonly PrefabGUID TM_AspenAutumn_06_Stage0_Stump = new PrefabGUID(1428713676); public static readonly PrefabGUID TM_AspenAutumn_06_Stage1 = new PrefabGUID(-375508545); public static readonly PrefabGUID TM_AspenAutumn_06_Stage1_Stump = new PrefabGUID(1210087409); public static readonly PrefabGUID TM_AspenAutumn_Sapling = new PrefabGUID(203804518); public static readonly PrefabGUID TM_AspenAutumn_SaplingRed = new PrefabGUID(-572207697); public static readonly PrefabGUID TM_Bandit_Banner01 = new PrefabGUID(-706722824); public static readonly PrefabGUID TM_Bandit_Barricade_01 = new PrefabGUID(1373672124); public static readonly PrefabGUID TM_Bandit_Brazier01 = new PrefabGUID(-1762567222); public static readonly PrefabGUID TM_Bandit_Palisade_GateBreakable_01 = new PrefabGUID(1201638912); public static readonly PrefabGUID TM_BanditBanner_01 = new PrefabGUID(-636647833); public static readonly PrefabGUID TM_BanditBanner_02 = new PrefabGUID(1297205479); public static readonly PrefabGUID TM_BanditFortress_Bench01 = new PrefabGUID(1961885730); public static readonly PrefabGUID TM_BanditFortress_Stairs01 = new PrefabGUID(-228899733); public static readonly PrefabGUID TM_BanditFortress_Stairs02 = new PrefabGUID(-1022691705); public static readonly PrefabGUID TM_BanditLeaderChair_01 = new PrefabGUID(-154796222); public static readonly PrefabGUID TM_BanditTailor_Hides02_Breakable = new PrefabGUID(-1013232883); public static readonly PrefabGUID TM_BanditTailor_Hides03_Breakable = new PrefabGUID(-628782203); public static readonly PrefabGUID TM_BanditTailor_Hides04_Breakable = new PrefabGUID(1646596723); public static readonly PrefabGUID TM_BanditTailor_Hides05_Breakable = new PrefabGUID(964777575); public static readonly PrefabGUID TM_BanditTailor_Hides06_Breakable = new PrefabGUID(-822754321); public static readonly PrefabGUID TM_BanditTailor_HidesBeam01 = new PrefabGUID(-190105530); public static readonly PrefabGUID TM_BanditTailor_HidesBeam02 = new PrefabGUID(2059422007); public static readonly PrefabGUID TM_BanditTailor_SkinningTable01 = new PrefabGUID(1111521813); public static readonly PrefabGUID TM_BanditTailor_SkinningTable02 = new PrefabGUID(-351258337); public static readonly PrefabGUID TM_BanditTailor_TanningRack01_Breakable = new PrefabGUID(1770969180); public static readonly PrefabGUID TM_BanditTailor_TanningRack01_Breakable_Interactable = new PrefabGUID(753072483); public static readonly PrefabGUID TM_BanditTailor_TanningRack02_Breakable = new PrefabGUID(1338655266); public static readonly PrefabGUID TM_BanditTailor_TarBucket01 = new PrefabGUID(-76392767); public static readonly PrefabGUID TM_BanditTailor_TarBucket02 = new PrefabGUID(-246720292); public static readonly PrefabGUID TM_BanditTailor_TarBucket03 = new PrefabGUID(1871845418); public static readonly PrefabGUID TM_Beech_01_Stage0 = new PrefabGUID(-914809320); public static readonly PrefabGUID TM_Beech_01_Stage0_Stump = new PrefabGUID(1953446207); public static readonly PrefabGUID TM_Beech_01_Stage1 = new PrefabGUID(107657367); public static readonly PrefabGUID TM_Beech_01_Stage1_Stump = new PrefabGUID(-1439069219); public static readonly PrefabGUID TM_Beech_02_Stage0 = new PrefabGUID(-38823758); public static readonly PrefabGUID TM_Beech_02_Stage0_Stump = new PrefabGUID(2042832508); public static readonly PrefabGUID TM_Beech_02_Stage1 = new PrefabGUID(159194383); public static readonly PrefabGUID TM_Beech_02_Stage1_Stump = new PrefabGUID(-569940297); public static readonly PrefabGUID TM_Beech_03_Stage0 = new PrefabGUID(-1240572646); public static readonly PrefabGUID TM_Beech_03_Stage0_Stump = new PrefabGUID(1958533251); public static readonly PrefabGUID TM_Beech_03_Stage1 = new PrefabGUID(-1138116137); public static readonly PrefabGUID TM_Beech_03_Stage1_Stump = new PrefabGUID(-1489873648); public static readonly PrefabGUID TM_Beech_Sapling = new PrefabGUID(1251017641); public static readonly PrefabGUID TM_Beehive01 = new PrefabGUID(-1381543342); public static readonly PrefabGUID TM_Birch_01_Stage0 = new PrefabGUID(-2073537030); public static readonly PrefabGUID TM_Birch_01_Stage0_Stump = new PrefabGUID(-271874548); public static readonly PrefabGUID TM_Birch_01_Stage1 = new PrefabGUID(1696081179); public static readonly PrefabGUID TM_Birch_01_Stage1_Stump = new PrefabGUID(1362295412); public static readonly PrefabGUID TM_Birch_02_Stage0 = new PrefabGUID(355059364); public static readonly PrefabGUID TM_Birch_02_Stage0_Stump = new PrefabGUID(904339484); public static readonly PrefabGUID TM_Birch_02_Stage1 = new PrefabGUID(1386253402); public static readonly PrefabGUID TM_Birch_02_Stage1_Stump = new PrefabGUID(647113320); public static readonly PrefabGUID TM_Birch_03_Stage0 = new PrefabGUID(-828996122); public static readonly PrefabGUID TM_Birch_03_Stage0_Stump = new PrefabGUID(1223005359); public static readonly PrefabGUID TM_Birch_03_Stage1 = new PrefabGUID(-721330968); public static readonly PrefabGUID TM_Birch_03_Stage1_Stump = new PrefabGUID(2018219174); public static readonly PrefabGUID TM_Birch_04_Stage0 = new PrefabGUID(544258904); public static readonly PrefabGUID TM_Birch_04_Stage0_Stump = new PrefabGUID(201227333); public static readonly PrefabGUID TM_Birch_04_Stage1 = new PrefabGUID(-56044890); public static readonly PrefabGUID TM_Birch_04_Stage1_Stump = new PrefabGUID(-1618087459); public static readonly PrefabGUID TM_Birch_Sapling = new PrefabGUID(-907353868); public static readonly PrefabGUID TM_BirchAutumn_01_Stage0 = new PrefabGUID(1876302973); public static readonly PrefabGUID TM_BirchAutumn_01_Stage0_Stump = new PrefabGUID(1126257254); public static readonly PrefabGUID TM_BirchAutumn_01_Stage1 = new PrefabGUID(-287872842); public static readonly PrefabGUID TM_BirchAutumn_01_Stage1_Stump = new PrefabGUID(-1432050438); public static readonly PrefabGUID TM_BirchAutumn_02_Stage0 = new PrefabGUID(-289935716); public static readonly PrefabGUID TM_BirchAutumn_02_Stage0_Stump = new PrefabGUID(-1867591237); public static readonly PrefabGUID TM_BirchAutumn_02_Stage1 = new PrefabGUID(-882392752); public static readonly PrefabGUID TM_BirchAutumn_02_Stage1_Stump = new PrefabGUID(598006364); public static readonly PrefabGUID TM_BirchAutumn_03_Stage0 = new PrefabGUID(-1496306392); public static readonly PrefabGUID TM_BirchAutumn_03_Stage0_Stump = new PrefabGUID(609254020); public static readonly PrefabGUID TM_BirchAutumn_03_Stage1 = new PrefabGUID(-426728473); public static readonly PrefabGUID TM_BirchAutumn_03_Stage1_Stump = new PrefabGUID(271954587); public static readonly PrefabGUID TM_BirchAutumn_04_Stage0 = new PrefabGUID(630169389); public static readonly PrefabGUID TM_BirchAutumn_04_Stage0_Stump = new PrefabGUID(700131907); public static readonly PrefabGUID TM_BirchAutumn_04_Stage1 = new PrefabGUID(-283758104); public static readonly PrefabGUID TM_BirchAutumn_04_Stage1_Stump = new PrefabGUID(-2101630392); public static readonly PrefabGUID TM_BirchAutumn_05_Stage0 = new PrefabGUID(214088257); public static readonly PrefabGUID TM_BirchAutumn_05_Stage0_Stump = new PrefabGUID(1749020003); public static readonly PrefabGUID TM_BirchAutumn_05_Stage1 = new PrefabGUID(-291889); public static readonly PrefabGUID TM_BirchAutumn_05_Stage1_Stump = new PrefabGUID(-1857740234); public static readonly PrefabGUID TM_BirchAutumn_06_Stage0 = new PrefabGUID(-1607774046); public static readonly PrefabGUID TM_BirchAutumn_06_Stage0_Stump = new PrefabGUID(1760408818); public static readonly PrefabGUID TM_BirchAutumn_06_Stage1 = new PrefabGUID(-441473912); public static readonly PrefabGUID TM_BirchAutumn_06_Stage1_Stump = new PrefabGUID(225773284); public static readonly PrefabGUID TM_BirchAutumn_07_Stage0 = new PrefabGUID(-2141862807); public static readonly PrefabGUID TM_BirchAutumn_07_Stage0_Stump = new PrefabGUID(-917497142); public static readonly PrefabGUID TM_BirchAutumn_07_Stage1 = new PrefabGUID(-45356260); public static readonly PrefabGUID TM_BirchAutumn_07_Stage1_Stump = new PrefabGUID(-1652749441); public static readonly PrefabGUID TM_BirchAutumn_08_Stage0 = new PrefabGUID(-1801446234); public static readonly PrefabGUID TM_BirchAutumn_08_Stage0_Stump = new PrefabGUID(734295368); public static readonly PrefabGUID TM_BirchAutumn_08_Stage1 = new PrefabGUID(1945161026); public static readonly PrefabGUID TM_BirchAutumn_08_Stage1_Stump = new PrefabGUID(980395942); public static readonly PrefabGUID TM_BirchAutumn_09_Stage0 = new PrefabGUID(103545126); public static readonly PrefabGUID TM_BirchAutumn_09_Stage0_Stump = new PrefabGUID(2070979808); public static readonly PrefabGUID TM_BirchAutumn_09_Stage1 = new PrefabGUID(762400578); public static readonly PrefabGUID TM_BirchAutumn_09_Stage1_Stump = new PrefabGUID(-206084668); public static readonly PrefabGUID TM_BirchAutumn_10_Stage0 = new PrefabGUID(-1866507697); public static readonly PrefabGUID TM_BirchAutumn_10_Stage0_Stump = new PrefabGUID(68802942); public static readonly PrefabGUID TM_BirchAutumn_10_Stage1 = new PrefabGUID(-1454926740); public static readonly PrefabGUID TM_BirchAutumn_10_Stage1_Stump = new PrefabGUID(-2056012282); public static readonly PrefabGUID TM_BirchAutumn_11_Stage0 = new PrefabGUID(395858596); public static readonly PrefabGUID TM_BirchAutumn_11_Stage0_Stump = new PrefabGUID(-595504560); public static readonly PrefabGUID TM_BirchAutumn_11_Stage1 = new PrefabGUID(-913316596); public static readonly PrefabGUID TM_BirchAutumn_11_Stage1_Stump = new PrefabGUID(832948732); public static readonly PrefabGUID TM_BirchAutumn_12_Stage0 = new PrefabGUID(-1024312097); public static readonly PrefabGUID TM_BirchAutumn_12_Stage0_Stump = new PrefabGUID(1896745081); public static readonly PrefabGUID TM_BirchAutumn_12_Stage1 = new PrefabGUID(759517016); public static readonly PrefabGUID TM_BirchAutumn_12_Stage1_Stump = new PrefabGUID(119102948); public static readonly PrefabGUID TM_BirchAutumn_SaplingAutumn = new PrefabGUID(-557697929); public static readonly PrefabGUID TM_BirchAutumn_SaplingOrange = new PrefabGUID(692040344); public static readonly PrefabGUID TM_BirchAutumn_SaplingYellow = new PrefabGUID(1177582315); public static readonly PrefabGUID TM_Blacksmith_Anvil01 = new PrefabGUID(-741558232); public static readonly PrefabGUID TM_Blacksmith_Anvil01_Interactable = new PrefabGUID(-948098109); public static readonly PrefabGUID TM_Blacksmith_Barrel01 = new PrefabGUID(-58559922); public static readonly PrefabGUID TM_Blacksmith_Bellow01 = new PrefabGUID(-1362868132); public static readonly PrefabGUID TM_Blacksmith_Table01 = new PrefabGUID(-1819116612); public static readonly PrefabGUID TM_Blacksmith_Table01_Interactable = new PrefabGUID(-1639959073); public static readonly PrefabGUID TM_BlacksmithWood_01 = new PrefabGUID(-833765704); public static readonly PrefabGUID TM_BlacksmithWood_02 = new PrefabGUID(-401205593); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage0 = new PrefabGUID(1832805473); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage0_Stump = new PrefabGUID(1022865304); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage1 = new PrefabGUID(-1959598381); public static readonly PrefabGUID TM_BlightbringerAltar_01_Stage1_Stump = new PrefabGUID(2080551403); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage0 = new PrefabGUID(551351600); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage0_Stump = new PrefabGUID(1956908371); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage1 = new PrefabGUID(1520466277); public static readonly PrefabGUID TM_BlightbringerAltar_02_Stage1_Stump = new PrefabGUID(1835910423); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage0 = new PrefabGUID(637404405); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage0_Stump = new PrefabGUID(609103708); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage1 = new PrefabGUID(1787243968); public static readonly PrefabGUID TM_BlightbringerAltar_07_Stage1_Stump = new PrefabGUID(164431291); public static readonly PrefabGUID TM_BlightbringerAltar_Sapling = new PrefabGUID(-1370777150); public static readonly PrefabGUID TM_BloodAltar_T01 = new PrefabGUID(1819321433); public static readonly PrefabGUID TM_BloodCrystal_01_Rubble = new PrefabGUID(2017876904); public static readonly PrefabGUID TM_BloodCrystal_01_Stage0_Resource = new PrefabGUID(-254626627); public static readonly PrefabGUID TM_BloodCrystal_01_Stage1_Resource = new PrefabGUID(-1835439513); public static readonly PrefabGUID TM_BloodCrystal_02_Rubble = new PrefabGUID(-1309655937); public static readonly PrefabGUID TM_BloodCrystal_02_Stage0_Resource = new PrefabGUID(314153968); public static readonly PrefabGUID TM_BloodCrystal_02_Stage1_Resource = new PrefabGUID(121949631); public static readonly PrefabGUID TM_BloodCrystal_03_Rubble = new PrefabGUID(1688359979); public static readonly PrefabGUID TM_BloodCrystal_03_Stage0_Resource = new PrefabGUID(-550729059); public static readonly PrefabGUID TM_BloodCrystal_03_Stage1_Resource = new PrefabGUID(199431317); public static readonly PrefabGUID TM_BloodFountain_CastleHeart = new PrefabGUID(-485210554); public static readonly PrefabGUID TM_BloodFountain_CastleHeart_Rebuilding = new PrefabGUID(-600018251); public static readonly PrefabGUID TM_BoneCarcass_01_Pickup = new PrefabGUID(-426282494); public static readonly PrefabGUID TM_BoneHide_DeadDeer_01_Pickup = new PrefabGUID(-1077231248); public static readonly PrefabGUID TM_BonePile_01_Pickup = new PrefabGUID(-970403517); public static readonly PrefabGUID TM_Bonfire_01 = new PrefabGUID(2015932885); public static readonly PrefabGUID TM_Bonfire_01_FireOn = new PrefabGUID(1725063561); public static readonly PrefabGUID TM_Bonfire_02_FireOn = new PrefabGUID(906106474); public static readonly PrefabGUID TM_BonfireSimple_01 = new PrefabGUID(1661042787); public static readonly PrefabGUID TM_BonfireSimple01_FireOn = new PrefabGUID(1085168058); public static readonly PrefabGUID TM_Bookshelf_01_Empty = new PrefabGUID(-1147240070); public static readonly PrefabGUID TM_Bookshelf_01_Full = new PrefabGUID(-2041706783); public static readonly PrefabGUID TM_Brazier_Elris01 = new PrefabGUID(285688246); public static readonly PrefabGUID TM_Brazier_SilverHills_Breakable_Fire02 = new PrefabGUID(-1167560866); public static readonly PrefabGUID TM_Brazier_SilverHills_Breakable01 = new PrefabGUID(1999698350); public static readonly PrefabGUID TM_Breakable_HayStack01_Interactable = new PrefabGUID(-1316942379); public static readonly PrefabGUID TM_Breakable_Mine_Barrel_01 = new PrefabGUID(-132751522); public static readonly PrefabGUID TM_Breakable_Mine_Box_01 = new PrefabGUID(22353947); public static readonly PrefabGUID TM_Breakable_Mine_BoxDynamite_01 = new PrefabGUID(4750782); public static readonly PrefabGUID TM_Breakable_TownHall_Bench_01 = new PrefabGUID(-885837570); public static readonly PrefabGUID TM_BunkbedVar01 = new PrefabGUID(-2046402969); public static readonly PrefabGUID TM_BunkbedVar02 = new PrefabGUID(-1592531254); public static readonly PrefabGUID TM_BunkbedVar03 = new PrefabGUID(71152160); public static readonly PrefabGUID TM_Cabinet_01_Empty = new PrefabGUID(-1455124881); public static readonly PrefabGUID TM_Cabinet_01_Full = new PrefabGUID(790688566); public static readonly PrefabGUID TM_Candleholder_01 = new PrefabGUID(1581518977); public static readonly PrefabGUID TM_Candleholder_02 = new PrefabGUID(-1755024714); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Cursed01 = new PrefabGUID(1348402695); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Snow_01 = new PrefabGUID(-237566782); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Snow_02 = new PrefabGUID(-1607151148); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Strongblade01 = new PrefabGUID(-1864168449); public static readonly PrefabGUID TM_Carriage_WheelBarrow_Strongblade02 = new PrefabGUID(-2056332798); public static readonly PrefabGUID TM_Carriage_WheelBarrow01 = new PrefabGUID(-456419624); public static readonly PrefabGUID TM_Carriage_WheelBarrow01_Interactable = new PrefabGUID(513133261); public static readonly PrefabGUID TM_Carriage_WheelBarrow02 = new PrefabGUID(-752567665); public static readonly PrefabGUID TM_Carriage_WheelBarrow03 = new PrefabGUID(363494611); public static readonly PrefabGUID TM_Carriage_WheelBarrow04 = new PrefabGUID(-261210166); public static readonly PrefabGUID TM_Carriage_WheelBarrow05 = new PrefabGUID(-1156162858); public static readonly PrefabGUID TM_Carriage_WheelBarrow06 = new PrefabGUID(1996863276); public static readonly PrefabGUID TM_Carriage_WheelBarrow06_Interactable = new PrefabGUID(1239735056); public static readonly PrefabGUID TM_CarriageChest_BanditAnimal = new PrefabGUID(-1819342331); public static readonly PrefabGUID TM_CarriageChest_BanditPrisoner = new PrefabGUID(-597872204); public static readonly PrefabGUID TM_CarriageChest_ChurchLegion = new PrefabGUID(2105640635); public static readonly PrefabGUID TM_CarriageChest_ChurchMutant = new PrefabGUID(-1497964417); public static readonly PrefabGUID TM_CarriageContainer_BanditCopper = new PrefabGUID(785770588); public static readonly PrefabGUID TM_CarriageContainer_BanditPlank = new PrefabGUID(1283847364); public static readonly PrefabGUID TM_CarriageContainer_BanditSulfur = new PrefabGUID(-690249229); public static readonly PrefabGUID TM_CarriageContainer_BlackfangBastion = new PrefabGUID(605464943); public static readonly PrefabGUID TM_CarriageContainer_BlackfangSouth = new PrefabGUID(1152278702); public static readonly PrefabGUID TM_CarriageContainer_ChuchGrape = new PrefabGUID(-1349542539); public static readonly PrefabGUID TM_CarriageContainer_ChuchSilver = new PrefabGUID(-677677957); public static readonly PrefabGUID TM_CarriageContainer_MilitiaCotton = new PrefabGUID(1074219325); public static readonly PrefabGUID TM_CarriageContainer_MilitiaIron = new PrefabGUID(-1234907970); public static readonly PrefabGUID TM_CarriageContainer_MilitiaQuartz = new PrefabGUID(-336079872); public static readonly PrefabGUID TM_CarriagePrisonerRelease_BanditAnimal = new PrefabGUID(264976858); public static readonly PrefabGUID TM_CarriagePrisonerRelease_BanditPrisoners = new PrefabGUID(1430421513); public static readonly PrefabGUID TM_CarriagePrisonerRelease_ChurchLegion = new PrefabGUID(1588683147); public static readonly PrefabGUID TM_CarriagePrisonerRelease_ChurchMutants = new PrefabGUID(39314447); public static readonly PrefabGUID TM_Castle_Chain_Plant_BleedingHeart_Grow = new PrefabGUID(-864934779); public static readonly PrefabGUID TM_Castle_Chain_Plant_BleedingHeart_Object = new PrefabGUID(-1639149126); public static readonly PrefabGUID TM_Castle_Chain_Plant_BloodRose_Grow = new PrefabGUID(-1154285996); public static readonly PrefabGUID TM_Castle_Chain_Plant_BloodRose_Object = new PrefabGUID(854966485); public static readonly PrefabGUID TM_Castle_Chain_Plant_CorruptedFlower_Grow = new PrefabGUID(-381763813); public static readonly PrefabGUID TM_Castle_Chain_Plant_CorruptedFlower_Object = new PrefabGUID(590141239); public static readonly PrefabGUID TM_Castle_Chain_Plant_Cotton_Grow = new PrefabGUID(-68354526); public static readonly PrefabGUID TM_Castle_Chain_Plant_Cotton_Object = new PrefabGUID(106699910); public static readonly PrefabGUID TM_Castle_Chain_Plant_FireBlossom_Grow = new PrefabGUID(1857937092); public static readonly PrefabGUID TM_Castle_Chain_Plant_FireBlossom_Object = new PrefabGUID(-1862621017); public static readonly PrefabGUID TM_Castle_Chain_Plant_GhostShroom_Grow = new PrefabGUID(1267446276); public static readonly PrefabGUID TM_Castle_Chain_Plant_GhostShroom_Object = new PrefabGUID(1301651860); public static readonly PrefabGUID TM_Castle_Chain_Plant_Grapes_Grow = new PrefabGUID(1268213621); public static readonly PrefabGUID TM_Castle_Chain_Plant_Grapes_Object = new PrefabGUID(1992848416); public static readonly PrefabGUID TM_Castle_Chain_Plant_HellsClarion_Grow = new PrefabGUID(-1444521389); public static readonly PrefabGUID TM_Castle_Chain_Plant_HellsClarion_Object = new PrefabGUID(863601897); public static readonly PrefabGUID TM_Castle_Chain_Plant_Lotus_Grow = new PrefabGUID(2124314449); public static readonly PrefabGUID TM_Castle_Chain_Plant_Lotus_Object = new PrefabGUID(1636632476); public static readonly PrefabGUID TM_Castle_Chain_Plant_MourningLily_Grow = new PrefabGUID(-1684169924); public static readonly PrefabGUID TM_Castle_Chain_Plant_MourningLily_Object = new PrefabGUID(-112608441); public static readonly PrefabGUID TM_Castle_Chain_Plant_SnowFlower_Grow = new PrefabGUID(-191124565); public static readonly PrefabGUID TM_Castle_Chain_Plant_SnowFlower_Object = new PrefabGUID(1663656864); public static readonly PrefabGUID TM_Castle_Chain_Plant_Sunflower_Grow = new PrefabGUID(-1771331965); public static readonly PrefabGUID TM_Castle_Chain_Plant_Sunflower_Object = new PrefabGUID(-157041400); public static readonly PrefabGUID TM_Castle_Chain_Plant_Thistle_Grow = new PrefabGUID(-2089626033); public static readonly PrefabGUID TM_Castle_Chain_Plant_Thistle_Object = new PrefabGUID(-1687824558); public static readonly PrefabGUID TM_Castle_Chain_Plant_TrippyShroom_Grow = new PrefabGUID(365028879); public static readonly PrefabGUID TM_Castle_Chain_Plant_TrippyShroom_Object = new PrefabGUID(-734226054); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Grow01 = new PrefabGUID(-944801740); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Grow02 = new PrefabGUID(-273980168); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Sapling01 = new PrefabGUID(-81980095); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Stump01 = new PrefabGUID(1829208754); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleCursed_Stump02 = new PrefabGUID(-600232227); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Grow01 = new PrefabGUID(-1096794541); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Grow02 = new PrefabGUID(-1212033469); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Sapling01 = new PrefabGUID(-916420372); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Stump01 = new PrefabGUID(-1186881674); public static readonly PrefabGUID TM_Castle_Chain_Tree_AppleTree_Stump02 = new PrefabGUID(682227652); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Grow01 = new PrefabGUID(371879967); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Grow02 = new PrefabGUID(777325901); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Sapling01 = new PrefabGUID(367056750); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Stump01 = new PrefabGUID(-1506363672); public static readonly PrefabGUID TM_Castle_Chain_Tree_Aspen_Stump02 = new PrefabGUID(1880607845); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Grow01 = new PrefabGUID(-1855913431); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Grow02 = new PrefabGUID(-537615653); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Sapling01 = new PrefabGUID(1959640531); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Stump01 = new PrefabGUID(-1030368768); public static readonly PrefabGUID TM_Castle_Chain_Tree_AspenAutum_Stump02 = new PrefabGUID(42333546); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Grow01 = new PrefabGUID(641771841); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Grow02 = new PrefabGUID(2024430086); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Sapling01 = new PrefabGUID(416304703); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Stump01 = new PrefabGUID(1753900826); public static readonly PrefabGUID TM_Castle_Chain_Tree_Birch_Stump02 = new PrefabGUID(205759567); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Grow01 = new PrefabGUID(-100970234); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Grow02 = new PrefabGUID(777625593); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Sapling01 = new PrefabGUID(288873017); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Stump01 = new PrefabGUID(2069118105); public static readonly PrefabGUID TM_Castle_Chain_Tree_BirchAutum_Stump02 = new PrefabGUID(1666595332); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Grow01 = new PrefabGUID(1038718515); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Grow02 = new PrefabGUID(-908905881); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Sapling01 = new PrefabGUID(491649903); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Stump01 = new PrefabGUID(-1177970835); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossom_Stump02 = new PrefabGUID(-995476713); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Grow01 = new PrefabGUID(-2048839296); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Grow02 = new PrefabGUID(175502857); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Sapling01 = new PrefabGUID(1207829043); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Stump01 = new PrefabGUID(645070432); public static readonly PrefabGUID TM_Castle_Chain_Tree_CherryBlossomWhite_Stump02 = new PrefabGUID(-1188102661); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Grow01 = new PrefabGUID(482932713); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Grow02 = new PrefabGUID(1381537328); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Sapling01 = new PrefabGUID(445593181); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Stump01 = new PrefabGUID(-1906666156); public static readonly PrefabGUID TM_Castle_Chain_Tree_Cypress_Stump02 = new PrefabGUID(-824128766); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Grow01 = new PrefabGUID(-1189929932); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Grow02 = new PrefabGUID(890004579); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Sapling01 = new PrefabGUID(2044350233); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Stump01 = new PrefabGUID(150592377); public static readonly PrefabGUID TM_Castle_Chain_Tree_GloomTree_Stump02 = new PrefabGUID(-2122537335); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Grow01 = new PrefabGUID(293442903); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Grow02 = new PrefabGUID(-49196761); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Sapling01 = new PrefabGUID(-177909582); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Stump01 = new PrefabGUID(1716367038); public static readonly PrefabGUID TM_Castle_Chain_Tree_Oak_Stump02 = new PrefabGUID(-1070551617); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Grow01 = new PrefabGUID(1344678052); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Grow02 = new PrefabGUID(-2064995974); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Sapling01 = new PrefabGUID(-1898003003); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Stump01 = new PrefabGUID(405480408); public static readonly PrefabGUID TM_Castle_Chain_Tree_Spruce_Stump02 = new PrefabGUID(1929432102); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Grow01 = new PrefabGUID(-102069738); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Grow02 = new PrefabGUID(-1197770551); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Sapling01 = new PrefabGUID(2013200754); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Stump01 = new PrefabGUID(1918033497); public static readonly PrefabGUID TM_Castle_Chain_Tree_WeepingWillow_Stump02 = new PrefabGUID(918249184); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Blood01 = new PrefabGUID(1420032361); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Cabal01 = new PrefabGUID(-1756991220); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_3x2_Gothic01 = new PrefabGUID(-668382795); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Blood01 = new PrefabGUID(-1218782860); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Cabal01 = new PrefabGUID(-1379130598); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_6x2_Gothic01 = new PrefabGUID(895582607); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_Base_3x2 = new PrefabGUID(-1207657241); public static readonly PrefabGUID TM_Castle_Container_Bookshelf_Base_6x2 = new PrefabGUID(1118272268); public static readonly PrefabGUID TM_Castle_Container_Bureau_Cabal01 = new PrefabGUID(609945621); public static readonly PrefabGUID TM_Castle_Container_Bureau_Gothic01 = new PrefabGUID(1969574977); public static readonly PrefabGUID TM_Castle_Container_Dresser_Cabal01 = new PrefabGUID(427274910); public static readonly PrefabGUID TM_Castle_Container_Dresser_Gothic01 = new PrefabGUID(118432271); public static readonly PrefabGUID TM_Castle_Container_Specialized_Alchemy_T01 = new PrefabGUID(2078423943); public static readonly PrefabGUID TM_Castle_Container_Specialized_Alchemy_T02 = new PrefabGUID(-3853700); public static readonly PrefabGUID TM_Castle_Container_Specialized_Armor_T02 = new PrefabGUID(461811658); public static readonly PrefabGUID TM_Castle_Container_Specialized_Coins_T02 = new PrefabGUID(-68447111); public static readonly PrefabGUID TM_Castle_Container_Specialized_Consumable_T01 = new PrefabGUID(1417685635); public static readonly PrefabGUID TM_Castle_Container_Specialized_Consumable_T02 = new PrefabGUID(-1750343583); public static readonly PrefabGUID TM_Castle_Container_Specialized_Fish_T02 = new PrefabGUID(-1316912119); public static readonly PrefabGUID TM_Castle_Container_Specialized_Gems_T01 = new PrefabGUID(572067339); public static readonly PrefabGUID TM_Castle_Container_Specialized_Gems_T02 = new PrefabGUID(1360847293); public static readonly PrefabGUID TM_Castle_Container_Specialized_Herbs_T01 = new PrefabGUID(789484399); public static readonly PrefabGUID TM_Castle_Container_Specialized_Herbs_T02 = new PrefabGUID(-1895052004); public static readonly PrefabGUID TM_Castle_Container_Specialized_Jewels_T02 = new PrefabGUID(1305010703); public static readonly PrefabGUID TM_Castle_Container_Specialized_Knowledge_T01 = new PrefabGUID(421909879); public static readonly PrefabGUID TM_Castle_Container_Specialized_Knowledge_T02 = new PrefabGUID(123232984); public static readonly PrefabGUID TM_Castle_Container_Specialized_Minerals_T01 = new PrefabGUID(-1078314427); public static readonly PrefabGUID TM_Castle_Container_Specialized_Minerals_T02 = new PrefabGUID(-1155345803); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Dracula = new PrefabGUID(1495743889); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Manticore = new PrefabGUID(653759442); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Monster = new PrefabGUID(-1996942061); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Morgana = new PrefabGUID(1724128982); public static readonly PrefabGUID TM_Castle_Container_Specialized_Soulshards_Solarus = new PrefabGUID(-824445631); public static readonly PrefabGUID TM_Castle_Container_Specialized_Tailoring_T01 = new PrefabGUID(1619086271); public static readonly PrefabGUID TM_Castle_Container_Specialized_Tailoring_T02 = new PrefabGUID(-1293468445); public static readonly PrefabGUID TM_Castle_Container_Specialized_Weapon_T02 = new PrefabGUID(-841698718); public static readonly PrefabGUID TM_Castle_Container_Specialized_Woodworking_T01 = new PrefabGUID(401757801); public static readonly PrefabGUID TM_Castle_Container_Specialized_Woodworking_T02 = new PrefabGUID(725978616); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Cabal01 = new PrefabGUID(167886013); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Gothic01 = new PrefabGUID(-1195045239); public static readonly PrefabGUID TM_Castle_Container_Wardrobe_Gothic02 = new PrefabGUID(1723758048); public static readonly PrefabGUID TM_Castle_Fence_Iron01 = new PrefabGUID(44535007); public static readonly PrefabGUID TM_Castle_Fence_Iron02 = new PrefabGUID(-682177661); public static readonly PrefabGUID TM_Castle_Fence_Iron03 = new PrefabGUID(1316387312); public static readonly PrefabGUID TM_Castle_Fence_IronGate01 = new PrefabGUID(-448001608); public static readonly PrefabGUID TM_Castle_Fence_IronGate02 = new PrefabGUID(-1921424515); public static readonly PrefabGUID TM_Castle_Fence_IronGate03 = new PrefabGUID(-663581951); public static readonly PrefabGUID TM_Castle_Fence_ProjectK01 = new PrefabGUID(519452653); public static readonly PrefabGUID TM_Castle_Fence_ProjectK01_Gate = new PrefabGUID(155733373); public static readonly PrefabGUID TM_Castle_Fence_Stable01 = new PrefabGUID(809204083); public static readonly PrefabGUID TM_Castle_Fence_StableGate01 = new PrefabGUID(1997273288); public static readonly PrefabGUID TM_Castle_Fence_Wood01 = new PrefabGUID(1268956656); public static readonly PrefabGUID TM_Castle_Fence_Wood02 = new PrefabGUID(1847178717); public static readonly PrefabGUID TM_Castle_Fence_WoodGate01 = new PrefabGUID(2114550113); public static readonly PrefabGUID TM_Castle_Fence_WoodGate02 = new PrefabGUID(-191378828); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab01 = new PrefabGUID(-1269191198); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab02 = new PrefabGUID(-1897961716); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLab03 = new PrefabGUID(-1205461952); public static readonly PrefabGUID TM_Castle_Floor_AlchemyLabBase = new PrefabGUID(1049312363); public static readonly PrefabGUID TM_Castle_Floor_Crypt01 = new PrefabGUID(-685318965); public static readonly PrefabGUID TM_Castle_Floor_Crypt02 = new PrefabGUID(572228191); public static readonly PrefabGUID TM_Castle_Floor_Crypt03 = new PrefabGUID(304985570); public static readonly PrefabGUID TM_Castle_Floor_CryptBase = new PrefabGUID(1901518512); public static readonly PrefabGUID TM_Castle_Floor_Forge01 = new PrefabGUID(-420140629); public static readonly PrefabGUID TM_Castle_Floor_Forge02 = new PrefabGUID(1695410320); public static readonly PrefabGUID TM_Castle_Floor_Forge03 = new PrefabGUID(63772249); public static readonly PrefabGUID TM_Castle_Floor_ForgeBase = new PrefabGUID(-1266606195); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Rubble = new PrefabGUID(-2018427219); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stable01 = new PrefabGUID(747452298); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stable02 = new PrefabGUID(2025363113); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01 = new PrefabGUID(-2108338233); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCProjectK = new PrefabGUID(2111694272); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCStrongblade01 = new PrefabGUID(-457072746); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCVariant01 = new PrefabGUID(1931758209); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone01_DLCVariant02 = new PrefabGUID(1081445770); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone02 = new PrefabGUID(296786024); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone03 = new PrefabGUID(679413487); public static readonly PrefabGUID TM_Castle_Floor_Foundation_Stone04 = new PrefabGUID(2092503115); public static readonly PrefabGUID TM_Castle_Floor_FoundationBase = new PrefabGUID(1326064797); public static readonly PrefabGUID TM_Castle_Floor_Garden_Grass01 = new PrefabGUID(2142175856); public static readonly PrefabGUID TM_Castle_Floor_InvisibleRoofBlocker = new PrefabGUID(350417170); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting01 = new PrefabGUID(-1984599765); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting02 = new PrefabGUID(-1838091713); public static readonly PrefabGUID TM_Castle_Floor_Jewelcrafting03 = new PrefabGUID(-4617437); public static readonly PrefabGUID TM_Castle_Floor_JewelcraftingBase = new PrefabGUID(691024400); public static readonly PrefabGUID TM_Castle_Floor_Library01 = new PrefabGUID(-866132980); public static readonly PrefabGUID TM_Castle_Floor_Library02 = new PrefabGUID(-87390675); public static readonly PrefabGUID TM_Castle_Floor_Library03 = new PrefabGUID(483075292); public static readonly PrefabGUID TM_Castle_Floor_LibraryBase = new PrefabGUID(-1387641031); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Base = new PrefabGUID(-364140707); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone01 = new PrefabGUID(-1760943046); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone02 = new PrefabGUID(887146255); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone03 = new PrefabGUID(334719508); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone04 = new PrefabGUID(-1385691355); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone05 = new PrefabGUID(-923972985); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone06 = new PrefabGUID(-1877354305); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Cobblestone07 = new PrefabGUID(241387358); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Grass01 = new PrefabGUID(1883720184); public static readonly PrefabGUID TM_Castle_Floor_Outdoor_Plain01 = new PrefabGUID(1356453147); public static readonly PrefabGUID TM_Castle_Floor_Prison01 = new PrefabGUID(-1632933767); public static readonly PrefabGUID TM_Castle_Floor_Prison02 = new PrefabGUID(-1431268048); public static readonly PrefabGUID TM_Castle_Floor_Prison03 = new PrefabGUID(1559900574); public static readonly PrefabGUID TM_Castle_Floor_PrisonBase = new PrefabGUID(90417130); public static readonly PrefabGUID TM_Castle_Floor_Tailor01 = new PrefabGUID(497865962); public static readonly PrefabGUID TM_Castle_Floor_Tailor02 = new PrefabGUID(1216440822); public static readonly PrefabGUID TM_Castle_Floor_Tailor03 = new PrefabGUID(-1138152299); public static readonly PrefabGUID TM_Castle_Floor_TailorBase = new PrefabGUID(1577452402); public static readonly PrefabGUID TM_Castle_Floor_Treasury01 = new PrefabGUID(-1887758253); public static readonly PrefabGUID TM_Castle_Floor_Treasury01_DLCStrongblade01 = new PrefabGUID(-773919175); public static readonly PrefabGUID TM_Castle_Floor_Treasury02 = new PrefabGUID(-2097552164); public static readonly PrefabGUID TM_Castle_Floor_Treasury03 = new PrefabGUID(849335034); public static readonly PrefabGUID TM_Castle_Floor_TreasuryBase = new PrefabGUID(370873101); public static readonly PrefabGUID TM_Castle_Floor_Workshop01 = new PrefabGUID(1514919762); public static readonly PrefabGUID TM_Castle_Floor_Workshop02 = new PrefabGUID(-2138878020); public static readonly PrefabGUID TM_Castle_Floor_Workshop03 = new PrefabGUID(-156221515); public static readonly PrefabGUID TM_Castle_Floor_WorkshopBase = new PrefabGUID(-290215811); public static readonly PrefabGUID TM_Castle_FloorDecor_01_Carpet = new PrefabGUID(2008193049); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Black = new PrefabGUID(1306351802); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Burgundy = new PrefabGUID(-134008501); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Cobalt = new PrefabGUID(1323406286); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Dyable = new PrefabGUID(-1295514827); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Green = new PrefabGUID(1813156501); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Ivory = new PrefabGUID(766673232); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Corner_Purple = new PrefabGUID(1419026023); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Black = new PrefabGUID(2126004642); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Burgundy = new PrefabGUID(-461103186); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Cobalt = new PrefabGUID(-1169847941); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Dyable = new PrefabGUID(2012245119); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Green = new PrefabGUID(-1123494393); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Ivory = new PrefabGUID(-227538458); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Cross_Section_Purple = new PrefabGUID(-1538523312); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Black = new PrefabGUID(-1243576459); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Burgundy = new PrefabGUID(-776811271); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Cobalt = new PrefabGUID(1901825261); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Dyable = new PrefabGUID(-259923899); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Green = new PrefabGUID(1346845826); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Ivory = new PrefabGUID(630554462); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_End_Purple = new PrefabGUID(1804431776); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Black = new PrefabGUID(1651816484); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Burgundy = new PrefabGUID(1716091064); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Cobalt = new PrefabGUID(-526419579); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Dyable = new PrefabGUID(1637369895); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Green = new PrefabGUID(1301144755); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Ivory = new PrefabGUID(-780934839); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_Straight_Purple = new PrefabGUID(-481588988); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Black = new PrefabGUID(1932720842); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Burgundy = new PrefabGUID(818030323); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Cobalt = new PrefabGUID(692406210); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Dyable = new PrefabGUID(-1058099541); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Green = new PrefabGUID(1249427094); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Ivory = new PrefabGUID(1442410065); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet01_T_Section_Purple = new PrefabGUID(-678125428); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Black = new PrefabGUID(682668082); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Burgundy = new PrefabGUID(1857601828); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Cobalt = new PrefabGUID(-473831223); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Dyable = new PrefabGUID(2126549881); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Green = new PrefabGUID(82108540); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Ivory = new PrefabGUID(-597687406); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Corner_Purple = new PrefabGUID(-617258233); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Black = new PrefabGUID(1683066508); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Burgundy = new PrefabGUID(512681452); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Cobalt = new PrefabGUID(1130659161); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Dyable = new PrefabGUID(-922187970); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Green = new PrefabGUID(103048648); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Ivory = new PrefabGUID(991498568); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Cross_Section_Purple = new PrefabGUID(1919893824); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Black = new PrefabGUID(804493387); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Burgundy = new PrefabGUID(-518095715); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Cobalt = new PrefabGUID(1989655669); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Dyable = new PrefabGUID(-1143821389); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Green = new PrefabGUID(-507593057); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Ivory = new PrefabGUID(-128416884); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_End_Purple = new PrefabGUID(532005924); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Black = new PrefabGUID(893695403); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Burgundy = new PrefabGUID(574337327); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Cobalt = new PrefabGUID(-1511289700); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Dyable = new PrefabGUID(-1845664226); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Green = new PrefabGUID(-1114619332); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Ivory = new PrefabGUID(164698768); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_Straight_Purple = new PrefabGUID(-2029999606); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Black = new PrefabGUID(919347321); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Burgundy = new PrefabGUID(1955810365); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Cobalt = new PrefabGUID(553792296); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Dyable = new PrefabGUID(1006618280); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Green = new PrefabGUID(-1932733299); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Ivory = new PrefabGUID(526993414); public static readonly PrefabGUID TM_Castle_FloorDecor_Carpet02_T_Section_Purple = new PrefabGUID(1820953353); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Corner = new PrefabGUID(1103606275); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Cross_Section = new PrefabGUID(-181524704); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_End = new PrefabGUID(1855507356); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_Straight = new PrefabGUID(534774102); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetDLC01_T_Section = new PrefabGUID(-1664644149); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Corner = new PrefabGUID(1630742707); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Cross_Section = new PrefabGUID(1416970934); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_End = new PrefabGUID(-1761526212); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_Straight = new PrefabGUID(1012471326); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetGloomrot01_T_Section = new PrefabGUID(1037297955); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Corner = new PrefabGUID(908557664); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Cross_Section = new PrefabGUID(-1588047588); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_End = new PrefabGUID(2097305970); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_Straight = new PrefabGUID(832684882); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetHalloween01_T_Section = new PrefabGUID(-633127683); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Corner = new PrefabGUID(1271352880); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Cross_Section = new PrefabGUID(-24431530); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_End = new PrefabGUID(990139966); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_Straight = new PrefabGUID(-1507536062); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetProjectK01_T_Section = new PrefabGUID(1128182070); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Corner = new PrefabGUID(-57770233); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Cross_Section = new PrefabGUID(-787655845); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_End = new PrefabGUID(1784663116); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_Straight = new PrefabGUID(-164197545); public static readonly PrefabGUID TM_Castle_FloorDecor_CarpetStrongbladeDLC_T_Section = new PrefabGUID(-2084701667); public static readonly PrefabGUID TM_Castle_FloorDecor_FancyCarpet01_Dyable = new PrefabGUID(240238952); public static readonly PrefabGUID TM_Castle_FloorDecor_FancyCarpet02_Dyable = new PrefabGUID(1867846200); public static readonly PrefabGUID TM_Castle_FloorDecor_FurRug01 = new PrefabGUID(1899686895); public static readonly PrefabGUID TM_Castle_FloorDecor_FurRug02 = new PrefabGUID(-1781488171); public static readonly PrefabGUID TM_Castle_FloorDecor_GothicCarpet01_Dyable = new PrefabGUID(-1847029206); public static readonly PrefabGUID TM_Castle_FloorDecor_GothicCarpet02_Dyable = new PrefabGUID(307134587); public static readonly PrefabGUID TM_Castle_FloorDecor_RippedCarpet01_Dyable = new PrefabGUID(1839491208); public static readonly PrefabGUID TM_Castle_FloorDecor_RippedCarpet02_Dyable = new PrefabGUID(1295587736); public static readonly PrefabGUID TM_Castle_FloorDecor_Rug01_Dyable = new PrefabGUID(252879515); public static readonly PrefabGUID TM_Castle_FloorDecor_Rug02_Dyable = new PrefabGUID(-260509121); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet01_Dyable = new PrefabGUID(-690616247); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet02_Dyable = new PrefabGUID(892642237); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet03_Dyable = new PrefabGUID(1433503658); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet04_Dyable = new PrefabGUID(-2003925881); public static readonly PrefabGUID TM_Castle_FloorDecor_StrongbladeDLC_Carpet05_Dyable = new PrefabGUID(575413764); public static readonly PrefabGUID TM_Castle_Fortification_Stone_Entrance01 = new PrefabGUID(223208782); public static readonly PrefabGUID TM_Castle_Fortification_Stone_Wall01 = new PrefabGUID(572652285); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_BloodRose = new PrefabGUID(-696518716); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_Cursed = new PrefabGUID(329771592); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Metal_Ivy = new PrefabGUID(-27245786); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_BloodRose = new PrefabGUID(-2142374854); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Cursed = new PrefabGUID(-2072930723); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Ivy = new PrefabGUID(624203220); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Large_Wood_Wisteria = new PrefabGUID(-1545173719); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_BloodRose = new PrefabGUID(1820938592); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_Cursed = new PrefabGUID(-1860278799); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Metal_Ivy = new PrefabGUID(-1340651820); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_BloodRose = new PrefabGUID(-551176897); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Cursed = new PrefabGUID(1028376291); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Ivy = new PrefabGUID(-352700400); public static readonly PrefabGUID TM_Castle_Garden_Child_Arch_Small_Wood_Wisteria = new PrefabGUID(-165398122); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_BloodRose = new PrefabGUID(2068662970); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Cursed = new PrefabGUID(-28278410); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Ivy = new PrefabGUID(1835868485); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Metal_Wisteria = new PrefabGUID(1770705355); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_BloodRose = new PrefabGUID(-893594484); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Cursed = new PrefabGUID(524127162); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Ivy = new PrefabGUID(588827151); public static readonly PrefabGUID TM_Castle_Garden_Child_Obelisk_Wood_Wisteria = new PrefabGUID(-1858504726); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_BloodRose = new PrefabGUID(1683380284); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_Cursed = new PrefabGUID(2002956115); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Metal_Ivy = new PrefabGUID(-2117255138); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_BloodRose = new PrefabGUID(-348270745); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Cursed = new PrefabGUID(126642331); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Ivy = new PrefabGUID(-27002310); public static readonly PrefabGUID TM_Castle_Garden_Child_Pergola_Wood_Wisteria = new PrefabGUID(-1863662319); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_BloodRose = new PrefabGUID(1831968277); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Cursed = new PrefabGUID(1372502590); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Ivy = new PrefabGUID(628431890); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Large_Wisteria = new PrefabGUID(1992180217); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_BloodRose = new PrefabGUID(1936225910); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Cursed = new PrefabGUID(-1013891900); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Ivy = new PrefabGUID(878769501); public static readonly PrefabGUID TM_Castle_Garden_Child_Planter_Small_Wisteria = new PrefabGUID(25064448); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Large_Metal = new PrefabGUID(658148892); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Large_Wood = new PrefabGUID(-114044430); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Small_Metal = new PrefabGUID(258921107); public static readonly PrefabGUID TM_Castle_Garden_Parent_Arch_Small_Wood = new PrefabGUID(1892222213); public static readonly PrefabGUID TM_Castle_Garden_Parent_Obelisk_Metal = new PrefabGUID(709885056); public static readonly PrefabGUID TM_Castle_Garden_Parent_Obelisk_Wood = new PrefabGUID(-562981818); public static readonly PrefabGUID TM_Castle_Garden_Parent_Pergola_Metal = new PrefabGUID(-1222590743); public static readonly PrefabGUID TM_Castle_Garden_Parent_Pergola_Wood = new PrefabGUID(1835696328); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Large_Metal = new PrefabGUID(1768521351); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Large_Wood = new PrefabGUID(-1132434077); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Small_Metal = new PrefabGUID(1056819434); public static readonly PrefabGUID TM_Castle_Garden_Parent_Planter_Small_Wood = new PrefabGUID(167706466); public static readonly PrefabGUID TM_Castle_Gate_Wall_Door_01 = new PrefabGUID(-1110124667); public static readonly PrefabGUID TM_Castle_Gate_Wall_Door_02 = new PrefabGUID(-1388275148); public static readonly PrefabGUID TM_Castle_GeneratedRailing_Default01 = new PrefabGUID(1196518637); public static readonly PrefabGUID TM_Castle_GeneratedRailing_Default01_Pillar = new PrefabGUID(2118711934); public static readonly PrefabGUID TM_Castle_House_Window_Metal = new PrefabGUID(545291818); public static readonly PrefabGUID TM_Castle_House_Window_SimpleCurtains = new PrefabGUID(236180419); public static readonly PrefabGUID TM_Castle_House_Window_Wood = new PrefabGUID(-1719836801); public static readonly PrefabGUID TM_Castle_InteriorRailing_Default01 = new PrefabGUID(160153045); public static readonly PrefabGUID TM_Castle_InteriorRailing_Default01_Pillar = new PrefabGUID(-1691093039); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Blue = new PrefabGUID(760696617); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Purple = new PrefabGUID(2027471241); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Red = new PrefabGUID(1326023321); public static readonly PrefabGUID TM_Castle_LocalTeleporter_Yellow = new PrefabGUID(1579702125); public static readonly PrefabGUID TM_Castle_MistBrazier = new PrefabGUID(1756900697); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape01 = new PrefabGUID(-823767297); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape02 = new PrefabGUID(-1376704997); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape03 = new PrefabGUID(-2093139794); public static readonly PrefabGUID TM_Castle_Module_Child_Garden_Shape04 = new PrefabGUID(1682197623); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC01 = new PrefabGUID(1747478659); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC02 = new PrefabGUID(-982682474); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_StrongbladeDLC03 = new PrefabGUID(1274339627); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting_Glass01 = new PrefabGUID(-1842123158); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting01 = new PrefabGUID(609879909); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting02 = new PrefabGUID(-1814460463); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_10x6_TableSetting03 = new PrefabGUID(1415708511); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC01 = new PrefabGUID(110079461); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC02 = new PrefabGUID(846591851); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_StrongbladeDLC03 = new PrefabGUID(-910610447); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting_Glass01 = new PrefabGUID(442815015); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting01 = new PrefabGUID(366145820); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting02 = new PrefabGUID(-1077386164); public static readonly PrefabGUID TM_Castle_Module_Child_RectangularTable_3x6_TableSetting03 = new PrefabGUID(-1142049453); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC01 = new PrefabGUID(-207510343); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC02 = new PrefabGUID(-70745613); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC03 = new PrefabGUID(-784399817); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC04 = new PrefabGUID(965422057); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_StrongbladeDLC05 = new PrefabGUID(-1331727612); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass01 = new PrefabGUID(-1484048118); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass02 = new PrefabGUID(1389877877); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting_Glass03 = new PrefabGUID(1304353722); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting01 = new PrefabGUID(-280555422); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting02 = new PrefabGUID(429599776); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting03 = new PrefabGUID(-2088437090); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_3x3_TableSetting04 = new PrefabGUID(-745029889); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC01 = new PrefabGUID(-1595018806); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC02 = new PrefabGUID(-1525424692); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_StrongbladeDLC03 = new PrefabGUID(1592427758); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting_Glass01 = new PrefabGUID(-1495633537); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting01 = new PrefabGUID(-812090150); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting02 = new PrefabGUID(1381090712); public static readonly PrefabGUID TM_Castle_Module_Child_RoundTable_6x6_TableSetting03 = new PrefabGUID(-181453288); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn01 = new PrefabGUID(1871935324); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn01_Original = new PrefabGUID(275489647); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn02 = new PrefabGUID(-1932051338); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn03 = new PrefabGUID(1175078735); public static readonly PrefabGUID TM_Castle_Module_Parent_Garden_Urn04 = new PrefabGUID(1181034925); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal01 = new PrefabGUID(1369010712); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal02 = new PrefabGUID(479941373); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Cabal03 = new PrefabGUID(-2004716642); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_Gothic01 = new PrefabGUID(1336447117); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_StrongbladeDLC_01 = new PrefabGUID(1119097203); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_10x6_StrongbladeDLC_02 = new PrefabGUID(-1097732927); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_Cabal01 = new PrefabGUID(2020208400); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_Gothic01 = new PrefabGUID(-1579557858); public static readonly PrefabGUID TM_Castle_Module_Parent_RectangularTable_3x6_StrongbladeDLC_01 = new PrefabGUID(-1829611282); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_Cabal01 = new PrefabGUID(-1666587665); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_Gothic01 = new PrefabGUID(-825041900); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_3x3_StrongbladeDLC_01 = new PrefabGUID(1068226341); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_6x6_Cabal02 = new PrefabGUID(-1587825473); public static readonly PrefabGUID TM_Castle_Module_Parent_RoundTable_6x6_StrongbladeDLC_01 = new PrefabGUID(-46629157); public static readonly PrefabGUID TM_Castle_Noctem_Radar_Eye = new PrefabGUID(1383395802); public static readonly PrefabGUID TM_Castle_ObjectDecor_Anvil01 = new PrefabGUID(1277831890); public static readonly PrefabGUID TM_Castle_ObjectDecor_Aquarium_Iron_Large = new PrefabGUID(198047828); public static readonly PrefabGUID TM_Castle_ObjectDecor_Aquarium_Iron_Small = new PrefabGUID(2117907654); public static readonly PrefabGUID TM_Castle_ObjectDecor_Bench_Gothic01 = new PrefabGUID(-569832943); public static readonly PrefabGUID TM_Castle_ObjectDecor_BookPedestal01 = new PrefabGUID(1579362204); public static readonly PrefabGUID TM_Castle_ObjectDecor_BookPedestal02 = new PrefabGUID(-680809658); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Brazier01_Orange = new PrefabGUID(1446953312); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_CandleStand01 = new PrefabGUID(797605882); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase01 = new PrefabGUID(873503098); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase02 = new PrefabGUID(1864693233); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase03 = new PrefabGUID(-761353546); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase04 = new PrefabGUID(1943013666); public static readonly PrefabGUID TM_Castle_ObjectDecor_Cabal_Vase06 = new PrefabGUID(1512138920); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Cabal = new PrefabGUID(1130658863); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Gothic = new PrefabGUID(570436365); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand_Lavish = new PrefabGUID(780798903); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand01 = new PrefabGUID(-939151406); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand02 = new PrefabGUID(-629121130); public static readonly PrefabGUID TM_Castle_ObjectDecor_CandleStand03 = new PrefabGUID(-2022124892); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Base = new PrefabGUID(-1325342529); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Cabal01 = new PrefabGUID(-1126014450); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskCabal01 = new PrefabGUID(465502058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskGothic01 = new PrefabGUID(2096482330); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_DeskLavish01 = new PrefabGUID(-752836365); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Gothic01 = new PrefabGUID(1147414470); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Lavish01 = new PrefabGUID(1481841976); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Red_Base = new PrefabGUID(-8015754); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_Simple01 = new PrefabGUID(551046781); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC01 = new PrefabGUID(930898512); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC02 = new PrefabGUID(-162599930); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC03 = new PrefabGUID(1865135472); public static readonly PrefabGUID TM_Castle_ObjectDecor_Chair_StrongbladeDLC04 = new PrefabGUID(-706081177); public static readonly PrefabGUID TM_Castle_ObjectDecor_ChessTable01 = new PrefabGUID(624218349); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant01 = new PrefabGUID(27432785); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant02 = new PrefabGUID(-259659131); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant03 = new PrefabGUID(-1503503213); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant04 = new PrefabGUID(823459617); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant05 = new PrefabGUID(-1877692880); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant06 = new PrefabGUID(-1971857623); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant07 = new PrefabGUID(648206774); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant08 = new PrefabGUID(-692880320); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant09 = new PrefabGUID(-272063893); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant10 = new PrefabGUID(-681023682); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant11 = new PrefabGUID(975438498); public static readonly PrefabGUID TM_Castle_ObjectDecor_Child_Vase_Plant12 = new PrefabGUID(575437684); public static readonly PrefabGUID TM_Castle_ObjectDecor_CrystalLamp_Brazier01 = new PrefabGUID(-1023837449); public static readonly PrefabGUID TM_Castle_ObjectDecor_Divan_Base = new PrefabGUID(2082207027); public static readonly PrefabGUID TM_Castle_ObjectDecor_Divan_Lavish01 = new PrefabGUID(-398243796); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Cabal01 = new PrefabGUID(780398112); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Gothic01 = new PrefabGUID(216089113); public static readonly PrefabGUID TM_Castle_ObjectDecor_Fireplace_Lavish01 = new PrefabGUID(374407813); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Antlers01 = new PrefabGUID(-508625704); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Bone01 = new PrefabGUID(765052065); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Candles01 = new PrefabGUID(-1705786232); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Crystal01 = new PrefabGUID(2033781589); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Gothic01 = new PrefabGUID(2070805994); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Halloween01 = new PrefabGUID(-2113113839); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Lavish01 = new PrefabGUID(-1121102574); public static readonly PrefabGUID TM_Castle_ObjectDecor_FlyingChandelier_Simple01 = new PrefabGUID(2005837161); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_1x6_Cabal01 = new PrefabGUID(1536811714); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_1x6_Gothic01 = new PrefabGUID(-808142514); public static readonly PrefabGUID TM_Castle_ObjectDecor_FoldingWall_Base_1x6 = new PrefabGUID(1764832621); public static readonly PrefabGUID TM_Castle_ObjectDecor_ForgeBarrel01 = new PrefabGUID(-2128976183); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_1_short = new PrefabGUID(-794020006); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_1_tall = new PrefabGUID(1316058863); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_bridge01 = new PrefabGUID(-1458465094); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_bridge02 = new PrefabGUID(1672613686); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_short = new PrefabGUID(-1095847141); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall = new PrefabGUID(586685623); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall_arch01 = new PrefabGUID(929687735); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_10_tall_var01 = new PrefabGUID(850569597); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_bridge01 = new PrefabGUID(-2026589971); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_short = new PrefabGUID(-1130267123); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_5_tall = new PrefabGUID(-2132728905); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Corner01 = new PrefabGUID(-258523558); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Corner01_arch01 = new PrefabGUID(527160947); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_sculpture_horse01 = new PrefabGUID(-1949816617); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_sculpture_horse02 = new PrefabGUID(-761600498); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_Short_corner01 = new PrefabGUID(-2120322883); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01 = new PrefabGUID(-1030052444); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor01 = new PrefabGUID(-1117823422); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor02 = new PrefabGUID(-604532887); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar01_decor03 = new PrefabGUID(-743622014); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02 = new PrefabGUID(1034151164); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor01 = new PrefabGUID(1453586031); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor02 = new PrefabGUID(2062518804); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_short_pillar02_decor03 = new PrefabGUID(-316863071); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01 = new PrefabGUID(349807177); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor01 = new PrefabGUID(1044207305); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor02 = new PrefabGUID(-253897934); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar01_decor03 = new PrefabGUID(-329463697); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02 = new PrefabGUID(31164442); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor01 = new PrefabGUID(-391133159); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor02 = new PrefabGUID(-1295479109); public static readonly PrefabGUID TM_Castle_ObjectDecor_Garden_Hedgerow01_tall_pillar02_decor03 = new PrefabGUID(2032291686); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenBench01 = new PrefabGUID(2119410626); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair_Base = new PrefabGUID(830396434); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair01 = new PrefabGUID(-925263583); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenChair02_Dyable = new PrefabGUID(1020401996); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Bat01 = new PrefabGUID(1247163010); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Bat02 = new PrefabGUID(-1790149989); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Large01 = new PrefabGUID(177891172); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_ProjectK01 = new PrefabGUID(1178389093); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenFountain_Small01 = new PrefabGUID(549920910); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost01_Orange = new PrefabGUID(-55079755); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost02_Orange = new PrefabGUID(1758705562); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLampPost03_Orange = new PrefabGUID(656054963); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern01_Orange = new PrefabGUID(-1302860768); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern02_Orange = new PrefabGUID(1759972580); public static readonly PrefabGUID TM_Castle_ObjectDecor_GardenLantern03_Orange = new PrefabGUID(-451545916); public static readonly PrefabGUID TM_Castle_ObjectDecor_Globe02 = new PrefabGUID(1988389551); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gloomrot01_Brazier01_Green = new PrefabGUID(-618554922); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier01_Orange = new PrefabGUID(-2093005534); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier02_Orange = new PrefabGUID(1965326190); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier03_Orange = new PrefabGUID(224878241); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier04_Orange_DLC = new PrefabGUID(1965581787); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Brazier05_Orange = new PrefabGUID(-887031154); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_BustStatue_Female01 = new PrefabGUID(1005770867); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_BustStatue_Male01 = new PrefabGUID(-1463516461); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_CandleRack01_Orange = new PrefabGUID(656976091); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_CandleStand01 = new PrefabGUID(709669487); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Podium01 = new PrefabGUID(-590609504); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01DuoGargoyle01 = new PrefabGUID(-593905838); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle01 = new PrefabGUID(1326445798); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle02 = new PrefabGUID(2123129022); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle03 = new PrefabGUID(725766266); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle04 = new PrefabGUID(-1985503763); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle05 = new PrefabGUID(-411374179); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle06 = new PrefabGUID(581940747); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle07 = new PrefabGUID(-1986302834); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLC01Gargoyle08 = new PrefabGUID(1245961354); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Female = new PrefabGUID(-1509963504); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Male = new PrefabGUID(1853226864); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat01 = new PrefabGUID(-154100892); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat02 = new PrefabGUID(-567491057); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_DLCGloomrot_Vat03 = new PrefabGUID(-751931539); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Female01 = new PrefabGUID(-84369225); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Gargoyle01 = new PrefabGUID(-1870409563); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Statue_Male01 = new PrefabGUID(-1198796948); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase01 = new PrefabGUID(-479280465); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase02 = new PrefabGUID(-1076384196); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase03 = new PrefabGUID(-76851715); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase04 = new PrefabGUID(2030984728); public static readonly PrefabGUID TM_Castle_ObjectDecor_Gothic_Vase05 = new PrefabGUID(-1537403426); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Base = new PrefabGUID(-6983693); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Cabal01 = new PrefabGUID(-1623564712); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Gothic01 = new PrefabGUID(-561639815); public static readonly PrefabGUID TM_Castle_ObjectDecor_GrandfatherClock_Lavish01 = new PrefabGUID(1136472160); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier01_Orange = new PrefabGUID(-1296321304); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier02_Orange = new PrefabGUID(561843274); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier03_Orange = new PrefabGUID(-86884256); public static readonly PrefabGUID TM_Castle_ObjectDecor_Halloween01_Brazier04_Orange = new PrefabGUID(444000363); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Base = new PrefabGUID(-1848307090); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_GrandPiano01 = new PrefabGUID(-409684408); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_GrandPiano02 = new PrefabGUID(-280549553); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Harp01 = new PrefabGUID(1246795581); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Harp02 = new PrefabGUID(591881817); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Organ01 = new PrefabGUID(-1894293910); public static readonly PrefabGUID TM_Castle_ObjectDecor_Instrument_Organ02 = new PrefabGUID(-544504736); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Brazier01_Orange = new PrefabGUID(521970438); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_BustStatue_Female01 = new PrefabGUID(-420564298); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_BustStatue_Male01 = new PrefabGUID(-1841799555); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_CandleStand01 = new PrefabGUID(1080320533); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01DuoGargoyle01 = new PrefabGUID(-596981388); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle01 = new PrefabGUID(34149911); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle02 = new PrefabGUID(-444096842); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle03 = new PrefabGUID(22771948); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle04 = new PrefabGUID(210845918); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle05 = new PrefabGUID(1065525459); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle06 = new PrefabGUID(-374509611); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle07 = new PrefabGUID(-1086525411); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_DLC01Gargoyle08 = new PrefabGUID(-96779386); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Female01 = new PrefabGUID(1302388238); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Gargoyle01 = new PrefabGUID(1902853849); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Statue_Male01 = new PrefabGUID(-1248717894); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase01 = new PrefabGUID(-779774088); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase02 = new PrefabGUID(-2087497758); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase03 = new PrefabGUID(-1218974349); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase04_Unused = new PrefabGUID(1781510688); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase05 = new PrefabGUID(-1312712675); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase06 = new PrefabGUID(851602346); public static readonly PrefabGUID TM_Castle_ObjectDecor_Lavish_Vase07 = new PrefabGUID(-595181570); public static readonly PrefabGUID TM_Castle_ObjectDecor_OutdoorDecoration_Base = new PrefabGUID(845709672); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase01 = new PrefabGUID(1958206979); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase02 = new PrefabGUID(144463441); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Cabal_Vase03 = new PrefabGUID(-209525166); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase01 = new PrefabGUID(-1346427067); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase02 = new PrefabGUID(407233445); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase03 = new PrefabGUID(-1275348909); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase04 = new PrefabGUID(133934624); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase05 = new PrefabGUID(-118403276); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Fancy_Vase06 = new PrefabGUID(-1781755513); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase01 = new PrefabGUID(64005732); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase02 = new PrefabGUID(-394501959); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Marble_Vase03 = new PrefabGUID(1650910016); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase01 = new PrefabGUID(-1359956150); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase02 = new PrefabGUID(814967763); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Metal_Vase03 = new PrefabGUID(-1227210056); public static readonly PrefabGUID TM_Castle_ObjectDecor_Parent_Stable_BarrelVase01 = new PrefabGUID(1310922184); public static readonly PrefabGUID TM_Castle_ObjectDecor_Pool_StrongbladeDLC01 = new PrefabGUID(558668025); public static readonly PrefabGUID TM_Castle_ObjectDecor_Pool_StrongbladeDLC02 = new PrefabGUID(-1963794511); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Brazier_Orange = new PrefabGUID(-899747642); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_BustStatue_Female01 = new PrefabGUID(2003546745); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_BustStatue_Male01 = new PrefabGUID(-83822172); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01DuoGargoyle01 = new PrefabGUID(2093267606); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle01 = new PrefabGUID(-1145446161); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle02 = new PrefabGUID(-1017411502); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle03 = new PrefabGUID(1951605041); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle04 = new PrefabGUID(781996044); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle05 = new PrefabGUID(1405941468); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle06 = new PrefabGUID(518448448); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle07 = new PrefabGUID(-1141919540); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_DLC01Gargoyle08 = new PrefabGUID(1663229398); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Female01 = new PrefabGUID(2071819023); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Gargoyle01 = new PrefabGUID(-883197188); public static readonly PrefabGUID TM_Castle_ObjectDecor_Simple_Statue_Male01 = new PrefabGUID(-1866338269); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Base = new PrefabGUID(1752496674); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Cabal01 = new PrefabGUID(1991412107); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Gothic01 = new PrefabGUID(833803769); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_Lavish01 = new PrefabGUID(-1613630707); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_StrongbladeDLC01 = new PrefabGUID(397717192); public static readonly PrefabGUID TM_Castle_ObjectDecor_Sofa_StrongbladeDLC02 = new PrefabGUID(-269507805); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay01 = new PrefabGUID(1495755479); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay02 = new PrefabGUID(1925146830); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHay03 = new PrefabGUID(-1990152390); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHitchingPost01 = new PrefabGUID(194712289); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableHitchingPost02 = new PrefabGUID(-1543977056); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableSign01 = new PrefabGUID(-726476711); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableSign02 = new PrefabGUID(1395968105); public static readonly PrefabGUID TM_Castle_ObjectDecor_StableWaterTrough01 = new PrefabGUID(1565409593); public static readonly PrefabGUID TM_Castle_ObjectDecor_StandingBurnerPot01 = new PrefabGUID(-202816279); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_AngelStatue01 = new PrefabGUID(-1777182058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_BonePillarStatue01 = new PrefabGUID(858552228); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_FemaleStatue01 = new PrefabGUID(1924883160); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_FemaleStatue02 = new PrefabGUID(57934274); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_GargoyleStatue01 = new PrefabGUID(1837038558); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_GargoyleStatue02 = new PrefabGUID(-1121713940); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_MaleStatue01 = new PrefabGUID(1735150840); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_ProjectK_MaleStatue02 = new PrefabGUID(-2122532810); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Female01 = new PrefabGUID(-1212536125); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Female02 = new PrefabGUID(-2006858566); public static readonly PrefabGUID TM_Castle_ObjectDecor_Statue_StrongbladeDLC_Male01 = new PrefabGUID(-1071569211); public static readonly PrefabGUID TM_Castle_ObjectDecor_StrongbladeDLC_StandingLamp01_Dyable = new PrefabGUID(606753096); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet01_Deprecated = new PrefabGUID(-888478474); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet02_Deprecated = new PrefabGUID(-1064177564); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Banquet03_Deprecated = new PrefabGUID(2113855149); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth01_Deprecated = new PrefabGUID(521727187); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth02_Deprecated = new PrefabGUID(709037000); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_BanquetCloth03_Deprecated = new PrefabGUID(2111290770); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Cabal01_Deprecated = new PrefabGUID(733591670); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_Gothic01_Deprecated = new PrefabGUID(-2005881662); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_StrongbladeDLC_01_Deprecated = new PrefabGUID(645454990); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_10x6_StrongbladeDLC_02_Deprecated = new PrefabGUID(1397513493); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x3_Cabal01_Deprecated = new PrefabGUID(-532692664); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x3_Gothic01_Deprecated = new PrefabGUID(-1887056619); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x6_Cabal01_Deprecated = new PrefabGUID(-34752264); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_3x6_Gothic01_Deprecated = new PrefabGUID(180499181); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_Cabal01 = new PrefabGUID(-742777303); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_CabalDesk01 = new PrefabGUID(-521027642); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_CabalVanity01 = new PrefabGUID(-544060510); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_GothicDesk01 = new PrefabGUID(-1583533114); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_GothicVanity01 = new PrefabGUID(-203928758); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_LavishDesk01 = new PrefabGUID(-1186490712); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x3_LavishVanity01 = new PrefabGUID(444727609); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x4_Garden01 = new PrefabGUID(1338051453); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_4x4_Garden02_Dyable = new PrefabGUID(-649433906); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_6x4_Simple01 = new PrefabGUID(2061278827); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_6x6_StrongbladeDLC_01_Deprecated = new PrefabGUID(2012743857); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_10x6 = new PrefabGUID(1799867777); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_3x3 = new PrefabGUID(725472058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_3x6 = new PrefabGUID(794694058); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_4x4_Garden = new PrefabGUID(1176115109); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_6x4 = new PrefabGUID(1597270759); public static readonly PrefabGUID TM_Castle_ObjectDecor_Table_Base_6x6 = new PrefabGUID(-2024489020); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Basic01 = new PrefabGUID(2101121636); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Soldier01 = new PrefabGUID(104465058); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Vampire01 = new PrefabGUID(230163020); public static readonly PrefabGUID TM_Castle_ObjectDecor_TargetDummy_Villager01 = new PrefabGUID(1098118571); public static readonly PrefabGUID TM_Castle_ObjectDecor_Terrarium01 = new PrefabGUID(-1558674217); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows01 = new PrefabGUID(886692114); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows02 = new PrefabGUID(95608669); public static readonly PrefabGUID TM_Castle_ObjectDecor_WalkableFurnishing_StrongbladeDLC_Pillows03 = new PrefabGUID(1123292049); public static readonly PrefabGUID TM_Castle_ObjectDecor_WashBasin01 = new PrefabGUID(-3042048); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Corner = new PrefabGUID(-1311856292); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Cross_Section = new PrefabGUID(-133073227); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_End = new PrefabGUID(-1917517340); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_Straight = new PrefabGUID(1202397949); public static readonly PrefabGUID TM_Castle_Pavement_Cobblestone02_T_Section = new PrefabGUID(-1604165419); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Corner = new PrefabGUID(-1150704729); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Cross_Section = new PrefabGUID(940495998); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_End = new PrefabGUID(-855972220); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_Straight = new PrefabGUID(-342424861); public static readonly PrefabGUID TM_Castle_Pavement_Gravel_T_Section = new PrefabGUID(1468258825); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Corner = new PrefabGUID(-1590852004); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Cross_Section = new PrefabGUID(-2068184188); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_End = new PrefabGUID(-330567583); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_Straight = new PrefabGUID(-2030277052); public static readonly PrefabGUID TM_Castle_Pavement_StoneTiles_T_Section = new PrefabGUID(-1834344633); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner01 = new PrefabGUID(-1117554565); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner02 = new PrefabGUID(-1123773678); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner03 = new PrefabGUID(1652335816); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner04 = new PrefabGUID(-163088387); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner05 = new PrefabGUID(1317859336); public static readonly PrefabGUID TM_Castle_PillarDecor_Banner06 = new PrefabGUID(-725227635); public static readonly PrefabGUID TM_Castle_PillarDecor_BatWing01 = new PrefabGUID(-1727572164); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms01_Banner01 = new PrefabGUID(-760358969); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms01_Banner02 = new PrefabGUID(1027890023); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms02_Banner01 = new PrefabGUID(87261865); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms02_Banner02 = new PrefabGUID(1615364717); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms03_Banner01 = new PrefabGUID(955474763); public static readonly PrefabGUID TM_Castle_PillarDecor_CoafOfArms03_Banner02 = new PrefabGUID(-876427373); public static readonly PrefabGUID TM_Castle_PillarDecor_CrowWing01 = new PrefabGUID(1713970619); public static readonly PrefabGUID TM_Castle_PillarDecor_CrystalLamp_HangingLanterns01 = new PrefabGUID(1870073967); public static readonly PrefabGUID TM_Castle_PillarDecor_CrystalLamp_Lantern01 = new PrefabGUID(-1996281667); public static readonly PrefabGUID TM_Castle_PillarDecor_DecorationPropBase = new PrefabGUID(962747391); public static readonly PrefabGUID TM_Castle_PillarDecor_DLC_ProjectK_Torch01_Dyable = new PrefabGUID(1969574504); public static readonly PrefabGUID TM_Castle_PillarDecor_DLC_ProjectK_Torch01_Orange = new PrefabGUID(876159415); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic01 = new PrefabGUID(743735705); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic02 = new PrefabGUID(-359707458); public static readonly PrefabGUID TM_Castle_PillarDecor_DoorBell_Gothic03 = new PrefabGUID(-1037785378); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_BloodRose01 = new PrefabGUID(-328288413); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Cursed01 = new PrefabGUID(1932505670); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Ivy01 = new PrefabGUID(172664191); public static readonly PrefabGUID TM_Castle_PillarDecor_Garden_Wisteria01 = new PrefabGUID(-479059917); public static readonly PrefabGUID TM_Castle_PillarDecor_Gargoyle01 = new PrefabGUID(328148479); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle01_Dyable = new PrefabGUID(1209886173); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle02_Dyable = new PrefabGUID(1810336204); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle03_Dyable = new PrefabGUID(-777269524); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Gold_Dyable = new PrefabGUID(1171228583); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Silver_Dyable = new PrefabGUID(-42990661); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Candle04_Wood_Dyable = new PrefabGUID(1321004130); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_GloomrotLantern01_Green = new PrefabGUID(-19009133); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HalloweenLantern01_Orange = new PrefabGUID(-721714254); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern01_Orange = new PrefabGUID(514660688); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern02 = new PrefabGUID(1039319072); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern03 = new PrefabGUID(222452688); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern04 = new PrefabGUID(-1938248109); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_HangingLantern05 = new PrefabGUID(1990191735); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Torch01_Orange = new PrefabGUID(-1998196357); public static readonly PrefabGUID TM_Castle_PillarDecor_Gothic_Torch02 = new PrefabGUID(-962887562); public static readonly PrefabGUID TM_Castle_PillarDecor_Halloween01 = new PrefabGUID(229389372); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle01 = new PrefabGUID(1398111223); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle02 = new PrefabGUID(1952451618); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle03 = new PrefabGUID(-1591965530); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle04 = new PrefabGUID(171778355); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle05 = new PrefabGUID(318475524); public static readonly PrefabGUID TM_Castle_PillarDecor_HangingGargoyle06 = new PrefabGUID(-432509803); public static readonly PrefabGUID TM_Castle_PillarDecor_Stable_Sign01 = new PrefabGUID(1701464100); public static readonly PrefabGUID TM_Castle_PillarDecor_Stable_Sign02 = new PrefabGUID(1507156777); public static readonly PrefabGUID TM_Castle_PillarDecor_StrongbladeDLC_Lantern01_Dyable = new PrefabGUID(-1303979929); public static readonly PrefabGUID TM_Castle_PillarDecor_StrongbladeDLC_Lantern02_Dyable = new PrefabGUID(-558665859); public static readonly PrefabGUID TM_Castle_PillarDecor_WorkshopHoist01 = new PrefabGUID(623491931); public static readonly PrefabGUID TM_Castle_RefinementStation_Soulshard = new PrefabGUID(1794206684); public static readonly PrefabGUID TM_Castle_Relic_Radar_Eye = new PrefabGUID(-622002417); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_Castle_Mega_Planter01 = new PrefabGUID(-451145631); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_Castle_Mega_Planter02 = new PrefabGUID(904702946); public static readonly PrefabGUID TM_Castle_SaplingPlanter_7x_NoUnitBlock_Big = new PrefabGUID(-1811290122); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_NoUnitBlock = new PrefabGUID(20308236); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-1620680520); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_01 = new PrefabGUID(633628073); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_02 = new PrefabGUID(-2070120080); public static readonly PrefabGUID TM_Castle_SeedPlanter_1x_UnitBlock_03 = new PrefabGUID(-614728956); public static readonly PrefabGUID TM_Castle_SeedPlanter_3x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-1777622178); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_NoUnitBlock = new PrefabGUID(-727003724); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_01 = new PrefabGUID(-2016984283); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_02 = new PrefabGUID(1348525260); public static readonly PrefabGUID TM_Castle_SeedPlanter_4x_UnitBlock_03 = new PrefabGUID(70490531); public static readonly PrefabGUID TM_Castle_SeedPlanter_5x_NoUnitBlock_OutdoorDirt = new PrefabGUID(-634052640); public static readonly PrefabGUID TM_Castle_SeedPlanter_7x_NoUnitBlock_Big = new PrefabGUID(576488226); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_End_Left = new PrefabGUID(2044737851); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_End_Right = new PrefabGUID(26454196); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_Start_Left = new PrefabGUID(2117545279); public static readonly PrefabGUID TM_Castle_Stairs_Double_Lower_Start_Right = new PrefabGUID(-791433293); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_End_Left = new PrefabGUID(-1608139464); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_End_Right = new PrefabGUID(-1867747921); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_Start_Left = new PrefabGUID(1376308990); public static readonly PrefabGUID TM_Castle_Stairs_Double_Upper_Start_Right = new PrefabGUID(-874593641); public static readonly PrefabGUID TM_Castle_Stairs_Floor_01 = new PrefabGUID(926709232); public static readonly PrefabGUID TM_Castle_Stairs_Floor_Ruined_01 = new PrefabGUID(-1401253655); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_End = new PrefabGUID(-1601742249); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Mid_CCW = new PrefabGUID(156372693); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Mid_CW = new PrefabGUID(91980480); public static readonly PrefabGUID TM_Castle_Stairs_Single_Lower_Start = new PrefabGUID(-1848575035); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_End = new PrefabGUID(-1069128791); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Mid_CCW = new PrefabGUID(223283194); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Mid_CW = new PrefabGUID(553087546); public static readonly PrefabGUID TM_Castle_Stairs_Single_Upper_Start = new PrefabGUID(-628271868); public static readonly PrefabGUID TM_Castle_Throne_01 = new PrefabGUID(-1944735586); public static readonly PrefabGUID TM_Castle_Throne_01_Dracula = new PrefabGUID(-633207199); public static readonly PrefabGUID TM_Castle_Throne_01_ProjectK = new PrefabGUID(-229853553); public static readonly PrefabGUID TM_Castle_Throne_01_StrongbladeDLC = new PrefabGUID(980816206); public static readonly PrefabGUID TM_Castle_Throne_01DLC01Variant = new PrefabGUID(1862373808); public static readonly PrefabGUID TM_Castle_Throne_01DLC02Variant = new PrefabGUID(-625213071); public static readonly PrefabGUID TM_Castle_Wall_Door_Metal_Wide_Tier02_ServantLock = new PrefabGUID(809177531); public static readonly PrefabGUID TM_Castle_Wall_Door_Metal_Wide_Tier02_Standard = new PrefabGUID(-1378161357); public static readonly PrefabGUID TM_Castle_Wall_Door_Palisade_Tier01 = new PrefabGUID(-1259825508); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle01_ServantLock = new PrefabGUID(-2120778385); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle01_Standard = new PrefabGUID(-1615530056); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle02_ServantLock = new PrefabGUID(1031154600); public static readonly PrefabGUID TM_Castle_Wall_Door_Tier02_PrisonStyle02_Standard = new PrefabGUID(-29749970); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC01Variant_ServantLock = new PrefabGUID(2063389605); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC01Variant_Standard = new PrefabGUID(1690783957); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC02Variant_ServantLock = new PrefabGUID(214726352); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_DLC02Variant_Standard = new PrefabGUID(-1872077746); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK01Variant_ServantLock = new PrefabGUID(423018316); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK01Variant_Standard = new PrefabGUID(-1725918454); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK02Variant_ServantLock = new PrefabGUID(1523490679); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ProjectK02Variant_Standard = new PrefabGUID(1362023808); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_ServantLock = new PrefabGUID(1325579315); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard = new PrefabGUID(-1462717684); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard01_ServantLock = new PrefabGUID(661164434); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard01_Standard = new PrefabGUID(-1720487003); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard02_ServantLock = new PrefabGUID(-324390719); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard02_Standard = new PrefabGUID(163814050); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard03_ServantLock = new PrefabGUID(1671467399); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_Standard03_Standard = new PrefabGUID(-183045232); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_StrongbladeDLC01Variant_ServantLock = new PrefabGUID(1394627606); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Tier02_StrongbladeDLC01Variant_Standard = new PrefabGUID(-1441209695); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Wide_Tier02_ServantLock = new PrefabGUID(1790947395); public static readonly PrefabGUID TM_Castle_Wall_Door_Wood_Wide_Tier02_Standard = new PrefabGUID(1407457927); public static readonly PrefabGUID TM_Castle_Wall_DoorPlug_Tier02_PrisonStyle01_Standard = new PrefabGUID(-1431484465); public static readonly PrefabGUID TM_Castle_Wall_DoorPlug_Tier02_PrisonStyle02_Standard = new PrefabGUID(-335563583); public static readonly PrefabGUID TM_Castle_Wall_Entrance_Center_Stone01 = new PrefabGUID(1451022870); public static readonly PrefabGUID TM_Castle_Wall_Invisible = new PrefabGUID(1987149974); public static readonly PrefabGUID TM_Castle_Wall_Pillar_Invisible = new PrefabGUID(-871263573); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood = new PrefabGUID(792289367); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood_Entrance = new PrefabGUID(-1293632412); public static readonly PrefabGUID TM_Castle_Wall_Tier01_Wood_Pillar = new PrefabGUID(1639432090); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone = new PrefabGUID(1909288154); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Entrance = new PrefabGUID(728150320); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceCrown = new PrefabGUID(-251630856); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide = new PrefabGUID(996421136); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide_Left = new PrefabGUID(1960255814); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_EntranceWide_Right = new PrefabGUID(-2018964383); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Pillar = new PrefabGUID(1506730526); public static readonly PrefabGUID TM_Castle_Wall_Tier02_Stone_Window = new PrefabGUID(-764944520); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_BloodRose01 = new PrefabGUID(1203605086); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Cursed01 = new PrefabGUID(-173804790); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Ivy01 = new PrefabGUID(-298809060); public static readonly PrefabGUID TM_Castle_WallDecor_Garden_Wisteria01 = new PrefabGUID(1957340591); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Bars01 = new PrefabGUID(1169104268); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue01 = new PrefabGUID(-667248554); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue02 = new PrefabGUID(472162278); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Blue03 = new PrefabGUID(1512293539); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear01 = new PrefabGUID(443701342); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear02 = new PrefabGUID(-1220798446); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Clear03 = new PrefabGUID(322611066); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable01 = new PrefabGUID(725659998); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable02 = new PrefabGUID(-289420417); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Dyable03 = new PrefabGUID(-1119007803); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green01 = new PrefabGUID(-659104170); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green02 = new PrefabGUID(-1204323601); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Green03 = new PrefabGUID(-795601069); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple01 = new PrefabGUID(-729261826); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple02 = new PrefabGUID(1066937682); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Purple03 = new PrefabGUID(-1252378669); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue01 = new PrefabGUID(-453210601); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue02 = new PrefabGUID(-2028788906); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window_Skyblue03 = new PrefabGUID(-676131283); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_GloomrotDLC01 = new PrefabGUID(-1218750780); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_Halloween01 = new PrefabGUID(1887813312); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK01 = new PrefabGUID(-1805858799); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK02 = new PrefabGUID(-1938065854); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_ProjectK03 = new PrefabGUID(886525362); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_RoyalDLC01 = new PrefabGUID(-1167127551); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_RoyalDLC02 = new PrefabGUID(-194316523); public static readonly PrefabGUID TM_Castle_WallDecor_Gothic_Window01_StrongbladeDLC01 = new PrefabGUID(1524360644); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_01 = new PrefabGUID(-1307228368); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_02 = new PrefabGUID(1459252359); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_03 = new PrefabGUID(6059030); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_05 = new PrefabGUID(-103770213); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_07 = new PrefabGUID(625751737); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_08 = new PrefabGUID(118962921); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_09 = new PrefabGUID(-42098265); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_10 = new PrefabGUID(-1745893180); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_11 = new PrefabGUID(1452813388); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_12 = new PrefabGUID(1148566153); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_13 = new PrefabGUID(-874388056); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_14 = new PrefabGUID(-896398724); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_15 = new PrefabGUID(-1207990853); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_16 = new PrefabGUID(-1751512097); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_17 = new PrefabGUID(962358103); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_19 = new PrefabGUID(760787907); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_20 = new PrefabGUID(1234406413); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_21 = new PrefabGUID(1333571465); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_22 = new PrefabGUID(-674555145); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_23 = new PrefabGUID(-1181979524); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_27 = new PrefabGUID(800326898); public static readonly PrefabGUID TM_Castle_WallDecor_Horizontal_Painting_28 = new PrefabGUID(-1442212690); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror01 = new PrefabGUID(1178448608); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror02 = new PrefabGUID(-1556169800); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror03 = new PrefabGUID(-1193732670); public static readonly PrefabGUID TM_Castle_WallDecor_Mirrors_Mirror04 = new PrefabGUID(-1375980003); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol01 = new PrefabGUID(464203925); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol02 = new PrefabGUID(-2049392252); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_Symbol03 = new PrefabGUID(-2085364677); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner01 = new PrefabGUID(1731550316); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner02 = new PrefabGUID(562906620); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_CoatOfArms_WallBanner03 = new PrefabGUID(-614163586); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_DriedFlowers01 = new PrefabGUID(1238138229); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_DriedFlowers02 = new PrefabGUID(369925576); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_Stable_WallProps01 = new PrefabGUID(1609638790); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_StrongbladeDLC_WallFountain01 = new PrefabGUID(-2080018629); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_TrophySkull01 = new PrefabGUID(-509538861); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WallTools01 = new PrefabGUID(-2108225406); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WallTools02 = new PrefabGUID(183821441); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament01 = new PrefabGUID(1766219278); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament02 = new PrefabGUID(-777333175); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament03 = new PrefabGUID(-557407971); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament04 = new PrefabGUID(-24347868); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament05 = new PrefabGUID(-2037044181); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament06 = new PrefabGUID(1517094056); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament07 = new PrefabGUID(416779558); public static readonly PrefabGUID TM_Castle_WallDecor_Misc_WeaponOrnament08 = new PrefabGUID(-255512362); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_01 = new PrefabGUID(-265936608); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_02 = new PrefabGUID(-457497939); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_03 = new PrefabGUID(-877164120); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_04 = new PrefabGUID(-1770486397); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_05 = new PrefabGUID(1104397231); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_06 = new PrefabGUID(-637480316); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_07 = new PrefabGUID(621107396); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_08 = new PrefabGUID(-80712975); public static readonly PrefabGUID TM_Castle_WallDecor_Oval_Painting_09 = new PrefabGUID(790955618); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_01 = new PrefabGUID(1549709004); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_02 = new PrefabGUID(-1105873872); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_03 = new PrefabGUID(1235438962); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_04 = new PrefabGUID(-2073893355); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_05 = new PrefabGUID(620046867); public static readonly PrefabGUID TM_Castle_WallDecor_ProjectK_Painting_06 = new PrefabGUID(209794964); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf01 = new PrefabGUID(-55125931); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf02 = new PrefabGUID(-1759419888); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf03 = new PrefabGUID(1648986010); public static readonly PrefabGUID TM_Castle_WallDecor_Shelves_Shelf04 = new PrefabGUID(-993266118); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_01 = new PrefabGUID(1125316242); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_02 = new PrefabGUID(622570691); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_03 = new PrefabGUID(1349599249); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_06 = new PrefabGUID(-1761226177); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_07 = new PrefabGUID(2119591728); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_08 = new PrefabGUID(687516047); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_09 = new PrefabGUID(-364590536); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_10 = new PrefabGUID(175786489); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_11 = new PrefabGUID(1237080090); public static readonly PrefabGUID TM_Castle_WallDecor_Square_Painting_12 = new PrefabGUID(1361398761); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_01 = new PrefabGUID(2032410610); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_02 = new PrefabGUID(-1458092673); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_03 = new PrefabGUID(2080830789); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_04 = new PrefabGUID(792422254); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_05 = new PrefabGUID(1286490723); public static readonly PrefabGUID TM_Castle_WallDecor_StrongbladeDLC01_Painting_06 = new PrefabGUID(142999579); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_01 = new PrefabGUID(2146556248); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_02 = new PrefabGUID(-1001786463); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_03 = new PrefabGUID(1048605404); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_04 = new PrefabGUID(1386044340); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_05 = new PrefabGUID(-954911330); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_06 = new PrefabGUID(-1683005611); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_07 = new PrefabGUID(-945436353); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_08 = new PrefabGUID(238986012); public static readonly PrefabGUID TM_Castle_WallDecor_Vertical_Painting_09 = new PrefabGUID(741508302); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Black02 = new PrefabGUID(-1501439420); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Burgundy01 = new PrefabGUID(231309079); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Burgundy02 = new PrefabGUID(1606211486); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Cobalt01 = new PrefabGUID(-422405678); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Cobalt02 = new PrefabGUID(12749038); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable01 = new PrefabGUID(-1177431120); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable02 = new PrefabGUID(-1229482665); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable03 = new PrefabGUID(-984791408); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Dyable04 = new PrefabGUID(-1969049484); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Green01 = new PrefabGUID(1864414502); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Green02 = new PrefabGUID(990866755); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Halloween01 = new PrefabGUID(271242862); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Ivory01 = new PrefabGUID(-567222601); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Ivory02 = new PrefabGUID(-780805196); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Purple01 = new PrefabGUID(2083352962); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_Purple02 = new PrefabGUID(1867773052); public static readonly PrefabGUID TM_Castle_WallDecor_WallCurtain_StrongbladeDLC01 = new PrefabGUID(1959531938); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_BloodRose01 = new PrefabGUID(-153992684); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Cursed01 = new PrefabGUID(692934651); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Ivy01 = new PrefabGUID(470275151); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Ivy02 = new PrefabGUID(809118249); public static readonly PrefabGUID TM_Castle_WallDecor_Window_Garden_Wisteria01 = new PrefabGUID(17765511); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Burgundy01 = new PrefabGUID(-1943675284); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Burgundy02 = new PrefabGUID(1577175893); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Cobalt01 = new PrefabGUID(1673999068); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Cobalt02 = new PrefabGUID(1638424638); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable01 = new PrefabGUID(1067847850); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable02 = new PrefabGUID(2076807891); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable03 = new PrefabGUID(214563375); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Dyable04 = new PrefabGUID(636765323); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Green01 = new PrefabGUID(593603087); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Green02 = new PrefabGUID(1489965429); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Halloween01 = new PrefabGUID(-1073349521); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Ivory01 = new PrefabGUID(-1293253763); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Ivory02 = new PrefabGUID(-456871310); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Purple01 = new PrefabGUID(-887526082); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_Purple02 = new PrefabGUID(373906916); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC01 = new PrefabGUID(-1320180911); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC02 = new PrefabGUID(1802534145); public static readonly PrefabGUID TM_Castle_WallDecor_WindowCurtains_StrongbladeDLC03 = new PrefabGUID(-513302771); public static readonly PrefabGUID TM_Castle_Window_Hatches_Gothic01 = new PrefabGUID(-1771014048); public static readonly PrefabGUID TM_CastleOuterWalls_Gate01 = new PrefabGUID(-826211390); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins_Gate01 = new PrefabGUID(1455390331); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins01 = new PrefabGUID(-1236321910); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins02 = new PrefabGUID(-1788250707); public static readonly PrefabGUID TM_CastleOuterWalls_Ruins03 = new PrefabGUID(979674153); public static readonly PrefabGUID TM_CastleOuterWalls_Towerl01 = new PrefabGUID(754211521); public static readonly PrefabGUID TM_CastleOuterWalls_Wall01 = new PrefabGUID(776261229); public static readonly PrefabGUID TM_CastleRoof_Type0 = new PrefabGUID(-1956506780); public static readonly PrefabGUID TM_CastleRoof_Type1 = new PrefabGUID(-439480776); public static readonly PrefabGUID TM_CastleRoof_Type10 = new PrefabGUID(-1044006992); public static readonly PrefabGUID TM_CastleRoof_Type11 = new PrefabGUID(-1126102767); public static readonly PrefabGUID TM_CastleRoof_Type12 = new PrefabGUID(-1870366883); public static readonly PrefabGUID TM_CastleRoof_Type13 = new PrefabGUID(-1380888668); public static readonly PrefabGUID TM_CastleRoof_Type14 = new PrefabGUID(618518549); public static readonly PrefabGUID TM_CastleRoof_Type2 = new PrefabGUID(1832119701); public static readonly PrefabGUID TM_CastleRoof_Type3 = new PrefabGUID(-717409229); public static readonly PrefabGUID TM_CastleRoof_Type4 = new PrefabGUID(1539285846); public static readonly PrefabGUID TM_CastleRoof_Type5 = new PrefabGUID(1134990599); public static readonly PrefabGUID TM_CastleRoof_Type6 = new PrefabGUID(1726877252); public static readonly PrefabGUID TM_CastleRoof_Type7 = new PrefabGUID(-1160601856); public static readonly PrefabGUID TM_CastleRoof_Type8 = new PrefabGUID(-1082227493); public static readonly PrefabGUID TM_CastleRoof_Type9 = new PrefabGUID(-17628407); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard01 = new PrefabGUID(-1757502016); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard02 = new PrefabGUID(-1501752689); public static readonly PrefabGUID TM_CastleRuins_Entrance_Standard03 = new PrefabGUID(-27583633); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken01 = new PrefabGUID(62866248); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken02 = new PrefabGUID(-721642257); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken03 = new PrefabGUID(-624959497); public static readonly PrefabGUID TM_CastleRuins_Pillar_Broken04 = new PrefabGUID(-1328001445); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard01 = new PrefabGUID(132628738); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard02 = new PrefabGUID(-47050655); public static readonly PrefabGUID TM_CastleRuins_Pillar_Standard03 = new PrefabGUID(260871776); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard01 = new PrefabGUID(231837690); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard02 = new PrefabGUID(1141487055); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard03 = new PrefabGUID(799957439); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard04 = new PrefabGUID(-542071737); public static readonly PrefabGUID TM_CastleRuins_Wall_Standard05 = new PrefabGUID(-2089286946); public static readonly PrefabGUID TM_Catacomb_Brazier01 = new PrefabGUID(-587816307); public static readonly PrefabGUID TM_Catacomb_Coffinattachment01 = new PrefabGUID(1495463833); public static readonly PrefabGUID TM_Catacomb_CoffinProp01 = new PrefabGUID(-1459035007); public static readonly PrefabGUID TM_Catacomb_CoffinProp02 = new PrefabGUID(406178807); public static readonly PrefabGUID TM_Catacomb_CoffinProp03 = new PrefabGUID(-1242940272); public static readonly PrefabGUID TM_Catacomb_CoffinProp04 = new PrefabGUID(-184355602); public static readonly PrefabGUID TM_Catacomb_Pillar01 = new PrefabGUID(-634654736); public static readonly PrefabGUID TM_Catacomb_Pillar02 = new PrefabGUID(1617839271); public static readonly PrefabGUID TM_Catacomb_Pillar03_Tall = new PrefabGUID(762246079); public static readonly PrefabGUID TM_Catacomb_Pillar04_Tall = new PrefabGUID(1424697561); public static readonly PrefabGUID TM_Catacomb_PillarDebris01 = new PrefabGUID(-922106784); public static readonly PrefabGUID TM_Catacomb_PillarDebris02 = new PrefabGUID(2015570172); public static readonly PrefabGUID TM_Catacomb_PillarDebris03 = new PrefabGUID(181284634); public static readonly PrefabGUID TM_Cemetery_Grave_01_Breakable = new PrefabGUID(-1327977623); public static readonly PrefabGUID TM_Cemetery_Grave_05_Breakable = new PrefabGUID(1626987016); public static readonly PrefabGUID TM_Cemetery_Grave_06_Breakable = new PrefabGUID(-2085349570); public static readonly PrefabGUID TM_Cemetery_Grave_Marker_02SmallBreakable = new PrefabGUID(128857433); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_01a = new PrefabGUID(-581137507); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_01b = new PrefabGUID(735670909); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02a = new PrefabGUID(-1142030796); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02b = new PrefabGUID(143822984); public static readonly PrefabGUID TM_Cemetery_Grave_Pile_02b_MicroPOI = new PrefabGUID(-1317416404); public static readonly PrefabGUID TM_Cemetery_Grave_Site_01_Breakable = new PrefabGUID(1993661726); public static readonly PrefabGUID TM_Cemetery_Gravestone_01_Breakable = new PrefabGUID(1160077614); public static readonly PrefabGUID TM_Cemetery_Gravestone_02_Breakable = new PrefabGUID(-1225683233); public static readonly PrefabGUID TM_Cemetery_Gravestone_04_Breakable = new PrefabGUID(1224058242); public static readonly PrefabGUID TM_Cemetery_Gravestone_05_Breakable = new PrefabGUID(-1836417921); public static readonly PrefabGUID TM_Cemetery_Gravestone_07_Breakable = new PrefabGUID(-190837872); public static readonly PrefabGUID TM_Cemetery_Gravestone_08_Breakable = new PrefabGUID(112652299); public static readonly PrefabGUID TM_Cemetery_Gravestone_09_Breakable = new PrefabGUID(803782640); public static readonly PrefabGUID TM_Cemetery_Gravestone_10_Breakable = new PrefabGUID(-1021715982); public static readonly PrefabGUID TM_Cemetery_Gravestone_11_Breakable = new PrefabGUID(-1637044551); public static readonly PrefabGUID TM_Cemetery_Gravestone_12_Breakable = new PrefabGUID(91027361); public static readonly PrefabGUID TM_Cemetery_Gravestone_18_Breakable = new PrefabGUID(1862779064); public static readonly PrefabGUID TM_Cemetery_Gravestone_34_Breakable = new PrefabGUID(-1578313731); public static readonly PrefabGUID TM_Cemetery_Statue_02SmallBreakable = new PrefabGUID(-735916219); public static readonly PrefabGUID TM_Cemetery_Statue_07SmallBreakable = new PrefabGUID(1260753221); public static readonly PrefabGUID TM_Cemetery_Statue_11SmallBreakable = new PrefabGUID(-1905053090); public static readonly PrefabGUID TM_Cemetery_Statue_13SmallBreakable = new PrefabGUID(2807987); public static readonly PrefabGUID TM_Cemetery_Statue_22SmallBreakable = new PrefabGUID(-982055649); public static readonly PrefabGUID TM_Cherry_01_Stage0 = new PrefabGUID(401210727); public static readonly PrefabGUID TM_Cherry_01_Stage0_Stump = new PrefabGUID(1819209241); public static readonly PrefabGUID TM_Cherry_01_Stage1 = new PrefabGUID(-620852834); public static readonly PrefabGUID TM_Cherry_01_Stage1_Stump = new PrefabGUID(-724490694); public static readonly PrefabGUID TM_Cherry_02_Stage0 = new PrefabGUID(-1547037058); public static readonly PrefabGUID TM_Cherry_02_Stage0_Stump = new PrefabGUID(1680753917); public static readonly PrefabGUID TM_Cherry_02_Stage1 = new PrefabGUID(276797823); public static readonly PrefabGUID TM_Cherry_02_Stage1_Stump = new PrefabGUID(1675693120); public static readonly PrefabGUID TM_Cherry_Sapling = new PrefabGUID(1233683594); public static readonly PrefabGUID TM_Cherry_White_01_Stage0 = new PrefabGUID(-305053695); public static readonly PrefabGUID TM_Cherry_White_01_Stage0_Stump = new PrefabGUID(1373012879); public static readonly PrefabGUID TM_Cherry_White_01_Stage1 = new PrefabGUID(-826509790); public static readonly PrefabGUID TM_Cherry_White_01_Stage1_Stump = new PrefabGUID(-538818564); public static readonly PrefabGUID TM_Cherry_White_02_Stage0 = new PrefabGUID(651255593); public static readonly PrefabGUID TM_Cherry_White_02_Stage0_Stump = new PrefabGUID(-463874168); public static readonly PrefabGUID TM_Cherry_White_02_Stage1 = new PrefabGUID(932401419); public static readonly PrefabGUID TM_Cherry_White_02_Stage1_Stump = new PrefabGUID(-545088067); public static readonly PrefabGUID TM_Cherry_White_Sapling = new PrefabGUID(-1090931508); public static readonly PrefabGUID TM_Church_Cupboard_01_Empty = new PrefabGUID(-1858342224); public static readonly PrefabGUID TM_Church_Cupboard_01_Full = new PrefabGUID(-883234955); public static readonly PrefabGUID TM_Church_Fence_01 = new PrefabGUID(367317768); public static readonly PrefabGUID TM_Church_Fence_02 = new PrefabGUID(1095636704); public static readonly PrefabGUID TM_Church_Fence_03 = new PrefabGUID(493506713); public static readonly PrefabGUID TM_Church_Podium_01 = new PrefabGUID(1035503083); public static readonly PrefabGUID TM_Church_WoodenFence_01_Fence = new PrefabGUID(-126275993); public static readonly PrefabGUID TM_Church_WoodenFence_01_Fence_Broken = new PrefabGUID(-1246954058); public static readonly PrefabGUID TM_Church_WoodenFencePole_01 = new PrefabGUID(1166934796); public static readonly PrefabGUID TM_Church_WoodenFencePole_01_Broken = new PrefabGUID(-1434857520); public static readonly PrefabGUID TM_ChurchBench_01 = new PrefabGUID(-1510093160); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRecovery_Icicle_01 = new PrefabGUID(-561596140); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRecovery_Icicle_01_Original = new PrefabGUID(701017812); public static readonly PrefabGUID TM_ChurchOfLight_Overseer_IceRink_Icicle_02 = new PrefabGUID(-893801146); public static readonly PrefabGUID TM_ChurchOfTheDamned_AltarBreakable01 = new PrefabGUID(1927206557); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_Big01 = new PrefabGUID(-1289903994); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_Big02_PurpleVar = new PrefabGUID(805723770); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable01 = new PrefabGUID(1839091230); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable01_PurpleVar = new PrefabGUID(-168971869); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable02 = new PrefabGUID(151670066); public static readonly PrefabGUID TM_ChurchOfTheDamned_Brazier_SmallBreakable03 = new PrefabGUID(-827602931); public static readonly PrefabGUID TM_ChurchOfTheDamned_Candleholder01 = new PrefabGUID(-1439503044); public static readonly PrefabGUID TM_ChurchOfTheDamned_Candleholder01_PurpleVar = new PrefabGUID(-1756966683); public static readonly PrefabGUID TM_ChurchOfTheDamned_DecoPillar01 = new PrefabGUID(-511076442); public static readonly PrefabGUID TM_ChurchOfTheDamned_DecoPillar02 = new PrefabGUID(-337939152); public static readonly PrefabGUID TM_ChurchOfTheDamned_Platform01 = new PrefabGUID(-103948591); public static readonly PrefabGUID TM_ChurchOfTheDamned_Statue = new PrefabGUID(1354283973); public static readonly PrefabGUID TM_Coal_01_Rubble = new PrefabGUID(346525583); public static readonly PrefabGUID TM_Coal_01_Stage0_Resource = new PrefabGUID(1132091903); public static readonly PrefabGUID TM_Coal_01_Stage1_Resource = new PrefabGUID(-61286066); public static readonly PrefabGUID TM_Coal_02_Rubble = new PrefabGUID(-362539499); public static readonly PrefabGUID TM_Coal_02_Stage0_Resource = new PrefabGUID(-341127402); public static readonly PrefabGUID TM_Coal_02_Stage1_Resource = new PrefabGUID(-1495626288); public static readonly PrefabGUID TM_Coal_03_Rubble = new PrefabGUID(-1346448204); public static readonly PrefabGUID TM_Coal_03_Stage0_Resource = new PrefabGUID(2038868968); public static readonly PrefabGUID TM_Coal_03_Stage1_Resource = new PrefabGUID(-988419979); public static readonly PrefabGUID TM_Coal_04_Rubble = new PrefabGUID(1784635848); public static readonly PrefabGUID TM_Coal_04_Stage0_Resource = new PrefabGUID(-345737372); public static readonly PrefabGUID TM_Coal_04_Stage1_Resource = new PrefabGUID(1683384544); public static readonly PrefabGUID TM_Copper_01_Rubble = new PrefabGUID(-913263584); public static readonly PrefabGUID TM_Copper_01_Stage0_Resource = new PrefabGUID(1692326589); public static readonly PrefabGUID TM_Copper_01_Stage1_Resource = new PrefabGUID(-862961691); public static readonly PrefabGUID TM_Copper_02_Rubble = new PrefabGUID(-1695950018); public static readonly PrefabGUID TM_Copper_02_Stage0_Resource = new PrefabGUID(198734608); public static readonly PrefabGUID TM_Copper_02_Stage1_Resource = new PrefabGUID(1668679315); public static readonly PrefabGUID TM_Copper_03_Rubble = new PrefabGUID(-1761197872); public static readonly PrefabGUID TM_Copper_03_Stage0_Resource = new PrefabGUID(-1044508839); public static readonly PrefabGUID TM_Copper_03_Stage1_Resource = new PrefabGUID(-1307814655); public static readonly PrefabGUID TM_Copper_04_Rubble = new PrefabGUID(2037947548); public static readonly PrefabGUID TM_Copper_04_Stage0_Resource = new PrefabGUID(347127213); public static readonly PrefabGUID TM_Copper_04_Stage1_Resource = new PrefabGUID(1558329254); public static readonly PrefabGUID TM_CopperBig_01_Rubble = new PrefabGUID(1409691562); public static readonly PrefabGUID TM_CopperBig_01_Stage0_Resource = new PrefabGUID(526572022); public static readonly PrefabGUID TM_CopperBig_01_Stage1_Resource = new PrefabGUID(-2008916349); public static readonly PrefabGUID TM_CopperMedium_01_Rubble = new PrefabGUID(-114904817); public static readonly PrefabGUID TM_CopperMedium_01_Stage0_Resource = new PrefabGUID(-1774847334); public static readonly PrefabGUID TM_CopperMedium_01_Stage1_Resource = new PrefabGUID(539107720); public static readonly PrefabGUID TM_Corruption_Zone_Area01 = new PrefabGUID(-1435765545); public static readonly PrefabGUID TM_CottonPickup_01 = new PrefabGUID(-1030372628); public static readonly PrefabGUID TM_CottonPickup_01_Harvested = new PrefabGUID(-2002185447); public static readonly PrefabGUID TM_CottonPickup_02 = new PrefabGUID(247769206); public static readonly PrefabGUID TM_CottonPickup_02_Harvested = new PrefabGUID(1851913647); public static readonly PrefabGUID TM_CottonPickup_03 = new PrefabGUID(1049924113); public static readonly PrefabGUID TM_CottonPickup_03_Harvested = new PrefabGUID(-742063356); public static readonly PrefabGUID TM_CraftingStation_AlchemyLab_Small = new PrefabGUID(181938440); public static readonly PrefabGUID TM_CraftingStation_Altar_Frost = new PrefabGUID(-609878016); public static readonly PrefabGUID TM_CraftingStation_Altar_Spectral = new PrefabGUID(-64110296); public static readonly PrefabGUID TM_CraftingStation_Altar_Unholy = new PrefabGUID(-676962218); public static readonly PrefabGUID TM_CraftingStation_AncestralForge = new PrefabGUID(48521126); public static readonly PrefabGUID TM_CraftingStation_Anvil = new PrefabGUID(-437790980); public static readonly PrefabGUID TM_CraftingStation_ArtisansCorner = new PrefabGUID(1121480632); public static readonly PrefabGUID TM_CraftingStation_ArtisanTable = new PrefabGUID(-1718710437); public static readonly PrefabGUID TM_CraftingStation_BloodBank = new PrefabGUID(-452732692); public static readonly PrefabGUID TM_CraftingStation_BloodMixer = new PrefabGUID(-969931747); public static readonly PrefabGUID TM_CraftingStation_FusionForge = new PrefabGUID(-1286344051); public static readonly PrefabGUID TM_CraftingStation_JewelcraftingTable = new PrefabGUID(508953830); public static readonly PrefabGUID TM_CraftingStation_Leatherworking = new PrefabGUID(1779320855); public static readonly PrefabGUID TM_CraftingStation_MetalworkStation = new PrefabGUID(2014944075); public static readonly PrefabGUID TM_CraftingStation_SimpleCraftingBench = new PrefabGUID(-1107784271); public static readonly PrefabGUID TM_CraftingStation_Smithy = new PrefabGUID(-1840926436); public static readonly PrefabGUID TM_CraftingStation_Stables = new PrefabGUID(472278220); public static readonly PrefabGUID TM_CraftingStation_TailorBench = new PrefabGUID(-952755594); public static readonly PrefabGUID TM_CraftingStation_WoodworkingBench = new PrefabGUID(-332123372); public static readonly PrefabGUID TM_Crystal_01_Rubble = new PrefabGUID(1137840357); public static readonly PrefabGUID TM_Crystal_01_Stage0_Resource = new PrefabGUID(-1239407936); public static readonly PrefabGUID TM_Crystal_01_Stage1_Resource = new PrefabGUID(-896634608); public static readonly PrefabGUID TM_Cursed_Zone_Area01 = new PrefabGUID(-923189082); public static readonly PrefabGUID TM_CursedForest_AltarLantern_01 = new PrefabGUID(-465496166); public static readonly PrefabGUID TM_CursedForest_AltarLantern_02 = new PrefabGUID(-446115208); public static readonly PrefabGUID TM_CursedForest_AltarLantern_03 = new PrefabGUID(476032291); public static readonly PrefabGUID TM_CursedForest_AltarStub01 = new PrefabGUID(1729978517); public static readonly PrefabGUID TM_CursedRotten_Sapling = new PrefabGUID(1743733023); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage0 = new PrefabGUID(-986240728); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage0_Stump = new PrefabGUID(155898432); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage1 = new PrefabGUID(-1491394415); public static readonly PrefabGUID TM_CursedRottenStub_01_Stage1_Stump = new PrefabGUID(1600730613); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage0 = new PrefabGUID(-748397710); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage0_Stump = new PrefabGUID(-271302331); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage1 = new PrefabGUID(776487496); public static readonly PrefabGUID TM_CursedRottenStub_02_Stage1_Stump = new PrefabGUID(1648464672); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage0 = new PrefabGUID(-1633512436); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage0_Stump = new PrefabGUID(1338204691); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage1 = new PrefabGUID(454273628); public static readonly PrefabGUID TM_CursedRottenStub_03_Stage1_Stump = new PrefabGUID(1083326962); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage0 = new PrefabGUID(-787447326); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage0_Stump = new PrefabGUID(1184050281); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage1 = new PrefabGUID(1303999828); public static readonly PrefabGUID TM_CursedRottenStub_04_Stage1_Stump = new PrefabGUID(23696821); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage0 = new PrefabGUID(-2001741971); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage0_Stump = new PrefabGUID(-276630090); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage1 = new PrefabGUID(1602415686); public static readonly PrefabGUID TM_CursedRottenStub_05_Stage1_Stump = new PrefabGUID(661965041); public static readonly PrefabGUID TM_CursedTree_01_Stage0 = new PrefabGUID(1648247733); public static readonly PrefabGUID TM_CursedTree_01_Stage0_Stump = new PrefabGUID(-1672005837); public static readonly PrefabGUID TM_CursedTree_01_Stage1 = new PrefabGUID(-1675877895); public static readonly PrefabGUID TM_CursedTree_01_Stage1_Stump = new PrefabGUID(405239541); public static readonly PrefabGUID TM_CursedTree_02_Stage0 = new PrefabGUID(1028886413); public static readonly PrefabGUID TM_CursedTree_02_Stage0_Stump = new PrefabGUID(783340522); public static readonly PrefabGUID TM_CursedTree_02_Stage1 = new PrefabGUID(-1560937541); public static readonly PrefabGUID TM_CursedTree_02_Stage1_Stump = new PrefabGUID(-1991149312); public static readonly PrefabGUID TM_CursedTree_Sapling = new PrefabGUID(408330791); public static readonly PrefabGUID TM_Customization_Mirror_Cabal_01 = new PrefabGUID(1711288798); public static readonly PrefabGUID TM_Customization_Mirror_Gothic_01 = new PrefabGUID(-1400505344); public static readonly PrefabGUID TM_Customization_Mirror_Halloween_01 = new PrefabGUID(-1633556205); public static readonly PrefabGUID TM_Cypress_Sapling = new PrefabGUID(1125832487); public static readonly PrefabGUID TM_Cypress01_Large = new PrefabGUID(-1172828775); public static readonly PrefabGUID TM_Cypress01_Large_Stump = new PrefabGUID(-1072468618); public static readonly PrefabGUID TM_Cypress01_Small = new PrefabGUID(-1082605129); public static readonly PrefabGUID TM_Cypress01_Small_Stump = new PrefabGUID(-1881470577); public static readonly PrefabGUID TM_Cypress02_Large = new PrefabGUID(-411688238); public static readonly PrefabGUID TM_Cypress02_Large_Stump = new PrefabGUID(-1139842396); public static readonly PrefabGUID TM_Cypress02_Small = new PrefabGUID(-2060202486); public static readonly PrefabGUID TM_Cypress02_Small_Stump = new PrefabGUID(1090053579); public static readonly PrefabGUID TM_Cypress03_Large = new PrefabGUID(-677563061); public static readonly PrefabGUID TM_Cypress03_Large_Stump = new PrefabGUID(-594078837); public static readonly PrefabGUID TM_Cypress03_Small = new PrefabGUID(1830820819); public static readonly PrefabGUID TM_Cypress03_Small_Stump = new PrefabGUID(-1928593350); public static readonly PrefabGUID TM_CypressAutum_Sapling = new PrefabGUID(105035259); public static readonly PrefabGUID TM_CypressAutum01_Large = new PrefabGUID(-1965759651); public static readonly PrefabGUID TM_CypressAutum01_Large_Stump = new PrefabGUID(2058084976); public static readonly PrefabGUID TM_CypressAutum01_Small = new PrefabGUID(2099473218); public static readonly PrefabGUID TM_CypressAutum01_Small_Stump = new PrefabGUID(784316127); public static readonly PrefabGUID TM_CypressAutum02_Large = new PrefabGUID(649947065); public static readonly PrefabGUID TM_CypressAutum02_Large_Stump = new PrefabGUID(-1177199382); public static readonly PrefabGUID TM_CypressAutum02_Small = new PrefabGUID(1542809612); public static readonly PrefabGUID TM_CypressAutum02_Small_Stump = new PrefabGUID(1916420307); public static readonly PrefabGUID TM_CypressAutum03_Large = new PrefabGUID(1945365298); public static readonly PrefabGUID TM_CypressAutum03_Large_Stump = new PrefabGUID(738566262); public static readonly PrefabGUID TM_CypressAutum03_Small = new PrefabGUID(-459330141); public static readonly PrefabGUID TM_CypressAutum03_Small_Stump = new PrefabGUID(-640488987); public static readonly PrefabGUID TM_DeadSpooky_01_Stage0 = new PrefabGUID(-84093045); public static readonly PrefabGUID TM_DeadSpooky_01_Stage0_Stump = new PrefabGUID(-591112747); public static readonly PrefabGUID TM_DeadSpooky_01_Stage1 = new PrefabGUID(-1181920502); public static readonly PrefabGUID TM_DeadSpooky_01_Stage1_Stump = new PrefabGUID(-1631450141); public static readonly PrefabGUID TM_DeadSpooky_02_Stage0 = new PrefabGUID(1749846017); public static readonly PrefabGUID TM_DeadSpooky_02_Stage0_Stump = new PrefabGUID(-804379388); public static readonly PrefabGUID TM_DeadSpooky_02_Stage1 = new PrefabGUID(94024248); public static readonly PrefabGUID TM_DeadSpooky_02_Stage1_Stump = new PrefabGUID(-284504908); public static readonly PrefabGUID TM_DeadSpooky_03_Stage0 = new PrefabGUID(1143574029); public static readonly PrefabGUID TM_DeadSpooky_03_Stage0_Stump = new PrefabGUID(-28679345); public static readonly PrefabGUID TM_DeadSpooky_03_Stage1 = new PrefabGUID(-97981069); public static readonly PrefabGUID TM_DeadSpooky_03_Stage1_Stump = new PrefabGUID(699401289); public static readonly PrefabGUID TM_DeadSpooky_04_Stage0 = new PrefabGUID(2096441022); public static readonly PrefabGUID TM_DeadSpooky_04_Stage0_Stump = new PrefabGUID(-410126265); public static readonly PrefabGUID TM_DeadSpooky_04_Stage1 = new PrefabGUID(413943116); public static readonly PrefabGUID TM_DeadSpooky_04_Stage1_Stump = new PrefabGUID(-325912346); public static readonly PrefabGUID TM_DeadSpooky_Sapling = new PrefabGUID(1952466279); public static readonly PrefabGUID TM_DeadStump_01_Stage0 = new PrefabGUID(1033696554); public static readonly PrefabGUID TM_DeadStump_01_Stage0_Stump = new PrefabGUID(-540931786); public static readonly PrefabGUID TM_DeadStump_01_Stage1 = new PrefabGUID(-1444946765); public static readonly PrefabGUID TM_DeadStump_01_Stage1_Stump = new PrefabGUID(872823277); public static readonly PrefabGUID TM_DeadStump_02_Stage0 = new PrefabGUID(-1954747176); public static readonly PrefabGUID TM_DeadStump_02_Stage0_Stump = new PrefabGUID(-549750388); public static readonly PrefabGUID TM_DeadStump_02_Stage1 = new PrefabGUID(-497671168); public static readonly PrefabGUID TM_DeadStump_02_Stage1_Stump = new PrefabGUID(771210306); public static readonly PrefabGUID TM_DeadStump_03_Stage0 = new PrefabGUID(-1662368050); public static readonly PrefabGUID TM_DeadStump_03_Stage0_Stump = new PrefabGUID(-223426219); public static readonly PrefabGUID TM_DeadStump_03_Stage1 = new PrefabGUID(-365578071); public static readonly PrefabGUID TM_DeadStump_03_Stage1_Stump = new PrefabGUID(2078391444); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage0 = new PrefabGUID(-683043764); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage0_Stump = new PrefabGUID(337583994); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage1 = new PrefabGUID(514636229); public static readonly PrefabGUID TM_DeadStump_CursedForest_01_Stage1_Stump = new PrefabGUID(-313495302); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage0 = new PrefabGUID(2009402570); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage0_Stump = new PrefabGUID(-1252264290); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage1 = new PrefabGUID(-1430987741); public static readonly PrefabGUID TM_DeadStump_CursedForest_02_Stage1_Stump = new PrefabGUID(463023447); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage0 = new PrefabGUID(-19455682); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage0_Stump = new PrefabGUID(327056959); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage1 = new PrefabGUID(2064764291); public static readonly PrefabGUID TM_DeadStump_CursedForest_03_Stage1_Stump = new PrefabGUID(-1872754279); public static readonly PrefabGUID TM_DeadStump_CursedForest_Sapling = new PrefabGUID(1188456042); public static readonly PrefabGUID TM_DeadStump_Sapling = new PrefabGUID(1070255808); public static readonly PrefabGUID TM_Debug_EquipmentChest_Empty = new PrefabGUID(1009569231); public static readonly PrefabGUID TM_Debug_EquipmentChest_T01 = new PrefabGUID(-1927464065); public static readonly PrefabGUID TM_Debug_EquipmentChest_T02 = new PrefabGUID(1874062092); public static readonly PrefabGUID TM_Debug_EquipmentChest_T03 = new PrefabGUID(758091090); public static readonly PrefabGUID TM_Debug_EquipmentChest_T04 = new PrefabGUID(-1034898863); public static readonly PrefabGUID TM_Debug_SpellKitChest_TXX = new PrefabGUID(-1058308594); public static readonly PrefabGUID TM_Debug_UserTestChest_T01 = new PrefabGUID(-2008615383); public static readonly PrefabGUID TM_Debug_UserTestChest_T02 = new PrefabGUID(245436617); public static readonly PrefabGUID TM_Debug_UserTestChest_T04 = new PrefabGUID(582927466); public static readonly PrefabGUID TM_Debug_UserTestChest_T06 = new PrefabGUID(130141627); public static readonly PrefabGUID TM_DenseDynamicClouds_Zone_Area01 = new PrefabGUID(-1811178896); public static readonly PrefabGUID TM_Destructible_DraculasCastle_Pillar01 = new PrefabGUID(1934867279); public static readonly PrefabGUID TM_Door_IronFenceGate_01 = new PrefabGUID(214850088); public static readonly PrefabGUID TM_Dracula_DestroyedPillar01 = new PrefabGUID(-798366867); public static readonly PrefabGUID TM_Dracula_WarpRift_Entrance = new PrefabGUID(950546355); public static readonly PrefabGUID TM_Dracula_WarpRift_ExitNode = new PrefabGUID(-959575891); public static readonly PrefabGUID TM_Dracula_WarpRift_GoToDemise = new PrefabGUID(-140123614); public static readonly PrefabGUID TM_Dracula_WarpRift_LeaveFight = new PrefabGUID(1670626205); public static readonly PrefabGUID TM_DraculasCastle_Banner_Clean01 = new PrefabGUID(-970935036); public static readonly PrefabGUID TM_DraculasCastle_Banner_Clean01_Fade = new PrefabGUID(-1461096846); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin01 = new PrefabGUID(-182987790); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin02 = new PrefabGUID(-594214561); public static readonly PrefabGUID TM_DraculasCastle_Banner_Ruin03 = new PrefabGUID(1907492709); public static readonly PrefabGUID TM_DraculasCastle_Throne_Clean01 = new PrefabGUID(-151766050); public static readonly PrefabGUID TM_DraculaThroneRoom_MOCKUP = new PrefabGUID(-1203306945); public static readonly PrefabGUID TM_DryWood_01_Stage0 = new PrefabGUID(300492639); public static readonly PrefabGUID TM_DryWood_01_Stage0_Stump = new PrefabGUID(-523697868); public static readonly PrefabGUID TM_DryWood_02_Stage0 = new PrefabGUID(-782673388); public static readonly PrefabGUID TM_DryWood_02_Stage0_Stump = new PrefabGUID(1287513210); public static readonly PrefabGUID TM_DryWood_03_Stage0 = new PrefabGUID(-1909236356); public static readonly PrefabGUID TM_DryWood_03_Stage0_Stump = new PrefabGUID(-1597872396); public static readonly PrefabGUID TM_Duel_Area = new PrefabGUID(-893175652); public static readonly PrefabGUID TM_Duel_Flag = new PrefabGUID(871546629); public static readonly PrefabGUID TM_EH_EMP_Placeable_T01 = new PrefabGUID(-259301876); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel = new PrefabGUID(382870549); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel_Placeable_T01 = new PrefabGUID(-1401715476); public static readonly PrefabGUID TM_EH_Mines_ExplosiveBarrel_Placeable_T02 = new PrefabGUID(2036168659); public static readonly PrefabGUID TM_Elris_Bag_01 = new PrefabGUID(-1437395691); public static readonly PrefabGUID TM_Elris_Bag_02 = new PrefabGUID(-925821559); public static readonly PrefabGUID TM_Elris_Bag_03 = new PrefabGUID(-1391306605); public static readonly PrefabGUID TM_Elris_Bags_01 = new PrefabGUID(167350142); public static readonly PrefabGUID TM_Elris_Bed_01 = new PrefabGUID(1336704929); public static readonly PrefabGUID TM_Elris_Bench_01 = new PrefabGUID(-2003363684); public static readonly PrefabGUID TM_Elris_CookingFireplace_small01 = new PrefabGUID(1923631185); public static readonly PrefabGUID TM_Elris_CookingFireplace01 = new PrefabGUID(1795305530); public static readonly PrefabGUID TM_Elris_Fence_Broken = new PrefabGUID(1725310907); public static readonly PrefabGUID TM_Elris_Fence_Diagonal_Broken = new PrefabGUID(1929572285); public static readonly PrefabGUID TM_Elris_Fishpole_01 = new PrefabGUID(-1018613431); public static readonly PrefabGUID TM_Elris_Fishpole_02 = new PrefabGUID(876105528); public static readonly PrefabGUID TM_Elris_Hangingfish_01 = new PrefabGUID(-992142516); public static readonly PrefabGUID TM_Elris_Hidebag_01 = new PrefabGUID(1577387071); public static readonly PrefabGUID TM_Elris_RockCluster_14_Original = new PrefabGUID(-1947696681); public static readonly PrefabGUID TM_Elris_Sled01 = new PrefabGUID(677969388); public static readonly PrefabGUID TM_Elris_Sled02 = new PrefabGUID(-633597938); public static readonly PrefabGUID TM_Elris_Sled03 = new PrefabGUID(372796507); public static readonly PrefabGUID TM_Elris_Stool_01 = new PrefabGUID(-1041511902); public static readonly PrefabGUID TM_Elris_Stool_02 = new PrefabGUID(188374087); public static readonly PrefabGUID TM_Elris_Table_01 = new PrefabGUID(1082846); public static readonly PrefabGUID TM_Elris_Table_02 = new PrefabGUID(39867855); public static readonly PrefabGUID TM_Elris_Table_03 = new PrefabGUID(881930323); public static readonly PrefabGUID TM_Elris_Well_01 = new PrefabGUID(240462700); public static readonly PrefabGUID TM_Elris_WildlingFlag01 = new PrefabGUID(1051647935); public static readonly PrefabGUID TM_Elris_WildlingFlag02 = new PrefabGUID(1831814699); public static readonly PrefabGUID TM_Elris_WildlingFlag03 = new PrefabGUID(-1993182231); public static readonly PrefabGUID TM_ElrisMountain_FireAltar01 = new PrefabGUID(-122875804); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit01 = new PrefabGUID(-1985446265); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit02 = new PrefabGUID(-1644674988); public static readonly PrefabGUID TM_ElrisMountain_LargeFirePit03 = new PrefabGUID(1737841485); public static readonly PrefabGUID TM_ElrisMountain_WildlingGraveyard01 = new PrefabGUID(816386984); public static readonly PrefabGUID TM_Emery_01_Rubble = new PrefabGUID(-558033926); public static readonly PrefabGUID TM_Emery_01_Stage0_Resource = new PrefabGUID(-78152017); public static readonly PrefabGUID TM_Emery_01_Stage1_Resource = new PrefabGUID(720904076); public static readonly PrefabGUID TM_Emery_02_Rubble = new PrefabGUID(-928659757); public static readonly PrefabGUID TM_Emery_02_Stage0_Resource = new PrefabGUID(1686044871); public static readonly PrefabGUID TM_Emery_02_Stage1_Resource = new PrefabGUID(420948369); public static readonly PrefabGUID TM_Emery_03_Rubble = new PrefabGUID(1672205675); public static readonly PrefabGUID TM_Emery_03_Stage0_Resource = new PrefabGUID(262699362); public static readonly PrefabGUID TM_Emery_03_Stage1_Resource = new PrefabGUID(-382478847); public static readonly PrefabGUID TM_EmeryBig_01_Rubble = new PrefabGUID(1606524383); public static readonly PrefabGUID TM_EmeryBig_01_Stage0_Resource = new PrefabGUID(1281859402); public static readonly PrefabGUID TM_EmeryBig_01_Stage1_Resource = new PrefabGUID(-481993372); public static readonly PrefabGUID TM_EmeryMedium_01_Rubble = new PrefabGUID(-1268946559); public static readonly PrefabGUID TM_EmeryMedium_01_Stage0_Resource = new PrefabGUID(1179023414); public static readonly PrefabGUID TM_EmeryMedium_01_Stage1_Resource = new PrefabGUID(1834638218); public static readonly PrefabGUID TM_ExitGate_01 = new PrefabGUID(-394351506); public static readonly PrefabGUID TM_FarmRuin_Pillar01 = new PrefabGUID(564267843); public static readonly PrefabGUID TM_FarmRuin_Pillar02 = new PrefabGUID(-1009494057); public static readonly PrefabGUID TM_FarmRuin_Pillar03 = new PrefabGUID(-1930848471); public static readonly PrefabGUID TM_FarmRuin_Pillar04 = new PrefabGUID(-940270536); public static readonly PrefabGUID TM_FarmRuin_Pillar05 = new PrefabGUID(-551702706); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar01 = new PrefabGUID(1459668113); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar02 = new PrefabGUID(1160918953); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar03 = new PrefabGUID(626147733); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Pillar04 = new PrefabGUID(1730985692); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal01 = new PrefabGUID(403026434); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal02 = new PrefabGUID(2123099022); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal03 = new PrefabGUID(-1016136771); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall_Diagonal04 = new PrefabGUID(-1247952575); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall01 = new PrefabGUID(1470839455); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall02 = new PrefabGUID(1141784137); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall03 = new PrefabGUID(1874671041); public static readonly PrefabGUID TM_FarmRuin_SilverHills_Wall04 = new PrefabGUID(944871581); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal01 = new PrefabGUID(-200164224); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal02 = new PrefabGUID(-74306974); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal03 = new PrefabGUID(-288901931); public static readonly PrefabGUID TM_FarmRuin_Wall_Diagonal04 = new PrefabGUID(946615972); public static readonly PrefabGUID TM_FarmRuin_Wall01 = new PrefabGUID(-1008320860); public static readonly PrefabGUID TM_FarmRuin_Wall02 = new PrefabGUID(-764910472); public static readonly PrefabGUID TM_FarmRuin_Wall03 = new PrefabGUID(126822819); public static readonly PrefabGUID TM_FarmRuin_Wall04 = new PrefabGUID(-807733155); public static readonly PrefabGUID TM_FarmRuin_Wall05 = new PrefabGUID(1169196596); public static readonly PrefabGUID TM_FarmRuin_Wall06 = new PrefabGUID(210029774); public static readonly PrefabGUID TM_FarmRuin_Wall07 = new PrefabGUID(-1986127521); public static readonly PrefabGUID TM_FarmRuin_Wall08 = new PrefabGUID(-660510569); public static readonly PrefabGUID TM_FarmRuin_Wall09 = new PrefabGUID(-664009511); public static readonly PrefabGUID TM_Fence_Elris_01 = new PrefabGUID(-8537381); public static readonly PrefabGUID TM_Fence_Elris_02 = new PrefabGUID(638061504); public static readonly PrefabGUID TM_Fence_Elris_03 = new PrefabGUID(-1269847487); public static readonly PrefabGUID TM_Fence_Elris_Diagonal_01 = new PrefabGUID(195270950); public static readonly PrefabGUID TM_Fence_Elris_Diagonal_02 = new PrefabGUID(-666396801); public static readonly PrefabGUID TM_Fence_IronFence_01 = new PrefabGUID(1037949815); public static readonly PrefabGUID TM_FencePole_IronFencePole_01 = new PrefabGUID(-1399879731); public static readonly PrefabGUID TM_FineBed_01 = new PrefabGUID(163041517); public static readonly PrefabGUID TM_FineDrawers_01_Empty = new PrefabGUID(761477334); public static readonly PrefabGUID TM_FineDrawers_01_Full = new PrefabGUID(-1974200575); public static readonly PrefabGUID TM_FineIronFence_02_Fence = new PrefabGUID(-1095586593); public static readonly PrefabGUID TM_FineIronFence_02_Fence_Broken = new PrefabGUID(-899764896); public static readonly PrefabGUID TM_FineIronFenceGate_01_Door = new PrefabGUID(-824199379); public static readonly PrefabGUID TM_FineIronFenceGate_02_Door = new PrefabGUID(1526551911); public static readonly PrefabGUID TM_FineIronFencePole_02 = new PrefabGUID(2099677539); public static readonly PrefabGUID TM_FineIronFencePole_02_Broken = new PrefabGUID(1469449202); public static readonly PrefabGUID TM_FineLampPost_01 = new PrefabGUID(1618677147); public static readonly PrefabGUID TM_FineLampPost_02 = new PrefabGUID(762538977); public static readonly PrefabGUID TM_FineLampPost_03 = new PrefabGUID(-398962425); public static readonly PrefabGUID TM_FineStoneBench_01 = new PrefabGUID(1763816865); public static readonly PrefabGUID TM_FineStoneBench_01_Broken = new PrefabGUID(513551503); public static readonly PrefabGUID TM_FineTomb_01 = new PrefabGUID(-1640166222); public static readonly PrefabGUID TM_FineTomb_01_Broken = new PrefabGUID(-2045783191); public static readonly PrefabGUID TM_FineTomb_02 = new PrefabGUID(-339775330); public static readonly PrefabGUID TM_FineTomb_02_Broken = new PrefabGUID(2072843322); public static readonly PrefabGUID TM_FineTomb_03 = new PrefabGUID(-701495664); public static readonly PrefabGUID TM_FineTomb_03_Broken = new PrefabGUID(1998193698); public static readonly PrefabGUID TM_FineTomb_04 = new PrefabGUID(487554588); public static readonly PrefabGUID TM_FineTomb_04_Broken = new PrefabGUID(1636550609); public static readonly PrefabGUID TM_FineTomb_05 = new PrefabGUID(-1651245914); public static readonly PrefabGUID TM_FineTomb_05_Broken = new PrefabGUID(369456797); public static readonly PrefabGUID TM_FineTomb_06 = new PrefabGUID(-1045153505); public static readonly PrefabGUID TM_FineTomb_06_Broken = new PrefabGUID(1543021107); public static readonly PrefabGUID TM_FineTomb_07 = new PrefabGUID(-1027794280); public static readonly PrefabGUID TM_FineTomb_07_Broken = new PrefabGUID(-13129077); public static readonly PrefabGUID TM_FineTomb_08 = new PrefabGUID(1940705891); public static readonly PrefabGUID TM_FineTomb_08_Broken = new PrefabGUID(1059395634); public static readonly PrefabGUID TM_FineTombBig_01 = new PrefabGUID(215889746); public static readonly PrefabGUID TM_FineTombBig_01_Broken = new PrefabGUID(1304502946); public static readonly PrefabGUID TM_FineTombBig_02 = new PrefabGUID(-198407322); public static readonly PrefabGUID TM_FineTombBig_02_Broken = new PrefabGUID(-354238234); public static readonly PrefabGUID TM_FineTombBig_03 = new PrefabGUID(1453773191); public static readonly PrefabGUID TM_FineTombBig_03_Broken = new PrefabGUID(-883147074); public static readonly PrefabGUID TM_FineWoodenChair_01 = new PrefabGUID(-583808378); public static readonly PrefabGUID TM_FineWoodenSideTable_01 = new PrefabGUID(-189652499); public static readonly PrefabGUID TM_FineWoodenTable_01 = new PrefabGUID(-1031114114); public static readonly PrefabGUID TM_FineWoodenTable_Vineyard01 = new PrefabGUID(1848259910); public static readonly PrefabGUID TM_ForgeMaster_Barrel01 = new PrefabGUID(-1131571757); public static readonly PrefabGUID TM_ForgeMaster_Barrel02 = new PrefabGUID(1385018335); public static readonly PrefabGUID TM_ForgeMaster_Weaponrack01 = new PrefabGUID(-1865424450); public static readonly PrefabGUID TM_Fortressoflight_Altar01 = new PrefabGUID(1431434529); public static readonly PrefabGUID TM_Fortressoflight_Brazier01 = new PrefabGUID(-600276275); public static readonly PrefabGUID TM_Fortressoflight_Brazier03 = new PrefabGUID(1777636932); public static readonly PrefabGUID TM_FortressOfLight_Railing_01 = new PrefabGUID(2116494627); public static readonly PrefabGUID TM_FortressOfLight_Railing_01_Broken = new PrefabGUID(646244065); public static readonly PrefabGUID TM_FortressOfLight_Railing_01_Flipped = new PrefabGUID(-682269957); public static readonly PrefabGUID TM_FortressOfLight_Railing_02 = new PrefabGUID(2146657213); public static readonly PrefabGUID TM_FortressOfLight_Railing_03 = new PrefabGUID(-1375806908); public static readonly PrefabGUID TM_FortressOfLight_Railing_03_Flipped = new PrefabGUID(1028661646); public static readonly PrefabGUID TM_FortressOfLight_Railing_Pillar_01 = new PrefabGUID(-2046287766); public static readonly PrefabGUID TM_FortressOfLight_Railing_Pillar_Broken_01 = new PrefabGUID(-624627538); public static readonly PrefabGUID TM_Framework_SunShelter = new PrefabGUID(1065960329); public static readonly PrefabGUID TM_Gallows_Large_01 = new PrefabGUID(-1239237183); public static readonly PrefabGUID TM_Gallows_Small_01 = new PrefabGUID(-1389381036); public static readonly PrefabGUID TM_Gallows_Small_02 = new PrefabGUID(-1845783560); public static readonly PrefabGUID TM_Garlic_Zone_Area01 = new PrefabGUID(2136523022); public static readonly PrefabGUID TM_Gazebo_Alchemyboard01 = new PrefabGUID(-1930317586); public static readonly PrefabGUID TM_Gazebo_Alchemytable01 = new PrefabGUID(-1671305118); public static readonly PrefabGUID TM_Gazebo_Alchemytable02 = new PrefabGUID(2111397204); public static readonly PrefabGUID TM_GemCrude_01_Rubble = new PrefabGUID(-1890701523); public static readonly PrefabGUID TM_GemCrude_01_Stage0_Resource = new PrefabGUID(-1069591701); public static readonly PrefabGUID TM_GemCrude_01_Stage1_Resource = new PrefabGUID(311396498); public static readonly PrefabGUID TM_GemFlawless_01_Rubble = new PrefabGUID(-166211366); public static readonly PrefabGUID TM_GemFlawless_01_Stage0_Resource = new PrefabGUID(1761375763); public static readonly PrefabGUID TM_GemFlawless_01_Stage1_Resource = new PrefabGUID(-1293752476); public static readonly PrefabGUID TM_GemRegular_01_Rubble = new PrefabGUID(2097157446); public static readonly PrefabGUID TM_GemRegular_01_Stage0_Resource = new PrefabGUID(-1486510754); public static readonly PrefabGUID TM_GemRegular_01_Stage1_Resource = new PrefabGUID(1842704508); public static readonly PrefabGUID TM_General_Entrance_Gate = new PrefabGUID(200761932); public static readonly PrefabGUID TM_Geomancer_RockSlam_Object = new PrefabGUID(1322424290); public static readonly PrefabGUID TM_GhostCrate_01 = new PrefabGUID(-919230492); public static readonly PrefabGUID TM_GhostCrate_02 = new PrefabGUID(1653638891); public static readonly PrefabGUID TM_GhostCrateLarge_01 = new PrefabGUID(-1972516446); public static readonly PrefabGUID TM_GhostCrateLarge_02 = new PrefabGUID(-992784199); public static readonly PrefabGUID TM_GhostCrystal_01_Rubble = new PrefabGUID(914118286); public static readonly PrefabGUID TM_GhostCrystal_01_Stage0_Resource = new PrefabGUID(-90615335); public static readonly PrefabGUID TM_GhostCrystal_01_Stage1_Resource = new PrefabGUID(-223339940); public static readonly PrefabGUID TM_GhostCrystal_02_Rubble = new PrefabGUID(1089598643); public static readonly PrefabGUID TM_GhostCrystal_02_Stage0_Resource = new PrefabGUID(-869713104); public static readonly PrefabGUID TM_GhostCrystal_02_Stage1_Resource = new PrefabGUID(-1367218098); public static readonly PrefabGUID TM_GhostCrystal_03_Rubble = new PrefabGUID(-1606368536); public static readonly PrefabGUID TM_GhostCrystal_03_Stage0_Resource = new PrefabGUID(1043824874); public static readonly PrefabGUID TM_GhostCrystal_03_Stage1_Resource = new PrefabGUID(539822787); public static readonly PrefabGUID TM_GhostHouse_Drawers_01_Empty = new PrefabGUID(-1585266061); public static readonly PrefabGUID TM_GhostHouse_Drawers_01_Full = new PrefabGUID(-1005494041); public static readonly PrefabGUID TM_GhostHouse_Drawers_02_Empty = new PrefabGUID(30902388); public static readonly PrefabGUID TM_GhostHouse_Drawers_02_Full = new PrefabGUID(1410544856); public static readonly PrefabGUID TM_GhostHouse_Drawers_03_Empty = new PrefabGUID(982714900); public static readonly PrefabGUID TM_GhostHouse_Drawers_03_Full = new PrefabGUID(876670224); public static readonly PrefabGUID TM_GhostHouse_Drawers_04_Empty = new PrefabGUID(428144368); public static readonly PrefabGUID TM_GhostHouse_Drawers_04_Full = new PrefabGUID(-419043954); public static readonly PrefabGUID TM_GhostHouseBed_01 = new PrefabGUID(124989740); public static readonly PrefabGUID TM_GhostHouseChair01 = new PrefabGUID(1551003305); public static readonly PrefabGUID TM_GhostHouseChair02 = new PrefabGUID(1506465082); public static readonly PrefabGUID TM_GhosthouseTable_01 = new PrefabGUID(958176926); public static readonly PrefabGUID TM_GhostHouseTable_02 = new PrefabGUID(1788937489); public static readonly PrefabGUID TM_GhostHouseTable_03 = new PrefabGUID(652874609); public static readonly PrefabGUID TM_GhostHouseTable_04 = new PrefabGUID(2014850079); public static readonly PrefabGUID TM_Glassblower_Barrel01 = new PrefabGUID(1234242138); public static readonly PrefabGUID TM_Glassblower_Barrel02 = new PrefabGUID(-270304875); public static readonly PrefabGUID TM_Glassblower_Barrel03 = new PrefabGUID(1429308263); public static readonly PrefabGUID TM_Glassblower_Bucket01 = new PrefabGUID(-876387423); public static readonly PrefabGUID TM_Glassblower_Bucket02 = new PrefabGUID(184851900); public static readonly PrefabGUID TM_Glassblower_Crate01 = new PrefabGUID(251142158); public static readonly PrefabGUID TM_Glassblower_Crate02 = new PrefabGUID(-1163107789); public static readonly PrefabGUID TM_Glassblower_Crate03 = new PrefabGUID(1560761362); public static readonly PrefabGUID TM_Glassblower_Crate04 = new PrefabGUID(-1815511188); public static readonly PrefabGUID TM_Glassblower_Minecart01 = new PrefabGUID(-252175085); public static readonly PrefabGUID TM_Glassblower_Minecart02 = new PrefabGUID(-719727939); public static readonly PrefabGUID TM_Glassblower_Table01 = new PrefabGUID(-127144214); public static readonly PrefabGUID TM_Glassblower_Table02 = new PrefabGUID(-2091585646); public static readonly PrefabGUID TM_Glassblower_Table03 = new PrefabGUID(1196353204); public static readonly PrefabGUID TM_Glassblower_Table04 = new PrefabGUID(420815389); public static readonly PrefabGUID TM_Glassblower_Table05 = new PrefabGUID(1367308908); public static readonly PrefabGUID TM_Glassblower_Table06 = new PrefabGUID(2035740421); public static readonly PrefabGUID TM_Glassblower_Table07 = new PrefabGUID(-851305215); public static readonly PrefabGUID TM_Glassblower_Toolstand01 = new PrefabGUID(604840602); public static readonly PrefabGUID TM_Glassblower_Toolstand02 = new PrefabGUID(1965217615); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow01 = new PrefabGUID(-412750000); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow02 = new PrefabGUID(932061635); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow03 = new PrefabGUID(2034318526); public static readonly PrefabGUID TM_Glassblower_Wheelbarrow04 = new PrefabGUID(2113504048); public static readonly PrefabGUID TM_Gloomrot_01_Fence = new PrefabGUID(2060925336); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Broken = new PrefabGUID(1273969275); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate01 = new PrefabGUID(-1256461768); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate02 = new PrefabGUID(-1453223196); public static readonly PrefabGUID TM_Gloomrot_01_Fence_Gate02_RATSONLY = new PrefabGUID(-692291089); public static readonly PrefabGUID TM_Gloomrot_01_Stage0 = new PrefabGUID(1796232117); public static readonly PrefabGUID TM_Gloomrot_01_Stage0_Stump = new PrefabGUID(-939788838); public static readonly PrefabGUID TM_Gloomrot_01_Stage1 = new PrefabGUID(-1663422471); public static readonly PrefabGUID TM_Gloomrot_01_Stage1_Stump = new PrefabGUID(-428052107); public static readonly PrefabGUID TM_Gloomrot_02_Fence = new PrefabGUID(-1568890586); public static readonly PrefabGUID TM_Gloomrot_02_Fence_Broken = new PrefabGUID(-550151048); public static readonly PrefabGUID TM_Gloomrot_02_Stage0 = new PrefabGUID(160102012); public static readonly PrefabGUID TM_Gloomrot_02_Stage0_Stump = new PrefabGUID(2037191637); public static readonly PrefabGUID TM_Gloomrot_02_Stage1 = new PrefabGUID(-400994581); public static readonly PrefabGUID TM_Gloomrot_02_Stage1_Stump = new PrefabGUID(-17077537); public static readonly PrefabGUID TM_Gloomrot_03_Fence = new PrefabGUID(980525611); public static readonly PrefabGUID TM_Gloomrot_03_Fence_Broken = new PrefabGUID(-486853008); public static readonly PrefabGUID TM_Gloomrot_03_Fence_RATSONLY = new PrefabGUID(-1529676833); public static readonly PrefabGUID TM_Gloomrot_03_Stage0 = new PrefabGUID(-1608739185); public static readonly PrefabGUID TM_Gloomrot_03_Stage0_Stump = new PrefabGUID(-281102246); public static readonly PrefabGUID TM_Gloomrot_03_Stage1 = new PrefabGUID(-528295829); public static readonly PrefabGUID TM_Gloomrot_03_Stage1_Stump = new PrefabGUID(-1523001857); public static readonly PrefabGUID TM_Gloomrot_04_Fence = new PrefabGUID(-918685652); public static readonly PrefabGUID TM_Gloomrot_04_Fence_Broken = new PrefabGUID(-2100024305); public static readonly PrefabGUID TM_Gloomrot_04_Fence_RATSONLY = new PrefabGUID(-1596934771); public static readonly PrefabGUID TM_Gloomrot_04_Stage0 = new PrefabGUID(-600486747); public static readonly PrefabGUID TM_Gloomrot_04_Stage0_Stump = new PrefabGUID(2117350865); public static readonly PrefabGUID TM_Gloomrot_04_Stage1 = new PrefabGUID(322453017); public static readonly PrefabGUID TM_Gloomrot_04_Stage1_Stump = new PrefabGUID(1016538426); public static readonly PrefabGUID TM_Gloomrot_05_Stage0 = new PrefabGUID(-342156098); public static readonly PrefabGUID TM_Gloomrot_05_Stage0_Stump = new PrefabGUID(-10930506); public static readonly PrefabGUID TM_Gloomrot_05_Stage1 = new PrefabGUID(1702172788); public static readonly PrefabGUID TM_Gloomrot_05_Stage1_Stump = new PrefabGUID(-1614877390); public static readonly PrefabGUID TM_Gloomrot_06_Stage0 = new PrefabGUID(-254483099); public static readonly PrefabGUID TM_Gloomrot_06_Stage0_Stump = new PrefabGUID(2106738828); public static readonly PrefabGUID TM_Gloomrot_06_Stage1 = new PrefabGUID(-923032215); public static readonly PrefabGUID TM_Gloomrot_06_Stage1_Stump = new PrefabGUID(-767391163); public static readonly PrefabGUID TM_Gloomrot_07_Stage0 = new PrefabGUID(-949458981); public static readonly PrefabGUID TM_Gloomrot_07_Stage0_Stump = new PrefabGUID(216806662); public static readonly PrefabGUID TM_Gloomrot_07_Stage1 = new PrefabGUID(-233539243); public static readonly PrefabGUID TM_Gloomrot_07_Stage1_Stump = new PrefabGUID(2095791708); public static readonly PrefabGUID TM_Gloomrot_08_Stage0 = new PrefabGUID(1762116124); public static readonly PrefabGUID TM_Gloomrot_08_Stage0_Stump = new PrefabGUID(-1042808221); public static readonly PrefabGUID TM_Gloomrot_08_Stage1 = new PrefabGUID(1109538878); public static readonly PrefabGUID TM_Gloomrot_08_Stage1_Stump = new PrefabGUID(-269744743); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_01_Fence = new PrefabGUID(24665476); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_01_Fence_Broken = new PrefabGUID(1836611107); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_02_Fence = new PrefabGUID(720254972); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_03_Fence = new PrefabGUID(329340708); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_04_Fence = new PrefabGUID(-1782561494); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_04_Fence_Broken = new PrefabGUID(825505358); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_01_Fence = new PrefabGUID(-420341460); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_01_Fence_Broken = new PrefabGUID(1265189675); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_02_Fence = new PrefabGUID(2065353600); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_Diagonal_02_Fence_Broken = new PrefabGUID(1436568463); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_End01 = new PrefabGUID(885764832); public static readonly PrefabGUID TM_Gloomrot_Barbedwire_End01_broken = new PrefabGUID(2006634648); public static readonly PrefabGUID TM_GloomRot_BookCase01_Empty = new PrefabGUID(-237221621); public static readonly PrefabGUID TM_GloomRot_BookCase01_Full = new PrefabGUID(1593042250); public static readonly PrefabGUID TM_GloomRot_BookCase02_Full = new PrefabGUID(-215532440); public static readonly PrefabGUID TM_GloomRot_Cabinet01_Empty = new PrefabGUID(-405286872); public static readonly PrefabGUID TM_GloomRot_Cabinet01_Full = new PrefabGUID(237932045); public static readonly PrefabGUID TM_GloomRot_Cabinet02_Empty = new PrefabGUID(-1193928824); public static readonly PrefabGUID TM_GloomRot_Cabinet02_Full = new PrefabGUID(1609325994); public static readonly PrefabGUID TM_GloomRot_Cage01 = new PrefabGUID(-1919573717); public static readonly PrefabGUID TM_GloomRot_Cage02 = new PrefabGUID(1854255284); public static readonly PrefabGUID TM_GloomRot_Cage03 = new PrefabGUID(980549882); public static readonly PrefabGUID TM_GloomRot_Cage04 = new PrefabGUID(728727398); public static readonly PrefabGUID TM_GloomRot_Chair01 = new PrefabGUID(1434483374); public static readonly PrefabGUID TM_GloomRot_CoilFactory_Lamp01 = new PrefabGUID(1374604685); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_Screen01 = new PrefabGUID(-823234507); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_Screen02 = new PrefabGUID(-438607955); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf01 = new PrefabGUID(-336652576); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf02 = new PrefabGUID(-388299514); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf03 = new PrefabGUID(-27925453); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Shelf04 = new PrefabGUID(-1987571028); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table01 = new PrefabGUID(1715597645); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table02 = new PrefabGUID(-2021976578); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Table03 = new PrefabGUID(-1329936073); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy01 = new PrefabGUID(-707943613); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy02 = new PrefabGUID(-2042192583); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy03 = new PrefabGUID(-1650557480); public static readonly PrefabGUID TM_Gloomrot_CoilFactory_TargetDummy04 = new PrefabGUID(786475626); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01 = new PrefabGUID(1091322909); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_01 = new PrefabGUID(-2033529653); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_02 = new PrefabGUID(-425896601); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley01_03 = new PrefabGUID(-1357882456); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02 = new PrefabGUID(1818084716); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_01 = new PrefabGUID(-1221205186); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_02 = new PrefabGUID(-848839529); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_03 = new PrefabGUID(801272957); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_04 = new PrefabGUID(-1754097893); public static readonly PrefabGUID TM_Gloomrot_Coilfactory_Trolley02_05 = new PrefabGUID(-643118335); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp01 = new PrefabGUID(1816636463); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp02 = new PrefabGUID(-472846425); public static readonly PrefabGUID TM_Gloomrot_Coppermine_Lamp03 = new PrefabGUID(-1362913394); public static readonly PrefabGUID TM_GloomRot_Desk01_Empty = new PrefabGUID(732337264); public static readonly PrefabGUID TM_GloomRot_Desk01_Full = new PrefabGUID(1092828792); public static readonly PrefabGUID TM_Gloomrot_Diagonal_01_Fence = new PrefabGUID(1256800588); public static readonly PrefabGUID TM_Gloomrot_Diagonal_01_Fence_Broken = new PrefabGUID(1991007649); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence = new PrefabGUID(-1888682553); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence_Broken = new PrefabGUID(408849938); public static readonly PrefabGUID TM_Gloomrot_Diagonal_02_Fence_RATSONLY = new PrefabGUID(1827799014); public static readonly PrefabGUID TM_Gloomrot_End01 = new PrefabGUID(-1155298458); public static readonly PrefabGUID TM_Gloomrot_End01_broken = new PrefabGUID(-1756987711); public static readonly PrefabGUID TM_Gloomrot_End02 = new PrefabGUID(-1267619053); public static readonly PrefabGUID TM_Gloomrot_End02_broken = new PrefabGUID(700286203); public static readonly PrefabGUID TM_Gloomrot_End02_RATSONLY = new PrefabGUID(-1777017033); public static readonly PrefabGUID TM_Gloomrot_Farm_Lamp01 = new PrefabGUID(-1135654416); public static readonly PrefabGUID TM_Gloomrot_Farm_Tank01 = new PrefabGUID(-382854056); public static readonly PrefabGUID TM_Gloomrot_Farm01 = new PrefabGUID(1121868423); public static readonly PrefabGUID TM_Gloomrot_Farm02 = new PrefabGUID(1049242026); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Broken01 = new PrefabGUID(-1818525545); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Diagonal_Broken01 = new PrefabGUID(-414378276); public static readonly PrefabGUID TM_GloomRot_Fence_Wood_Diagonal01 = new PrefabGUID(1801415416); public static readonly PrefabGUID TM_GloomRot_Fence_Wood01 = new PrefabGUID(-1115102517); public static readonly PrefabGUID TM_GloomRot_Fence_Wood02 = new PrefabGUID(1883894247); public static readonly PrefabGUID TM_Gloomrot_Fireplace_01 = new PrefabGUID(250247176); public static readonly PrefabGUID TM_Gloomrot_Fireplace_01_FireOn = new PrefabGUID(-755710255); public static readonly PrefabGUID TM_Gloomrot_Fireplace_02 = new PrefabGUID(1882392978); public static readonly PrefabGUID TM_Gloomrot_Fireplace_02_FireOn = new PrefabGUID(-1210508642); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_01 = new PrefabGUID(1514112203); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_01_FireOn = new PrefabGUID(-464366914); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_02 = new PrefabGUID(1388325140); public static readonly PrefabGUID TM_Gloomrot_FireplaceSimple_02_FireOn = new PrefabGUID(-976503984); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair_Body01 = new PrefabGUID(114706283); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair_Body02 = new PrefabGUID(-621940556); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair01 = new PrefabGUID(65705351); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair02 = new PrefabGUID(1797473170); public static readonly PrefabGUID TM_GloomRot_Laboratory_Chair03 = new PrefabGUID(269283193); public static readonly PrefabGUID TM_GloomRot_Laboratory_Drape01 = new PrefabGUID(1762187635); public static readonly PrefabGUID TM_GloomRot_Laboratory_Drape02 = new PrefabGUID(-2003754628); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table01 = new PrefabGUID(-1046973379); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table02 = new PrefabGUID(-250861483); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table03 = new PrefabGUID(-542467085); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table04 = new PrefabGUID(-770563232); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table05 = new PrefabGUID(917686046); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table06 = new PrefabGUID(649243701); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table07 = new PrefabGUID(-2072272743); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table08 = new PrefabGUID(1431799349); public static readonly PrefabGUID TM_GloomRot_Laboratory_Table09 = new PrefabGUID(938320086); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf01 = new PrefabGUID(1929283810); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf02 = new PrefabGUID(531690978); public static readonly PrefabGUID TM_GloomRot_Laboratory_WoodenShelf03 = new PrefabGUID(2143636471); public static readonly PrefabGUID TM_GloomRot_LampPost01 = new PrefabGUID(1805301546); public static readonly PrefabGUID TM_GloomRot_LightningRod_Refinement_01 = new PrefabGUID(-1932531289); public static readonly PrefabGUID TM_GloomRot_LightningRod01 = new PrefabGUID(-1038065103); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Door01 = new PrefabGUID(-1729535449); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Door01_Broken = new PrefabGUID(1948736360); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Gate01 = new PrefabGUID(1896589649); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Lever01 = new PrefabGUID(302433668); public static readonly PrefabGUID TM_Gloomrot_MonsterCastle_Breakable_Lever01_Broken = new PrefabGUID(-99415273); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked01 = new PrefabGUID(1644741025); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked01_01 = new PrefabGUID(87816578); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked02 = new PrefabGUID(-601266343); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked02_01 = new PrefabGUID(-366024485); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked03 = new PrefabGUID(-1060947348); public static readonly PrefabGUID TM_Gloomrot_Pipes_Stacked03_01 = new PrefabGUID(-1304687684); public static readonly PrefabGUID TM_Gloomrot_Sapling01 = new PrefabGUID(-637279341); public static readonly PrefabGUID TM_Gloomrot_Sapling02 = new PrefabGUID(1028084238); public static readonly PrefabGUID TM_Gloomrot_Sapling03 = new PrefabGUID(-1381321967); public static readonly PrefabGUID TM_GloomRot_Screen01 = new PrefabGUID(481431244); public static readonly PrefabGUID TM_GloomRot_Screen02 = new PrefabGUID(760672034); public static readonly PrefabGUID TM_Gloomrot_Sludgepool_Pipeholder01 = new PrefabGUID(-676730506); public static readonly PrefabGUID TM_Gloomrot_Sludgepool_Workbench01 = new PrefabGUID(1519158331); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage0 = new PrefabGUID(-1316926015); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage0_Stump = new PrefabGUID(1898633437); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage1 = new PrefabGUID(1675792079); public static readonly PrefabGUID TM_Gloomrot_Stub_01_Stage1_Stump = new PrefabGUID(-1899730739); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage0 = new PrefabGUID(-1243385335); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage0_Stump = new PrefabGUID(612714918); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage1 = new PrefabGUID(-991415127); public static readonly PrefabGUID TM_Gloomrot_Stub_02_Stage1_Stump = new PrefabGUID(-1709292350); public static readonly PrefabGUID TM_GloomRot_Table01 = new PrefabGUID(1093691461); public static readonly PrefabGUID TM_Gloomrot_TransistorBreakable01 = new PrefabGUID(-1286313718); public static readonly PrefabGUID TM_Gloomrot_TransistorBreakable02 = new PrefabGUID(127329745); public static readonly PrefabGUID TM_GloomRot_VillageHouses_BreakableBalcony01 = new PrefabGUID(386846799); public static readonly PrefabGUID TM_GloomRot_VillageHouses_BreakableBalcony01_Broken = new PrefabGUID(-1265029409); public static readonly PrefabGUID TM_GloomrotBarrel_01 = new PrefabGUID(455477240); public static readonly PrefabGUID TM_GloomrotBarrel_02 = new PrefabGUID(-1023698957); public static readonly PrefabGUID TM_GloomrotBarrel_03 = new PrefabGUID(820286188); public static readonly PrefabGUID TM_GloomrotBarrel_04 = new PrefabGUID(-1071394622); public static readonly PrefabGUID TM_GloomrotBarrel_05 = new PrefabGUID(158051546); public static readonly PrefabGUID TM_GloomrotBarrel_06 = new PrefabGUID(-2054691901); public static readonly PrefabGUID TM_GloomrotBarrel_SludgePool_SPECIAL_01 = new PrefabGUID(-24545225); public static readonly PrefabGUID TM_GloomrotBarrel_SludgePool_SPECIAL_02 = new PrefabGUID(2113540655); public static readonly PrefabGUID TM_GloomrotCrate_01 = new PrefabGUID(113262395); public static readonly PrefabGUID TM_GloomrotCrate_02 = new PrefabGUID(1620843108); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_01 = new PrefabGUID(-284051182); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_02 = new PrefabGUID(1776936490); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_03 = new PrefabGUID(-1647383778); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_04 = new PrefabGUID(992767813); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_05 = new PrefabGUID(-309740124); public static readonly PrefabGUID TM_GloomrotCrate_Coilfactory_06 = new PrefabGUID(-31208482); public static readonly PrefabGUID TM_GloomrotCrateLarge_01 = new PrefabGUID(512954603); public static readonly PrefabGUID TM_GloomrotCrateLarge_02 = new PrefabGUID(1248252942); public static readonly PrefabGUID TM_GloomrotHills_01_Stage0 = new PrefabGUID(-223320881); public static readonly PrefabGUID TM_GloomrotHills_01_Stage0_Stump = new PrefabGUID(1650045845); public static readonly PrefabGUID TM_GloomrotHills_01_Stage1 = new PrefabGUID(687116097); public static readonly PrefabGUID TM_GloomrotHills_01_Stage1_Stump = new PrefabGUID(1432851161); public static readonly PrefabGUID TM_GloomrotHills_02_Stage0 = new PrefabGUID(-1218601671); public static readonly PrefabGUID TM_GloomrotHills_02_Stage0_Stump = new PrefabGUID(-955372154); public static readonly PrefabGUID TM_GloomrotHills_02_Stage1 = new PrefabGUID(-1301522085); public static readonly PrefabGUID TM_GloomrotHills_02_Stage1_Stump = new PrefabGUID(1010919373); public static readonly PrefabGUID TM_GloomrotHills_03_Stage0 = new PrefabGUID(-1409385286); public static readonly PrefabGUID TM_GloomrotHills_03_Stage0_Stump = new PrefabGUID(328431006); public static readonly PrefabGUID TM_GloomrotHills_03_Stage1 = new PrefabGUID(1233647687); public static readonly PrefabGUID TM_GloomrotHills_03_Stage1_Stump = new PrefabGUID(545772819); public static readonly PrefabGUID TM_GloomrotHills_04_Stage0 = new PrefabGUID(1404634955); public static readonly PrefabGUID TM_GloomrotHills_04_Stage0_Stump = new PrefabGUID(-1899095496); public static readonly PrefabGUID TM_GloomrotHills_04_Stage1 = new PrefabGUID(-1903138584); public static readonly PrefabGUID TM_GloomrotHills_04_Stage1_Stump = new PrefabGUID(-1798233684); public static readonly PrefabGUID TM_GloomrotHills_05_Stage0 = new PrefabGUID(1607532220); public static readonly PrefabGUID TM_GloomrotHills_05_Stage0_Stump = new PrefabGUID(-39194610); public static readonly PrefabGUID TM_GloomrotHills_05_Stage1 = new PrefabGUID(-167835464); public static readonly PrefabGUID TM_GloomrotHills_05_Stage1_Stump = new PrefabGUID(1027663756); public static readonly PrefabGUID TM_GloomrotHills_06_Stage0 = new PrefabGUID(-1212232856); public static readonly PrefabGUID TM_GloomrotHills_06_Stage0_Stump = new PrefabGUID(378862245); public static readonly PrefabGUID TM_GloomrotHills_06_Stage1 = new PrefabGUID(483652238); public static readonly PrefabGUID TM_GloomrotHills_06_Stage1_Stump = new PrefabGUID(342779645); public static readonly PrefabGUID TM_GloomrotHills_07_Stage0 = new PrefabGUID(815503116); public static readonly PrefabGUID TM_GloomrotHills_07_Stage0_Stump = new PrefabGUID(957165230); public static readonly PrefabGUID TM_GloomrotHills_07_Stage1 = new PrefabGUID(737057122); public static readonly PrefabGUID TM_GloomrotHills_07_Stage1_Stump = new PrefabGUID(165196794); public static readonly PrefabGUID TM_GloomrotHills_Sapling01 = new PrefabGUID(-676826412); public static readonly PrefabGUID TM_GloomrotHills_Sapling02 = new PrefabGUID(1849671455); public static readonly PrefabGUID TM_GloomrotHills_Sapling03 = new PrefabGUID(-190530386); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage0 = new PrefabGUID(-1597637922); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage0_Stump = new PrefabGUID(752527667); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage1 = new PrefabGUID(1613451726); public static readonly PrefabGUID TM_GloomrotHillsDead_01_Stage1_Stump = new PrefabGUID(1381162616); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage0 = new PrefabGUID(-1047233874); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage0_Stump = new PrefabGUID(1968371205); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage1 = new PrefabGUID(111907777); public static readonly PrefabGUID TM_GloomrotHillsDead_02_Stage1_Stump = new PrefabGUID(-524903666); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage0 = new PrefabGUID(-32164125); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage0_Stump = new PrefabGUID(-163191061); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage1 = new PrefabGUID(-1303140100); public static readonly PrefabGUID TM_GloomrotHillsDead_03_Stage1_Stump = new PrefabGUID(-504020002); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage0 = new PrefabGUID(434738935); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage0_Stump = new PrefabGUID(-2005401230); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage1 = new PrefabGUID(-1503416712); public static readonly PrefabGUID TM_GloomrotHillsDead_04_Stage1_Stump = new PrefabGUID(46157770); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage0 = new PrefabGUID(-93703336); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage0_Stump = new PrefabGUID(1318351023); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage1 = new PrefabGUID(1269043913); public static readonly PrefabGUID TM_GloomrotHillsDead_05_Stage1_Stump = new PrefabGUID(-813663541); public static readonly PrefabGUID TM_GloomrotWoodenBarrel_01 = new PrefabGUID(145977432); public static readonly PrefabGUID TM_GloomrotWoodenBarrel_02 = new PrefabGUID(2117822012); public static readonly PrefabGUID TM_Gold_01_Rubble = new PrefabGUID(1686494402); public static readonly PrefabGUID TM_Gold_01_Stage0_Resource = new PrefabGUID(1003907303); public static readonly PrefabGUID TM_Gold_01_Stage1_Resource = new PrefabGUID(-990230456); public static readonly PrefabGUID TM_Gold_02_Rubble = new PrefabGUID(509602847); public static readonly PrefabGUID TM_Gold_02_Stage0_Resource = new PrefabGUID(713035142); public static readonly PrefabGUID TM_Gold_02_Stage1_Resource = new PrefabGUID(-562896840); public static readonly PrefabGUID TM_Gold_03_Rubble = new PrefabGUID(92150146); public static readonly PrefabGUID TM_Gold_03_Stage0_Resource = new PrefabGUID(2053068002); public static readonly PrefabGUID TM_Gold_03_Stage1_Resource = new PrefabGUID(-1639125776); public static readonly PrefabGUID TM_Gold_04_Rubble = new PrefabGUID(-235762132); public static readonly PrefabGUID TM_Gold_04_Stage0_Resource = new PrefabGUID(2026017639); public static readonly PrefabGUID TM_Gold_04_Stage1_Resource = new PrefabGUID(1098090514); public static readonly PrefabGUID TM_GrapeStompBarrel01_Empty = new PrefabGUID(4390934); public static readonly PrefabGUID TM_GrapeStompBarrel01_Full = new PrefabGUID(-971122364); public static readonly PrefabGUID TM_GrapeStompBarrel02_Empty = new PrefabGUID(894270121); public static readonly PrefabGUID TM_GrapeStompBarrel02_Full = new PrefabGUID(-1115183844); public static readonly PrefabGUID TM_HarpyNest_01 = new PrefabGUID(-1358411484); public static readonly PrefabGUID TM_HarpyNest_02 = new PrefabGUID(-680466327); public static readonly PrefabGUID TM_HarpyNest_03 = new PrefabGUID(1957728655); public static readonly PrefabGUID TM_HayStack01_Interactable = new PrefabGUID(-1107404080); public static readonly PrefabGUID TM_HiddenObject = new PrefabGUID(162560418); public static readonly PrefabGUID TM_Holy_Cross_Object_Area01 = new PrefabGUID(-88097453); public static readonly PrefabGUID TM_Holy_Zone_Area_T01 = new PrefabGUID(1365651921); public static readonly PrefabGUID TM_Holy_Zone_Area_T02 = new PrefabGUID(1706728579); public static readonly PrefabGUID TM_Horsetrack_ArcheryTarget01 = new PrefabGUID(-1485200551); public static readonly PrefabGUID TM_Horsetrack_Fence01 = new PrefabGUID(-465773872); public static readonly PrefabGUID TM_Horsetrack_Fence01_Broken01 = new PrefabGUID(1361545049); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag01 = new PrefabGUID(712522128); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag02 = new PrefabGUID(-1078634250); public static readonly PrefabGUID TM_Horsetrack_MilitiaFlag03 = new PrefabGUID(-424804219); public static readonly PrefabGUID TM_Horsetrack_Rack01 = new PrefabGUID(1846857211); public static readonly PrefabGUID TM_Horsetrack_Rack02 = new PrefabGUID(-1386838529); public static readonly PrefabGUID TM_Horsetrack_TargetDummy01 = new PrefabGUID(1376031832); public static readonly PrefabGUID TM_Horsetrack_TargetRings01 = new PrefabGUID(1076246318); public static readonly PrefabGUID TM_HousePlant01_01 = new PrefabGUID(1312620270); public static readonly PrefabGUID TM_HousePlant01_02 = new PrefabGUID(-953263482); public static readonly PrefabGUID TM_HousePlant01_03 = new PrefabGUID(575519007); public static readonly PrefabGUID TM_HousePlant01_04 = new PrefabGUID(47844225); public static readonly PrefabGUID TM_HousePlant02_01 = new PrefabGUID(-75430835); public static readonly PrefabGUID TM_HousePlant02_02 = new PrefabGUID(674359848); public static readonly PrefabGUID TM_HousePlant02_03 = new PrefabGUID(-1800613330); public static readonly PrefabGUID TM_HousePlant03_01 = new PrefabGUID(833878418); public static readonly PrefabGUID TM_HousePlant03_02 = new PrefabGUID(-961960227); public static readonly PrefabGUID TM_HousePlant03_03 = new PrefabGUID(972357182); public static readonly PrefabGUID TM_IdleInteractionLocation_Campfire = new PrefabGUID(-1367123033); public static readonly PrefabGUID TM_IdleInteractionLocation_Digging = new PrefabGUID(-894380976); public static readonly PrefabGUID TM_IdleInteractionLocation_FiddleSitting = new PrefabGUID(-778316797); public static readonly PrefabGUID TM_IdleInteractionLocation_Fiddling01 = new PrefabGUID(690653168); public static readonly PrefabGUID TM_IdleInteractionLocation_Fishing = new PrefabGUID(1564140143); public static readonly PrefabGUID TM_IdleInteractionLocation_HarvestSitting = new PrefabGUID(1205463848); public static readonly PrefabGUID TM_IdleInteractionLocation_Lookout = new PrefabGUID(-1760916179); public static readonly PrefabGUID TM_IdleInteractionLocation_Raking = new PrefabGUID(-1190338703); public static readonly PrefabGUID TM_IdleInteractionLocation_RummagingSitting = new PrefabGUID(-113481360); public static readonly PrefabGUID TM_IdleInteractionLocation_SellingFish = new PrefabGUID(-1341230267); public static readonly PrefabGUID TM_IdleInteractionLocation_SellingFruit = new PrefabGUID(306558233); public static readonly PrefabGUID TM_IdleInteractionLocation_Sowing = new PrefabGUID(287022135); public static readonly PrefabGUID TM_IdleInteractionLocation_StokeFireSitting = new PrefabGUID(-1495989446); public static readonly PrefabGUID TM_IdleInteractionLocation_Tinker = new PrefabGUID(-2073339590); public static readonly PrefabGUID TM_IdleInteractionLocation_Wall = new PrefabGUID(-955760432); public static readonly PrefabGUID TM_IdleInteractionLocation_WorkingOut = new PrefabGUID(-1724848888); public static readonly PrefabGUID TM_IdleInteractionTest0 = new PrefabGUID(364358874); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock01 = new PrefabGUID(2042892527); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock02 = new PrefabGUID(1526353479); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock03 = new PrefabGUID(582408126); public static readonly PrefabGUID TM_InbeddedFarmLand_GroundRock04 = new PrefabGUID(-803521697); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock01 = new PrefabGUID(-1766316662); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock02 = new PrefabGUID(-2060368698); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock03 = new PrefabGUID(-1642513904); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock04 = new PrefabGUID(621288846); public static readonly PrefabGUID TM_InbeddedQuarry_GroundRock05 = new PrefabGUID(1810285892); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock01 = new PrefabGUID(2134070146); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock02 = new PrefabGUID(-1396961233); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock03 = new PrefabGUID(-989627861); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock04 = new PrefabGUID(217978949); public static readonly PrefabGUID TM_InbeddedWilderness_GroundRock05 = new PrefabGUID(-624036737); public static readonly PrefabGUID TM_Interact_Inspect_Base = new PrefabGUID(1727016613); public static readonly PrefabGUID TM_Interact_Inspect_Prog_Test = new PrefabGUID(1406946273); public static readonly PrefabGUID TM_InteractablePortalEnter_Radius3 = new PrefabGUID(-16082476); public static readonly PrefabGUID TM_InteractablePortalExit_Radius3 = new PrefabGUID(1239470018); public static readonly PrefabGUID TM_InteractionSpell_DraculaCastleDoor = new PrefabGUID(1783645063); public static readonly PrefabGUID TM_InteractionSpell_RatHole = new PrefabGUID(-1181425184); public static readonly PrefabGUID TM_InvisibleObject_AIPointOfInterest = new PrefabGUID(-468593524); public static readonly PrefabGUID TM_InvisibleObject_Dracula_CenterPos = new PrefabGUID(1842538655); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_1 = new PrefabGUID(304557225); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_2 = new PrefabGUID(1609034981); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_3 = new PrefabGUID(-527791516); public static readonly PrefabGUID TM_InvisibleObject_Dracula_SpellStoneSpawnPos_PlayerCount_4 = new PrefabGUID(1241563561); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_FishingSpot = new PrefabGUID(2084711690); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_MonsterSpawnPositions = new PrefabGUID(-581688006); public static readonly PrefabGUID TM_InvisibleObject_Fisherman_MonsterSpawnPositions_Hard = new PrefabGUID(-1030588315); public static readonly PrefabGUID TM_InvisibleObject_Lucie_AlchemyPos = new PrefabGUID(-641192866); public static readonly PrefabGUID TM_InvisibleObject_Morgana_BigPoolPosition = new PrefabGUID(-19771227); public static readonly PrefabGUID TM_InvisibleObject_Morgana_OuterPosition = new PrefabGUID(587046633); public static readonly PrefabGUID TM_InvisibleObject_Morgana_Position = new PrefabGUID(2139958514); public static readonly PrefabGUID TM_InvisibleObject_Morgana_TailPosition = new PrefabGUID(1549716943); public static readonly PrefabGUID TM_InvisibleObject_Morgana_TransformPosition = new PrefabGUID(796434534); public static readonly PrefabGUID TM_InvisibleObject_Valyr_CenterPosition = new PrefabGUID(153816529); public static readonly PrefabGUID TM_Iron_01_Rubble = new PrefabGUID(520138190); public static readonly PrefabGUID TM_Iron_01_Stage0_Resource = new PrefabGUID(1840644869); public static readonly PrefabGUID TM_Iron_01_Stage1_Resource = new PrefabGUID(1433915693); public static readonly PrefabGUID TM_Iron_02_Rubble = new PrefabGUID(-950272531); public static readonly PrefabGUID TM_Iron_02_Stage0_Resource = new PrefabGUID(1175494187); public static readonly PrefabGUID TM_Iron_02_Stage1_Resource = new PrefabGUID(-1717383696); public static readonly PrefabGUID TM_Iron_03_Rubble = new PrefabGUID(2081282973); public static readonly PrefabGUID TM_Iron_03_Stage0_Resource = new PrefabGUID(22014227); public static readonly PrefabGUID TM_Iron_03_Stage1_Resource = new PrefabGUID(474818747); public static readonly PrefabGUID TM_Iron_04_Rubble = new PrefabGUID(1358162802); public static readonly PrefabGUID TM_Iron_04_Stage0_Resource = new PrefabGUID(-435373182); public static readonly PrefabGUID TM_Iron_04_Stage1_Resource = new PrefabGUID(1197410955); public static readonly PrefabGUID TM_IronBig_01_Rubble = new PrefabGUID(-3531568); public static readonly PrefabGUID TM_IronBig_01_Stage0_Resource = new PrefabGUID(-1299009149); public static readonly PrefabGUID TM_IronBig_01_Stage1_Resource = new PrefabGUID(-212549862); public static readonly PrefabGUID TM_IronFence_01_Fence = new PrefabGUID(-353386615); public static readonly PrefabGUID TM_IronFence_01_Fence_Broken = new PrefabGUID(1462460813); public static readonly PrefabGUID TM_IronFenceGate_01_Door = new PrefabGUID(-1120136695); public static readonly PrefabGUID TM_IronFencePole_01 = new PrefabGUID(-1166050889); public static readonly PrefabGUID TM_IronFencePole_01_Broken = new PrefabGUID(-62424194); public static readonly PrefabGUID TM_IronMedium_01_Rubble = new PrefabGUID(-1071179461); public static readonly PrefabGUID TM_IronMedium_01_Stage0_Resource = new PrefabGUID(1234059876); public static readonly PrefabGUID TM_IronMedium_01_Stage1_Resource = new PrefabGUID(94119538); public static readonly PrefabGUID TM_IronMine_BoxExplosives = new PrefabGUID(-399448477); public static readonly PrefabGUID TM_IronMineEntranceGate_01 = new PrefabGUID(734478859); public static readonly PrefabGUID TM_IronMineEntranceGate_01_DONTUSE = new PrefabGUID(1213728325); public static readonly PrefabGUID TM_IronMinesBroken_MineCart_01 = new PrefabGUID(-2110993796); public static readonly PrefabGUID TM_Laboratory_Chair_Leather_01 = new PrefabGUID(-813681645); public static readonly PrefabGUID TM_Laboratory_Chair_Leather_02 = new PrefabGUID(-685248512); public static readonly PrefabGUID TM_Laboratory_ChalkBoard01 = new PrefabGUID(2108637450); public static readonly PrefabGUID TM_Laboratory_ChalkBoard02 = new PrefabGUID(-39671683); public static readonly PrefabGUID TM_LampPost_01 = new PrefabGUID(-679007802); public static readonly PrefabGUID TM_LampPost_02 = new PrefabGUID(-736903085); public static readonly PrefabGUID TM_LampPost_03 = new PrefabGUID(50369433); public static readonly PrefabGUID TM_LargeOak_Sapling = new PrefabGUID(-1889577224); public static readonly PrefabGUID TM_LargeOak01_Large = new PrefabGUID(1742584349); public static readonly PrefabGUID TM_LargeOak01_Large_Stump = new PrefabGUID(-63995040); public static readonly PrefabGUID TM_LargeOak01_Small = new PrefabGUID(-717207119); public static readonly PrefabGUID TM_LargeOak01_Small_Stump = new PrefabGUID(21672351); public static readonly PrefabGUID TM_LargeOak02_Large = new PrefabGUID(-412660681); public static readonly PrefabGUID TM_LargeOak02_Large_Stump = new PrefabGUID(-1560681314); public static readonly PrefabGUID TM_LargeOak02_Small = new PrefabGUID(-654901029); public static readonly PrefabGUID TM_LargeOak02_Small_Stump = new PrefabGUID(-715292029); public static readonly PrefabGUID TM_LargeOakAutumn_Sapling = new PrefabGUID(545533510); public static readonly PrefabGUID TM_LargeOakAutumn_SaplingAutumn = new PrefabGUID(-501017050); public static readonly PrefabGUID TM_LargeOakAutumn_SaplingYellow = new PrefabGUID(-1145151142); public static readonly PrefabGUID TM_LargeOakAutumn01_Large = new PrefabGUID(-1003759720); public static readonly PrefabGUID TM_LargeOakAutumn01_Large_Stump = new PrefabGUID(-584751529); public static readonly PrefabGUID TM_LargeOakAutumn01_Small = new PrefabGUID(1417575986); public static readonly PrefabGUID TM_LargeOakAutumn01_Small_Stump = new PrefabGUID(-842715503); public static readonly PrefabGUID TM_LargeOakAutumn02_Large = new PrefabGUID(-566650769); public static readonly PrefabGUID TM_LargeOakAutumn02_Large_Stump = new PrefabGUID(-461321524); public static readonly PrefabGUID TM_LargeOakAutumn02_Small = new PrefabGUID(-752083858); public static readonly PrefabGUID TM_LargeOakAutumn02_Small_Stump = new PrefabGUID(290704928); public static readonly PrefabGUID TM_LargeOakAutumn03_Large = new PrefabGUID(-874441709); public static readonly PrefabGUID TM_LargeOakAutumn03_Large_Stump = new PrefabGUID(547204042); public static readonly PrefabGUID TM_LargeOakAutumn03_Small = new PrefabGUID(-202718322); public static readonly PrefabGUID TM_LargeOakAutumn03_Small_Stump = new PrefabGUID(1633325077); public static readonly PrefabGUID TM_LargeOakAutumn04_Large = new PrefabGUID(-1564516199); public static readonly PrefabGUID TM_LargeOakAutumn04_Large_Stump = new PrefabGUID(-1110568440); public static readonly PrefabGUID TM_LargeOakAutumn04_Small = new PrefabGUID(-1206755332); public static readonly PrefabGUID TM_LargeOakAutumn04_Small_Stump = new PrefabGUID(-1864020113); public static readonly PrefabGUID TM_LargeOakCursed_Sapling = new PrefabGUID(1030777660); public static readonly PrefabGUID TM_LargeOakCursed01_Large = new PrefabGUID(337927279); public static readonly PrefabGUID TM_LargeOakCursed01_Large_Stump = new PrefabGUID(-1346279298); public static readonly PrefabGUID TM_LargeOakCursed01_Small = new PrefabGUID(394119645); public static readonly PrefabGUID TM_LargeOakCursed01_Small_Stump = new PrefabGUID(-1632693658); public static readonly PrefabGUID TM_LargeOakCursed02_Large = new PrefabGUID(-301550072); public static readonly PrefabGUID TM_LargeOakCursed02_Large_Stump = new PrefabGUID(-1639680535); public static readonly PrefabGUID TM_LargeOakCursed02_Small = new PrefabGUID(1624190233); public static readonly PrefabGUID TM_LargeOakCursed02_Small_Stump = new PrefabGUID(-135697683); public static readonly PrefabGUID TM_LargeOakSkeleton01_Large = new PrefabGUID(-192885294); public static readonly PrefabGUID TM_LargeOakSkeleton01_Large_Stump = new PrefabGUID(147753258); public static readonly PrefabGUID TM_LargeOakSkeleton01_Small = new PrefabGUID(-552834969); public static readonly PrefabGUID TM_LargeOakSkeleton01_Small_Stump = new PrefabGUID(1683973791); public static readonly PrefabGUID TM_LargeOakSkeleton02_Large = new PrefabGUID(482061460); public static readonly PrefabGUID TM_LargeOakSkeleton02_Large_Stump = new PrefabGUID(-432127691); public static readonly PrefabGUID TM_LargeOakSkeleton02_Small = new PrefabGUID(-265761278); public static readonly PrefabGUID TM_LargeOakSkeleton02_Small_Stump = new PrefabGUID(1365825497); public static readonly PrefabGUID TM_LargePine_Sapling = new PrefabGUID(1234049573); public static readonly PrefabGUID TM_LargePine01_Large = new PrefabGUID(-438860644); public static readonly PrefabGUID TM_LargePine01_Large_Stump = new PrefabGUID(-23619961); public static readonly PrefabGUID TM_LargePine01_Small = new PrefabGUID(-949411015); public static readonly PrefabGUID TM_LargePine01_Small_Stump = new PrefabGUID(1908681136); public static readonly PrefabGUID TM_LargePine02_Large = new PrefabGUID(-1311854068); public static readonly PrefabGUID TM_LargePine02_Large_Stump = new PrefabGUID(-362823640); public static readonly PrefabGUID TM_LargePine02_Small = new PrefabGUID(240368922); public static readonly PrefabGUID TM_LargePine02_Small_Stump = new PrefabGUID(8102210); public static readonly PrefabGUID TM_LargePine03_Large = new PrefabGUID(-759478251); public static readonly PrefabGUID TM_LargePine03_Large_Stump = new PrefabGUID(869548682); public static readonly PrefabGUID TM_LargePine03_Small = new PrefabGUID(-2066102272); public static readonly PrefabGUID TM_LargePine03_Small_Stump = new PrefabGUID(-592785874); public static readonly PrefabGUID TM_LargePineOld_Gloomrot_Sapling = new PrefabGUID(-2116735949); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Large = new PrefabGUID(-269198760); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Large_Stump = new PrefabGUID(2135429080); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Small = new PrefabGUID(-1308259469); public static readonly PrefabGUID TM_LargePineOld_Gloomrot01_Small_Stump = new PrefabGUID(-811956903); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Large = new PrefabGUID(-696165372); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Large_Stump = new PrefabGUID(1909531952); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Small = new PrefabGUID(-958351862); public static readonly PrefabGUID TM_LargePineOld_Gloomrot02_Small_Stump = new PrefabGUID(-135047468); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Large = new PrefabGUID(978831024); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Large_Stump = new PrefabGUID(907266344); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Small = new PrefabGUID(479335824); public static readonly PrefabGUID TM_LargePineOld_Gloomrot03_Small_Stump = new PrefabGUID(-586316902); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills_Sapling = new PrefabGUID(-1793120877); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Large = new PrefabGUID(77136207); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Large_Stump = new PrefabGUID(1388700683); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Small = new PrefabGUID(1779015700); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills01_Small_Stump = new PrefabGUID(1581130035); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Large = new PrefabGUID(-661625198); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Large_Stump = new PrefabGUID(330096903); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Small = new PrefabGUID(832357347); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills02_Small_Stump = new PrefabGUID(-318262172); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Large = new PrefabGUID(1412034556); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Large_Stump = new PrefabGUID(-1966556931); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Small = new PrefabGUID(-346999122); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills03_Small_Stump = new PrefabGUID(2118852092); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Large = new PrefabGUID(-1739815411); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Large_Stump = new PrefabGUID(-327875929); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Small = new PrefabGUID(-745688142); public static readonly PrefabGUID TM_LargePineOld_GloomrotHills04_Small_Stump = new PrefabGUID(1962718239); public static readonly PrefabGUID TM_LargePineOld_Sapling = new PrefabGUID(138418377); public static readonly PrefabGUID TM_LargePineOld01_Large = new PrefabGUID(1945099940); public static readonly PrefabGUID TM_LargePineOld01_Large_Stump = new PrefabGUID(1285072008); public static readonly PrefabGUID TM_LargePineOld01_Small = new PrefabGUID(-55199275); public static readonly PrefabGUID TM_LargePineOld01_Small_Stump = new PrefabGUID(-1942171050); public static readonly PrefabGUID TM_LargePineOld02_Large = new PrefabGUID(1813109566); public static readonly PrefabGUID TM_LargePineOld02_Large_Stump = new PrefabGUID(1614369697); public static readonly PrefabGUID TM_LargePineOld02_Small = new PrefabGUID(1906622667); public static readonly PrefabGUID TM_LargePineOld02_Small_Stump = new PrefabGUID(-148172196); public static readonly PrefabGUID TM_LargePineOld03_Large = new PrefabGUID(-1975496116); public static readonly PrefabGUID TM_LargePineOld03_Large_Stump = new PrefabGUID(741400628); public static readonly PrefabGUID TM_LargePineOld03_Small = new PrefabGUID(879466695); public static readonly PrefabGUID TM_LargePineOld03_Small_Stump = new PrefabGUID(1482765888); public static readonly PrefabGUID TM_LargePineOldSnow_Sapling = new PrefabGUID(-1242611578); public static readonly PrefabGUID TM_LargePineOldSnow01_Large = new PrefabGUID(-2119402759); public static readonly PrefabGUID TM_LargePineOldSnow01_Large_Stump = new PrefabGUID(-1705222715); public static readonly PrefabGUID TM_LargePineOldSnow01_Small = new PrefabGUID(-1159705128); public static readonly PrefabGUID TM_LargePineOldSnow01_Small_Stump = new PrefabGUID(-338186440); public static readonly PrefabGUID TM_LargePineOldSnow02_Large = new PrefabGUID(583754080); public static readonly PrefabGUID TM_LargePineOldSnow02_Large_Stump = new PrefabGUID(599029196); public static readonly PrefabGUID TM_LargePineOldSnow02_Small = new PrefabGUID(2088781484); public static readonly PrefabGUID TM_LargePineOldSnow02_Small_Stump = new PrefabGUID(-1730387958); public static readonly PrefabGUID TM_LargePineOldSnow03_Large = new PrefabGUID(-1620450934); public static readonly PrefabGUID TM_LargePineOldSnow03_Large_Stump = new PrefabGUID(-256672691); public static readonly PrefabGUID TM_LargePineOldSnow03_Small = new PrefabGUID(1554604728); public static readonly PrefabGUID TM_LargePineOldSnow03_Small_Stump = new PrefabGUID(959210414); public static readonly PrefabGUID TM_LargePineSnow_Sapling = new PrefabGUID(-1773875790); public static readonly PrefabGUID TM_LargePineSnow01_Large = new PrefabGUID(444235335); public static readonly PrefabGUID TM_LargePineSnow01_Large_Stump = new PrefabGUID(2114203604); public static readonly PrefabGUID TM_LargePineSnow01_Small = new PrefabGUID(-140928751); public static readonly PrefabGUID TM_LargePineSnow01_Small_Stump = new PrefabGUID(902747057); public static readonly PrefabGUID TM_LargePineSnow02_Large = new PrefabGUID(1910215991); public static readonly PrefabGUID TM_LargePineSnow02_Large_Stump = new PrefabGUID(17446195); public static readonly PrefabGUID TM_LargePineSnow02_Small = new PrefabGUID(-1498917585); public static readonly PrefabGUID TM_LargePineSnow02_Small_Stump = new PrefabGUID(-12151298); public static readonly PrefabGUID TM_LargePineSnow03_Large = new PrefabGUID(1325646407); public static readonly PrefabGUID TM_LargePineSnow03_Large_Stump = new PrefabGUID(1853477321); public static readonly PrefabGUID TM_LargePineSnow03_Small = new PrefabGUID(-973511458); public static readonly PrefabGUID TM_LargePineSnow03_Small_Stump = new PrefabGUID(-685405394); public static readonly PrefabGUID TM_Legion_IceRanger_TowerOfFrost_Icicle = new PrefabGUID(1476543271); public static readonly PrefabGUID TM_LiquidStation_Water_Well01 = new PrefabGUID(986517450); public static readonly PrefabGUID TM_LiquidStation_Water_Well02 = new PrefabGUID(-1919124085); public static readonly PrefabGUID TM_LiquidStation_Water_Well03 = new PrefabGUID(1742891933); public static readonly PrefabGUID TM_Lucie_PotionCabinet_02 = new PrefabGUID(-1659867234); public static readonly PrefabGUID TM_Lucie_PotionCabinet_02_Broken = new PrefabGUID(-1620505458); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03 = new PrefabGUID(-1663843662); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_Broken = new PrefabGUID(1603980058); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_Broken_NonArena = new PrefabGUID(-145310860); public static readonly PrefabGUID TM_Lucie_PotionCabinet_03_NonArena = new PrefabGUID(-2132944980); public static readonly PrefabGUID TM_Lucie_PotionManager = new PrefabGUID(730911835); public static readonly PrefabGUID TM_MageTower_BigDesk01 = new PrefabGUID(-152875148); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken01 = new PrefabGUID(644331483); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken01_WithCollision = new PrefabGUID(-744101460); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken02 = new PrefabGUID(-990882441); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken02_WithCollision = new PrefabGUID(451187676); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken03 = new PrefabGUID(1340221356); public static readonly PrefabGUID TM_MageTower_Bookcase_Big_Broken03_WithCollision = new PrefabGUID(1808726032); public static readonly PrefabGUID TM_MageTower_Bookcase_Big01 = new PrefabGUID(1773192306); public static readonly PrefabGUID TM_MageTower_Bookcase_Big01_WithCollision = new PrefabGUID(-945081898); public static readonly PrefabGUID TM_MageTower_Bookcase_Big02 = new PrefabGUID(-11132733); public static readonly PrefabGUID TM_MageTower_Bookcase_Big02_WithCollision = new PrefabGUID(1967487597); public static readonly PrefabGUID TM_MageTower_Bookcase_Big03 = new PrefabGUID(-1233413457); public static readonly PrefabGUID TM_MageTower_Bookcase_Big03_WithCollision = new PrefabGUID(1512473184); public static readonly PrefabGUID TM_MageTower_Bookcase_Small01 = new PrefabGUID(-37170608); public static readonly PrefabGUID TM_MageTower_Bookcase_Small01_45deg = new PrefabGUID(1527415091); public static readonly PrefabGUID TM_MageTower_Bookcase_Small02 = new PrefabGUID(1058224676); public static readonly PrefabGUID TM_MageTower_Bookcase_Small02_45deg = new PrefabGUID(-1880462946); public static readonly PrefabGUID TM_MageTower_Bookcase_Small03 = new PrefabGUID(2137442766); public static readonly PrefabGUID TM_MageTower_Bookcase_Small03_45deg = new PrefabGUID(-1714034937); public static readonly PrefabGUID TM_MageTower_Bookpile01 = new PrefabGUID(-1891796343); public static readonly PrefabGUID TM_MageTower_Bookpile02 = new PrefabGUID(-1153963954); public static readonly PrefabGUID TM_MageTower_Bookpile03 = new PrefabGUID(1674059947); public static readonly PrefabGUID TM_MageTower_CandleHolder01 = new PrefabGUID(-1445792263); public static readonly PrefabGUID TM_MageTower_Chair01 = new PrefabGUID(-446403193); public static readonly PrefabGUID TM_MageTower_Divan01 = new PrefabGUID(-1658798970); public static readonly PrefabGUID TM_MageTower_Divan02 = new PrefabGUID(862756751); public static readonly PrefabGUID TM_MageTower_FlowerPot01 = new PrefabGUID(-57566621); public static readonly PrefabGUID TM_MageTower_FlowerPot02 = new PrefabGUID(2035487770); public static readonly PrefabGUID TM_MageTower_Ladder01 = new PrefabGUID(-1452967211); public static readonly PrefabGUID TM_MageTower_Ladder02 = new PrefabGUID(-397822799); public static readonly PrefabGUID TM_MageTower_Ladder03 = new PrefabGUID(-1004010354); public static readonly PrefabGUID TM_MageTower_Lantern01 = new PrefabGUID(84563889); public static readonly PrefabGUID TM_MageTower_Lantern02 = new PrefabGUID(2036768485); public static readonly PrefabGUID TM_MageTower_Prop_Pillar01 = new PrefabGUID(1251734449); public static readonly PrefabGUID TM_MageTower_Prop_Pillar02 = new PrefabGUID(305229767); public static readonly PrefabGUID TM_MageTower_SmallDesk01 = new PrefabGUID(-42280593); public static readonly PrefabGUID TM_MageTower_SmallDesk02 = new PrefabGUID(2012637784); public static readonly PrefabGUID TM_MageTower_SmallDesk03 = new PrefabGUID(-960662165); public static readonly PrefabGUID TM_MageTower_SmallDesk04 = new PrefabGUID(-864814519); public static readonly PrefabGUID TM_Maple_01_Stage0 = new PrefabGUID(106579371); public static readonly PrefabGUID TM_Maple_01_Stage0_Stump = new PrefabGUID(296497533); public static readonly PrefabGUID TM_Maple_01_Stage1 = new PrefabGUID(1326895471); public static readonly PrefabGUID TM_Maple_01_Stage1_Stump = new PrefabGUID(2037726182); public static readonly PrefabGUID TM_Maple_02_Stage0 = new PrefabGUID(902802489); public static readonly PrefabGUID TM_Maple_02_Stage0_Stump = new PrefabGUID(520402705); public static readonly PrefabGUID TM_Maple_02_Stage1 = new PrefabGUID(1601709544); public static readonly PrefabGUID TM_Maple_02_Stage1_Stump = new PrefabGUID(1654504536); public static readonly PrefabGUID TM_Maple_Sapling = new PrefabGUID(-573361809); public static readonly PrefabGUID TM_Mech_01_Rubble = new PrefabGUID(116795498); public static readonly PrefabGUID TM_Mech_01_Stage0_Resource = new PrefabGUID(1286218467); public static readonly PrefabGUID TM_Mech_01_Stage1_Resource = new PrefabGUID(1348284321); public static readonly PrefabGUID TM_Mech_02_Rubble = new PrefabGUID(-1282943138); public static readonly PrefabGUID TM_Mech_02_Stage0_Resource = new PrefabGUID(-1797867127); public static readonly PrefabGUID TM_Mech_02_Stage1_Resource = new PrefabGUID(525821635); public static readonly PrefabGUID TM_Mech_03_Rubble = new PrefabGUID(266440518); public static readonly PrefabGUID TM_Mech_03_Stage0_Resource = new PrefabGUID(134171803); public static readonly PrefabGUID TM_Mech_03_Stage1_Resource = new PrefabGUID(535826937); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Driller_01 = new PrefabGUID(1615800801); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Gattler_01 = new PrefabGUID(-2108134215); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_LightningRod_01 = new PrefabGUID(1252063697); public static readonly PrefabGUID TM_MechCorpse_UnitCorpse_Tank_Zapper_01 = new PrefabGUID(-1747329297); public static readonly PrefabGUID TM_MidsummerPole01 = new PrefabGUID(-519562381); public static readonly PrefabGUID TM_Militia_Barricade_01 = new PrefabGUID(491588514); public static readonly PrefabGUID TM_Militia_Brazier01 = new PrefabGUID(-185220168); public static readonly PrefabGUID TM_Militia_GlassBreakableCool = new PrefabGUID(-425692819); public static readonly PrefabGUID TM_Militia_GlassBreakableCool_Hard = new PrefabGUID(1078530288); public static readonly PrefabGUID TM_MilitiaCrate_01 = new PrefabGUID(1505468927); public static readonly PrefabGUID TM_MilitiaCrate_02 = new PrefabGUID(-2012567553); public static readonly PrefabGUID TM_MilitiaCrateLarge_01 = new PrefabGUID(-312741735); public static readonly PrefabGUID TM_MilitiaCrateLarge_02 = new PrefabGUID(1562952055); public static readonly PrefabGUID TM_MilitiaFlag01 = new PrefabGUID(-1016380251); public static readonly PrefabGUID TM_MilitiaFlag02 = new PrefabGUID(898859625); public static readonly PrefabGUID TM_MilitiaFlag03 = new PrefabGUID(1951585238); public static readonly PrefabGUID TM_MilitiaFlag04 = new PrefabGUID(-1028865713); public static readonly PrefabGUID TM_MilitiaTableVar01 = new PrefabGUID(-1961837248); public static readonly PrefabGUID TM_MilitiaTableVar02 = new PrefabGUID(-1274664855); public static readonly PrefabGUID TM_MilitiaTableVar03 = new PrefabGUID(1093493032); public static readonly PrefabGUID TM_MilitiaTableVar03_InteractionIdle = new PrefabGUID(2001711654); public static readonly PrefabGUID TM_Mine_Barrel01 = new PrefabGUID(-1221794762); public static readonly PrefabGUID TM_Mine_Box01 = new PrefabGUID(1241123122); public static readonly PrefabGUID TM_Mine_BoxDynamite01 = new PrefabGUID(-2106455441); public static readonly PrefabGUID TM_Mine_Cart01 = new PrefabGUID(-2012937705); public static readonly PrefabGUID TM_Mine_Cart01_IdleInteraction = new PrefabGUID(664323111); public static readonly PrefabGUID TM_Mine_CartIron01 = new PrefabGUID(-2072515321); public static readonly PrefabGUID TM_Mine_CartSilver01 = new PrefabGUID(-1894839372); public static readonly PrefabGUID TM_Mine_Fence01 = new PrefabGUID(431713588); public static readonly PrefabGUID TM_Mine_Fence02 = new PrefabGUID(1864454785); public static readonly PrefabGUID TM_Mine_Fence03 = new PrefabGUID(1263922549); public static readonly PrefabGUID TM_Mine_FenceDiagonal01 = new PrefabGUID(1733848869); public static readonly PrefabGUID TM_Mine_FenceDiagonal02 = new PrefabGUID(-1362967486); public static readonly PrefabGUID TM_Mine_FenceDiagonal03 = new PrefabGUID(-1776438554); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable01 = new PrefabGUID(-2107940824); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable02 = new PrefabGUID(-930432884); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable03 = new PrefabGUID(-605713859); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable04 = new PrefabGUID(1279321185); public static readonly PrefabGUID TM_MonsterCastle_Ruin_Pillar_Destructable05 = new PrefabGUID(340421094); public static readonly PrefabGUID TM_MountainBirch_01_Stage0_snow = new PrefabGUID(-69224034); public static readonly PrefabGUID TM_MountainBirch_01_Stage0_snow_Stump = new PrefabGUID(1686208998); public static readonly PrefabGUID TM_MountainBirch_01_Stage1_snow = new PrefabGUID(-212267252); public static readonly PrefabGUID TM_MountainBirch_01_Stage1_snow_Stump = new PrefabGUID(-1957278998); public static readonly PrefabGUID TM_MountainBirch_02_Stage0_snow = new PrefabGUID(-1875389140); public static readonly PrefabGUID TM_MountainBirch_02_Stage0_snow_Stump = new PrefabGUID(8368200); public static readonly PrefabGUID TM_MountainBirch_02_Stage1_snow = new PrefabGUID(364664176); public static readonly PrefabGUID TM_MountainBirch_02_Stage1_snow_Stump = new PrefabGUID(187992557); public static readonly PrefabGUID TM_MountainBirch_03_Stage0_snow = new PrefabGUID(-481413387); public static readonly PrefabGUID TM_MountainBirch_03_Stage0_snow_Stump = new PrefabGUID(1275815720); public static readonly PrefabGUID TM_MountainBirch_03_Stage1_snow = new PrefabGUID(-881587725); public static readonly PrefabGUID TM_MountainBirch_03_Stage1_snow_Stump = new PrefabGUID(1353541514); public static readonly PrefabGUID TM_MountainBirch_Sapling_snow = new PrefabGUID(1903361689); public static readonly PrefabGUID TM_Noctem_AlchemyTable01 = new PrefabGUID(2042966310); public static readonly PrefabGUID TM_Noctem_AlchemyTable02 = new PrefabGUID(1543470680); public static readonly PrefabGUID TM_Noctem_AlchemyTable03 = new PrefabGUID(1826602541); public static readonly PrefabGUID TM_Noctem_Banner01 = new PrefabGUID(1504598571); public static readonly PrefabGUID TM_Noctem_Barrel01 = new PrefabGUID(1972530250); public static readonly PrefabGUID TM_Noctem_BloodTap01 = new PrefabGUID(391174672); public static readonly PrefabGUID TM_Noctem_Bonfire01 = new PrefabGUID(-1694565271); public static readonly PrefabGUID TM_Noctem_Bonfire01_Growing = new PrefabGUID(710968347); public static readonly PrefabGUID TM_Noctem_BossThrone01 = new PrefabGUID(-1491491130); public static readonly PrefabGUID TM_Noctem_Cage01_Door01 = new PrefabGUID(-1185032666); public static readonly PrefabGUID TM_Noctem_Candlestand01 = new PrefabGUID(182934148); public static readonly PrefabGUID TM_Noctem_Catacomb_Brazier01 = new PrefabGUID(-80730814); public static readonly PrefabGUID TM_Noctem_Cauldron01 = new PrefabGUID(1238747965); public static readonly PrefabGUID TM_Noctem_Cauldron01_Growing = new PrefabGUID(-412480443); public static readonly PrefabGUID TM_Noctem_Chair01 = new PrefabGUID(-398818006); public static readonly PrefabGUID TM_Noctem_Chair02 = new PrefabGUID(-1752391953); public static readonly PrefabGUID TM_Noctem_Crate01 = new PrefabGUID(1420732621); public static readonly PrefabGUID TM_Noctem_CrateLarge01 = new PrefabGUID(-1782945304); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier_Ruin01 = new PrefabGUID(1488297337); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier_Ruin02 = new PrefabGUID(1930685054); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Brazier01 = new PrefabGUID(1156936627); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin01 = new PrefabGUID(84890747); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin02 = new PrefabGUID(1576868385); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase_Ruin03 = new PrefabGUID(-237875290); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase01 = new PrefabGUID(-216695461); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase01_Fade = new PrefabGUID(28659318); public static readonly PrefabGUID TM_Noctem_DraculaCastle_PodiumVase02 = new PrefabGUID(-515651776); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin01 = new PrefabGUID(664885951); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin01_lying = new PrefabGUID(-790101700); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin02 = new PrefabGUID(-1695775262); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin03 = new PrefabGUID(597207737); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase_Ruin04 = new PrefabGUID(-1288020645); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase01 = new PrefabGUID(-1289201708); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase01_Fade = new PrefabGUID(1953561193); public static readonly PrefabGUID TM_Noctem_DraculaCastle_Vase02 = new PrefabGUID(-157727038); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Bench01 = new PrefabGUID(422272623); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn01 = new PrefabGUID(-748409624); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn02 = new PrefabGUID(-1242222712); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn03 = new PrefabGUID(956592768); public static readonly PrefabGUID TM_Noctem_DraculaGarden_Urn04 = new PrefabGUID(-1220419189); public static readonly PrefabGUID TM_Noctem_DraculasDemise_Barricade01 = new PrefabGUID(1236744770); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02 = new PrefabGUID(-1370617154); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02_02 = new PrefabGUID(955237866); public static readonly PrefabGUID TM_Noctem_DraculaYard_ImpalingSpikes02_03 = new PrefabGUID(1008279702); public static readonly PrefabGUID TM_Noctem_HangingTorch01 = new PrefabGUID(-355808780); public static readonly PrefabGUID TM_Noctem_IronMaiden01 = new PrefabGUID(954846494); public static readonly PrefabGUID TM_Noctem_IronMaiden02 = new PrefabGUID(1697833542); public static readonly PrefabGUID TM_Noctem_IronMaiden03 = new PrefabGUID(834268713); public static readonly PrefabGUID TM_Noctem_IronMaiden04 = new PrefabGUID(956297577); public static readonly PrefabGUID TM_Noctem_Lantern01 = new PrefabGUID(-2138309085); public static readonly PrefabGUID TM_Noctem_PillarRuin01_Destructable = new PrefabGUID(311468378); public static readonly PrefabGUID TM_Noctem_PillarRuin02_Destructable = new PrefabGUID(-1933533595); public static readonly PrefabGUID TM_Noctem_RiftCrystalChild_Tier01 = new PrefabGUID(-1316392908); public static readonly PrefabGUID TM_Noctem_RiftCrystalChild_Tier02 = new PrefabGUID(974772805); public static readonly PrefabGUID TM_Noctem_StoneUrn_01 = new PrefabGUID(850715588); public static readonly PrefabGUID TM_Noctem_StoneUrn_02 = new PrefabGUID(-1782629816); public static readonly PrefabGUID TM_Noctem_StoneUrn_03 = new PrefabGUID(-1642296863); public static readonly PrefabGUID TM_Noctem_TombBig_01_Broken = new PrefabGUID(-1945712831); public static readonly PrefabGUID TM_Noctem_TombBig_02_Broken = new PrefabGUID(1708948020); public static readonly PrefabGUID TM_Noctem_TombBig_03_Broken = new PrefabGUID(-903107334); public static readonly PrefabGUID TM_Noctem_Tube01 = new PrefabGUID(-404834416); public static readonly PrefabGUID TM_Noctem_Tube02 = new PrefabGUID(1029968030); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_01 = new PrefabGUID(-1800706733); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_02 = new PrefabGUID(2105903165); public static readonly PrefabGUID TM_Noctem_VampireGravestone_Big_03 = new PrefabGUID(-2002166832); public static readonly PrefabGUID TM_Noctem_VampireGravestone01 = new PrefabGUID(-1428170075); public static readonly PrefabGUID TM_Noctem_VampireGravestone01_Broken = new PrefabGUID(1762408972); public static readonly PrefabGUID TM_Noctem_VampireGravestone02 = new PrefabGUID(291023312); public static readonly PrefabGUID TM_Noctem_VampireGravestone02_Broken = new PrefabGUID(1290812537); public static readonly PrefabGUID TM_Noctem_VampireGravestone03 = new PrefabGUID(-65103494); public static readonly PrefabGUID TM_Noctem_VampireGravestone04 = new PrefabGUID(-1492616562); public static readonly PrefabGUID TM_Noctem_VampireGravestone05 = new PrefabGUID(-1268722576); public static readonly PrefabGUID TM_Noctem_VampireGraveyard_Brazier_01 = new PrefabGUID(-1961297808); public static readonly PrefabGUID TM_Noctem_Vendor_Barrel01 = new PrefabGUID(-504704688); public static readonly PrefabGUID TM_Noctem_Vendor_Crate_Large01 = new PrefabGUID(-1400431279); public static readonly PrefabGUID TM_Noctem_Vendor_Crate01 = new PrefabGUID(1054623959); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage0 = new PrefabGUID(1962045764); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage0_Stump = new PrefabGUID(-129787060); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage1 = new PrefabGUID(-508689497); public static readonly PrefabGUID TM_NoctemAspenTree_01_Stage1_Stump = new PrefabGUID(1390491755); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage0 = new PrefabGUID(1786617846); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage0_Stump = new PrefabGUID(-878615880); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage1 = new PrefabGUID(1219290740); public static readonly PrefabGUID TM_NoctemAspenTree_02_Stage1_Stump = new PrefabGUID(-642341734); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage0 = new PrefabGUID(985804166); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage0_Stump = new PrefabGUID(771649960); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage1 = new PrefabGUID(-176717740); public static readonly PrefabGUID TM_NoctemAspenTree_03_Stage1_Stump = new PrefabGUID(335989304); public static readonly PrefabGUID TM_NoctemAspenTree_Sapling = new PrefabGUID(-1689036950); public static readonly PrefabGUID TM_NoctemNorth_PineLarge_Sapling = new PrefabGUID(-1818013313); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Large = new PrefabGUID(-1348425524); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Large_Stump = new PrefabGUID(-973083800); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Small = new PrefabGUID(455442402); public static readonly PrefabGUID TM_NoctemNorth_PineLarge01_Small_Stump = new PrefabGUID(2128710602); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage0 = new PrefabGUID(-2025542759); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage0_Stump = new PrefabGUID(1804715715); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage1 = new PrefabGUID(-27912735); public static readonly PrefabGUID TM_NoctemNorthTree_01_Stage1_Stump = new PrefabGUID(-110142534); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage0 = new PrefabGUID(-779943315); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage0_Stump = new PrefabGUID(-1491286802); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage1 = new PrefabGUID(1895172199); public static readonly PrefabGUID TM_NoctemNorthTree_02_Stage1_Stump = new PrefabGUID(2110695354); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage0 = new PrefabGUID(488674808); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage0_Stump = new PrefabGUID(1052022625); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage1 = new PrefabGUID(-1030675179); public static readonly PrefabGUID TM_NoctemNorthTree_03_Stage1_Stump = new PrefabGUID(1205359067); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage0 = new PrefabGUID(1935047779); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage0_Stump = new PrefabGUID(271282186); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage1 = new PrefabGUID(-704504207); public static readonly PrefabGUID TM_NoctemNorthTree_04_Stage1_Stump = new PrefabGUID(-1094708999); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage0 = new PrefabGUID(1285430818); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage0_Stump = new PrefabGUID(-1955201684); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage1 = new PrefabGUID(39749754); public static readonly PrefabGUID TM_NoctemNorthTree_05_Stage1_Stump = new PrefabGUID(-1324428527); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage0 = new PrefabGUID(1815027876); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage0_Stump = new PrefabGUID(1805816450); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage1 = new PrefabGUID(444893322); public static readonly PrefabGUID TM_NoctemNorthTree_06_Stage1_Stump = new PrefabGUID(1595805603); public static readonly PrefabGUID TM_NoctemNorthTree_Sapling = new PrefabGUID(189747236); public static readonly PrefabGUID TM_NoctemRuin_Pillar01 = new PrefabGUID(-1246139033); public static readonly PrefabGUID TM_NoctemRuin_Wall_Diagonal01 = new PrefabGUID(1098881685); public static readonly PrefabGUID TM_NoctemRuin_Wall_Diagonal02 = new PrefabGUID(-1212297675); public static readonly PrefabGUID TM_NoctemRuin_Wall01 = new PrefabGUID(1276787019); public static readonly PrefabGUID TM_NoctemRuin_Wall02 = new PrefabGUID(1927612335); public static readonly PrefabGUID TM_NoctemSouth_Pine_Sapling = new PrefabGUID(568604230); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Large = new PrefabGUID(-1666789669); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Large_Stump = new PrefabGUID(-1963800645); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Small = new PrefabGUID(-596271732); public static readonly PrefabGUID TM_NoctemSouth_Pine01_Small_Stump = new PrefabGUID(-544360355); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Large = new PrefabGUID(-828070670); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Large_Stump = new PrefabGUID(1499800154); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Small = new PrefabGUID(1148853969); public static readonly PrefabGUID TM_NoctemSouth_Pine02_Small_Stump = new PrefabGUID(-252634646); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Large = new PrefabGUID(-147139721); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Large_Stump = new PrefabGUID(-918524663); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Small = new PrefabGUID(749672599); public static readonly PrefabGUID TM_NoctemSouth_Pine03_Small_Stump = new PrefabGUID(1512109254); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage0 = new PrefabGUID(291809914); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage0_Stump = new PrefabGUID(1679629344); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage1 = new PrefabGUID(912011101); public static readonly PrefabGUID TM_NoctemWillowTree_01_Stage1_Stump = new PrefabGUID(-1829463608); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage0 = new PrefabGUID(1973942445); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage0_Stump = new PrefabGUID(16174971); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage1 = new PrefabGUID(652177446); public static readonly PrefabGUID TM_NoctemWillowTree_02_Stage1_Stump = new PrefabGUID(-188462808); public static readonly PrefabGUID TM_NoctemWillowTree_Sapling = new PrefabGUID(1426557356); public static readonly PrefabGUID TM_Obsidian_01_Rubble = new PrefabGUID(803155035); public static readonly PrefabGUID TM_Obsidian_01_Stage0_Resource = new PrefabGUID(1370245473); public static readonly PrefabGUID TM_Obsidian_01_Stage1_Resource = new PrefabGUID(232426902); public static readonly PrefabGUID TM_Obsidian_02_Rubble = new PrefabGUID(1799464116); public static readonly PrefabGUID TM_Obsidian_02_Stage0_Resource = new PrefabGUID(-50596060); public static readonly PrefabGUID TM_Obsidian_02_Stage1_Resource = new PrefabGUID(574082445); public static readonly PrefabGUID TM_Obsidian_03_Rubble = new PrefabGUID(906809505); public static readonly PrefabGUID TM_Obsidian_03_Stage0_Resource = new PrefabGUID(2075702825); public static readonly PrefabGUID TM_Obsidian_03_Stage1_Resource = new PrefabGUID(-385870631); public static readonly PrefabGUID TM_Obsidian_04_Rubble = new PrefabGUID(-61468652); public static readonly PrefabGUID TM_Obsidian_04_Stage0_Resource = new PrefabGUID(-1456936243); public static readonly PrefabGUID TM_Obsidian_04_Stage1_Resource = new PrefabGUID(1989732749); public static readonly PrefabGUID TM_Pedestal_Candle_01 = new PrefabGUID(1453786058); public static readonly PrefabGUID TM_Pedestal_Lamp_01 = new PrefabGUID(-883487404); public static readonly PrefabGUID TM_Pedestal_Plant_01 = new PrefabGUID(1812470431); public static readonly PrefabGUID TM_Pine_01_Stage0 = new PrefabGUID(432677180); public static readonly PrefabGUID TM_Pine_01_Stage0_snow = new PrefabGUID(939072066); public static readonly PrefabGUID TM_Pine_01_Stage0_snow_Stump = new PrefabGUID(354114524); public static readonly PrefabGUID TM_Pine_01_Stage0_Stump = new PrefabGUID(-263696408); public static readonly PrefabGUID TM_Pine_01_Stage1 = new PrefabGUID(-1343416474); public static readonly PrefabGUID TM_Pine_01_Stage1_snow = new PrefabGUID(-488226823); public static readonly PrefabGUID TM_Pine_01_Stage1_snow_Stump = new PrefabGUID(1768501642); public static readonly PrefabGUID TM_Pine_01_Stage1_Stump = new PrefabGUID(816272341); public static readonly PrefabGUID TM_Pine_02_Stage0 = new PrefabGUID(-88876167); public static readonly PrefabGUID TM_Pine_02_Stage0_snow = new PrefabGUID(980536412); public static readonly PrefabGUID TM_Pine_02_Stage0_snow_Stump = new PrefabGUID(-65172615); public static readonly PrefabGUID TM_Pine_02_Stage0_Spider = new PrefabGUID(230443038); public static readonly PrefabGUID TM_Pine_02_Stage0_Stump = new PrefabGUID(-387871062); public static readonly PrefabGUID TM_Pine_02_Stage1 = new PrefabGUID(-184217952); public static readonly PrefabGUID TM_Pine_02_Stage1_snow = new PrefabGUID(1548394465); public static readonly PrefabGUID TM_Pine_02_Stage1_snow_Stump = new PrefabGUID(-968069886); public static readonly PrefabGUID TM_Pine_02_Stage1_Spider = new PrefabGUID(-1345949015); public static readonly PrefabGUID TM_Pine_02_Stage1_Stump = new PrefabGUID(1761404517); public static readonly PrefabGUID TM_Pine_03_Stage0 = new PrefabGUID(1863115891); public static readonly PrefabGUID TM_Pine_03_Stage0_snow = new PrefabGUID(1977847725); public static readonly PrefabGUID TM_Pine_03_Stage0_snow_Stump = new PrefabGUID(402853609); public static readonly PrefabGUID TM_Pine_03_Stage0_Stump = new PrefabGUID(-679818697); public static readonly PrefabGUID TM_Pine_03_Stage1 = new PrefabGUID(1736091243); public static readonly PrefabGUID TM_Pine_03_Stage1_snow = new PrefabGUID(1185287607); public static readonly PrefabGUID TM_Pine_03_Stage1_snow_Stump = new PrefabGUID(1802142374); public static readonly PrefabGUID TM_Pine_03_Stage1_Stump = new PrefabGUID(-1501752520); public static readonly PrefabGUID TM_Pine_04_Stage0 = new PrefabGUID(-670465643); public static readonly PrefabGUID TM_Pine_04_Stage0_snow = new PrefabGUID(-445812187); public static readonly PrefabGUID TM_Pine_04_Stage0_snow_Stump = new PrefabGUID(-1108140468); public static readonly PrefabGUID TM_Pine_04_Stage0_Stump = new PrefabGUID(-513030010); public static readonly PrefabGUID TM_Pine_04_Stage1 = new PrefabGUID(-203597648); public static readonly PrefabGUID TM_Pine_04_Stage1_snow = new PrefabGUID(-1677038371); public static readonly PrefabGUID TM_Pine_04_Stage1_snow_Stump = new PrefabGUID(-68479492); public static readonly PrefabGUID TM_Pine_04_Stage1_Stump = new PrefabGUID(967890786); public static readonly PrefabGUID TM_Pine_05_Stage0 = new PrefabGUID(41585966); public static readonly PrefabGUID TM_Pine_05_Stage0_snow = new PrefabGUID(-360972203); public static readonly PrefabGUID TM_Pine_05_Stage0_snow_Stump = new PrefabGUID(-878806640); public static readonly PrefabGUID TM_Pine_05_Stage0_Spider = new PrefabGUID(561374773); public static readonly PrefabGUID TM_Pine_05_Stage0_Stump = new PrefabGUID(1575390470); public static readonly PrefabGUID TM_Pine_05_Stage1 = new PrefabGUID(1966772876); public static readonly PrefabGUID TM_Pine_05_Stage1_snow = new PrefabGUID(2026745353); public static readonly PrefabGUID TM_Pine_05_Stage1_snow_Stump = new PrefabGUID(922961280); public static readonly PrefabGUID TM_Pine_05_Stage1_Spider = new PrefabGUID(57072390); public static readonly PrefabGUID TM_Pine_05_Stage1_Stump = new PrefabGUID(1582925053); public static readonly PrefabGUID TM_Pine_Sapling = new PrefabGUID(1682148661); public static readonly PrefabGUID TM_Pine_Sapling_snow = new PrefabGUID(-1376995081); public static readonly PrefabGUID TM_Plant_BleedingHeart_01_Pickup = new PrefabGUID(26232567); public static readonly PrefabGUID TM_Plant_BleedingHeart_01_Pickup_Destroyed = new PrefabGUID(639140591); public static readonly PrefabGUID TM_Plant_BloodRose_01_Pickup = new PrefabGUID(912333956); public static readonly PrefabGUID TM_Plant_BloodRose_01_Pickup_Destroyed = new PrefabGUID(1052560967); public static readonly PrefabGUID TM_Plant_FireBlossom_01_Pickup = new PrefabGUID(-1478081952); public static readonly PrefabGUID TM_Plant_FireBlossom_01_Pickup_Destroyed = new PrefabGUID(-1199937968); public static readonly PrefabGUID TM_Plant_GhostShroom_01_Pickup = new PrefabGUID(-1433121689); public static readonly PrefabGUID TM_Plant_GhostShroom_01_Pickup_Destroyed = new PrefabGUID(-674810862); public static readonly PrefabGUID TM_Plant_HellsClarion_01_Pickup = new PrefabGUID(-1058568408); public static readonly PrefabGUID TM_Plant_HellsClarion_01_Pickup_Destroyed = new PrefabGUID(104103099); public static readonly PrefabGUID TM_Plant_Lotus_01_Pickup = new PrefabGUID(-2125170378); public static readonly PrefabGUID TM_Plant_Lotus_01_Pickup_Destroyed = new PrefabGUID(361784916); public static readonly PrefabGUID TM_Plant_MourningLily_01_Pickup = new PrefabGUID(1647629126); public static readonly PrefabGUID TM_Plant_MourningLily_01_Pickup_Destroyed = new PrefabGUID(-841370650); public static readonly PrefabGUID TM_Plant_SnowFlower_01_Pickup = new PrefabGUID(-871557590); public static readonly PrefabGUID TM_Plant_SnowFlower_01_Pickup_Destroyed = new PrefabGUID(-1393198230); public static readonly PrefabGUID TM_Plant_Sunflower_01_Pickup = new PrefabGUID(1556305529); public static readonly PrefabGUID TM_Plant_Sunflower_01_Pickup_Destroyed = new PrefabGUID(1868267541); public static readonly PrefabGUID TM_Plant_Thistle_01_Pickup = new PrefabGUID(2006190871); public static readonly PrefabGUID TM_Plant_Thistle_01_Pickup_Destroyed = new PrefabGUID(991765428); public static readonly PrefabGUID TM_Plant_TrippyShroom_01_Pickup = new PrefabGUID(-362609585); public static readonly PrefabGUID TM_Plant_TrippyShroom_01_Pickup_Destroyed = new PrefabGUID(142017252); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_01_Pickup = new PrefabGUID(-1228912087); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_01_Pickup_Destoryed = new PrefabGUID(1946292342); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_02_Pickup = new PrefabGUID(1493401656); public static readonly PrefabGUID TM_Plantfiber_MossFiddlehead_Fern01_03_Pickup = new PrefabGUID(-1848451066); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_01_Pickup = new PrefabGUID(918368875); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_01_Pickup_Destoryed = new PrefabGUID(85036432); public static readonly PrefabGUID TM_Plantfiber_Strongblade_BushyTree_02_Pickup = new PrefabGUID(-944907462); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_01_Pickup = new PrefabGUID(1216413890); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_01_Pickup_Destroyed = new PrefabGUID(1561508012); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_02_Pickup = new PrefabGUID(676475511); public static readonly PrefabGUID TM_Plantfiber_Strongblade_CorruptedFlower_02_Pickup_Destroyed = new PrefabGUID(1248629195); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_01_Pickup = new PrefabGUID(-618484931); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_01_Pickup_Destoryed = new PrefabGUID(-718902570); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_02_Pickup = new PrefabGUID(640495645); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigLeaf_03_Pickup = new PrefabGUID(101808063); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_01_Pickup = new PrefabGUID(716680258); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_01_Pickup_Destoryed = new PrefabGUID(-172463274); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_02_Pickup = new PrefabGUID(314640169); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BigRams_03_Pickup = new PrefabGUID(36242818); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_01_Pickup = new PrefabGUID(-521375512); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_01_Pickup_Destoryed = new PrefabGUID(1328035726); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushLeafy_02_Pickup = new PrefabGUID(-1561406655); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_01_Pickup = new PrefabGUID(1223081180); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_01_Pickup_Destoryed = new PrefabGUID(-912427122); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_02_Pickup = new PrefabGUID(-179372720); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_BushSmallRound_03_Pickup = new PrefabGUID(1486204754); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_01_Pickup = new PrefabGUID(1777962788); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_01_Pickup_Destoryed = new PrefabGUID(1437725476); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_02_Pickup = new PrefabGUID(-1062578652); public static readonly PrefabGUID TM_Plantfiber_StrongbladeForest_RoundLeaf_03_Pickup = new PrefabGUID(-1254179162); public static readonly PrefabGUID TM_PlantfiberBush_01_Pickup = new PrefabGUID(-907862918); public static readonly PrefabGUID TM_PlantfiberBush_01_Pickup_Destoryed = new PrefabGUID(-1835022989); public static readonly PrefabGUID TM_PlantfiberBush_02_Pickup = new PrefabGUID(250267380); public static readonly PrefabGUID TM_PlantfiberBush_03_Pickup = new PrefabGUID(1309141698); public static readonly PrefabGUID TM_PlantfiberBush_Cursed01_Pickup = new PrefabGUID(1399724961); public static readonly PrefabGUID TM_PlantfiberBush_Cursed01_Pickup_Destoryed = new PrefabGUID(1386783504); public static readonly PrefabGUID TM_PlantfiberBush_Cursed02_Pickup = new PrefabGUID(1923309251); public static readonly PrefabGUID TM_PlantfiberBush_Cursed03_Pickup = new PrefabGUID(-2063293341); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_01_Pickup = new PrefabGUID(-1827332944); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_01_Pickup_Destoryed = new PrefabGUID(-885025880); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_02_Pickup = new PrefabGUID(299789096); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_02_Pickup_Destoryed = new PrefabGUID(1695559083); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_03_Pickup = new PrefabGUID(1052259277); public static readonly PrefabGUID TM_PlantfiberBushBigleaf_03_Pickup_Destoryed = new PrefabGUID(1585818857); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_01_Pickup = new PrefabGUID(166967730); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_01_Pickup_Destoryed = new PrefabGUID(-602697050); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_02_Pickup = new PrefabGUID(-795132586); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_02_Pickup_Destoryed = new PrefabGUID(1884214509); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_03_Pickup = new PrefabGUID(-1389882543); public static readonly PrefabGUID TM_PlantfiberBushBigleafSnow_03_Pickup_Destoryed = new PrefabGUID(-1436848966); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot01_Pickup = new PrefabGUID(8785132); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot01_Pickup_Destoryed = new PrefabGUID(1975476430); public static readonly PrefabGUID TM_PlantfiberBushHosta_Gloomrot02_Pickup = new PrefabGUID(-73950729); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool01_Pickup = new PrefabGUID(1069953243); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool01_Pickup_Destoryed = new PrefabGUID(187843907); public static readonly PrefabGUID TM_PlantfiberBushHosta_GloomrotToxicPool02_Pickup = new PrefabGUID(1728679649); public static readonly PrefabGUID TM_PlantfiberBushLarge_01_Pickup = new PrefabGUID(-1062202401); public static readonly PrefabGUID TM_PlantfiberBushLarge_01_Pickup_Destoryed = new PrefabGUID(120665873); public static readonly PrefabGUID TM_PlantfiberBushLarge_02_Pickup = new PrefabGUID(-739933507); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed01_Pickup = new PrefabGUID(927211459); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed01_Pickup_Destoryed = new PrefabGUID(-225800242); public static readonly PrefabGUID TM_PlantfiberBushLarge_Cursed02_Pickup = new PrefabGUID(-1865635429); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_01_Pickup = new PrefabGUID(1150412978); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_01_Pickup_Destoryed = new PrefabGUID(-2106811353); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_02_Pickup = new PrefabGUID(731289354); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_02_Pickup_Destoryed = new PrefabGUID(1227329928); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_03_Pickup = new PrefabGUID(1159775639); public static readonly PrefabGUID TM_PlantfiberBushLargeAutumn_03_Pickup_Destoryed = new PrefabGUID(-1793422763); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_01_Pickup = new PrefabGUID(-1046207300); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_01_Pickup_Destoryed = new PrefabGUID(1079518260); public static readonly PrefabGUID TM_PlantfiberBushLargeSnow_02_Pickup = new PrefabGUID(-1370102249); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_01_Pickup = new PrefabGUID(-1610801227); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_01_Pickup_Destroyed = new PrefabGUID(568035891); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_02_Pickup = new PrefabGUID(786643340); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_02_Pickup_Destroyed = new PrefabGUID(1362986394); public static readonly PrefabGUID TM_PlantfiberBushMapleAutumn_03_Pickup = new PrefabGUID(1390667894); public static readonly PrefabGUID TM_PlantfiberBushNeedle_01_Pickup = new PrefabGUID(1419082650); public static readonly PrefabGUID TM_PlantfiberBushNeedle_01_Pickup_Destoryed = new PrefabGUID(-1627215937); public static readonly PrefabGUID TM_PlantfiberBushNeedleRed_01_Pickup = new PrefabGUID(-1922343011); public static readonly PrefabGUID TM_PlantfiberBushNeedleRed_01_Pickup_Destoryed = new PrefabGUID(19874778); public static readonly PrefabGUID TM_PlantfiberBushNeedleSnow_01_Pickup = new PrefabGUID(1717502441); public static readonly PrefabGUID TM_PlantfiberBushNeedleSnow_01_Pickup_Destoryed = new PrefabGUID(-483116429); public static readonly PrefabGUID TM_PlantfiberBushPlain_01_Pickup = new PrefabGUID(1026753638); public static readonly PrefabGUID TM_PlantfiberBushPlain_01_Pickup_Destoryed = new PrefabGUID(1209474083); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_01_Pickup = new PrefabGUID(-478682617); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_01_Pickup_Destoryed = new PrefabGUID(-557232101); public static readonly PrefabGUID TM_PlantfiberBushPlainAutumn_02_Pickup = new PrefabGUID(-681824567); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_01_Pickup = new PrefabGUID(1481998172); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_01_Pickup_Destoryed = new PrefabGUID(1477824391); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_02_Pickup = new PrefabGUID(651123078); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_02_Pickup_Destoryed = new PrefabGUID(1065641148); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_03_Pickup = new PrefabGUID(1561037477); public static readonly PrefabGUID TM_PlantfiberBushSmokeAutumn_04_Pickup = new PrefabGUID(1346265605); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_01_Pickup = new PrefabGUID(335187853); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_01_Pickup_Destroyed = new PrefabGUID(-1786101279); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_02_Pickup = new PrefabGUID(1774391891); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_03_Pickup = new PrefabGUID(-1338909410); public static readonly PrefabGUID TM_PlantfiberBushyAutumn_04_Pickup = new PrefabGUID(405773650); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_01_Pickup = new PrefabGUID(793127971); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_01_Pickup_Destroyed = new PrefabGUID(858920819); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_02_Pickup = new PrefabGUID(1937301990); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_02_Pickup_Destroyed = new PrefabGUID(50091416); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_03_Pickup = new PrefabGUID(-1167808269); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_03_Pickup_Destroyed = new PrefabGUID(-1217168285); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_04_Pickup = new PrefabGUID(-939303307); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_04_Pickup_Destroyed = new PrefabGUID(1891692522); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_05_Pickup = new PrefabGUID(776121880); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_05_Pickup_Destroyed = new PrefabGUID(-15795495); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_06_Pickup = new PrefabGUID(126070413); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_06_Pickup_Destroyed = new PrefabGUID(-628807704); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_07_Pickup = new PrefabGUID(-1339136839); public static readonly PrefabGUID TM_PlantfiberBushyGloomrot_07_Pickup_Destroyed = new PrefabGUID(-678032502); public static readonly PrefabGUID TM_PlantfiberBushyTree_01_Pickup = new PrefabGUID(2037875169); public static readonly PrefabGUID TM_PlantfiberBushyTree_01_Pickup_Destoryed = new PrefabGUID(-267981560); public static readonly PrefabGUID TM_PlantfiberBushyTree_02_Pickup = new PrefabGUID(-864038515); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_01_Pickup = new PrefabGUID(1155164240); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_01_Pickup_Destoryed = new PrefabGUID(-990308218); public static readonly PrefabGUID TM_PlantfiberBushyTreeCursed_02_Pickup = new PrefabGUID(2098438551); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_01_Pickup = new PrefabGUID(1652078016); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_01_Pickup_Destoryed = new PrefabGUID(944842053); public static readonly PrefabGUID TM_PlantfiberBushyTreeSnow_02_Pickup = new PrefabGUID(676683861); public static readonly PrefabGUID TM_PlantfiberCorn_01_Pickup = new PrefabGUID(-770663964); public static readonly PrefabGUID TM_PlantfiberCorn_01_Pickup_Destoryed = new PrefabGUID(-1889365333); public static readonly PrefabGUID TM_PlantfiberCorn_02_Pickup = new PrefabGUID(1535171512); public static readonly PrefabGUID TM_PlantfiberCorn_03_Pickup = new PrefabGUID(-948318543); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_01_Pickup = new PrefabGUID(1915961783); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_01_Pickup_Destoryed = new PrefabGUID(922996837); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_02_Pickup = new PrefabGUID(-500643684); public static readonly PrefabGUID TM_PlantfiberFern_Silverhills_03_Pickup = new PrefabGUID(-970591487); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_01_Pickup = new PrefabGUID(-1791055675); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_01_Pickup_Destroyed = new PrefabGUID(49492671); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_02_Pickup = new PrefabGUID(331091148); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_02_Pickup_Destroyed = new PrefabGUID(924023406); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_03_Pickup = new PrefabGUID(-1620752362); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_03_Pickup_Destroyed = new PrefabGUID(-2115797969); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_04_Pickup = new PrefabGUID(1051073141); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_04_Pickup_Destroyed = new PrefabGUID(-839809467); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_05_Pickup = new PrefabGUID(-2121214867); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_05_Pickup_Destroyed = new PrefabGUID(1667131244); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_06_Pickup = new PrefabGUID(853746692); public static readonly PrefabGUID TM_PlantfiberGloomrotHills_06_Pickup_Destroyed = new PrefabGUID(-1314166034); public static readonly PrefabGUID TM_PlantfiberGrape_01_Harvested_Pickup = new PrefabGUID(1102326952); public static readonly PrefabGUID TM_PlantfiberGrape_01_Harvested_Pickup_Destroyed = new PrefabGUID(-1481342671); public static readonly PrefabGUID TM_PlantfiberGrape_01_Pickup = new PrefabGUID(201989466); public static readonly PrefabGUID TM_PlantfiberGrape_01_Pickup_Destroyed = new PrefabGUID(-1787197378); public static readonly PrefabGUID TM_PlantfiberGrape_02_Pickup = new PrefabGUID(-1755830376); public static readonly PrefabGUID TM_PlantfiberGrape_02_Pickup_Destroyed = new PrefabGUID(-1580709613); public static readonly PrefabGUID TM_PlantfiberGrape_03_Pickup = new PrefabGUID(-1345653308); public static readonly PrefabGUID TM_PlantfiberGrape_03_Pickup_Destroyed = new PrefabGUID(-174718210); public static readonly PrefabGUID TM_PlantfiberGrape_04_Pickup = new PrefabGUID(156144755); public static readonly PrefabGUID TM_PlantfiberGrape_04_Pickup_Destroyed = new PrefabGUID(-1586206549); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed01_Pickup = new PrefabGUID(-1924490363); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed01_Pickup_Destoryed = new PrefabGUID(-1474028943); public static readonly PrefabGUID TM_PlantfiberHosta_Cursed02_Pickup = new PrefabGUID(1771370071); public static readonly PrefabGUID TM_PlantfiberHosta01_Pickup = new PrefabGUID(-1038476236); public static readonly PrefabGUID TM_PlantfiberHosta01_Pickup_Destoryed = new PrefabGUID(-1977582999); public static readonly PrefabGUID TM_PlantfiberHosta02_Pickup = new PrefabGUID(598696325); public static readonly PrefabGUID TM_PlantfiberJuniper_01_Pickup = new PrefabGUID(1036592827); public static readonly PrefabGUID TM_PlantfiberJuniper_01_Pickup_Destoryed = new PrefabGUID(298213868); public static readonly PrefabGUID TM_PlantfiberJuniper_02_Pickup = new PrefabGUID(-1441984200); public static readonly PrefabGUID TM_PlantfiberJuniper_02_Pickup_Destoryed = new PrefabGUID(1202300220); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_01_Pickup = new PrefabGUID(-404610955); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_01_Pickup_Destoryed = new PrefabGUID(-398620477); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_02_Pickup = new PrefabGUID(185120571); public static readonly PrefabGUID TM_PlantfiberJuniperSnow_02_Pickup_Destoryed = new PrefabGUID(1745350664); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_01_Pickup = new PrefabGUID(752142615); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_01_Pickup_Destroyed = new PrefabGUID(-483071675); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_02_Pickup = new PrefabGUID(1368285791); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_02_Pickup_Destroyed = new PrefabGUID(429570966); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_03_Pickup = new PrefabGUID(-423092821); public static readonly PrefabGUID TM_PlantfiberLeafyNoctem_03_Pickup_Destroyed = new PrefabGUID(1898034132); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_01_Pickup = new PrefabGUID(-460694983); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_01_Pickup_Destroyed = new PrefabGUID(1027529180); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_02_Pickup = new PrefabGUID(-1337469679); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_02_Pickup_Destroyed = new PrefabGUID(241390568); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_03_Pickup = new PrefabGUID(-209811776); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_03_Pickup_Destroyed = new PrefabGUID(-468047720); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_04_Pickup = new PrefabGUID(-1775763852); public static readonly PrefabGUID TM_PlantfiberNeedleBushNoctem_04_Pickup_Destroyed = new PrefabGUID(489342702); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_01_Pickup = new PrefabGUID(-161725309); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_01_Pickup_Destroyed = new PrefabGUID(-824948289); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_02_Pickup = new PrefabGUID(-1140768116); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_02_Pickup_Destroyed = new PrefabGUID(-173993019); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_03_Pickup = new PrefabGUID(275756993); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_03_Pickup_Destroyed = new PrefabGUID(-373417388); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_04_Pickup = new PrefabGUID(-1510293212); public static readonly PrefabGUID TM_PlantfiberSmallPineNoctem_04_Pickup_Destroyed = new PrefabGUID(933043247); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed01_Pickup = new PrefabGUID(-524412959); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed01_Pickup_Destoryed = new PrefabGUID(1209021807); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Cursed02_Pickup = new PrefabGUID(-1466622378); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot01_Pickup = new PrefabGUID(324756468); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot01_Pickup_Destoryed = new PrefabGUID(1130489193); public static readonly PrefabGUID TM_PlantfiberSpikyBush_Gloomrot02_Pickup = new PrefabGUID(-166818482); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills01_Pickup = new PrefabGUID(-1977219646); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills01_Pickup_Destoryed = new PrefabGUID(692848861); public static readonly PrefabGUID TM_PlantfiberSpikyBush_GloomrotHills02_Pickup = new PrefabGUID(-42619736); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_01_Pickup = new PrefabGUID(-1426443075); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_01_Pickup_Destroyed = new PrefabGUID(224237704); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_02_Pickup = new PrefabGUID(188555007); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_02_Pickup_Destroyed = new PrefabGUID(405001618); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_03_Pickup = new PrefabGUID(-418510906); public static readonly PrefabGUID TM_PlantfiberSpikyNoctem_03_Pickup_Destroyed = new PrefabGUID(801995079); public static readonly PrefabGUID TM_PlantfiberSunflower_01_Pickup = new PrefabGUID(-608256184); public static readonly PrefabGUID TM_PlantfiberSunflower_01_Pickup_Destoryed = new PrefabGUID(-114103527); public static readonly PrefabGUID TM_PlantfiberSunflower_02_Pickup = new PrefabGUID(263978365); public static readonly PrefabGUID TM_PlantfiberSunflower_03_Pickup = new PrefabGUID(544420990); public static readonly PrefabGUID TM_PlantfiberWheat_01_Pickup = new PrefabGUID(1071791529); public static readonly PrefabGUID TM_PlantfiberWheat_01_Pickup_Destoryed = new PrefabGUID(-1940243257); public static readonly PrefabGUID TM_PlantfiberWheat_02_Pickup = new PrefabGUID(-1908047631); public static readonly PrefabGUID TM_PlantfiberWheat_03_Pickup = new PrefabGUID(1113438348); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_01_Pickup = new PrefabGUID(770530955); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_01_Pickup_Destoryed = new PrefabGUID(-2088943304); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_02_Pickup = new PrefabGUID(-1276213608); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_03_Pickup = new PrefabGUID(-748110666); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_01_Pickup = new PrefabGUID(-903154463); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_01_Pickup_Destoryed = new PrefabGUID(-732403838); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_02_Pickup = new PrefabGUID(49082623); public static readonly PrefabGUID TM_PlantfiberWildRoseBush_Silver_03_Pickup = new PrefabGUID(-974149708); public static readonly PrefabGUID TM_PlayerSpawnPosition = new PrefabGUID(-703069561); public static readonly PrefabGUID TM_PortalOneWayExit = new PrefabGUID(558835178); public static readonly PrefabGUID TM_ProfessorCoil = new PrefabGUID(1179186281); public static readonly PrefabGUID TM_Quartz_01_Rubble = new PrefabGUID(-588721573); public static readonly PrefabGUID TM_Quartz_01_Stage0_Resource = new PrefabGUID(1629620514); public static readonly PrefabGUID TM_Quartz_01_Stage1_Resource = new PrefabGUID(-673609513); public static readonly PrefabGUID TM_Quartz_02_Rubble = new PrefabGUID(-1196878495); public static readonly PrefabGUID TM_Quartz_02_Stage0_Resource = new PrefabGUID(639857833); public static readonly PrefabGUID TM_Quartz_02_Stage1_Resource = new PrefabGUID(1888991589); public static readonly PrefabGUID TM_Quartz_03_Rubble = new PrefabGUID(773547803); public static readonly PrefabGUID TM_Quartz_03_Stage0_Resource = new PrefabGUID(-1143428603); public static readonly PrefabGUID TM_Quartz_03_Stage1_Resource = new PrefabGUID(-1746391101); public static readonly PrefabGUID TM_QuartzMineEntranceGate_01 = new PrefabGUID(-1449219226); public static readonly PrefabGUID TM_RefinementStation_BloodPress_Large = new PrefabGUID(-684391635); public static readonly PrefabGUID TM_RefinementStation_BloodPress_Small = new PrefabGUID(-300823465); public static readonly PrefabGUID TM_RefinementStation_Fabricator = new PrefabGUID(-465055967); public static readonly PrefabGUID TM_RefinementStation_Furnace_Large = new PrefabGUID(-222851985); public static readonly PrefabGUID TM_RefinementStation_Furnace_Small = new PrefabGUID(-1150411622); public static readonly PrefabGUID TM_RefinementStation_GemCutting = new PrefabGUID(-21483617); public static readonly PrefabGUID TM_RefinementStation_Loom_Large = new PrefabGUID(1299929048); public static readonly PrefabGUID TM_RefinementStation_Loom_Small = new PrefabGUID(-16328955); public static readonly PrefabGUID TM_RefinementStation_PaperPress_Small = new PrefabGUID(-1628971842); public static readonly PrefabGUID TM_RefinementStation_Sawmill_Large = new PrefabGUID(-163562336); public static readonly PrefabGUID TM_RefinementStation_Sawmill_Small = new PrefabGUID(1094077710); public static readonly PrefabGUID TM_RefinementStation_StonecuttingTable_Large = new PrefabGUID(-178579946); public static readonly PrefabGUID TM_RefinementStation_StonecuttingTable_Small = new PrefabGUID(-600683642); public static readonly PrefabGUID TM_RefinementStation_Tannery_Large = new PrefabGUID(-1422196107); public static readonly PrefabGUID TM_RefinementStation_Tannery_Small = new PrefabGUID(-635885386); public static readonly PrefabGUID TM_RefinementStation_TeslaLightningRod = new PrefabGUID(1311814093); public static readonly PrefabGUID TM_Relic_SoulShard_Behemoth = new PrefabGUID(-1634027738); public static readonly PrefabGUID TM_Relic_SoulShard_Manticore = new PrefabGUID(4777796); public static readonly PrefabGUID TM_Relic_SoulShard_Monster = new PrefabGUID(-676422497); public static readonly PrefabGUID TM_Relic_SoulShard_Paladin = new PrefabGUID(433842875); public static readonly PrefabGUID TM_ResearchStation_T01 = new PrefabGUID(-495424062); public static readonly PrefabGUID TM_ResearchStation_T02 = new PrefabGUID(-1292809886); public static readonly PrefabGUID TM_ResearchStation_T03 = new PrefabGUID(-1262194203); public static readonly PrefabGUID TM_Respawn_TombCoffin = new PrefabGUID(1398472022); public static readonly PrefabGUID TM_Respawn_WaypointCoffin = new PrefabGUID(2022796115); public static readonly PrefabGUID TM_Respawn_WoodenCoffin = new PrefabGUID(1217011662); public static readonly PrefabGUID TM_Rock_01_Rubble = new PrefabGUID(1998635736); public static readonly PrefabGUID TM_Rock_01_Stage0_Resource = new PrefabGUID(-1362350044); public static readonly PrefabGUID TM_Rock_01_Stage1_Resource = new PrefabGUID(2011800452); public static readonly PrefabGUID TM_Rock_02_Rubble = new PrefabGUID(-29373286); public static readonly PrefabGUID TM_Rock_02_Stage0_Resource = new PrefabGUID(345892935); public static readonly PrefabGUID TM_Rock_02_Stage1_Resource = new PrefabGUID(-1131894009); public static readonly PrefabGUID TM_Rock_03_Rubble = new PrefabGUID(-10972421); public static readonly PrefabGUID TM_Rock_03_Stage0_Resource = new PrefabGUID(58563126); public static readonly PrefabGUID TM_Rock_03_Stage1_Resource = new PrefabGUID(-1238021899); public static readonly PrefabGUID TM_Rock_04_Rubble = new PrefabGUID(-1475311644); public static readonly PrefabGUID TM_Rock_04_Stage0_Resource = new PrefabGUID(1263802335); public static readonly PrefabGUID TM_Rock_04_Stage1_Resource = new PrefabGUID(733441279); public static readonly PrefabGUID TM_RockBig_01_Rubble = new PrefabGUID(-1106052914); public static readonly PrefabGUID TM_RockBig_01_Stage0_Resource = new PrefabGUID(-358477262); public static readonly PrefabGUID TM_RockBig_01_Stage1_Resource = new PrefabGUID(-1124557916); public static readonly PrefabGUID TM_RockFormation_SpiderWeb_01_Original = new PrefabGUID(445376197); public static readonly PrefabGUID TM_RockFormation_SpiderWeb_02_Original = new PrefabGUID(-511172953); public static readonly PrefabGUID TM_RockMedium_01_Rubble = new PrefabGUID(455914244); public static readonly PrefabGUID TM_RockMedium_01_Stage0_Resource = new PrefabGUID(-138368399); public static readonly PrefabGUID TM_RockMedium_01_Stage1_Resource = new PrefabGUID(-1809659248); public static readonly PrefabGUID TM_Ruin_Pillar_01 = new PrefabGUID(1129409161); public static readonly PrefabGUID TM_Ruin_Pillar_02 = new PrefabGUID(1226124644); public static readonly PrefabGUID TM_Ruin_Pillar_03 = new PrefabGUID(-625676207); public static readonly PrefabGUID TM_Ruin_Pillar_04 = new PrefabGUID(-194498839); public static readonly PrefabGUID TM_Ruin_Pillar_05 = new PrefabGUID(2012235719); public static readonly PrefabGUID TM_Ruin_Pillar_06_Noctem = new PrefabGUID(-814001508); public static readonly PrefabGUID TM_Ruin_Pillar_07_Noctem = new PrefabGUID(1293517133); public static readonly PrefabGUID TM_Ruin_Pillar_08_Noctem = new PrefabGUID(2080264432); public static readonly PrefabGUID TM_Ruin_Pillar_09_Noctem = new PrefabGUID(881331638); public static readonly PrefabGUID TM_Ruin_Pillar_10_Noctem = new PrefabGUID(256182240); public static readonly PrefabGUID TM_Ruin_ShortWall_01 = new PrefabGUID(-747342062); public static readonly PrefabGUID TM_Ruin_ShortWall_02 = new PrefabGUID(2035648996); public static readonly PrefabGUID TM_Ruin_ShortWall_03 = new PrefabGUID(1501953846); public static readonly PrefabGUID TM_Ruin_ShortWall_End_01 = new PrefabGUID(-1627901133); public static readonly PrefabGUID TM_RuinCursed_Pillar_01 = new PrefabGUID(1219478305); public static readonly PrefabGUID TM_RuinCursed_Pillar_02 = new PrefabGUID(1698786315); public static readonly PrefabGUID TM_RuinCursed_Pillar_03 = new PrefabGUID(1403031386); public static readonly PrefabGUID TM_RuinCursed_Pillar_04 = new PrefabGUID(1190183318); public static readonly PrefabGUID TM_RuinCursed_Pillar_05 = new PrefabGUID(-1981981144); public static readonly PrefabGUID TM_RuinCursed_ShortWall_01 = new PrefabGUID(1952230723); public static readonly PrefabGUID TM_RuinCursed_ShortWall_02 = new PrefabGUID(-1759685622); public static readonly PrefabGUID TM_RuinCursed_ShortWall_03 = new PrefabGUID(898692955); public static readonly PrefabGUID TM_RuinHouseCursed01_Wall01_Windowed01_Original = new PrefabGUID(1334192010); public static readonly PrefabGUID TM_RuinHouseCursed01_Wall01_Windowed02_Original = new PrefabGUID(446608272); public static readonly PrefabGUID TM_Runestone_fading02_Breakable = new PrefabGUID(1569420558); public static readonly PrefabGUID TM_Rustic_BarCounter01 = new PrefabGUID(-1312915025); public static readonly PrefabGUID TM_Rustic_BarCounter02 = new PrefabGUID(-620831251); public static readonly PrefabGUID TM_Rustic_ShelfThin_01_Empty = new PrefabGUID(-1182147389); public static readonly PrefabGUID TM_Rustic_ShelfThin_01_Full = new PrefabGUID(2129034430); public static readonly PrefabGUID TM_Rustic_ShelfThin_02_Empty = new PrefabGUID(1444984824); public static readonly PrefabGUID TM_Rustic_ShelfThin_02_Full = new PrefabGUID(-1036928429); public static readonly PrefabGUID TM_Rustic_ShelfWide_01_Empty = new PrefabGUID(-538811230); public static readonly PrefabGUID TM_Rustic_ShelfWide_01_Full = new PrefabGUID(1087927594); public static readonly PrefabGUID TM_Rustic_ShelfWide_02_Empty = new PrefabGUID(-1815864709); public static readonly PrefabGUID TM_Rustic_ShelfWide_02_Full = new PrefabGUID(402721628); public static readonly PrefabGUID TM_Rustic_ShelfWide_03_Empty = new PrefabGUID(692731751); public static readonly PrefabGUID TM_Rustic_ShelfWide_03_Full = new PrefabGUID(258550221); public static readonly PrefabGUID TM_Rustic_Table_01 = new PrefabGUID(-714488160); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type0 = new PrefabGUID(1479642074); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type1 = new PrefabGUID(-2130158640); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type10 = new PrefabGUID(-1403529640); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type11 = new PrefabGUID(-1559986473); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type12 = new PrefabGUID(-406385125); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type13 = new PrefabGUID(368276115); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type14 = new PrefabGUID(309391681); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type2 = new PrefabGUID(200113164); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type3 = new PrefabGUID(1707884972); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type4 = new PrefabGUID(-526184786); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type5 = new PrefabGUID(2003966958); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type6 = new PrefabGUID(-2146975260); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type7 = new PrefabGUID(282491312); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type8 = new PrefabGUID(505553235); public static readonly PrefabGUID TM_RusticHouse_Roofing_Type9 = new PrefabGUID(1184901893); public static readonly PrefabGUID TM_SalvageStation_Table = new PrefabGUID(-1719849142); public static readonly PrefabGUID TM_Sarcofag_01_Empty = new PrefabGUID(65999213); public static readonly PrefabGUID TM_Sarcofag_01_Full = new PrefabGUID(-1735799535); public static readonly PrefabGUID TM_ScantyStick_01_Fence = new PrefabGUID(-1779144910); public static readonly PrefabGUID TM_ScantyStick_01_Fence_Broken = new PrefabGUID(-1204997445); public static readonly PrefabGUID TM_ScantyStick_02_Fence = new PrefabGUID(-1244145185); public static readonly PrefabGUID TM_ScantyStick_02_Fence_Broken = new PrefabGUID(-1945442679); public static readonly PrefabGUID TM_ScantyStick_03_Fence = new PrefabGUID(493705661); public static readonly PrefabGUID TM_ScantyStick_03_Fence_Broken = new PrefabGUID(1386466088); public static readonly PrefabGUID TM_ScantyStick_Diagonal_01_Fence = new PrefabGUID(-9669211); public static readonly PrefabGUID TM_ScantyStick_Diagonal_01_Fence_Broken = new PrefabGUID(-401437892); public static readonly PrefabGUID TM_ScantyStick_Diagonal_02_Fence = new PrefabGUID(787903585); public static readonly PrefabGUID TM_ScantyStick_Diagonal_02_Fence_Broken = new PrefabGUID(62726829); public static readonly PrefabGUID TM_ScantyStick_End01 = new PrefabGUID(356711713); public static readonly PrefabGUID TM_ScantyStick_End01_broken = new PrefabGUID(-1122600581); public static readonly PrefabGUID TM_ScarecrowDummy_01 = new PrefabGUID(-435687724); public static readonly PrefabGUID TM_SelectStartGraveyardGate = new PrefabGUID(720396433); public static readonly PrefabGUID TM_Siege_Structure_T02 = new PrefabGUID(2022737514); public static readonly PrefabGUID TM_Sign_Snow_01 = new PrefabGUID(-1858982064); public static readonly PrefabGUID TM_Sign_Snow_02 = new PrefabGUID(-1237628946); public static readonly PrefabGUID TM_Sign_Snow_03 = new PrefabGUID(1750544364); public static readonly PrefabGUID TM_Sign_Snow_04 = new PrefabGUID(919428854); public static readonly PrefabGUID TM_Sign_Snow_05 = new PrefabGUID(-1509662120); public static readonly PrefabGUID TM_Sign01 = new PrefabGUID(314589946); public static readonly PrefabGUID TM_Sign02 = new PrefabGUID(35790096); public static readonly PrefabGUID TM_Sign03 = new PrefabGUID(671162167); public static readonly PrefabGUID TM_Sign04 = new PrefabGUID(-98005625); public static readonly PrefabGUID TM_Sign05 = new PrefabGUID(1664009067); public static readonly PrefabGUID TM_Silver_01_Rubble = new PrefabGUID(-118615585); public static readonly PrefabGUID TM_Silver_01_Stage0_Resource = new PrefabGUID(10453443); public static readonly PrefabGUID TM_Silver_01_Stage1_Resource = new PrefabGUID(675540145); public static readonly PrefabGUID TM_Silver_02_Rubble = new PrefabGUID(-1731023744); public static readonly PrefabGUID TM_Silver_02_Stage0_Resource = new PrefabGUID(376608752); public static readonly PrefabGUID TM_Silver_02_Stage1_Resource = new PrefabGUID(1571197875); public static readonly PrefabGUID TM_Silver_03_Rubble = new PrefabGUID(1576629491); public static readonly PrefabGUID TM_Silver_03_Stage0_Resource = new PrefabGUID(450465441); public static readonly PrefabGUID TM_Silver_03_Stage1_Resource = new PrefabGUID(-2097486830); public static readonly PrefabGUID TM_Silverhills_Banner01 = new PrefabGUID(-1494405293); public static readonly PrefabGUID TM_Silverhills_Banner02 = new PrefabGUID(1032960055); public static readonly PrefabGUID TM_Silverhills_Banner03 = new PrefabGUID(-1689624975); public static readonly PrefabGUID TM_Silverhills_Flowerpot01 = new PrefabGUID(-1009120962); public static readonly PrefabGUID TM_Silverhills_Flowerpot02 = new PrefabGUID(217924763); public static readonly PrefabGUID TM_Silverhills_Flowerpot03 = new PrefabGUID(883821034); public static readonly PrefabGUID TM_Silverhills_Flowerpot04 = new PrefabGUID(-1231067366); public static readonly PrefabGUID TM_Silverhills_Flowerpot04_Original = new PrefabGUID(-879696764); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFish01 = new PrefabGUID(-1078042690); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFish02 = new PrefabGUID(572811620); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishCrab01 = new PrefabGUID(295695189); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishCrab02 = new PrefabGUID(1843224760); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishFlounder01 = new PrefabGUID(-1986293577); public static readonly PrefabGUID TM_Silverhills_JettyBarrelFishFlounder02 = new PrefabGUID(1437925960); public static readonly PrefabGUID TM_Silverhills_JettyBarrelNet01 = new PrefabGUID(747749142); public static readonly PrefabGUID TM_Silverhills_JettyBarrelNet02 = new PrefabGUID(-1834273240); public static readonly PrefabGUID TM_Silverhills_JettyCrate01 = new PrefabGUID(-1994020585); public static readonly PrefabGUID TM_Silverhills_JettyCrate02 = new PrefabGUID(-1866443311); public static readonly PrefabGUID TM_Silverhills_JettyCrate03 = new PrefabGUID(1036733580); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish01 = new PrefabGUID(903549312); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish02 = new PrefabGUID(-836592845); public static readonly PrefabGUID TM_Silverhills_JettyCrateFish03 = new PrefabGUID(-824508970); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishCrab01 = new PrefabGUID(-1122978511); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishCrab02 = new PrefabGUID(881970772); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishFlounder01 = new PrefabGUID(-1288053365); public static readonly PrefabGUID TM_Silverhills_JettyCrateFishFlounder02 = new PrefabGUID(1470196342); public static readonly PrefabGUID TM_Silverhills_JettyCrateNet01 = new PrefabGUID(95088641); public static readonly PrefabGUID TM_Silverhills_JettyCrateNet02 = new PrefabGUID(766451284); public static readonly PrefabGUID TM_Silverhills_JettyNetRack01 = new PrefabGUID(67090543); public static readonly PrefabGUID TM_Silverhills_MineBarrel_01 = new PrefabGUID(-1835855398); public static readonly PrefabGUID TM_Silverhills_MineBarrel_02 = new PrefabGUID(1436339891); public static readonly PrefabGUID TM_Silverhills_MineBarrel_03 = new PrefabGUID(-1894401581); public static readonly PrefabGUID TM_Silverhills_MineBarrel_04 = new PrefabGUID(999227645); public static readonly PrefabGUID TM_Silverhills_MineBarrel_05 = new PrefabGUID(1989046951); public static readonly PrefabGUID TM_Silverhills_Sign01 = new PrefabGUID(348848451); public static readonly PrefabGUID TM_Silverhills_Sign02 = new PrefabGUID(1280524146); public static readonly PrefabGUID TM_Silverhills_Sign03 = new PrefabGUID(-952279019); public static readonly PrefabGUID TM_Silverhills_Sign04 = new PrefabGUID(-1121469823); public static readonly PrefabGUID TM_Silverhills_StoneSymbol01 = new PrefabGUID(546349114); public static readonly PrefabGUID TM_Silverhills_StoneSymbol02 = new PrefabGUID(338575660); public static readonly PrefabGUID TM_SilverHills_Windmill_01 = new PrefabGUID(-675012325); public static readonly PrefabGUID TM_SilverHills_Windmill_02 = new PrefabGUID(-1792341199); public static readonly PrefabGUID TM_SilverHills_Windmill_03 = new PrefabGUID(-858080165); public static readonly PrefabGUID TM_SilverMine_StoneBench01 = new PrefabGUID(657810081); public static readonly PrefabGUID TM_SilverMine_StoneBench01_Broken = new PrefabGUID(-461831592); public static readonly PrefabGUID TM_SilverMine_StoneBench02 = new PrefabGUID(-1794580606); public static readonly PrefabGUID TM_SilverMine_StoneBookPedestal01 = new PrefabGUID(-2076590095); public static readonly PrefabGUID TM_SilverMine_StoneBookPedestal01_Broken = new PrefabGUID(-317368372); public static readonly PrefabGUID TM_SilverMine_StoneTable01 = new PrefabGUID(144808549); public static readonly PrefabGUID TM_SilverMine_StoneTable01_Broken = new PrefabGUID(1157103273); public static readonly PrefabGUID TM_SilverMine_StoneTable02 = new PrefabGUID(2023603499); public static readonly PrefabGUID TM_SilverMines_Cage01_Door01 = new PrefabGUID(1352028431); public static readonly PrefabGUID TM_SilverMines_StoneStatue01 = new PrefabGUID(-230393900); public static readonly PrefabGUID TM_SilverMines_StoneStatue02 = new PrefabGUID(1125255288); public static readonly PrefabGUID TM_SilverMines_StoneStatue03 = new PrefabGUID(2072431326); public static readonly PrefabGUID TM_SilverMines_StoneSymbol01 = new PrefabGUID(-557421751); public static readonly PrefabGUID TM_SilverMines_StoneSymbol02 = new PrefabGUID(1598831191); public static readonly PrefabGUID TM_SilverMines_StoneSymbol03 = new PrefabGUID(1808452117); public static readonly PrefabGUID TM_SimpleDrawers_01_Empty = new PrefabGUID(-756293986); public static readonly PrefabGUID TM_SimpleDrawers_01_Full = new PrefabGUID(-561779598); public static readonly PrefabGUID TM_SimpleDrawers_02_Empty = new PrefabGUID(909382130); public static readonly PrefabGUID TM_SimpleDrawers_02_Full = new PrefabGUID(179059918); public static readonly PrefabGUID TM_SimpleDrawers_03_Empty = new PrefabGUID(-1460547533); public static readonly PrefabGUID TM_SimpleDrawers_03_Full = new PrefabGUID(-794696815); public static readonly PrefabGUID TM_SimpleDrawers_04_Empty = new PrefabGUID(-1636356023); public static readonly PrefabGUID TM_SimpleDrawers_04_Full = new PrefabGUID(-1061550254); public static readonly PrefabGUID TM_SimpleWoodenBed_01 = new PrefabGUID(1834649454); public static readonly PrefabGUID TM_SimpleWoodenChair_01 = new PrefabGUID(-756683759); public static readonly PrefabGUID TM_SimpleWoodenChair_02 = new PrefabGUID(1842640453); public static readonly PrefabGUID TM_SimpleWoodenTable_01 = new PrefabGUID(800923716); public static readonly PrefabGUID TM_SimpleWoodenTable_02 = new PrefabGUID(-1764152778); public static readonly PrefabGUID TM_SimpleWoodenTable_03 = new PrefabGUID(2000807520); public static readonly PrefabGUID TM_SimpleWoodenTable_04 = new PrefabGUID(-1157969705); public static readonly PrefabGUID TM_SimpleWoodenTable_05 = new PrefabGUID(510360940); public static readonly PrefabGUID TM_SlumBed_01 = new PrefabGUID(911155058); public static readonly PrefabGUID TM_SlumBedtable_01 = new PrefabGUID(-53016854); public static readonly PrefabGUID TM_SlumChair01 = new PrefabGUID(908135937); public static readonly PrefabGUID TM_SmallTent_01 = new PrefabGUID(1879005950); public static readonly PrefabGUID TM_SmallTent_02 = new PrefabGUID(-330813132); public static readonly PrefabGUID TM_SmallTent_03_Dunley = new PrefabGUID(-1880734295); public static readonly PrefabGUID TM_SmallTent_04_Dunley = new PrefabGUID(1554633500); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_01_Red = new PrefabGUID(109967665); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_02_Blue = new PrefabGUID(940351894); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_03_Green = new PrefabGUID(-992935202); public static readonly PrefabGUID TM_SpecialStation_ArenaFlag_04_Purple = new PrefabGUID(1513357066); public static readonly PrefabGUID TM_SpecialStation_ArenaHealthOrb = new PrefabGUID(2145966113); public static readonly PrefabGUID TM_SpecialStation_ArenaShrinkingCircle = new PrefabGUID(-1857667976); public static readonly PrefabGUID TM_SpecialStation_ArenaStation = new PrefabGUID(1418230009); public static readonly PrefabGUID TM_SpecialStation_InventoryRouting = new PrefabGUID(-624818956); public static readonly PrefabGUID TM_SpecialStation_MusicPlayer = new PrefabGUID(1278389141); public static readonly PrefabGUID TM_SpecialStation_PrisonCell = new PrefabGUID(-1253061408); public static readonly PrefabGUID TM_SpecialStation_PrisonCell_StrongbladeDLC = new PrefabGUID(371396732); public static readonly PrefabGUID TM_SpecialStation_ServantCoffin = new PrefabGUID(723455393); public static readonly PrefabGUID TM_SpecialStation_ServantCoffin_StrongbladeDLC = new PrefabGUID(1789222770); public static readonly PrefabGUID TM_SpecialStation_StablePen = new PrefabGUID(-336743839); public static readonly PrefabGUID TM_SpecialStation_StoneCoffin = new PrefabGUID(-1939721641); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinDLC01Variant = new PrefabGUID(-750982654); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinDLC02Variant = new PrefabGUID(-390082555); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinProjectKVariant = new PrefabGUID(-1746633144); public static readonly PrefabGUID TM_SpecialStation_StoneCoffinStrongbladeDLC01Variant = new PrefabGUID(18293671); public static readonly PrefabGUID TM_SpecialStation_WoodenCoffin = new PrefabGUID(1523835471); public static readonly PrefabGUID TM_SpecialStation_WoodenCoffinHalloween01Variant = new PrefabGUID(1567106242); public static readonly PrefabGUID TM_Spider_Cocoon_GameplayBase = new PrefabGUID(929305051); public static readonly PrefabGUID TM_Spider_Cocoon01 = new PrefabGUID(1163200907); public static readonly PrefabGUID TM_Spider_Cocoon02 = new PrefabGUID(-1764380120); public static readonly PrefabGUID TM_Spider_Cocoon03 = new PrefabGUID(-1164935942); public static readonly PrefabGUID TM_Spider_Cocoon04 = new PrefabGUID(1815531484); public static readonly PrefabGUID TM_Spider_Cocoon05 = new PrefabGUID(-228173349); public static readonly PrefabGUID TM_Spider_Cocoon06_MicroPOI = new PrefabGUID(-1947855801); public static readonly PrefabGUID TM_Spider_Cocoon07_MicroPOI = new PrefabGUID(534526461); public static readonly PrefabGUID TM_Spider_Cocoon08_MicroPOI = new PrefabGUID(203176140); public static readonly PrefabGUID TM_Spider_Cocoon09_MicroPOI = new PrefabGUID(1692645533); public static readonly PrefabGUID TM_SpiderWeb_01_Pickup = new PrefabGUID(-1048980037); public static readonly PrefabGUID TM_SpiderWeb_01_PickupVertical = new PrefabGUID(-1107361939); public static readonly PrefabGUID TM_Spruce_Sapling = new PrefabGUID(-90075278); public static readonly PrefabGUID TM_Spruce01_Large = new PrefabGUID(1606524221); public static readonly PrefabGUID TM_Spruce01_Large_Stump = new PrefabGUID(1712573260); public static readonly PrefabGUID TM_Spruce01_Small = new PrefabGUID(-1500762345); public static readonly PrefabGUID TM_Spruce01_Small_Stump = new PrefabGUID(-836317884); public static readonly PrefabGUID TM_Spruce02_Large = new PrefabGUID(734902021); public static readonly PrefabGUID TM_Spruce02_Large_Stump = new PrefabGUID(1556790607); public static readonly PrefabGUID TM_Spruce02_Small = new PrefabGUID(-1082258671); public static readonly PrefabGUID TM_Spruce02_Small_Stump = new PrefabGUID(1095188845); public static readonly PrefabGUID TM_Spruce03_Large = new PrefabGUID(239039673); public static readonly PrefabGUID TM_Spruce03_Large_Stump = new PrefabGUID(-1956027116); public static readonly PrefabGUID TM_Spruce03_Small = new PrefabGUID(-1309046047); public static readonly PrefabGUID TM_Spruce03_Small_Stump = new PrefabGUID(-1174770661); public static readonly PrefabGUID TM_SpruceSnow_Sapling = new PrefabGUID(-17448356); public static readonly PrefabGUID TM_SpruceSnow01_Large = new PrefabGUID(492544600); public static readonly PrefabGUID TM_SpruceSnow01_Large_Stump = new PrefabGUID(1032517852); public static readonly PrefabGUID TM_SpruceSnow01_Small = new PrefabGUID(1514957931); public static readonly PrefabGUID TM_SpruceSnow01_Small_Stump = new PrefabGUID(-371899447); public static readonly PrefabGUID TM_SpruceSnow02_Large = new PrefabGUID(-240849232); public static readonly PrefabGUID TM_SpruceSnow02_Large_Stump = new PrefabGUID(372605538); public static readonly PrefabGUID TM_SpruceSnow02_Sapling = new PrefabGUID(-953102767); public static readonly PrefabGUID TM_SpruceSnow02_Small = new PrefabGUID(870470337); public static readonly PrefabGUID TM_SpruceSnow02_Small_Stump = new PrefabGUID(734607320); public static readonly PrefabGUID TM_SpruceSnow03_Large = new PrefabGUID(-1540200877); public static readonly PrefabGUID TM_SpruceSnow03_Large_Stump = new PrefabGUID(-971336439); public static readonly PrefabGUID TM_SpruceSnow03_Sapling = new PrefabGUID(-1008475564); public static readonly PrefabGUID TM_SpruceSnow03_Small = new PrefabGUID(1221432172); public static readonly PrefabGUID TM_SpruceSnow03_Small_Stump = new PrefabGUID(813038190); public static readonly PrefabGUID TM_Stash_Chest_Rebuilding = new PrefabGUID(-220201461); public static readonly PrefabGUID TM_Stash_Chest_SafetyBox = new PrefabGUID(1842080060); public static readonly PrefabGUID TM_Stash_Chest_Wood_Gems_Test = new PrefabGUID(1460447336); public static readonly PrefabGUID TM_Stash_Chest_Wood_General = new PrefabGUID(-251472465); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_Big = new PrefabGUID(-198459384); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_Halloween01Variant = new PrefabGUID(167900559); public static readonly PrefabGUID TM_Stash_Chest_Wood_General_PLACEHOLDER = new PrefabGUID(279811010); public static readonly PrefabGUID TM_Stash_Chest_Wood_Lumber_Big = new PrefabGUID(-852162858); public static readonly PrefabGUID TM_Stealth_Zone_Area01_Prog_Test = new PrefabGUID(-1275256745); public static readonly PrefabGUID TM_StoneBench_01 = new PrefabGUID(1035317765); public static readonly PrefabGUID TM_StoneBench_01_Broken = new PrefabGUID(1310970184); public static readonly PrefabGUID TM_StoneBench_01_Broken_snow = new PrefabGUID(-799148423); public static readonly PrefabGUID TM_StoneBench_01_snow = new PrefabGUID(864917669); public static readonly PrefabGUID TM_StoneUrn_01 = new PrefabGUID(302487963); public static readonly PrefabGUID TM_StoneUrn_02 = new PrefabGUID(-1202337582); public static readonly PrefabGUID TM_StoneUrn_03 = new PrefabGUID(-1527876841); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_FlowerPress01 = new PrefabGUID(-168691131); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack01 = new PrefabGUID(-1708817259); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack02 = new PrefabGUID(-1378715738); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_SeedSack03 = new PrefabGUID(-367953849); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big01_Empty = new PrefabGUID(-1995556365); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big01_Full = new PrefabGUID(-377303292); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big02_Empty = new PrefabGUID(-987816623); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Big02_Full = new PrefabGUID(-133440860); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small01_Empty = new PrefabGUID(-772470636); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small01_Full = new PrefabGUID(387439893); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small02_Empty = new PrefabGUID(14833534); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small02_Full = new PrefabGUID(-816261407); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small03_Empty = new PrefabGUID(-1303349542); public static readonly PrefabGUID TM_Strongblade_AlchemyLab_Shelf_Small03_Full = new PrefabGUID(870983297); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table01 = new PrefabGUID(-1787239906); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table02_Interactable = new PrefabGUID(-175965784); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table03 = new PrefabGUID(1748749697); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table03_Interactable = new PrefabGUID(-426257034); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table04 = new PrefabGUID(2144016414); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table04_Interactable = new PrefabGUID(1424158304); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table05 = new PrefabGUID(668639702); public static readonly PrefabGUID TM_StrongBlade_AlchemyLab_Table06_Interactable = new PrefabGUID(1109700798); public static readonly PrefabGUID TM_Strongblade_Banner01 = new PrefabGUID(104134852); public static readonly PrefabGUID TM_Strongblade_Banner02 = new PrefabGUID(485198883); public static readonly PrefabGUID TM_Strongblade_Banner03 = new PrefabGUID(869051081); public static readonly PrefabGUID TM_Strongblade_Barrel01 = new PrefabGUID(-414963350); public static readonly PrefabGUID TM_Strongblade_Barrel02 = new PrefabGUID(-85300187); public static readonly PrefabGUID TM_Strongblade_Bed01 = new PrefabGUID(-326544875); public static readonly PrefabGUID TM_Strongblade_Bed03 = new PrefabGUID(-390390083); public static readonly PrefabGUID TM_Strongblade_Brazier01 = new PrefabGUID(1629431503); public static readonly PrefabGUID TM_Strongblade_Brazier02 = new PrefabGUID(-425317398); public static readonly PrefabGUID TM_Strongblade_Brazier02_IdleInteraction = new PrefabGUID(-1263494766); public static readonly PrefabGUID TM_Strongblade_Brazier03 = new PrefabGUID(42488152); public static readonly PrefabGUID TM_Strongblade_Brazier03_IdleInteraction = new PrefabGUID(-1021198763); public static readonly PrefabGUID TM_Strongblade_BunkBed01 = new PrefabGUID(506658127); public static readonly PrefabGUID TM_Strongblade_BunkBed02 = new PrefabGUID(1376337350); public static readonly PrefabGUID TM_Strongblade_BunkBed03 = new PrefabGUID(939372173); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench01 = new PrefabGUID(-1253129719); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench02 = new PrefabGUID(918560552); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench03 = new PrefabGUID(662541797); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench03_IdleInteraction = new PrefabGUID(-1272496655); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench04 = new PrefabGUID(1784027157); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench04_IdleInteraction = new PrefabGUID(-349886488); public static readonly PrefabGUID TM_Strongblade_Carvers_Workbench05 = new PrefabGUID(-1911605845); public static readonly PrefabGUID TM_Strongblade_Chair01 = new PrefabGUID(-1758652747); public static readonly PrefabGUID TM_Strongblade_Chair01_02 = new PrefabGUID(-981581595); public static readonly PrefabGUID TM_Strongblade_Chair02 = new PrefabGUID(-852107550); public static readonly PrefabGUID TM_Strongblade_Chair03 = new PrefabGUID(-315172854); public static readonly PrefabGUID TM_Strongblade_Chair04 = new PrefabGUID(-1569317452); public static readonly PrefabGUID TM_Strongblade_Crate01 = new PrefabGUID(1654782558); public static readonly PrefabGUID TM_Strongblade_Crate01_Flasks01 = new PrefabGUID(1796441819); public static readonly PrefabGUID TM_Strongblade_Crate01_Flasks02 = new PrefabGUID(1242537570); public static readonly PrefabGUID TM_Strongblade_Crate02 = new PrefabGUID(174168687); public static readonly PrefabGUID TM_Strongblade_Crate03 = new PrefabGUID(1704151301); public static readonly PrefabGUID TM_Strongblade_Crate03_Flasks01 = new PrefabGUID(1007313080); public static readonly PrefabGUID TM_Strongblade_Crate03_Flasks02 = new PrefabGUID(683661043); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack01 = new PrefabGUID(658251798); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack02 = new PrefabGUID(-1076135148); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack03 = new PrefabGUID(-1313422149); public static readonly PrefabGUID TM_Strongblade_DriedFlowerRack04 = new PrefabGUID(-700463825); public static readonly PrefabGUID TM_Strongblade_DriedFlowerWorkbench_01 = new PrefabGUID(156083451); public static readonly PrefabGUID TM_Strongblade_DriedFlowerWorkbench_02 = new PrefabGUID(987154002); public static readonly PrefabGUID TM_Strongblade_Emery01_Barrel01 = new PrefabGUID(-69816156); public static readonly PrefabGUID TM_Strongblade_Emery01_Barrel02 = new PrefabGUID(-1943788884); public static readonly PrefabGUID TM_Strongblade_Emery01_Crate01 = new PrefabGUID(1765368268); public static readonly PrefabGUID TM_Strongblade_Emery01_Crate02 = new PrefabGUID(-652163755); public static readonly PrefabGUID TM_Strongblade_Emery01_ToolRack01 = new PrefabGUID(-1166909223); public static readonly PrefabGUID TM_Strongblade_Emery01_Wheelbarrow01 = new PrefabGUID(-1900744904); public static readonly PrefabGUID TM_Strongblade_Mantrap_Cage_Door01 = new PrefabGUID(-1221835924); public static readonly PrefabGUID TM_Strongblade_RockCluster_01_Original = new PrefabGUID(1690480438); public static readonly PrefabGUID TM_Strongblade_RockCluster_02_Original = new PrefabGUID(77019923); public static readonly PrefabGUID TM_Strongblade_RockCluster_03_Original = new PrefabGUID(-621136372); public static readonly PrefabGUID TM_Strongblade_RockCluster_04_Original = new PrefabGUID(-73072993); public static readonly PrefabGUID TM_Strongblade_RockCluster_05_Original = new PrefabGUID(-1599798175); public static readonly PrefabGUID TM_Strongblade_RockCluster_06_Original = new PrefabGUID(-2061406212); public static readonly PrefabGUID TM_Strongblade_RockCluster_07_Original = new PrefabGUID(872118162); public static readonly PrefabGUID TM_Strongblade_RockCluster_08_Original = new PrefabGUID(1827716149); public static readonly PrefabGUID TM_Strongblade_RockCluster_09_Original = new PrefabGUID(489825189); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable01 = new PrefabGUID(-1309591211); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable02 = new PrefabGUID(172586723); public static readonly PrefabGUID TM_Strongblade_Ruin_Pillar_Destructable03 = new PrefabGUID(1982364891); public static readonly PrefabGUID TM_Strongblade_Shelf_Small01_Empty = new PrefabGUID(1393994448); public static readonly PrefabGUID TM_Strongblade_Shelf_Small01_Full = new PrefabGUID(-411013528); public static readonly PrefabGUID TM_Strongblade_Shelf_Small02_Empty = new PrefabGUID(537013872); public static readonly PrefabGUID TM_Strongblade_Shelf_Small02_Full = new PrefabGUID(-1247382112); public static readonly PrefabGUID TM_Strongblade_Table_Carver01 = new PrefabGUID(-592354376); public static readonly PrefabGUID TM_Strongblade_Table_Carver02 = new PrefabGUID(1093289518); public static readonly PrefabGUID TM_Strongblade_Table01 = new PrefabGUID(-1273192346); public static readonly PrefabGUID TM_Strongblade_Table01_02 = new PrefabGUID(1044421954); public static readonly PrefabGUID TM_Strongblade_Table02 = new PrefabGUID(349319940); public static readonly PrefabGUID TM_Strongblade_Table02_02 = new PrefabGUID(1900866398); public static readonly PrefabGUID TM_Strongblade_Table03 = new PrefabGUID(1634427583); public static readonly PrefabGUID TM_Strongblade_Table03_02 = new PrefabGUID(-1445801425); public static readonly PrefabGUID TM_Strongblade_Target01 = new PrefabGUID(-1916029730); public static readonly PrefabGUID TM_Strongblade_Target01_IdleInteraction = new PrefabGUID(295464096); public static readonly PrefabGUID TM_Strongblade_Target02 = new PrefabGUID(-750978662); public static readonly PrefabGUID TM_Strongblade_Target03 = new PrefabGUID(684876555); public static readonly PrefabGUID TM_Strongblade_ToolRack01 = new PrefabGUID(-1527172969); public static readonly PrefabGUID TM_Strongblade_ToolRack02 = new PrefabGUID(824503496); public static readonly PrefabGUID TM_Strongblade_WeaponRack01 = new PrefabGUID(-584978200); public static readonly PrefabGUID TM_Strongblade_WeaponRack02 = new PrefabGUID(723010941); public static readonly PrefabGUID TM_Strongblade_WeaponRack03 = new PrefabGUID(-1441268771); public static readonly PrefabGUID TM_Strongblade_Wheelbarrow01 = new PrefabGUID(-1811274354); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage0 = new PrefabGUID(-574799666); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage0_Stump = new PrefabGUID(-153310246); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage1 = new PrefabGUID(698050402); public static readonly PrefabGUID TM_StrongBladeBirchTree_01_Stage1_Stump = new PrefabGUID(492117234); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage0 = new PrefabGUID(-1417712737); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage0_Stump = new PrefabGUID(-1361172695); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage1 = new PrefabGUID(2092516793); public static readonly PrefabGUID TM_StrongBladeBirchTree_02_Stage1_Stump = new PrefabGUID(-1985930565); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage0 = new PrefabGUID(1387575651); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage0_Stump = new PrefabGUID(1731539731); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage1 = new PrefabGUID(1259900595); public static readonly PrefabGUID TM_StrongBladeBirchTree_03_Stage1_Stump = new PrefabGUID(1359430919); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage0 = new PrefabGUID(1304918334); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage0_Stump = new PrefabGUID(-1889052853); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage1 = new PrefabGUID(-2029742550); public static readonly PrefabGUID TM_StrongBladeBirchTree_04_Stage1_Stump = new PrefabGUID(-325790153); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage0 = new PrefabGUID(1737450614); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage0_Stump = new PrefabGUID(-1138271551); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage1 = new PrefabGUID(1348630284); public static readonly PrefabGUID TM_StrongBladeBirchTree_05_Stage1_Stump = new PrefabGUID(-719439353); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage0 = new PrefabGUID(1300886142); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage0_Stump = new PrefabGUID(-1279909832); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage1 = new PrefabGUID(604252064); public static readonly PrefabGUID TM_StrongBladeBirchTree_06_Stage1_Stump = new PrefabGUID(934471138); public static readonly PrefabGUID TM_StrongBladeBirchTree_Sapling = new PrefabGUID(-1124105029); public static readonly PrefabGUID TM_StrongBladeBirchTree_Sapling1 = new PrefabGUID(-1612669359); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage0 = new PrefabGUID(-33461444); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage0_Stump = new PrefabGUID(1543194120); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage1 = new PrefabGUID(-1378837905); public static readonly PrefabGUID TM_StrongBladeCorruptTree_01_Stage1_Stump = new PrefabGUID(1350011629); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage0 = new PrefabGUID(-1068631242); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage0_Stump = new PrefabGUID(-1714411153); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage1 = new PrefabGUID(861604950); public static readonly PrefabGUID TM_StrongBladeCorruptTree_02_Stage1_Stump = new PrefabGUID(1712523300); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage0 = new PrefabGUID(1392330784); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage0_Stump = new PrefabGUID(-112593185); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage1 = new PrefabGUID(735695679); public static readonly PrefabGUID TM_StrongBladeCorruptTree_03_Stage1_Stump = new PrefabGUID(-1617754692); public static readonly PrefabGUID TM_StrongBladeCorruptTree_Sapling = new PrefabGUID(-649924055); public static readonly PrefabGUID TM_StrongBladeCorruptTree_Sapling1 = new PrefabGUID(1686477373); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage0 = new PrefabGUID(712826309); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage0_Stump = new PrefabGUID(-96041636); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage1 = new PrefabGUID(457552098); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_01_Stage1_Stump = new PrefabGUID(-1375929779); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage0 = new PrefabGUID(-714904758); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage0_Stump = new PrefabGUID(-2103306998); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage1 = new PrefabGUID(-1817404317); public static readonly PrefabGUID TM_StrongBladeHalfCorruptTree_02_Stage1_Stump = new PrefabGUID(1653058473); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage0 = new PrefabGUID(-369327059); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage0_Stump = new PrefabGUID(-1039997356); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage1 = new PrefabGUID(861508982); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_01_Stage1_Stump = new PrefabGUID(-782106419); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage0 = new PrefabGUID(2080479915); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage0_Stump = new PrefabGUID(-623646235); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage1 = new PrefabGUID(-188863956); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_02_Stage1_Stump = new PrefabGUID(138574538); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage0 = new PrefabGUID(-1714138537); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage0_Stump = new PrefabGUID(1407051672); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage1 = new PrefabGUID(1218351404); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_03_Stage1_Stump = new PrefabGUID(-276935854); public static readonly PrefabGUID TM_StrongBladeHornbeamTree_Sapling = new PrefabGUID(-2094458774); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage0 = new PrefabGUID(-1445518388); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage0_Stump = new PrefabGUID(1737579759); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage1 = new PrefabGUID(-93781020); public static readonly PrefabGUID TM_StrongBladeOakTree_01_Stage1_Stump = new PrefabGUID(541376143); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage0 = new PrefabGUID(1852241978); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage0_Stump = new PrefabGUID(-185722285); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage1 = new PrefabGUID(-877750470); public static readonly PrefabGUID TM_StrongBladeOakTree_02_Stage1_Stump = new PrefabGUID(1641126016); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage0 = new PrefabGUID(1394703650); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage0_Stump = new PrefabGUID(-40942592); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage1 = new PrefabGUID(1023565406); public static readonly PrefabGUID TM_StrongBladeOakTree_03_Stage1_Stump = new PrefabGUID(1695236684); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage0 = new PrefabGUID(-783526318); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage0_Stump = new PrefabGUID(-863884849); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage1 = new PrefabGUID(-371041036); public static readonly PrefabGUID TM_StrongBladeOakTree_04_Stage1_Stump = new PrefabGUID(-1579316119); public static readonly PrefabGUID TM_StrongBladeOakTree_Sapling = new PrefabGUID(1756036681); public static readonly PrefabGUID TM_StrongBladeOakTree_Sapling1 = new PrefabGUID(-852179540); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage0 = new PrefabGUID(1510464384); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage0_Stump = new PrefabGUID(-1210251099); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage1 = new PrefabGUID(421255167); public static readonly PrefabGUID TM_Stump_Werewolf_01_Stage1_Stump = new PrefabGUID(2058961355); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage0 = new PrefabGUID(77769378); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage0_Stump = new PrefabGUID(-469676532); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage1 = new PrefabGUID(-2004285078); public static readonly PrefabGUID TM_Stump_Werewolf_02_Stage1_Stump = new PrefabGUID(1168027864); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage0 = new PrefabGUID(633595884); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage0_Stump = new PrefabGUID(1160981236); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage1 = new PrefabGUID(-1471701473); public static readonly PrefabGUID TM_Stump_Werewolf_03_Stage1_Stump = new PrefabGUID(605664091); public static readonly PrefabGUID TM_Stump_Werewolf_Sapling = new PrefabGUID(297309266); public static readonly PrefabGUID TM_StygianAltar_Passive_T01 = new PrefabGUID(-1938449679); public static readonly PrefabGUID TM_Sulfur_01_Rubble = new PrefabGUID(2046112686); public static readonly PrefabGUID TM_Sulfur_01_Stage0_Resource = new PrefabGUID(-1705789654); public static readonly PrefabGUID TM_Sulfur_01_Stage1_Resource = new PrefabGUID(706641532); public static readonly PrefabGUID TM_Sulfur_02_Rubble = new PrefabGUID(-1199730261); public static readonly PrefabGUID TM_Sulfur_02_Stage0_Resource = new PrefabGUID(-1817810408); public static readonly PrefabGUID TM_Sulfur_02_Stage1_Resource = new PrefabGUID(1097531546); public static readonly PrefabGUID TM_Sulfur_03_Rubble = new PrefabGUID(-2026176350); public static readonly PrefabGUID TM_Sulfur_03_Stage0_Resource = new PrefabGUID(-692469390); public static readonly PrefabGUID TM_Sulfur_03_Stage1_Resource = new PrefabGUID(-1071700724); public static readonly PrefabGUID TM_SulfurBig_01_Rubble = new PrefabGUID(-1605386382); public static readonly PrefabGUID TM_SulfurBig_01_Stage0_Resource = new PrefabGUID(-461965576); public static readonly PrefabGUID TM_SulfurBig_01_Stage1_Resource = new PrefabGUID(-1688724628); public static readonly PrefabGUID TM_SulfurMedium_01_Rubble = new PrefabGUID(1531197700); public static readonly PrefabGUID TM_SulfurMedium_01_Stage0_Resource = new PrefabGUID(-1165450820); public static readonly PrefabGUID TM_SulfurMedium_01_Stage1_Resource = new PrefabGUID(1947286426); public static readonly PrefabGUID TM_SwampTree_01_Stage0 = new PrefabGUID(1043866415); public static readonly PrefabGUID TM_SwampTree_01_Stage0_Stump = new PrefabGUID(1365781183); public static readonly PrefabGUID TM_SwampTree_01_Stage1 = new PrefabGUID(1966219405); public static readonly PrefabGUID TM_SwampTree_01_Stage1_Stump = new PrefabGUID(1754191543); public static readonly PrefabGUID TM_SwampTree_02_Stage0 = new PrefabGUID(1225820666); public static readonly PrefabGUID TM_SwampTree_02_Stage0_Stump = new PrefabGUID(1261231686); public static readonly PrefabGUID TM_SwampTree_02_Stage1 = new PrefabGUID(1691761444); public static readonly PrefabGUID TM_SwampTree_02_Stage1_Stump = new PrefabGUID(472001499); public static readonly PrefabGUID TM_SwampTree_03_Stage0 = new PrefabGUID(1426823230); public static readonly PrefabGUID TM_SwampTree_03_Stage0_Stump = new PrefabGUID(-1954051919); public static readonly PrefabGUID TM_SwampTree_03_Stage1 = new PrefabGUID(2120448218); public static readonly PrefabGUID TM_SwampTree_03_Stage1_Stump = new PrefabGUID(-1682489779); public static readonly PrefabGUID TM_SwampTree_Sapling = new PrefabGUID(-1605588865); public static readonly PrefabGUID TM_TargetDummy_01 = new PrefabGUID(10513858); public static readonly PrefabGUID TM_TargetDummy_01_IdleInteraction = new PrefabGUID(-963995563); public static readonly PrefabGUID TM_TargetDummy_02 = new PrefabGUID(-1574989809); public static readonly PrefabGUID TM_TargetDummy_02_IdleInteraction = new PrefabGUID(962821526); public static readonly PrefabGUID TM_TavernCounter01 = new PrefabGUID(-2076496016); public static readonly PrefabGUID TM_TavernCounter02 = new PrefabGUID(-485046196); public static readonly PrefabGUID TM_Tomb_01 = new PrefabGUID(-781091625); public static readonly PrefabGUID TM_Tomb_01_Broken = new PrefabGUID(1353478230); public static readonly PrefabGUID TM_Tomb_02 = new PrefabGUID(-536867397); public static readonly PrefabGUID TM_Tomb_02_Broken = new PrefabGUID(-759905870); public static readonly PrefabGUID TM_Tomb_03 = new PrefabGUID(-1632864496); public static readonly PrefabGUID TM_Tomb_03_Broken = new PrefabGUID(2038242996); public static readonly PrefabGUID TM_Tomb_04 = new PrefabGUID(-1014470788); public static readonly PrefabGUID TM_Tomb_04_Broken = new PrefabGUID(-400370936); public static readonly PrefabGUID TM_Tomb_05 = new PrefabGUID(-1299610229); public static readonly PrefabGUID TM_Tomb_05_Broken = new PrefabGUID(-1713724503); public static readonly PrefabGUID TM_Tomb_06 = new PrefabGUID(-1957499437); public static readonly PrefabGUID TM_Tomb_06_Broken = new PrefabGUID(-1672076819); public static readonly PrefabGUID TM_Tomb_07 = new PrefabGUID(-1118323244); public static readonly PrefabGUID TM_Tomb_07_Broken = new PrefabGUID(-505856548); public static readonly PrefabGUID TM_Tomb_08 = new PrefabGUID(-2054213794); public static readonly PrefabGUID TM_Tomb_08_Broken = new PrefabGUID(347513227); public static readonly PrefabGUID TM_TombBig_01 = new PrefabGUID(-445223354); public static readonly PrefabGUID TM_TombBig_01_Broken = new PrefabGUID(1602746089); public static readonly PrefabGUID TM_TombBig_02 = new PrefabGUID(-1901034487); public static readonly PrefabGUID TM_TombBig_02_Broken = new PrefabGUID(-1051730023); public static readonly PrefabGUID TM_TombBig_03 = new PrefabGUID(1328472112); public static readonly PrefabGUID TM_TombBig_03_Broken = new PrefabGUID(1125752521); public static readonly PrefabGUID TM_TownHall_Bench01 = new PrefabGUID(-574556190); public static readonly PrefabGUID TM_TreeBridge_01_Original = new PrefabGUID(-1582355091); public static readonly PrefabGUID TM_Undead_ArenaChampion_Flag = new PrefabGUID(2138627343); public static readonly PrefabGUID TM_UnitStation_NetherGate = new PrefabGUID(-218354895); public static readonly PrefabGUID TM_UnitStation_Tomb = new PrefabGUID(1127059420); public static readonly PrefabGUID TM_UnitStation_VerminNest = new PrefabGUID(150776081); public static readonly PrefabGUID TM_Vampire_FineIronFencePole_01 = new PrefabGUID(-1573565699); public static readonly PrefabGUID TM_Vampire_IronFencePole_01 = new PrefabGUID(-696610176); public static readonly PrefabGUID TM_VampireGravestone_Big_01 = new PrefabGUID(1977669640); public static readonly PrefabGUID TM_VampireGravestone_Big_02 = new PrefabGUID(1023956620); public static readonly PrefabGUID TM_VampireGravestone_Big_03 = new PrefabGUID(136715242); public static readonly PrefabGUID TM_VampireGravestone01 = new PrefabGUID(-972340709); public static readonly PrefabGUID TM_VampireGravestone01_Broken = new PrefabGUID(1648976328); public static readonly PrefabGUID TM_VampireGravestone02 = new PrefabGUID(-1953768855); public static readonly PrefabGUID TM_VampireGravestone02_Broken = new PrefabGUID(1170850506); public static readonly PrefabGUID TM_VampireGravestone03 = new PrefabGUID(-353634974); public static readonly PrefabGUID TM_VampireGravestone04 = new PrefabGUID(2005244760); public static readonly PrefabGUID TM_VampireGravestone05 = new PrefabGUID(1969748026); public static readonly PrefabGUID TM_VampireGraveyard_Brazier_01 = new PrefabGUID(113118840); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01 = new PrefabGUID(688150044); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_Cursed = new PrefabGUID(1050968843); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_GloomRot_North = new PrefabGUID(-1325437678); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_GloomRot_South = new PrefabGUID(-171119922); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_SilverLight = new PrefabGUID(215652951); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance01_Snow = new PrefabGUID(-1524368461); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02 = new PrefabGUID(-305361202); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_Cursed = new PrefabGUID(-51402195); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_GloomRot_North = new PrefabGUID(-1863191105); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_GloomRot_South = new PrefabGUID(-141912084); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_SilverLight = new PrefabGUID(1814632335); public static readonly PrefabGUID TM_VampirePlayerRuins_Entrance02_Snow = new PrefabGUID(923176481); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01 = new PrefabGUID(1161714298); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_Cursed = new PrefabGUID(1677693906); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_GloomRot_North = new PrefabGUID(-86729640); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_GloomRot_South = new PrefabGUID(-797678555); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_SilverLight = new PrefabGUID(1568459160); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar01_Snow = new PrefabGUID(313131540); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02 = new PrefabGUID(-88458699); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_Cursed = new PrefabGUID(1719325097); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_GloomRot_North = new PrefabGUID(-1782443303); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_GloomRot_South = new PrefabGUID(1499195612); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_SilverLight = new PrefabGUID(145638627); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar02_Snow = new PrefabGUID(1743237018); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03 = new PrefabGUID(1789449182); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_Cursed = new PrefabGUID(822341680); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_GloomRot_North = new PrefabGUID(-546096808); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_GloomRot_South = new PrefabGUID(410008344); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_SilverLight = new PrefabGUID(566404921); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar03_Snow = new PrefabGUID(508529338); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04 = new PrefabGUID(442035317); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_Cursed = new PrefabGUID(476106276); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_GloomRot_North = new PrefabGUID(-1425080503); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_GloomRot_South = new PrefabGUID(969234858); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_SilverLight = new PrefabGUID(751496466); public static readonly PrefabGUID TM_VampirePlayerRuins_Pillar04_Snow = new PrefabGUID(1111662646); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01 = new PrefabGUID(-971118107); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_Cursed = new PrefabGUID(-1534250715); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_GloomRot_North = new PrefabGUID(-809884638); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_GloomRot_South = new PrefabGUID(-275672675); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_SilverLight = new PrefabGUID(-1831290552); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall01_Snow = new PrefabGUID(-268450677); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02 = new PrefabGUID(-99362346); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_Cursed = new PrefabGUID(-1168659743); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_GloomRot_North = new PrefabGUID(-1244058402); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_GloomRot_South = new PrefabGUID(-1228878275); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_SilverLight = new PrefabGUID(-1326834529); public static readonly PrefabGUID TM_VampirePlayerRuins_ShortWall02_Snow = new PrefabGUID(2068216176); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01 = new PrefabGUID(-271697795); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_Cursed = new PrefabGUID(-1385430811); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_GloomRot_North = new PrefabGUID(-244925021); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_GloomRot_South = new PrefabGUID(318370210); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_SilverLight = new PrefabGUID(1736715459); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall01_Snow = new PrefabGUID(-234727224); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02 = new PrefabGUID(1740659623); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_Cursed = new PrefabGUID(1047633667); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_GloomRot_North = new PrefabGUID(-1307584325); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_GloomRot_South = new PrefabGUID(991173594); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_SilverLight = new PrefabGUID(446428791); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall02_Snow = new PrefabGUID(-1324299918); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03 = new PrefabGUID(-144081241); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_Cursed = new PrefabGUID(1354485886); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_GloomRot_North = new PrefabGUID(403471043); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_GloomRot_South = new PrefabGUID(-833755572); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_SilverLight = new PrefabGUID(-541625509); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall03_Snow = new PrefabGUID(-931556814); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04 = new PrefabGUID(-708112409); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_Cursed = new PrefabGUID(-387920518); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_GloomRot_North = new PrefabGUID(1821831436); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_GloomRot_South = new PrefabGUID(-77181209); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_SilverLight = new PrefabGUID(-122567072); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall04_Snow = new PrefabGUID(-1813039823); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05 = new PrefabGUID(-1031293675); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_Cursed = new PrefabGUID(-1662895843); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_GloomRot_North = new PrefabGUID(1173795164); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_GloomRot_South = new PrefabGUID(-2015347375); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_SilverLight = new PrefabGUID(7781803); public static readonly PrefabGUID TM_VampirePlayerRuins_Wall05_Snow = new PrefabGUID(-196895143); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01 = new PrefabGUID(-975325132); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Cursed = new PrefabGUID(-943124264); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_GloomRot_North = new PrefabGUID(1860542434); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_GloomRot_South = new PrefabGUID(1474822748); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Silverhills = new PrefabGUID(1392068087); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart01_Snow = new PrefabGUID(-382859549); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02 = new PrefabGUID(666832621); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_Cursed = new PrefabGUID(209546675); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_GloomRot_North = new PrefabGUID(1785929000); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_GloomRot_South = new PrefabGUID(1735244355); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_SilverHills = new PrefabGUID(-1424307896); public static readonly PrefabGUID TM_VampireRemnantProps_CastleHeart02_Snow = new PrefabGUID(480900297); public static readonly PrefabGUID TM_Village_Candleholder_01 = new PrefabGUID(1214053450); public static readonly PrefabGUID TM_Village_MarketBarrel01 = new PrefabGUID(-1008244526); public static readonly PrefabGUID TM_Village_MarketBarrel02 = new PrefabGUID(1573845574); public static readonly PrefabGUID TM_Village_MarketBarrel03 = new PrefabGUID(1136054115); public static readonly PrefabGUID TM_Village_MarketBarrel04 = new PrefabGUID(1794473520); public static readonly PrefabGUID TM_Village_MarketCrate01 = new PrefabGUID(-1493454990); public static readonly PrefabGUID TM_Village_MarketCrate02 = new PrefabGUID(1128046775); public static readonly PrefabGUID TM_Village_MarketCrate03 = new PrefabGUID(2092161652); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken01 = new PrefabGUID(1698159062); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken02 = new PrefabGUID(-1422893372); public static readonly PrefabGUID TM_Vineyard_BarrelShelf_Broken03 = new PrefabGUID(-502082758); public static readonly PrefabGUID TM_Vineyard_BarrelShelf01 = new PrefabGUID(1467018522); public static readonly PrefabGUID TM_Vineyard_Distillery_breakable01 = new PrefabGUID(-471989262); public static readonly PrefabGUID TM_Vineyard_Table01 = new PrefabGUID(-638508990); public static readonly PrefabGUID TM_Vineyard_Table01_Spills = new PrefabGUID(2064715950); public static readonly PrefabGUID TM_VineyardFence_Diagonal_01 = new PrefabGUID(-692065974); public static readonly PrefabGUID TM_VineyardFence_Diagonal_02 = new PrefabGUID(1889245390); public static readonly PrefabGUID TM_VineyardFence_End01 = new PrefabGUID(209504170); public static readonly PrefabGUID TM_VineyardFence01 = new PrefabGUID(1961488703); public static readonly PrefabGUID TM_VineyardFence02 = new PrefabGUID(-957773857); public static readonly PrefabGUID TM_VineyardFence03 = new PrefabGUID(576352792); public static readonly PrefabGUID TM_WarEvent_GateNode = new PrefabGUID(-906325887); public static readonly PrefabGUID TM_WarEvent_GateObject = new PrefabGUID(1840104771); public static readonly PrefabGUID TM_WarEvent_GateObject_DEBUG_ONLY_REMOVE = new PrefabGUID(-448228984); public static readonly PrefabGUID TM_WarEvent_GateObject_DestroyTrigger = new PrefabGUID(553338966); public static readonly PrefabGUID TM_WarEvent_GateObject_Lesser = new PrefabGUID(191587271); public static readonly PrefabGUID TM_WarEvent_Networked = new PrefabGUID(-1337812210); public static readonly PrefabGUID TM_WarEvent_NetworkedGateObject = new PrefabGUID(477575945); public static readonly PrefabGUID TM_WarEvent_PortalNode = new PrefabGUID(1715183701); public static readonly PrefabGUID TM_WarEvent_PortalObject = new PrefabGUID(1446914133); public static readonly PrefabGUID TM_WarEvent_PortalObject_Lesser = new PrefabGUID(1764881553); public static readonly PrefabGUID TM_Watertower_01 = new PrefabGUID(1589403087); public static readonly PrefabGUID TM_Watertower_02 = new PrefabGUID(-614145839); public static readonly PrefabGUID TM_Weaponrack_01 = new PrefabGUID(246331506); public static readonly PrefabGUID TM_Weaponrack_02 = new PrefabGUID(973389430); public static readonly PrefabGUID TM_WerewolfTree_01_Stage0 = new PrefabGUID(1595277266); public static readonly PrefabGUID TM_WerewolfTree_01_Stage0_Stump = new PrefabGUID(600960145); public static readonly PrefabGUID TM_WerewolfTree_01_Stage1 = new PrefabGUID(1577350498); public static readonly PrefabGUID TM_WerewolfTree_01_Stage1_Stump = new PrefabGUID(587749951); public static readonly PrefabGUID TM_WerewolfTree_02_Stage0 = new PrefabGUID(-1435108122); public static readonly PrefabGUID TM_WerewolfTree_02_Stage0_Stump = new PrefabGUID(1041637758); public static readonly PrefabGUID TM_WerewolfTree_02_Stage1 = new PrefabGUID(967570304); public static readonly PrefabGUID TM_WerewolfTree_02_Stage1_Stump = new PrefabGUID(-866042623); public static readonly PrefabGUID TM_WerewolfTree_03_Stage0 = new PrefabGUID(695837869); public static readonly PrefabGUID TM_WerewolfTree_03_Stage0_Stump = new PrefabGUID(-793756408); public static readonly PrefabGUID TM_WerewolfTree_03_Stage1 = new PrefabGUID(-2047939765); public static readonly PrefabGUID TM_WerewolfTree_03_Stage1_Stump = new PrefabGUID(-2029588177); public static readonly PrefabGUID TM_WerewolfTree_04_Stage0 = new PrefabGUID(-1156705805); public static readonly PrefabGUID TM_WerewolfTree_04_Stage0_Stump = new PrefabGUID(658586646); public static readonly PrefabGUID TM_WerewolfTree_04_Stage1 = new PrefabGUID(-830624556); public static readonly PrefabGUID TM_WerewolfTree_04_Stage1_Stump = new PrefabGUID(-1141717839); public static readonly PrefabGUID TM_WerewolfTree_05_Stage0 = new PrefabGUID(-1832209336); public static readonly PrefabGUID TM_WerewolfTree_05_Stage0_Stump = new PrefabGUID(-443402406); public static readonly PrefabGUID TM_WerewolfTree_05_Stage1 = new PrefabGUID(350368013); public static readonly PrefabGUID TM_WerewolfTree_05_Stage1_Stump = new PrefabGUID(-1748087901); public static readonly PrefabGUID TM_WerewolfTree_06_Stage0 = new PrefabGUID(-1454112198); public static readonly PrefabGUID TM_WerewolfTree_06_Stage0_Stump = new PrefabGUID(-1557661013); public static readonly PrefabGUID TM_WerewolfTree_06_Stage1 = new PrefabGUID(-1238477356); public static readonly PrefabGUID TM_WerewolfTree_06_Stage1_Stump = new PrefabGUID(-836906526); public static readonly PrefabGUID TM_WerewolfTree_Sapling = new PrefabGUID(-1709188084); public static readonly PrefabGUID TM_WerewolfVillage_BigCageDoor01 = new PrefabGUID(145823305); public static readonly PrefabGUID TM_WerewolfVillage_BigCageDoor02 = new PrefabGUID(2070145967); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_01 = new PrefabGUID(-252891120); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_02 = new PrefabGUID(1541975269); public static readonly PrefabGUID TM_Wilderness_Altar_StoneUrn_03 = new PrefabGUID(-82291122); public static readonly PrefabGUID TM_Wilderness_Pyre = new PrefabGUID(-961311808); public static readonly PrefabGUID TM_Wilderness_Pyre_Flag_01 = new PrefabGUID(1660501623); public static readonly PrefabGUID TM_Wilderness_Pyre_Flag_02 = new PrefabGUID(2076047132); public static readonly PrefabGUID TM_Winter_Yeti_Icicle_01 = new PrefabGUID(-629014734); public static readonly PrefabGUID TM_Witch_FrogTree_01 = new PrefabGUID(261547889); public static readonly PrefabGUID TM_Witch_SkullStake_01 = new PrefabGUID(681819350); public static readonly PrefabGUID TM_Witch_SkullStake_02 = new PrefabGUID(-835938875); public static readonly PrefabGUID TM_Witch_SkullStake_03 = new PrefabGUID(1651074756); public static readonly PrefabGUID TM_Witch_Stake_01 = new PrefabGUID(-1958653898); public static readonly PrefabGUID TM_Witch_Stake_02 = new PrefabGUID(-1699890952); public static readonly PrefabGUID TM_Witch_Stake_03 = new PrefabGUID(181892327); public static readonly PrefabGUID TM_Witch_Stake_04 = new PrefabGUID(1957410863); public static readonly PrefabGUID TM_Witch_Stake_04_Candles = new PrefabGUID(-2290697); public static readonly PrefabGUID TM_Witch_Stake_05 = new PrefabGUID(-225108780); public static readonly PrefabGUID TM_Witch_Stake_05_Candles = new PrefabGUID(355337193); public static readonly PrefabGUID TM_Witch_Stake_06 = new PrefabGUID(-1198077291); public static readonly PrefabGUID TM_Witch_Stake_07 = new PrefabGUID(718309611); public static readonly PrefabGUID TM_Witch_Stake_08 = new PrefabGUID(344024497); public static readonly PrefabGUID TM_Witch_Stake_09 = new PrefabGUID(-1850900603); public static readonly PrefabGUID TM_Witch_Stake_10 = new PrefabGUID(1360241760); public static readonly PrefabGUID TM_Witch_Stake_11 = new PrefabGUID(-61131565); public static readonly PrefabGUID TM_Witch_Stake_12 = new PrefabGUID(580613856); public static readonly PrefabGUID TM_Witch_Stake_13 = new PrefabGUID(994612641); public static readonly PrefabGUID TM_Witch_Stump_01 = new PrefabGUID(821955981); public static readonly PrefabGUID TM_Witch_Stump_02 = new PrefabGUID(-200712077); public static readonly PrefabGUID TM_WoodenBarrel_01 = new PrefabGUID(234665441); public static readonly PrefabGUID TM_WoodenBarrel_02 = new PrefabGUID(165108756); public static readonly PrefabGUID TM_WoodenBarrel_03 = new PrefabGUID(-68170349); public static readonly PrefabGUID TM_WoodenBarrel_Cluster_01 = new PrefabGUID(-1694272439); public static readonly PrefabGUID TM_WoodenBarrel_Cluster_02 = new PrefabGUID(1274815388); public static readonly PrefabGUID TM_WoodenBarrel_Snow_01 = new PrefabGUID(1527997584); public static readonly PrefabGUID TM_WoodenBarrel_Snow_02 = new PrefabGUID(-1659500181); public static readonly PrefabGUID TM_WoodenBarrel_Snow_03 = new PrefabGUID(1576981954); public static readonly PrefabGUID TM_WoodenBarrelOak_01 = new PrefabGUID(-111300217); public static readonly PrefabGUID TM_WoodenBarrelOak_02 = new PrefabGUID(807153996); public static readonly PrefabGUID TM_WoodenBarrelOak_03 = new PrefabGUID(-47158938); public static readonly PrefabGUID TM_WoodenBeerBarrel_01 = new PrefabGUID(-1616824780); public static readonly PrefabGUID TM_WoodenBeerBarrel_02 = new PrefabGUID(-2143442994); public static readonly PrefabGUID TM_WoodenBeerBarrel_Snow_01 = new PrefabGUID(895457857); public static readonly PrefabGUID TM_WoodenBeerBarrel_Snow_02 = new PrefabGUID(-846222448); public static readonly PrefabGUID TM_WoodenCageDoor_01 = new PrefabGUID(1101392773); public static readonly PrefabGUID TM_WoodenCageDoor_02 = new PrefabGUID(-1272510512); public static readonly PrefabGUID TM_WoodenCrate_01 = new PrefabGUID(155188369); public static readonly PrefabGUID TM_WoodenCrate_02 = new PrefabGUID(395863147); public static readonly PrefabGUID TM_WoodenCrate_Cluster_01 = new PrefabGUID(1656950553); public static readonly PrefabGUID TM_WoodenCrate_Cluster_02 = new PrefabGUID(-1676958741); public static readonly PrefabGUID TM_WoodenCrate_Snow_01 = new PrefabGUID(-332218743); public static readonly PrefabGUID TM_WoodenCrate_Snow_02 = new PrefabGUID(-1094322381); public static readonly PrefabGUID TM_WoodenCrateLarge_01 = new PrefabGUID(414294709); public static readonly PrefabGUID TM_WoodenCrateLarge_Snow_01 = new PrefabGUID(-2040220910); public static readonly PrefabGUID TM_WoodenCrateOak_01 = new PrefabGUID(1771207980); public static readonly PrefabGUID TM_WoodenCrateOak_02 = new PrefabGUID(-1758451165); public static readonly PrefabGUID TM_WoodenCrateOakLarge_01 = new PrefabGUID(-420826118); public static readonly PrefabGUID TM_WoodenCrateOakLarge_02 = new PrefabGUID(-519152820); public static readonly PrefabGUID TM_WoodenPlanksLow_01_Fence = new PrefabGUID(-633267783); public static readonly PrefabGUID TM_WoodenPlanksLow_01_Fence_Broken = new PrefabGUID(460277224); public static readonly PrefabGUID TM_WoodenPlanksLow_02_Fence = new PrefabGUID(-1095050852); public static readonly PrefabGUID TM_WoodenPlanksLow_02_Fence_Broken = new PrefabGUID(1265003802); public static readonly PrefabGUID TM_WoodenPlanksLow_03_Fence = new PrefabGUID(88569642); public static readonly PrefabGUID TM_WoodenPlanksLow_03_Fence_Broken = new PrefabGUID(1773774761); public static readonly PrefabGUID TM_WoodenPlanksLow_04_Fence = new PrefabGUID(-1840483652); public static readonly PrefabGUID TM_WoodenPlanksLow_04_Fence_Broken = new PrefabGUID(2049766710); public static readonly PrefabGUID TM_WoodenPlanksLow_05_Fence = new PrefabGUID(1400723205); public static readonly PrefabGUID TM_WoodenPlanksLow_05_Fence_Broken = new PrefabGUID(-1380781899); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_01_Fence = new PrefabGUID(1277369491); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_01_Fence_Broken = new PrefabGUID(-327559588); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_02_Fence = new PrefabGUID(1308292916); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_02_Fence_Broken = new PrefabGUID(508580333); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_03_Fence = new PrefabGUID(-606945046); public static readonly PrefabGUID TM_WoodenPlanksLow_Diagonal_03_Fence_Broken = new PrefabGUID(138725142); public static readonly PrefabGUID TM_WoodenPlanksLow_Gate_01_Fence = new PrefabGUID(-1254539746); public static readonly PrefabGUID TM_WoodenPlanksLow_Gate_01_Fence_Broken = new PrefabGUID(426021989); public static readonly PrefabGUID TM_WoodenPlanksLow_GateEntrance_01_Fence = new PrefabGUID(257211343); public static readonly PrefabGUID TM_WoodenPlanksLow_GateEntrance_01_Fence_Broken = new PrefabGUID(222462295); public static readonly PrefabGUID TM_WoodenPlanksTall_01_Fence = new PrefabGUID(2069851350); public static readonly PrefabGUID TM_WoodenPlanksTall_01_Fence_Broken = new PrefabGUID(1033357033); public static readonly PrefabGUID TM_WoodenPlanksTall_02_Fence = new PrefabGUID(1447305832); public static readonly PrefabGUID TM_WoodenPlanksTall_02_Fence_Broken = new PrefabGUID(-1984153716); public static readonly PrefabGUID TM_WoodenPlanksTall_03_Fence = new PrefabGUID(52032733); public static readonly PrefabGUID TM_WoodenPlanksTall_03_Fence_Broken = new PrefabGUID(-567094082); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_01_Fence = new PrefabGUID(-674489498); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_01_Fence_Broken = new PrefabGUID(-1150002999); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_02_Fence = new PrefabGUID(506122059); public static readonly PrefabGUID TM_WoodenPlanksTall_Diagonal_02_Fence_Broken = new PrefabGUID(1606681564); public static readonly PrefabGUID TM_Workstation_Waypoint_Castle = new PrefabGUID(-1348294483); public static readonly PrefabGUID TM_Workstation_Waypoint_Castle_StrongbladeDLC = new PrefabGUID(-1237621022); public static readonly PrefabGUID TM_Workstation_Waypoint_World = new PrefabGUID(2107199037); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Cursed = new PrefabGUID(1552296924); public static readonly PrefabGUID TM_Workstation_Waypoint_World_GloomRot_North = new PrefabGUID(1052636561); public static readonly PrefabGUID TM_Workstation_Waypoint_World_GloomRot_South = new PrefabGUID(-540245540); public static readonly PrefabGUID TM_Workstation_Waypoint_World_SilverHills = new PrefabGUID(1409226104); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Snow = new PrefabGUID(165077432); public static readonly PrefabGUID TM_Workstation_Waypoint_World_Strongblade = new PrefabGUID(-512512749); public static readonly PrefabGUID TM_Workstation_Waypoint_World_UnlockedFromStart = new PrefabGUID(-1340667394); public static readonly PrefabGUID TM_World_Door_SlaveMines_Gate_Standard = new PrefabGUID(-601116315); public static readonly PrefabGUID TM_WorldChest_Epic_01_Empty = new PrefabGUID(-321007732); public static readonly PrefabGUID TM_WorldChest_Epic_01_Full = new PrefabGUID(-1657744516); public static readonly PrefabGUID TM_WorldChest_Iron_01_Empty = new PrefabGUID(-273515249); public static readonly PrefabGUID TM_WorldChest_Iron_01_Full = new PrefabGUID(257686919); public static readonly PrefabGUID TM_WorldChest_Simple_01_Empty = new PrefabGUID(-375592800); public static readonly PrefabGUID TM_WorldChest_Simple_01_Full = new PrefabGUID(240964190); public static readonly PrefabGUID TM_WorldChest_Simple_GloomRot_01_Empty = new PrefabGUID(-241680783); public static readonly PrefabGUID TM_WorldChest_Simple_GloomRot_01_Full = new PrefabGUID(-1576310588); public static readonly PrefabGUID TM_WorldChest_Simple_SludgePools_01_Empty = new PrefabGUID(866003444); public static readonly PrefabGUID TM_WorldChest_Simple_SludgePools_01_Full = new PrefabGUID(-1203166929); public static readonly PrefabGUID TopdownCamera = new PrefabGUID(1544266823); public static readonly PrefabGUID TorchesBuildMenuGroup = new PrefabGUID(1055694726); public static readonly PrefabGUID TransmogSwatch = new PrefabGUID(1816647976); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_Bone01 = new PrefabGUID(-277575299); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_Bone02 = new PrefabGUID(1464602535); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T03 = new PrefabGUID(1164629865); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Brute = new PrefabGUID(-1311909353); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Rogue = new PrefabGUID(-219304453); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Scholar = new PrefabGUID(-538426746); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T04_Warrior = new PrefabGUID(251014143); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T05 = new PrefabGUID(1024201235); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Brute = new PrefabGUID(-603808877); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Rogue = new PrefabGUID(-1106762164); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Scholar = new PrefabGUID(643915900); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T06_Warrior = new PrefabGUID(-603080596); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T07 = new PrefabGUID(272308078); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Brute = new PrefabGUID(1380371899); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Rogue = new PrefabGUID(-1345495885); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Scholar = new PrefabGUID(-1312713409); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T08_Warrior = new PrefabGUID(-555162650); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula = new PrefabGUID(57403359); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Brute = new PrefabGUID(1079066485); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Rogue = new PrefabGUID(1171807232); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Scholar = new PrefabGUID(1814580727); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T09_Dracula_Warrior = new PrefabGUID(605011768); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_BallGown = new PrefabGUID(1068408746); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_BlackfangSultan = new PrefabGUID(316093213); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Default_T0X_Suit01 = new PrefabGUID(-872343593); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Gold = new PrefabGUID(1062094538); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Mixed = new PrefabGUID(-213084728); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_Silver = new PrefabGUID(1557507603); public static readonly PrefabGUID TransmogSwatch_ArmorColors_Shared_SpellSchools = new PrefabGUID(-2030670411); public static readonly PrefabGUID TransmogSwatch_Default_Placeholder = new PrefabGUID(863658021); public static readonly PrefabGUID TransmogSwatch_Monochrome = new PrefabGUID(-1566877804); public static readonly PrefabGUID TransmogSwatch_Placeholder = new PrefabGUID(-1059671382); public static readonly PrefabGUID TreasuryFloorBuildMenuGroup = new PrefabGUID(1788353281); public static readonly PrefabGUID Trees_Apple01_Dynamics = new PrefabGUID(1977652343); public static readonly PrefabGUID Trees_Apple01_Small_Dynamics = new PrefabGUID(-2025750620); public static readonly PrefabGUID Trees_Apple02_Dynamics = new PrefabGUID(905031393); public static readonly PrefabGUID Trees_Apple02_Small_Dynamics = new PrefabGUID(650658732); public static readonly PrefabGUID Trees_Apple03_Dynamics = new PrefabGUID(1615024389); public static readonly PrefabGUID Trees_Apple03_Small_Dynamics = new PrefabGUID(58491784); public static readonly PrefabGUID Trees_AppleCursed01_Dynamics = new PrefabGUID(-240919247); public static readonly PrefabGUID Trees_AppleCursed01_Small_Dynamics = new PrefabGUID(1664102699); public static readonly PrefabGUID Trees_AppleCursed02_Dynamics = new PrefabGUID(1005258416); public static readonly PrefabGUID Trees_AppleCursed02_Small_Dynamics = new PrefabGUID(-1956159861); public static readonly PrefabGUID Trees_AppleCursed03_Dynamics = new PrefabGUID(-1128377428); public static readonly PrefabGUID Trees_AppleCursed03_Small_Dynamics = new PrefabGUID(-96907934); public static readonly PrefabGUID Trees_Aspen01_Dynamics = new PrefabGUID(-1863197148); public static readonly PrefabGUID Trees_Aspen01_Dynamics_Small = new PrefabGUID(418896867); public static readonly PrefabGUID Trees_Aspen01_Dynamics_Smaller = new PrefabGUID(-1291595260); public static readonly PrefabGUID Trees_Aspen02_Dynamics = new PrefabGUID(-935523967); public static readonly PrefabGUID Trees_Aspen02_Dynamics_Small = new PrefabGUID(1818087098); public static readonly PrefabGUID Trees_Aspen03_Dynamics = new PrefabGUID(-1241579503); public static readonly PrefabGUID Trees_Aspen03_Dynamics_Small = new PrefabGUID(-1983891190); public static readonly PrefabGUID Trees_AspenAutumn01_Dynamics = new PrefabGUID(1543147177); public static readonly PrefabGUID Trees_AspenAutumn01_Dynamics_Small = new PrefabGUID(-304556772); public static readonly PrefabGUID Trees_AspenAutumn02_Dynamics = new PrefabGUID(351397692); public static readonly PrefabGUID Trees_AspenAutumn02_Dynamics_Small = new PrefabGUID(-1479573149); public static readonly PrefabGUID Trees_AspenAutumn03_Dynamics = new PrefabGUID(-772603021); public static readonly PrefabGUID Trees_AspenAutumn03_Dynamics_Small = new PrefabGUID(1396888363); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics = new PrefabGUID(909159597); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics_Small = new PrefabGUID(-628007493); public static readonly PrefabGUID Trees_AspenAutumn04_Dynamics_Smaller = new PrefabGUID(-230392776); public static readonly PrefabGUID Trees_AspenAutumn05_Dynamics = new PrefabGUID(-2044753767); public static readonly PrefabGUID Trees_AspenAutumn05_Dynamics_Small = new PrefabGUID(-1802836899); public static readonly PrefabGUID Trees_AspenAutumn06_Dynamics = new PrefabGUID(-1721823933); public static readonly PrefabGUID Trees_AspenAutumn06_Dynamics_Small = new PrefabGUID(-124466565); public static readonly PrefabGUID Trees_Beech01_Dynamics = new PrefabGUID(-670954970); public static readonly PrefabGUID Trees_Beech01_Dynamics_Small = new PrefabGUID(411270079); public static readonly PrefabGUID Trees_Beech02_Dynamics = new PrefabGUID(40774993); public static readonly PrefabGUID Trees_Beech02_Dynamics_Small = new PrefabGUID(-1857168409); public static readonly PrefabGUID Trees_Beech03_Dynamics = new PrefabGUID(1384314767); public static readonly PrefabGUID Trees_Beech03_Dynamics_Small = new PrefabGUID(-1605778157); public static readonly PrefabGUID Trees_Birch_Dynamics = new PrefabGUID(-565197712); public static readonly PrefabGUID Trees_Birch01_Dynamics = new PrefabGUID(-413241804); public static readonly PrefabGUID Trees_Birch01_Small_Dynamics = new PrefabGUID(2072093275); public static readonly PrefabGUID Trees_Birch02_Dynamics = new PrefabGUID(2145489175); public static readonly PrefabGUID Trees_Birch02_Small_Dynamics = new PrefabGUID(1243946873); public static readonly PrefabGUID Trees_Birch03_Dynamics = new PrefabGUID(-1016330866); public static readonly PrefabGUID Trees_Birch03_Small_Dynamics = new PrefabGUID(-436007722); public static readonly PrefabGUID Trees_Birch04_Dynamics = new PrefabGUID(-792025823); public static readonly PrefabGUID Trees_Birch04_Small_Dynamics = new PrefabGUID(-157451273); public static readonly PrefabGUID Trees_Birch04_Smaller_Dynamics = new PrefabGUID(-136177113); public static readonly PrefabGUID Trees_BirchAutumn01_Dynamics = new PrefabGUID(1858616844); public static readonly PrefabGUID Trees_BirchAutumn01_Small_Dynamics = new PrefabGUID(1979704820); public static readonly PrefabGUID Trees_BirchAutumn02_Dynamics = new PrefabGUID(-1725296100); public static readonly PrefabGUID Trees_BirchAutumn02_Small_Dynamics = new PrefabGUID(1625742036); public static readonly PrefabGUID Trees_BirchAutumn03_Dynamics = new PrefabGUID(-2102202009); public static readonly PrefabGUID Trees_BirchAutumn03_Small_Dynamics = new PrefabGUID(-1148810198); public static readonly PrefabGUID Trees_BirchAutumn04_Dynamics = new PrefabGUID(-975891108); public static readonly PrefabGUID Trees_BirchAutumn04_Small_Dynamics = new PrefabGUID(408561308); public static readonly PrefabGUID Trees_BirchAutumn05_Dynamics = new PrefabGUID(53870181); public static readonly PrefabGUID Trees_BirchAutumn05_Small_Dynamics = new PrefabGUID(541607367); public static readonly PrefabGUID Trees_BirchAutumn06_Dynamics = new PrefabGUID(-512367377); public static readonly PrefabGUID Trees_BirchAutumn06_Small_Dynamics = new PrefabGUID(655232988); public static readonly PrefabGUID Trees_BirchAutumn07_Dynamics = new PrefabGUID(-1408937899); public static readonly PrefabGUID Trees_BirchAutumn07_Small_Dynamics = new PrefabGUID(-1985960858); public static readonly PrefabGUID Trees_BirchAutumn08_Dynamics = new PrefabGUID(990099000); public static readonly PrefabGUID Trees_BirchAutumn08_Small_Dynamics = new PrefabGUID(2042984805); public static readonly PrefabGUID Trees_BirchAutumn09_Dynamics = new PrefabGUID(379117916); public static readonly PrefabGUID Trees_BirchAutumn09_Small_Dynamics = new PrefabGUID(-1607974076); public static readonly PrefabGUID Trees_BirchAutumn10_Dynamics = new PrefabGUID(-1173331158); public static readonly PrefabGUID Trees_BirchAutumn10_Small_Dynamics = new PrefabGUID(-276728233); public static readonly PrefabGUID Trees_BirchAutumn11_Dynamics = new PrefabGUID(1531157456); public static readonly PrefabGUID Trees_BirchAutumn11_Small_Dynamics = new PrefabGUID(1393822318); public static readonly PrefabGUID Trees_BirchAutumn12_Dynamics = new PrefabGUID(1622407952); public static readonly PrefabGUID Trees_BirchAutumn12_Small_Dynamics = new PrefabGUID(-34155188); public static readonly PrefabGUID Trees_BirchAutumn12_Smaller_Dynamics = new PrefabGUID(1974361501); public static readonly PrefabGUID Trees_BirchRed01_Dynamics = new PrefabGUID(-2005733152); public static readonly PrefabGUID Trees_BirchRed01_Small_Dynamics = new PrefabGUID(-268338792); public static readonly PrefabGUID Trees_BirchRed02_Dynamics = new PrefabGUID(-1242510425); public static readonly PrefabGUID Trees_BirchRed02_Small_Dynamics = new PrefabGUID(-315631001); public static readonly PrefabGUID Trees_BirchRed03_Dynamics = new PrefabGUID(-287391515); public static readonly PrefabGUID Trees_BirchRed03_Small_Dynamics = new PrefabGUID(-1808274858); public static readonly PrefabGUID Trees_BirchRed04_Dynamics = new PrefabGUID(-1500676703); public static readonly PrefabGUID Trees_BirchRed04_Small_Dynamics = new PrefabGUID(-554746562); public static readonly PrefabGUID Trees_BlightbringerTree_01_Dynamics = new PrefabGUID(2093549203); public static readonly PrefabGUID Trees_BlightbringerTree_01_Dynamics_Small = new PrefabGUID(-1524351851); public static readonly PrefabGUID Trees_BlightbringerTree_02_Dynamics = new PrefabGUID(1528044301); public static readonly PrefabGUID Trees_BlightbringerTree_02_Dynamics_Small = new PrefabGUID(-766044200); public static readonly PrefabGUID Trees_BlightbringerTree_07_Dynamics = new PrefabGUID(-295895615); public static readonly PrefabGUID Trees_BlightbringerTree_07_Dynamics_Small = new PrefabGUID(-1681123148); public static readonly PrefabGUID Trees_Cherry01_Dynamics = new PrefabGUID(169484349); public static readonly PrefabGUID Trees_Cherry01_Small_Dynamics = new PrefabGUID(-1117106789); public static readonly PrefabGUID Trees_Cherry01_White_Dynamics = new PrefabGUID(-1066739037); public static readonly PrefabGUID Trees_Cherry01_White_Small_Dynamics = new PrefabGUID(1996084013); public static readonly PrefabGUID Trees_Cherry02_Dynamics = new PrefabGUID(-1237108810); public static readonly PrefabGUID Trees_Cherry02_Small_Dynamics = new PrefabGUID(1092953816); public static readonly PrefabGUID Trees_Cherry02_White_Dynamics = new PrefabGUID(1543070292); public static readonly PrefabGUID Trees_Cherry02_White_Small_Dynamics = new PrefabGUID(475350749); public static readonly PrefabGUID Trees_Cursed01_Dynamics = new PrefabGUID(-978500164); public static readonly PrefabGUID Trees_Cursed01_Small_Dynamics = new PrefabGUID(1987011278); public static readonly PrefabGUID Trees_Cursed04_Dynamics = new PrefabGUID(-881195700); public static readonly PrefabGUID Trees_Cursed04_Small_Dynamics = new PrefabGUID(1803011233); public static readonly PrefabGUID Trees_CursedRotten01_Dynamics = new PrefabGUID(-1238971582); public static readonly PrefabGUID Trees_CursedRotten01_Small_Dynamics = new PrefabGUID(-1611067224); public static readonly PrefabGUID Trees_CursedRotten02_Dynamics = new PrefabGUID(-937280065); public static readonly PrefabGUID Trees_CursedRotten02_Small_Dynamics = new PrefabGUID(1758352540); public static readonly PrefabGUID Trees_CursedRottenStub01_Dynamics = new PrefabGUID(-613409527); public static readonly PrefabGUID Trees_CursedRottenStub01_Small_Dynamics = new PrefabGUID(-1226607594); public static readonly PrefabGUID Trees_CursedRottenStub02_Dynamics = new PrefabGUID(-274588466); public static readonly PrefabGUID Trees_CursedRottenStub02_Small_Dynamics = new PrefabGUID(-86235866); public static readonly PrefabGUID Trees_CursedRottenStub03_Dynamics = new PrefabGUID(-116739102); public static readonly PrefabGUID Trees_CursedRottenStub03_Small_Dynamics = new PrefabGUID(-1290508375); public static readonly PrefabGUID Trees_CursedRottenStub04_Dynamics = new PrefabGUID(1769528902); public static readonly PrefabGUID Trees_CursedRottenStub04_Small_Dynamics = new PrefabGUID(195308734); public static readonly PrefabGUID Trees_CursedRottenStub05_Dynamics = new PrefabGUID(1227441690); public static readonly PrefabGUID Trees_CursedRottenStub05_Small_Dynamics = new PrefabGUID(-510043575); public static readonly PrefabGUID Trees_Cypress01_Dynamics = new PrefabGUID(1630015383); public static readonly PrefabGUID Trees_Cypress01_DynamicsAutum = new PrefabGUID(-918842775); public static readonly PrefabGUID Trees_Cypress01_Small_Dynamics = new PrefabGUID(282531850); public static readonly PrefabGUID Trees_Cypress01_Small_DynamicsAutum = new PrefabGUID(-1369573099); public static readonly PrefabGUID Trees_Cypress02_Dynamics = new PrefabGUID(634556557); public static readonly PrefabGUID Trees_Cypress02_DynamicsAutum = new PrefabGUID(-345556695); public static readonly PrefabGUID Trees_Cypress02_Small_Dynamics = new PrefabGUID(-2040590240); public static readonly PrefabGUID Trees_Cypress02_Small_DynamicsAutum = new PrefabGUID(1095232674); public static readonly PrefabGUID Trees_Cypress03_Dynamics = new PrefabGUID(-1169383345); public static readonly PrefabGUID Trees_Cypress03_DynamicsAutum = new PrefabGUID(1880987809); public static readonly PrefabGUID Trees_Cypress03_Small_Dynamics = new PrefabGUID(-1422571093); public static readonly PrefabGUID Trees_Cypress03_Small_DynamicsAutum = new PrefabGUID(-3846017); public static readonly PrefabGUID Trees_DeadSpooky01_Dynamics = new PrefabGUID(-772868385); public static readonly PrefabGUID Trees_DeadSpooky01_Dynamics_Small = new PrefabGUID(2090075869); public static readonly PrefabGUID Trees_DeadSpooky02_Dynamics = new PrefabGUID(-1948368020); public static readonly PrefabGUID Trees_DeadSpooky02_Dynamics_Small = new PrefabGUID(-1478700435); public static readonly PrefabGUID Trees_DeadSpooky03_Dynamics = new PrefabGUID(-19093121); public static readonly PrefabGUID Trees_DeadSpooky03_Dynamics_Small = new PrefabGUID(-1762289791); public static readonly PrefabGUID Trees_DeadSpooky04_Dynamics = new PrefabGUID(2068297674); public static readonly PrefabGUID Trees_DeadSpooky04_Dynamics_Small = new PrefabGUID(-875600159); public static readonly PrefabGUID Trees_DeadStump01_CursedForest_Dynamics = new PrefabGUID(380019009); public static readonly PrefabGUID Trees_DeadStump01_CursedForest_Dynamics_Small = new PrefabGUID(709280126); public static readonly PrefabGUID Trees_DeadStump01_Dynamics = new PrefabGUID(-938583310); public static readonly PrefabGUID Trees_DeadStump01_Dynamics_Small = new PrefabGUID(1294554295); public static readonly PrefabGUID Trees_DeadStump02_CursedForest_Dynamics = new PrefabGUID(514719088); public static readonly PrefabGUID Trees_DeadStump02_CursedForest_Dynamics_Small = new PrefabGUID(1797622048); public static readonly PrefabGUID Trees_DeadStump02_Dynamics = new PrefabGUID(-197526629); public static readonly PrefabGUID Trees_DeadStump02_Dynamics_Small = new PrefabGUID(-216421858); public static readonly PrefabGUID Trees_DeadStump03_CursedForest_Dynamics = new PrefabGUID(1318620834); public static readonly PrefabGUID Trees_DeadStump03_CursedForest_Dynamics_Small = new PrefabGUID(-282961515); public static readonly PrefabGUID Trees_DeadStump03_Dynamics = new PrefabGUID(-928444794); public static readonly PrefabGUID Trees_DeadStump03_Dynamics_Small = new PrefabGUID(1417631755); public static readonly PrefabGUID Trees_DeadTree_Dynamics = new PrefabGUID(228917101); public static readonly PrefabGUID Trees_DryWood01_Dynamics = new PrefabGUID(-473752727); public static readonly PrefabGUID Trees_DryWood02_Dynamics = new PrefabGUID(860875346); public static readonly PrefabGUID Trees_DryWood03_Dynamics = new PrefabGUID(-2066746254); public static readonly PrefabGUID Trees_Gloomrot_Stub_01_Dynamics = new PrefabGUID(-767274099); public static readonly PrefabGUID Trees_Gloomrot_Stub_01_Small_Dynamics = new PrefabGUID(-968165825); public static readonly PrefabGUID Trees_Gloomrot_Stub_02_Dynamics = new PrefabGUID(-309347675); public static readonly PrefabGUID Trees_Gloomrot_Stub_02_Small_Dynamics = new PrefabGUID(-1719740320); public static readonly PrefabGUID Trees_Gloomrot01_Dynamics = new PrefabGUID(-1463522503); public static readonly PrefabGUID Trees_Gloomrot01_Small_Dynamics = new PrefabGUID(1056400299); public static readonly PrefabGUID Trees_Gloomrot02_Dynamics = new PrefabGUID(-1602145451); public static readonly PrefabGUID Trees_Gloomrot02_Small_Dynamics = new PrefabGUID(1701833740); public static readonly PrefabGUID Trees_Gloomrot03_Dynamics = new PrefabGUID(-504388139); public static readonly PrefabGUID Trees_Gloomrot03_Small_Dynamics = new PrefabGUID(-1574729202); public static readonly PrefabGUID Trees_Gloomrot04_Dynamics = new PrefabGUID(-1063800155); public static readonly PrefabGUID Trees_Gloomrot04_Small_Dynamics = new PrefabGUID(-12946684); public static readonly PrefabGUID Trees_Gloomrot05_Dynamics = new PrefabGUID(-838342484); public static readonly PrefabGUID Trees_Gloomrot05_Small_Dynamics = new PrefabGUID(1245495885); public static readonly PrefabGUID Trees_Gloomrot06_Dynamics = new PrefabGUID(824574309); public static readonly PrefabGUID Trees_Gloomrot06_Small_Dynamics = new PrefabGUID(123822470); public static readonly PrefabGUID Trees_Gloomrot07_Dynamics = new PrefabGUID(1098015542); public static readonly PrefabGUID Trees_Gloomrot07_Small_Dynamics = new PrefabGUID(54416506); public static readonly PrefabGUID Trees_Gloomrot08_Dynamics = new PrefabGUID(-1695932190); public static readonly PrefabGUID Trees_Gloomrot08_Small_Dynamics = new PrefabGUID(-700834638); public static readonly PrefabGUID Trees_GloomrotHills01_Dynamics = new PrefabGUID(-58209013); public static readonly PrefabGUID Trees_GloomrotHills01_Small_Dynamics = new PrefabGUID(1893885001); public static readonly PrefabGUID Trees_GloomrotHills02_Dynamics = new PrefabGUID(-1693147041); public static readonly PrefabGUID Trees_GloomrotHills02_Small_Dynamics = new PrefabGUID(216003376); public static readonly PrefabGUID Trees_GloomrotHills03_Dynamics = new PrefabGUID(1255352907); public static readonly PrefabGUID Trees_GloomrotHills03_Small_Dynamics = new PrefabGUID(1974122259); public static readonly PrefabGUID Trees_GloomrotHills04_Dynamics = new PrefabGUID(-252937560); public static readonly PrefabGUID Trees_GloomrotHills04_Small_Dynamics = new PrefabGUID(-1520124338); public static readonly PrefabGUID Trees_GloomrotHills05_Dynamics = new PrefabGUID(-961400326); public static readonly PrefabGUID Trees_GloomrotHills05_Small_Dynamics = new PrefabGUID(959083640); public static readonly PrefabGUID Trees_GloomrotHills06_Dynamics = new PrefabGUID(-1848098411); public static readonly PrefabGUID Trees_GloomrotHills06_Small_Dynamics = new PrefabGUID(1569665737); public static readonly PrefabGUID Trees_GloomrotHills07_Dynamics = new PrefabGUID(-2107340608); public static readonly PrefabGUID Trees_GloomrotHills07_Small_Dynamics = new PrefabGUID(-1641647358); public static readonly PrefabGUID Trees_GloomrotHillsDead01_Dynamics = new PrefabGUID(1921250845); public static readonly PrefabGUID Trees_GloomrotHillsDead01_Small_Dynamics = new PrefabGUID(-1369207216); public static readonly PrefabGUID Trees_GloomrotHillsDead02_Dynamics = new PrefabGUID(2145971533); public static readonly PrefabGUID Trees_GloomrotHillsDead02_Small_Dynamics = new PrefabGUID(-1983825125); public static readonly PrefabGUID Trees_GloomrotHillsDead03_Dynamics = new PrefabGUID(-430729720); public static readonly PrefabGUID Trees_GloomrotHillsDead03_Small_Dynamics = new PrefabGUID(-470154503); public static readonly PrefabGUID Trees_GloomrotHillsDead04_Dynamics = new PrefabGUID(630908071); public static readonly PrefabGUID Trees_GloomrotHillsDead04_Small_Dynamics = new PrefabGUID(-1316426031); public static readonly PrefabGUID Trees_GloomrotHillsDead05_Dynamics = new PrefabGUID(1567239903); public static readonly PrefabGUID Trees_GloomrotHillsDead05_Small_Dynamics = new PrefabGUID(-1789082044); public static readonly PrefabGUID Trees_LargeMaple01_Dynamics = new PrefabGUID(870547122); public static readonly PrefabGUID Trees_LargeMaple02_Dynamics = new PrefabGUID(-1325381865); public static readonly PrefabGUID Trees_LargeOakAutumn01_Dynamics = new PrefabGUID(-431668272); public static readonly PrefabGUID Trees_LargeOakAutumn02_Dynamics = new PrefabGUID(558891394); public static readonly PrefabGUID Trees_LargeOakAutumn03_Dynamics = new PrefabGUID(731160268); public static readonly PrefabGUID Trees_LargeOakAutumn04_Dynamics = new PrefabGUID(940099523); public static readonly PrefabGUID Trees_LargePine_Old01_Dynamics = new PrefabGUID(-1830887461); public static readonly PrefabGUID Trees_LargePine_Old01_Gloomrot_Dynamics = new PrefabGUID(129715801); public static readonly PrefabGUID Trees_LargePine_Old01_Gloomrot_Small_Dynamics = new PrefabGUID(-801827393); public static readonly PrefabGUID Trees_LargePine_Old01_GloomrotHills_Dynamics = new PrefabGUID(950221242); public static readonly PrefabGUID Trees_LargePine_Old01_GloomrotHills_Small_Dynamics = new PrefabGUID(1363328752); public static readonly PrefabGUID Trees_LargePine_Old01_Small_Dynamics = new PrefabGUID(825036760); public static readonly PrefabGUID Trees_LargePine_Old02_Dynamics = new PrefabGUID(1931675064); public static readonly PrefabGUID Trees_LargePine_Old02_Gloomrot_Dynamics = new PrefabGUID(-98289656); public static readonly PrefabGUID Trees_LargePine_Old02_Gloomrot_Small_Dynamics = new PrefabGUID(-529872904); public static readonly PrefabGUID Trees_LargePine_Old02_GloomrotHills_Dynamics = new PrefabGUID(-358533614); public static readonly PrefabGUID Trees_LargePine_Old02_GloomrotHills_Small_Dynamics = new PrefabGUID(266169013); public static readonly PrefabGUID Trees_LargePine_Old02_Small_Dynamics = new PrefabGUID(-1991031770); public static readonly PrefabGUID Trees_LargePine_Old03_Dynamics = new PrefabGUID(-570546304); public static readonly PrefabGUID Trees_LargePine_Old03_Gloomrot_Dynamics = new PrefabGUID(-1760913376); public static readonly PrefabGUID Trees_LargePine_Old03_Gloomrot_Small_Dynamics = new PrefabGUID(647486836); public static readonly PrefabGUID Trees_LargePine_Old03_GloomrotHills_Dynamics = new PrefabGUID(-1672412202); public static readonly PrefabGUID Trees_LargePine_Old03_GloomrotHills_Small_Dynamics = new PrefabGUID(-1764338992); public static readonly PrefabGUID Trees_LargePine_Old03_Small_Dynamics = new PrefabGUID(-600880015); public static readonly PrefabGUID Trees_LargePine_Old04_GloomrotHills_Dynamics = new PrefabGUID(2000172409); public static readonly PrefabGUID Trees_LargePine_Old04_GloomrotHills_Small_Dynamics = new PrefabGUID(-8352804); public static readonly PrefabGUID Trees_LargePine_Snow01_Dynamics = new PrefabGUID(-1820062966); public static readonly PrefabGUID Trees_LargePine_Snow01_Small_Dynamics = new PrefabGUID(-1782664331); public static readonly PrefabGUID Trees_LargePine_Snow02_Dynamics = new PrefabGUID(-644402262); public static readonly PrefabGUID Trees_LargePine_Snow02_Small_Dynamics = new PrefabGUID(-1703279788); public static readonly PrefabGUID Trees_LargePine_Snow03_Dynamics = new PrefabGUID(-857016940); public static readonly PrefabGUID Trees_LargePine_Snow03_Small_Dynamics = new PrefabGUID(2065098870); public static readonly PrefabGUID Trees_LargePine01_Dynamics = new PrefabGUID(-1883636929); public static readonly PrefabGUID Trees_LargePine01_Small_Dynamics = new PrefabGUID(-1378823465); public static readonly PrefabGUID Trees_LargePine02_Dynamics = new PrefabGUID(-2043880354); public static readonly PrefabGUID Trees_LargePine02_Small_Dynamics = new PrefabGUID(-690048766); public static readonly PrefabGUID Trees_LargePine03_Dynamics = new PrefabGUID(2021946314); public static readonly PrefabGUID Trees_LargePine03_Small_Dynamics = new PrefabGUID(840111269); public static readonly PrefabGUID Trees_LargePineSnow_Old01_Dynamics = new PrefabGUID(276653356); public static readonly PrefabGUID Trees_LargePineSnow_Old01_Small_Dynamics = new PrefabGUID(-1515221639); public static readonly PrefabGUID Trees_LargePineSnow_Old02_Dynamics = new PrefabGUID(121556631); public static readonly PrefabGUID Trees_LargePineSnow_Old02_Small_Dynamics = new PrefabGUID(-785880066); public static readonly PrefabGUID Trees_LargePineSnow_Old03_Dynamics = new PrefabGUID(-61718453); public static readonly PrefabGUID Trees_LargePineSnow_Old03_Small_Dynamics = new PrefabGUID(-906522774); public static readonly PrefabGUID Trees_MountainBirch01_Dynamics = new PrefabGUID(-1059505283); public static readonly PrefabGUID Trees_MountainBirch01_Small_Dynamics = new PrefabGUID(-379271588); public static readonly PrefabGUID Trees_MountainBirch02_Dynamics = new PrefabGUID(-678998384); public static readonly PrefabGUID Trees_MountainBirch02_Small_Dynamics = new PrefabGUID(1431235825); public static readonly PrefabGUID Trees_MountainBirch03_Dynamics = new PrefabGUID(1187314821); public static readonly PrefabGUID Trees_MountainBirch03_Small_Dynamics = new PrefabGUID(-2084014750); public static readonly PrefabGUID Trees_NoctemAspen01_Dynamics = new PrefabGUID(1022693477); public static readonly PrefabGUID Trees_NoctemAspen01_Small_Dynamics = new PrefabGUID(-1009993081); public static readonly PrefabGUID Trees_NoctemAspen02_Dynamics = new PrefabGUID(635348155); public static readonly PrefabGUID Trees_NoctemAspen02_Small_Dynamics = new PrefabGUID(-754291878); public static readonly PrefabGUID Trees_NoctemAspen03_Dynamics = new PrefabGUID(1742412627); public static readonly PrefabGUID Trees_NoctemAspen03_Small_Dynamics = new PrefabGUID(-1022765795); public static readonly PrefabGUID Trees_NoctemNorth01_Dynamics = new PrefabGUID(-1729830726); public static readonly PrefabGUID Trees_NoctemNorth01_Small_Dynamics = new PrefabGUID(-1666597484); public static readonly PrefabGUID Trees_NoctemNorth02_Dynamics = new PrefabGUID(181770135); public static readonly PrefabGUID Trees_NoctemNorth02_Small_Dynamics = new PrefabGUID(-1367480021); public static readonly PrefabGUID Trees_NoctemNorth03_Dynamics = new PrefabGUID(1766616494); public static readonly PrefabGUID Trees_NoctemNorth03_Small_Dynamics = new PrefabGUID(1095985921); public static readonly PrefabGUID Trees_NoctemNorth04_Dynamics = new PrefabGUID(-51896423); public static readonly PrefabGUID Trees_NoctemNorth04_Small_Dynamics = new PrefabGUID(1602798878); public static readonly PrefabGUID Trees_NoctemNorth05_Dynamics = new PrefabGUID(-1714103038); public static readonly PrefabGUID Trees_NoctemNorth05_Small_Dynamics = new PrefabGUID(2090172169); public static readonly PrefabGUID Trees_NoctemNorth06_Dynamics = new PrefabGUID(-1056396591); public static readonly PrefabGUID Trees_NoctemNorth06_Small_Dynamics = new PrefabGUID(-936233156); public static readonly PrefabGUID Trees_NoctemWillow01_Dynamics = new PrefabGUID(-1017892165); public static readonly PrefabGUID Trees_NoctemWillow01_Small_Dynamics = new PrefabGUID(811124755); public static readonly PrefabGUID Trees_NoctemWillow02_Dynamics = new PrefabGUID(1723397112); public static readonly PrefabGUID Trees_NoctemWillow02_Small_Dynamics = new PrefabGUID(-908515485); public static readonly PrefabGUID Trees_Oak01_Large_Dynamics = new PrefabGUID(-275652760); public static readonly PrefabGUID Trees_Oak01_LargeSmaller_Dynamics = new PrefabGUID(216854773); public static readonly PrefabGUID Trees_Oak01_Small_Dynamics = new PrefabGUID(-978563884); public static readonly PrefabGUID Trees_Oak01_Smaller_Dynamics = new PrefabGUID(-205520846); public static readonly PrefabGUID Trees_Oak02_Large_Dynamics = new PrefabGUID(-1961454897); public static readonly PrefabGUID Trees_Oak02_Small_Dynamics = new PrefabGUID(-2011384559); public static readonly PrefabGUID Trees_OakCursed01_Large_Dynamics = new PrefabGUID(204170623); public static readonly PrefabGUID Trees_OakCursed01_Small_Dynamics = new PrefabGUID(-250215791); public static readonly PrefabGUID Trees_OakCursed02_Large_Dynamics = new PrefabGUID(843322234); public static readonly PrefabGUID Trees_OakCursed02_Small_Dynamics = new PrefabGUID(-890680857); public static readonly PrefabGUID Trees_OakSkeleton01_Large_Dynamics = new PrefabGUID(533368403); public static readonly PrefabGUID Trees_OakSkeleton01_Small_Dynamics = new PrefabGUID(2144163927); public static readonly PrefabGUID Trees_OakSkeleton02_Large_Dynamics = new PrefabGUID(-1866630610); public static readonly PrefabGUID Trees_OakSkeleton02_Small_Dynamics = new PrefabGUID(141203687); public static readonly PrefabGUID Trees_Pine_Noctem01_Dynamics = new PrefabGUID(-996045522); public static readonly PrefabGUID Trees_Pine_Noctem01_Dynamics_Small = new PrefabGUID(117311435); public static readonly PrefabGUID Trees_Pine_Noctem02_Dynamics = new PrefabGUID(-1104597669); public static readonly PrefabGUID Trees_Pine_Noctem02_Dynamics_Small = new PrefabGUID(-1202670405); public static readonly PrefabGUID Trees_Pine_Noctem02_LargePine_Dynamics = new PrefabGUID(-56587558); public static readonly PrefabGUID Trees_Pine_Noctem02_LargePine_Dynamics_Small = new PrefabGUID(456649435); public static readonly PrefabGUID Trees_Pine_Noctem03_Dynamics = new PrefabGUID(1440263609); public static readonly PrefabGUID Trees_Pine_Noctem03_Dynamics_Small = new PrefabGUID(-736797142); public static readonly PrefabGUID Trees_Pine_Snow01_Broken_Dynamics = new PrefabGUID(252382965); public static readonly PrefabGUID Trees_Pine_Snow01_BrokenSmall_Dynamics = new PrefabGUID(-231925057); public static readonly PrefabGUID Trees_Pine_Snow02_Broken_Dynamics = new PrefabGUID(-193621560); public static readonly PrefabGUID Trees_Pine_Snow02_BrokenSmall_Dynamics = new PrefabGUID(-938183530); public static readonly PrefabGUID Trees_Pine_Snow03_Broken_Dynamics = new PrefabGUID(625072543); public static readonly PrefabGUID Trees_Pine_Snow03_BrokenSmall_Dynamics = new PrefabGUID(-1652357317); public static readonly PrefabGUID Trees_Pine_Snow04_Broken_Dynamics = new PrefabGUID(1751368535); public static readonly PrefabGUID Trees_Pine_Snow04_BrokenSmall_Dynamics = new PrefabGUID(-1398277997); public static readonly PrefabGUID Trees_Pine_Snow05_Broken_Dynamics = new PrefabGUID(1290181184); public static readonly PrefabGUID Trees_Pine_Snow05_BrokenSmall_Dynamics = new PrefabGUID(-2124252099); public static readonly PrefabGUID Trees_Pine01_Broken = new PrefabGUID(-1062574429); public static readonly PrefabGUID Trees_Pine01_BrokenSmall = new PrefabGUID(-1842666178); public static readonly PrefabGUID Trees_Pine02_Broken = new PrefabGUID(-1712773794); public static readonly PrefabGUID Trees_Pine02_BrokenSmall = new PrefabGUID(-1254795283); public static readonly PrefabGUID Trees_Pine03_Broken = new PrefabGUID(-756456821); public static readonly PrefabGUID Trees_Pine03_BrokenSmall = new PrefabGUID(-1062165167); public static readonly PrefabGUID Trees_Pine04_Broken = new PrefabGUID(-1027072093); public static readonly PrefabGUID Trees_Pine04_BrokenSmall = new PrefabGUID(670077400); public static readonly PrefabGUID Trees_Pine05_Broken = new PrefabGUID(1712314611); public static readonly PrefabGUID Trees_Pine05_BrokenSmall = new PrefabGUID(309439075); public static readonly PrefabGUID Trees_SmallMaple01_Dynamics = new PrefabGUID(-380821487); public static readonly PrefabGUID Trees_SmallMaple02_Dynamics = new PrefabGUID(1053740243); public static readonly PrefabGUID Trees_SmallOakAutumn01_Dynamics = new PrefabGUID(-1043791285); public static readonly PrefabGUID Trees_SmallOakAutumn02_Dynamics = new PrefabGUID(-331804096); public static readonly PrefabGUID Trees_SmallOakAutumn03_Dynamics = new PrefabGUID(-939957171); public static readonly PrefabGUID Trees_SmallOakAutumn04_Dynamics = new PrefabGUID(714593541); public static readonly PrefabGUID Trees_Spruce01_Dynamics = new PrefabGUID(1864979781); public static readonly PrefabGUID Trees_Spruce01_Small_Dynamics = new PrefabGUID(-939012560); public static readonly PrefabGUID Trees_Spruce02_Dynamics = new PrefabGUID(-2110946797); public static readonly PrefabGUID Trees_Spruce02_Small_Dynamics = new PrefabGUID(-221396615); public static readonly PrefabGUID Trees_Spruce03_Dynamics = new PrefabGUID(63394642); public static readonly PrefabGUID Trees_Spruce03_Small_Dynamics = new PrefabGUID(1191142116); public static readonly PrefabGUID Trees_SpruceSnow01_Dynamics = new PrefabGUID(-1657008620); public static readonly PrefabGUID Trees_SpruceSnow01_Small_Dynamics = new PrefabGUID(985716047); public static readonly PrefabGUID Trees_SpruceSnow02_Dynamics = new PrefabGUID(-1303262973); public static readonly PrefabGUID Trees_SpruceSnow02_Small_Dynamics = new PrefabGUID(1620045681); public static readonly PrefabGUID Trees_SpruceSnow03_Dynamics = new PrefabGUID(542716042); public static readonly PrefabGUID Trees_SpruceSnow03_Small_Dynamics = new PrefabGUID(-593551099); public static readonly PrefabGUID Trees_StrongBlade_Birch01_Dynamics = new PrefabGUID(1985568469); public static readonly PrefabGUID Trees_StrongBlade_Birch01_Small_Dynamics = new PrefabGUID(1597765583); public static readonly PrefabGUID Trees_StrongBlade_Birch02_Dynamics = new PrefabGUID(-2108718161); public static readonly PrefabGUID Trees_StrongBlade_Birch02_Small_Dynamics = new PrefabGUID(1732577749); public static readonly PrefabGUID Trees_StrongBlade_Birch03_Dynamics = new PrefabGUID(-1734950869); public static readonly PrefabGUID Trees_StrongBlade_Birch03_Small_Dynamics = new PrefabGUID(-1622792560); public static readonly PrefabGUID Trees_StrongBlade_Birches01_Dynamics = new PrefabGUID(-677680051); public static readonly PrefabGUID Trees_StrongBlade_Birches01_Small_Dynamics = new PrefabGUID(-1435082260); public static readonly PrefabGUID Trees_StrongBlade_Birches02_Dynamics = new PrefabGUID(210002320); public static readonly PrefabGUID Trees_StrongBlade_Birches02_Small_Dynamics = new PrefabGUID(2019330693); public static readonly PrefabGUID Trees_StrongBlade_Birches03_Dynamics = new PrefabGUID(206193059); public static readonly PrefabGUID Trees_StrongBlade_Birches03_Small_Dynamics = new PrefabGUID(-1632892031); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam01_Dynamics = new PrefabGUID(1594737004); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam01_Small_Dynamics = new PrefabGUID(-1027415108); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam02_Dynamics = new PrefabGUID(1626334183); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam02_Small_Dynamics = new PrefabGUID(499468819); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam03_Dynamics = new PrefabGUID(21713629); public static readonly PrefabGUID Trees_StrongBlade_Hornbeam03_Small_Dynamics = new PrefabGUID(-1572126889); public static readonly PrefabGUID Trees_StrongBladeCorruptTree01_Dynamics = new PrefabGUID(-664331355); public static readonly PrefabGUID Trees_StrongBladeCorruptTree01_Small_Dynamics = new PrefabGUID(1990115403); public static readonly PrefabGUID Trees_StrongBladeCorruptTree02_Dynamics = new PrefabGUID(1280235145); public static readonly PrefabGUID Trees_StrongBladeCorruptTree02_Small_Dynamics = new PrefabGUID(1808947888); public static readonly PrefabGUID Trees_StrongBladeCorruptTree03_Dynamics = new PrefabGUID(-2140644035); public static readonly PrefabGUID Trees_StrongBladeCorruptTree03_Small_Dynamics = new PrefabGUID(-389301934); public static readonly PrefabGUID Trees_StrongBladeCorruptTree04_Dynamics = new PrefabGUID(591559452); public static readonly PrefabGUID Trees_StrongBladeCorruptTree04_Small_Dynamics = new PrefabGUID(745333762); public static readonly PrefabGUID Trees_StrongBladeCorruptTree05_Dynamics = new PrefabGUID(-1172272748); public static readonly PrefabGUID Trees_StrongBladeCorruptTree05_Small_Dynamics = new PrefabGUID(-1782950811); public static readonly PrefabGUID Trees_StrongBladeOakTree01_Dynamics = new PrefabGUID(2027478355); public static readonly PrefabGUID Trees_StrongBladeOakTree01_Small_Dynamics = new PrefabGUID(554882995); public static readonly PrefabGUID Trees_StrongBladeOakTree02_Dynamics = new PrefabGUID(124954140); public static readonly PrefabGUID Trees_StrongBladeOakTree02_Small_Dynamics = new PrefabGUID(-69699488); public static readonly PrefabGUID Trees_StrongBladeOakTree03_Dynamics = new PrefabGUID(-1759118568); public static readonly PrefabGUID Trees_StrongBladeOakTree03_Small_Dynamics = new PrefabGUID(-388210170); public static readonly PrefabGUID Trees_StrongBladeOakTree04_Dynamics = new PrefabGUID(1982812361); public static readonly PrefabGUID Trees_StrongBladeOakTree04_Small_Dynamics = new PrefabGUID(2041724402); public static readonly PrefabGUID Trees_Swamp01_Dynamics = new PrefabGUID(-110974891); public static readonly PrefabGUID Trees_Swamp01_Small_Dynamics = new PrefabGUID(2116257347); public static readonly PrefabGUID Trees_Swamp02_Dynamics = new PrefabGUID(685006196); public static readonly PrefabGUID Trees_Swamp02_Small_Dynamics = new PrefabGUID(-51971799); public static readonly PrefabGUID Trees_Swamp03_Dynamics = new PrefabGUID(102683508); public static readonly PrefabGUID Trees_Swamp03_Small_Dynamics = new PrefabGUID(1029939295); public static readonly PrefabGUID Trees_Werewolf01_Dynamics = new PrefabGUID(-154502623); public static readonly PrefabGUID Trees_Werewolf01_Dynamics_Small = new PrefabGUID(-1998637938); public static readonly PrefabGUID Trees_Werewolf02_Dynamics = new PrefabGUID(813910700); public static readonly PrefabGUID Trees_Werewolf02_Dynamics_Small = new PrefabGUID(379206093); public static readonly PrefabGUID Trees_Werewolf03_Dynamics = new PrefabGUID(-1525993551); public static readonly PrefabGUID Trees_Werewolf03_Dynamics_Small = new PrefabGUID(-1033197790); public static readonly PrefabGUID Trees_Werewolf04_Dynamics = new PrefabGUID(-1592199169); public static readonly PrefabGUID Trees_Werewolf04_Dynamics_Small = new PrefabGUID(1758845629); public static readonly PrefabGUID Trees_Werewolf05_Dynamics = new PrefabGUID(1727961940); public static readonly PrefabGUID Trees_Werewolf05_Dynamics_Small = new PrefabGUID(-1115424256); public static readonly PrefabGUID Trees_Werewolf06_Dynamics = new PrefabGUID(1077786014); public static readonly PrefabGUID Trees_Werewolf06_Dynamics_Small = new PrefabGUID(788023561); public static readonly PrefabGUID Trees_WerewolfStump01_Dynamics = new PrefabGUID(-1220566236); public static readonly PrefabGUID Trees_WerewolfStump01_Dynamics_Small = new PrefabGUID(897480717); public static readonly PrefabGUID Trees_WerewolfStump02_Dynamics = new PrefabGUID(-160175549); public static readonly PrefabGUID Trees_WerewolfStump02_Dynamics_Small = new PrefabGUID(552951405); public static readonly PrefabGUID Trees_WerewolfStump03_Dynamics = new PrefabGUID(-905894468); public static readonly PrefabGUID Trees_WerewolfStump03_Dynamics_Small = new PrefabGUID(-1364268108); public static readonly PrefabGUID Trigger_General_Mount_SpawnRider = new PrefabGUID(-1758718128); public static readonly PrefabGUID Trigger_General_Tank_SpawnPilot = new PrefabGUID(1484416767); public static readonly PrefabGUID Trigger_Horseman_SpawnRider = new PrefabGUID(1145925607); public static readonly PrefabGUID Trigger_Tank_Standing_SpawnPilot = new PrefabGUID(197259186); public static readonly PrefabGUID UC_Bandits_CommandPost_Medium = new PrefabGUID(-845530316); public static readonly PrefabGUID UC_Bandits_CommandPost_Small = new PrefabGUID(72462677); public static readonly PrefabGUID UC_Bandits_CopperMine_Guards = new PrefabGUID(-1068842837); public static readonly PrefabGUID UC_Bandits_CopperMine_Large = new PrefabGUID(737395552); public static readonly PrefabGUID UC_Bandits_CopperMine_Medium = new PrefabGUID(-1079572191); public static readonly PrefabGUID UC_Bandits_CopperMine_Miners = new PrefabGUID(251471235); public static readonly PrefabGUID UC_Bandits_CopperMine_Patrol = new PrefabGUID(-1103612367); public static readonly PrefabGUID UC_Bandits_CopperMine_Small = new PrefabGUID(1603866042); public static readonly PrefabGUID UC_Bandits_Encampment_Elite_OLD = new PrefabGUID(-1413980761); public static readonly PrefabGUID UC_Bandits_Encampment_Medium_OLD = new PrefabGUID(1055738758); public static readonly PrefabGUID UC_Bandits_Farbane_Patrol = new PrefabGUID(-1628839015); public static readonly PrefabGUID UC_Bandits_Farmlands_Raid = new PrefabGUID(158811061); public static readonly PrefabGUID UC_Bandits_Forge_Easy = new PrefabGUID(-153046889); public static readonly PrefabGUID UC_Bandits_Forge_Normal = new PrefabGUID(-643082717); public static readonly PrefabGUID UC_Bandits_Fortification_Hard = new PrefabGUID(1865812010); public static readonly PrefabGUID UC_Bandits_Fortification_Medium = new PrefabGUID(-1526553598); public static readonly PrefabGUID UC_Bandits_Fortification_Small = new PrefabGUID(1864955797); public static readonly PrefabGUID UC_Bandits_General_Hard_Double = new PrefabGUID(-818832097); public static readonly PrefabGUID UC_Bandits_General_Hard_Quad = new PrefabGUID(-748802369); public static readonly PrefabGUID UC_Bandits_General_Hard_Single = new PrefabGUID(-1955373512); public static readonly PrefabGUID UC_Bandits_General_Hard_Tripple = new PrefabGUID(879318067); public static readonly PrefabGUID UC_Bandits_General_Normal_Double = new PrefabGUID(1360111581); public static readonly PrefabGUID UC_Bandits_General_Normal_Single = new PrefabGUID(258438642); public static readonly PrefabGUID UC_Bandits_General_Normal_Tripple = new PrefabGUID(839708970); public static readonly PrefabGUID UC_Bandits_General_SuperTrash_Double = new PrefabGUID(-1643375536); public static readonly PrefabGUID UC_Bandits_General_SuperTrash_Single = new PrefabGUID(-2098437895); public static readonly PrefabGUID UC_Bandits_General_Trash_Double = new PrefabGUID(1986447036); public static readonly PrefabGUID UC_Bandits_General_Trash_Hexa = new PrefabGUID(356989664); public static readonly PrefabGUID UC_Bandits_General_Trash_Single = new PrefabGUID(-716321464); public static readonly PrefabGUID UC_Bandits_General_Trash_Tripple = new PrefabGUID(1538065374); public static readonly PrefabGUID UC_Bandits_Hideout_Medium = new PrefabGUID(-1130973344); public static readonly PrefabGUID UC_Bandits_Hideout_Patrol = new PrefabGUID(1777035508); public static readonly PrefabGUID UC_Bandits_Hideout_Single_Trash = new PrefabGUID(1007057368); public static readonly PrefabGUID UC_Bandits_Hideout_Small = new PrefabGUID(2066718689); public static readonly PrefabGUID UC_Bandits_Lumberjack_Medium = new PrefabGUID(-955238947); public static readonly PrefabGUID UC_Bandits_Lumberjack_Small = new PrefabGUID(-1083947406); public static readonly PrefabGUID UC_Bandits_SulfurMine_Duo_Guard = new PrefabGUID(715218025); public static readonly PrefabGUID UC_Bandits_SulfurMine_Trio = new PrefabGUID(1945338497); public static readonly PrefabGUID UC_Bandits_TailorCamp_Guards = new PrefabGUID(1381493163); public static readonly PrefabGUID UC_Bandits_TailorCamp_Medium = new PrefabGUID(-1135657344); public static readonly PrefabGUID UC_Bandits_TailorCamp_Single = new PrefabGUID(2040350952); public static readonly PrefabGUID UC_Bandits_TailorCamp_Small = new PrefabGUID(-1868593403); public static readonly PrefabGUID UC_Bandits_VBlood_Chaosarrow = new PrefabGUID(-913889739); public static readonly PrefabGUID UC_Bandits_VBlood_FrostArrow = new PrefabGUID(238760410); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Duo_Medium = new PrefabGUID(830410426); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Duo_Medium_Guard = new PrefabGUID(1529877133); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Patrol_Trio_PeonCarryingBarrel = new PrefabGUID(-1049194597); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Alchemist = new PrefabGUID(1547151824); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Peon = new PrefabGUID(1591102641); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Single_Trash_AlchemyHouse = new PrefabGUID(163543459); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Alchemist = new PrefabGUID(-279672644); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Medium_Patrol_Melee = new PrefabGUID(1521714170); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Medium_Patrol_Ranged = new PrefabGUID(-1790390091); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Solo_Trash_AlchemyHouse = new PrefabGUID(817095334); public static readonly PrefabGUID UC_Blackfang_Alchemylab_Trio_Peon = new PrefabGUID(-410699202); public static readonly PrefabGUID UC_Blackfang_Basion_Duo_Medium = new PrefabGUID(-441272724); public static readonly PrefabGUID UC_Blackfang_Bastion_Duo_Medium_Hard = new PrefabGUID(-1076708449); public static readonly PrefabGUID UC_Blackfang_Bastion_Duo_Sentinel_Hard = new PrefabGUID(-1216836132); public static readonly PrefabGUID UC_Blackfang_Bastion_Quad_Sentinel_Hard = new PrefabGUID(1874162249); public static readonly PrefabGUID UC_Blackfang_Bastion_Single_Medium = new PrefabGUID(1072549020); public static readonly PrefabGUID UC_Blackfang_Bastion_Single_Sentinel = new PrefabGUID(1414864715); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Medium = new PrefabGUID(976746718); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Hard = new PrefabGUID(1890470354); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Medium = new PrefabGUID(-1468919877); public static readonly PrefabGUID UC_Blackfang_Bastion_Trio_Sentinel_Trash = new PrefabGUID(-278016562); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Duo_Medium = new PrefabGUID(1384826772); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Quad_Hard = new PrefabGUID(165454878); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Quad_Medium = new PrefabGUID(1897700879); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_Medium = new PrefabGUID(1031112161); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_Peon = new PrefabGUID(1206753386); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_PeonWithLog = new PrefabGUID(-1867288442); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Single_WoodCarver = new PrefabGUID(-853670200); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_Medium = new PrefabGUID(955686985); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_Peon = new PrefabGUID(-1999115092); public static readonly PrefabGUID UC_Blackfang_CarverCamp_Trio_PeonWithLog = new PrefabGUID(-287667359); public static readonly PrefabGUID UC_Blackfang_General_Duo_Medium = new PrefabGUID(1400562114); public static readonly PrefabGUID UC_Blackfang_General_Duo_Medium_Hard = new PrefabGUID(-1547973473); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash = new PrefabGUID(1279452350); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash_Day = new PrefabGUID(494869897); public static readonly PrefabGUID UC_Blackfang_General_Duo_Trash_Night = new PrefabGUID(-1119244784); public static readonly PrefabGUID UC_Blackfang_General_Duo_WoodCarver = new PrefabGUID(1592299819); public static readonly PrefabGUID UC_Blackfang_General_Quad_Hard = new PrefabGUID(2110467644); public static readonly PrefabGUID UC_Blackfang_General_Quad_Medium = new PrefabGUID(582081040); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium = new PrefabGUID(2122907035); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium_Melee = new PrefabGUID(-1013004007); public static readonly PrefabGUID UC_Blackfang_General_Single_Medium_Ranged = new PrefabGUID(138363183); public static readonly PrefabGUID UC_Blackfang_General_Single_Peon = new PrefabGUID(-1758671072); public static readonly PrefabGUID UC_Blackfang_General_Single_PeonWithBarrel = new PrefabGUID(-1211271013); public static readonly PrefabGUID UC_Blackfang_General_Single_Trash = new PrefabGUID(208901783); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium = new PrefabGUID(1383506319); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium_Melee = new PrefabGUID(-799088053); public static readonly PrefabGUID UC_Blackfang_General_Trio_Medium_Ranged = new PrefabGUID(2119863116); public static readonly PrefabGUID UC_Blackfang_General_Trio_Patrol_PeonCarryingBarrel = new PrefabGUID(223269921); public static readonly PrefabGUID UC_Blackfang_General_Trio_Peon = new PrefabGUID(-1507878040); public static readonly PrefabGUID UC_Blackfang_General_Trio_Trash = new PrefabGUID(-924344322); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_Mid = new PrefabGUID(2010038342); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_North = new PrefabGUID(260758549); public static readonly PrefabGUID UC_Blackfang_GlobalPatrol_South = new PrefabGUID(1010053042); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted = new PrefabGUID(-1204547934); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_Alchemy = new PrefabGUID(-671228343); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_Bastion = new PrefabGUID(-1240499113); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Assault_CarverCamp = new PrefabGUID(2124515598); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Frenzy = new PrefabGUID(-286605848); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Patrol_Single_Wolf = new PrefabGUID(1878487361); public static readonly PrefabGUID UC_Blackfang_Wildlife_Corrupted_Patrol_WolfPack = new PrefabGUID(264712104); public static readonly PrefabGUID UC_Blackfang_Wildlife_Wolfpack = new PrefabGUID(-1410997748); public static readonly PrefabGUID UC_Cemetery_Farbane_Small = new PrefabGUID(1169029232); public static readonly PrefabGUID UC_Cemetery_Forgotten_Duo = new PrefabGUID(-224848181); public static readonly PrefabGUID UC_Cemetery_Forgotten_Horde = new PrefabGUID(105933508); public static readonly PrefabGUID UC_Cemetery_Forgotten_Quad_Trash = new PrefabGUID(-121370716); public static readonly PrefabGUID UC_Cemetery_Forgotten_Skulls = new PrefabGUID(169525792); public static readonly PrefabGUID UC_Cemetery_Forgotten_Trio = new PrefabGUID(624593046); public static readonly PrefabGUID UC_Cemetery_Vampire_Rat_Single = new PrefabGUID(-1570259723); public static readonly PrefabGUID UC_Cemetery_Vampire_RottenGhoul_Single = new PrefabGUID(473094372); public static readonly PrefabGUID UC_Cemetery_Vampire_SkeletonCrossbow_Single = new PrefabGUID(398051345); public static readonly PrefabGUID UC_Cemetery_Vampire_SkeletonWarrior_Single = new PrefabGUID(-1983163876); public static readonly PrefabGUID UC_Cemetery_Vampire_Undeads_Duo = new PrefabGUID(-2078087390); public static readonly PrefabGUID UC_Cemetery_Vampire_Undeads_Single = new PrefabGUID(-1237357079); public static readonly PrefabGUID UC_Cemetery_Vampire_WickedRat = new PrefabGUID(-304096290); public static readonly PrefabGUID UC_Chuch_Noctem_Attack = new PrefabGUID(1515686658); public static readonly PrefabGUID UC_Church_Village_Church = new PrefabGUID(2063048026); public static readonly PrefabGUID UC_Church_Village_Nun_Vblood = new PrefabGUID(-1373222097); public static readonly PrefabGUID UC_Church_Village_Single = new PrefabGUID(797974721); public static readonly PrefabGUID UC_Church_Village_Small = new PrefabGUID(-1757689228); public static readonly PrefabGUID UC_Civilians_Farmers_Day = new PrefabGUID(-1321785047); public static readonly PrefabGUID UC_Civilians_Farmers_Night = new PrefabGUID(1170858109); public static readonly PrefabGUID UC_Civilians_Villagers_Day = new PrefabGUID(-944606522); public static readonly PrefabGUID UC_Civilians_Villagers_Night = new PrefabGUID(-1115039318); public static readonly PrefabGUID UC_Cursed_Forest_GlobalPatrol = new PrefabGUID(670003267); public static readonly PrefabGUID UC_Cursed_Forest_Patrol_Solo = new PrefabGUID(-591014292); public static readonly PrefabGUID UC_Cursed_Swamp_Patrol_Solo = new PrefabGUID(953344614); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Normal_Single = new PrefabGUID(-1678277026); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Normal_Trio = new PrefabGUID(1738529251); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Trash_Duo = new PrefabGUID(-371267802); public static readonly PrefabGUID UC_CursedForest_AncientVillage_Trash_Single = new PrefabGUID(-1839936141); public static readonly PrefabGUID UC_CursedForest_Cultists_Medium = new PrefabGUID(2038582842); public static readonly PrefabGUID UC_CursedForest_Mosquito_Trio = new PrefabGUID(1881899517); public static readonly PrefabGUID UC_CursedForest_NightLurkers_Medium = new PrefabGUID(-2057581460); public static readonly PrefabGUID UC_CursedUndead_Duo = new PrefabGUID(-1089121103); public static readonly PrefabGUID UC_CursedUndead_Medium = new PrefabGUID(1057022288); public static readonly PrefabGUID UC_CursedUndead_Small = new PrefabGUID(534881196); public static readonly PrefabGUID UC_Dunley_Villager_Day = new PrefabGUID(1244247291); public static readonly PrefabGUID UC_Dunley_Villager_General = new PrefabGUID(423040870); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Prayer = new PrefabGUID(-518804536); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Roaming = new PrefabGUID(-1244759033); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Sit = new PrefabGUID(-1808961025); public static readonly PrefabGUID UC_Dunley_Villager_MicroPOI_Sleep = new PrefabGUID(-497365241); public static readonly PrefabGUID UC_Dunley_Villager_Night = new PrefabGUID(1064575121); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Duo_Normal = new PrefabGUID(-1106091712); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Single_Normal = new PrefabGUID(2010291410); public static readonly PrefabGUID UC_Farbane_InCorner04_Graveyard_Trio_Trash = new PrefabGUID(1711288084); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Duo_Normal = new PrefabGUID(-1789240674); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Single_Normal = new PrefabGUID(1364412189); public static readonly PrefabGUID UC_Farbane_InCorner05_Graveyard_Trio_Trash = new PrefabGUID(813432234); public static readonly PrefabGUID UC_Farbane_RuneStones = new PrefabGUID(-1402392049); public static readonly PrefabGUID UC_Farmlands_Hostile_Farmers_Indoor = new PrefabGUID(-1444744826); public static readonly PrefabGUID UC_Farmlands_Hostile_Farmers_Outdoor = new PrefabGUID(706176529); public static readonly PrefabGUID UC_Farmlands_IronMine_Medium = new PrefabGUID(2072210115); public static readonly PrefabGUID UC_Farmlands_IronMine_Trash = new PrefabGUID(-1051486482); public static readonly PrefabGUID UC_Farmlands_Scarecrow_Night = new PrefabGUID(687903969); public static readonly PrefabGUID UC_Global_Bandits_CarriageTestPatrol = new PrefabGUID(507864428); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Animal = new PrefabGUID(-1437443077); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Copper = new PrefabGUID(-961086385); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Plank = new PrefabGUID(-430056671); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Prisoner = new PrefabGUID(-444627378); public static readonly PrefabGUID UC_Global_Carriage_Bandits_Sulfur = new PrefabGUID(1746583431); public static readonly PrefabGUID UC_Global_Carriage_Blackfang_Bastion = new PrefabGUID(26594244); public static readonly PrefabGUID UC_Global_Carriage_Blackfang_South = new PrefabGUID(-1153896345); public static readonly PrefabGUID UC_Global_Carriage_Chuch_Grape = new PrefabGUID(255893299); public static readonly PrefabGUID UC_Global_Carriage_Chuch_PrisonLegion = new PrefabGUID(-1731097304); public static readonly PrefabGUID UC_Global_Carriage_Chuch_PrisonMutant = new PrefabGUID(1836684534); public static readonly PrefabGUID UC_Global_Carriage_Chuch_Silver = new PrefabGUID(1798271698); public static readonly PrefabGUID UC_Global_Carriage_Militia_Cotton = new PrefabGUID(1933417229); public static readonly PrefabGUID UC_Global_Carriage_Militia_Glass = new PrefabGUID(-1434673194); public static readonly PrefabGUID UC_Global_Carriage_Militia_Iron = new PrefabGUID(-592872765); public static readonly PrefabGUID UC_GlobalPatrol_Dunley_Undead = new PrefabGUID(1068590318); public static readonly PrefabGUID UC_GlobalPatrol_Dunley_Werewolf = new PrefabGUID(-439853413); public static readonly PrefabGUID UC_GlobalPatrol_Legion = new PrefabGUID(884701423); public static readonly PrefabGUID UC_GlobalPatrol_Militia = new PrefabGUID(-1744210400); public static readonly PrefabGUID UC_Gloomrot_Villager_Day = new PrefabGUID(1689710244); public static readonly PrefabGUID UC_Gloomrot_Villager_Night = new PrefabGUID(-592397662); public static readonly PrefabGUID UC_GolemCave_Elementals = new PrefabGUID(-915200094); public static readonly PrefabGUID UC_IronVeins_Golems = new PrefabGUID(-1081114104); public static readonly PrefabGUID UC_Legion_3Special4Trash = new PrefabGUID(1939572648); public static readonly PrefabGUID UC_Legion_4Trash = new PrefabGUID(496621891); public static readonly PrefabGUID UC_Legion_BatSwarm = new PrefabGUID(-760248742); public static readonly PrefabGUID UC_Legion_BloodProphet_Duo = new PrefabGUID(-928543060); public static readonly PrefabGUID UC_Legion_BloodProphet_Trash = new PrefabGUID(1436737486); public static readonly PrefabGUID UC_Legion_Cultist_BloodCrystal = new PrefabGUID(-886526987); public static readonly PrefabGUID UC_Legion_Cultist_Channeling = new PrefabGUID(389905885); public static readonly PrefabGUID UC_Legion_Cultist_Patrolling = new PrefabGUID(-542818642); public static readonly PrefabGUID UC_Legion_Cultist_Praying_ArmsOut = new PrefabGUID(1629399595); public static readonly PrefabGUID UC_Legion_Cultist_Praying_Ground = new PrefabGUID(-1633791438); public static readonly PrefabGUID UC_Legion_Cultist_Whittling = new PrefabGUID(1938887558); public static readonly PrefabGUID UC_Legion_DraculasRuins_NightmadenPatrol = new PrefabGUID(-371090623); public static readonly PrefabGUID UC_Legion_Dreadhorn_Prophet = new PrefabGUID(-782933247); public static readonly PrefabGUID UC_Legion_Dreadhorn_Vargulf = new PrefabGUID(-785684215); public static readonly PrefabGUID UC_Legion_Garden_Normal_Large = new PrefabGUID(748500236); public static readonly PrefabGUID UC_Legion_Garden_Normal_Small = new PrefabGUID(1409450579); public static readonly PrefabGUID UC_Legion_Garden_Trash_Small = new PrefabGUID(488592532); public static readonly PrefabGUID UC_Legion_Gargoyle_4Swarm = new PrefabGUID(-1059074786); public static readonly PrefabGUID UC_Legion_Gargoyle_Duo = new PrefabGUID(1794127582); public static readonly PrefabGUID UC_Legion_Gargoyle_Single = new PrefabGUID(-1939324066); public static readonly PrefabGUID UC_Legion_GlobalPatrol_Lower = new PrefabGUID(713542861); public static readonly PrefabGUID UC_Legion_GlobalPatrol_Upper = new PrefabGUID(-1790709331); public static readonly PrefabGUID UC_Legion_Guard_Duo = new PrefabGUID(1469671253); public static readonly PrefabGUID UC_Legion_HighLord = new PrefabGUID(655419970); public static readonly PrefabGUID UC_Legion_IceRanger = new PrefabGUID(-811471693); public static readonly PrefabGUID UC_Legion_Lesser_3Special4Trash = new PrefabGUID(905187036); public static readonly PrefabGUID UC_Legion_Lesser_BatSwarm = new PrefabGUID(160367434); public static readonly PrefabGUID UC_Legion_Lesser_BloodProphet_Duo = new PrefabGUID(1976488706); public static readonly PrefabGUID UC_Legion_Lesser_BloodProphet_Trash = new PrefabGUID(-1490084873); public static readonly PrefabGUID UC_Legion_Lesser_Dreadhorn_Prophet = new PrefabGUID(698518969); public static readonly PrefabGUID UC_Legion_Lesser_Dreadhorn_Vargulf = new PrefabGUID(-1610762504); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_4Swarm = new PrefabGUID(-1439025014); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_Duo = new PrefabGUID(-2101970651); public static readonly PrefabGUID UC_Legion_Lesser_Gargoyle_Single = new PrefabGUID(-1127213329); public static readonly PrefabGUID UC_Legion_Lesser_NightMaiden_Trash = new PrefabGUID(-613249303); public static readonly PrefabGUID UC_Legion_Lesser_Nightmaiden_Trio = new PrefabGUID(673553700); public static readonly PrefabGUID UC_Legion_Lesser_Nightmare_Trash = new PrefabGUID(912533703); public static readonly PrefabGUID UC_Legion_Lesser_Specials = new PrefabGUID(213811489); public static readonly PrefabGUID UC_Legion_Lesser_Vargulf_Duo = new PrefabGUID(594818618); public static readonly PrefabGUID UC_Legion_Lesser_Vargulf_Shadowkin = new PrefabGUID(1532100931); public static readonly PrefabGUID UC_Legion_Lower_LocalPatrol = new PrefabGUID(1068949857); public static readonly PrefabGUID UC_Legion_NightMaiden_Trash = new PrefabGUID(864950932); public static readonly PrefabGUID UC_Legion_Nightmaiden_Trio = new PrefabGUID(-1253584399); public static readonly PrefabGUID UC_Legion_Nightmare_Trash = new PrefabGUID(-1033227906); public static readonly PrefabGUID UC_Legion_Ruins_Normal_Large = new PrefabGUID(1527837894); public static readonly PrefabGUID UC_Legion_Ruins_Normal_Small = new PrefabGUID(1425546165); public static readonly PrefabGUID UC_Legion_Ruins_Trash_Small = new PrefabGUID(-1307538304); public static readonly PrefabGUID UC_Legion_Specials = new PrefabGUID(-1751946367); public static readonly PrefabGUID UC_Legion_Upper_LocalPatrol = new PrefabGUID(-608878738); public static readonly PrefabGUID UC_Legion_Vargulf_Duo = new PrefabGUID(-226434356); public static readonly PrefabGUID UC_Legion_Vargulf_Shadowkin = new PrefabGUID(-750501007); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Due_Normal = new PrefabGUID(-1487862830); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Due_Trash = new PrefabGUID(1904788803); public static readonly PrefabGUID UC_LowerGloomrot_Factory_Trio_Technician = new PrefabGUID(1097303240); public static readonly PrefabGUID UC_LowerGloomrot_Factory_TrioQuad_Normal = new PrefabGUID(59669775); public static readonly PrefabGUID UC_LowerGloomrot_RoadPatrol_Medium = new PrefabGUID(-1786662858); public static readonly PrefabGUID UC_LowerGloomrot_Town_Duo_Trash = new PrefabGUID(-1211398494); public static readonly PrefabGUID UC_LowerGloomrot_Town_Medium = new PrefabGUID(-518135371); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Medium = new PrefabGUID(1260898557); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Small = new PrefabGUID(-115846681); public static readonly PrefabGUID UC_LowerGloomrot_ToxicPools_Trash_Duo = new PrefabGUID(-1687944895); public static readonly PrefabGUID UC_MicroPOI_Bandit_Sit = new PrefabGUID(2056297947); public static readonly PrefabGUID UC_MicroPOI_Bandit_Sleep = new PrefabGUID(1012707305); public static readonly PrefabGUID UC_MicroPOI_Bandit_Tinker = new PrefabGUID(-2047534895); public static readonly PrefabGUID UC_MicroPOI_Bear_Eating = new PrefabGUID(1972555860); public static readonly PrefabGUID UC_MicroPOI_GiantCrow_FromAbove = new PrefabGUID(-626083809); public static readonly PrefabGUID UC_MicroPOI_WinterBear_Eating = new PrefabGUID(-1336223438); public static readonly PrefabGUID UC_MicroPOI_Wolf_Eating = new PrefabGUID(1614769441); public static readonly PrefabGUID UC_Militia_Church_Holy_Medium = new PrefabGUID(-297352795); public static readonly PrefabGUID UC_Militia_Church_Holy_Small = new PrefabGUID(160689770); public static readonly PrefabGUID UC_Militia_Church_Medium = new PrefabGUID(-1193571488); public static readonly PrefabGUID UC_Militia_Church_Small = new PrefabGUID(-344881744); public static readonly PrefabGUID UC_Militia_DraculasRuins = new PrefabGUID(-884613312); public static readonly PrefabGUID UC_Militia_DraculasRuins_Trash = new PrefabGUID(-953148017); public static readonly PrefabGUID UC_Militia_Farbane_Patrol_Hard = new PrefabGUID(389309352); public static readonly PrefabGUID UC_Militia_Farbane_Patrol_RandmDifficulty = new PrefabGUID(-229725838); public static readonly PrefabGUID UC_Militia_Farmlands_Indoors = new PrefabGUID(1447338279); public static readonly PrefabGUID UC_Militia_Farmlands_Medium = new PrefabGUID(1666344530); public static readonly PrefabGUID UC_Militia_Fort_Gate = new PrefabGUID(-1328861477); public static readonly PrefabGUID UC_Militia_Fort_Normal = new PrefabGUID(-1380611024); public static readonly PrefabGUID UC_Militia_Fort_Trash = new PrefabGUID(-95026270); public static readonly PrefabGUID UC_Militia_FrostGuard_Patrol_VBlood = new PrefabGUID(1594774445); public static readonly PrefabGUID UC_Militia_IronMine_AttackParty = new PrefabGUID(-1333909851); public static readonly PrefabGUID UC_Militia_IronMine_Medium = new PrefabGUID(1916464339); public static readonly PrefabGUID UC_Militia_IronMine_MilitiaVBlood = new PrefabGUID(-1594381773); public static readonly PrefabGUID UC_Militia_IronMine_Small = new PrefabGUID(586753201); public static readonly PrefabGUID UC_Militia_LumberCamp_Medium = new PrefabGUID(1965741224); public static readonly PrefabGUID UC_Militia_LumberCamp_Patrol = new PrefabGUID(1550814379); public static readonly PrefabGUID UC_Militia_LumberCamp_Woodcutters = new PrefabGUID(-630324966); public static readonly PrefabGUID UC_Militia_Marketplace_Normal = new PrefabGUID(734546471); public static readonly PrefabGUID UC_Militia_MicroPOI_Sit = new PrefabGUID(-362891571); public static readonly PrefabGUID UC_Militia_MicroPOI_Sleep = new PrefabGUID(-586376315); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Medium_TrashOnly = new PrefabGUID(272461174); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Patrol = new PrefabGUID(-2082699617); public static readonly PrefabGUID UC_Militia_MilitiaCamp_Small = new PrefabGUID(374718334); public static readonly PrefabGUID UC_Militia_Noctem_Attack = new PrefabGUID(1461576373); public static readonly PrefabGUID UC_Militia_Noctem_GlobalPatrol = new PrefabGUID(-1649342958); public static readonly PrefabGUID UC_Militia_QuartzQuarry_Normal = new PrefabGUID(2115345913); public static readonly PrefabGUID UC_Militia_QuartzQuarry_Trash = new PrefabGUID(-2133969842); public static readonly PrefabGUID UC_Militia_SisterPatrol = new PrefabGUID(57475820); public static readonly PrefabGUID UC_Militia_Village_Big_Rank02 = new PrefabGUID(128036862); public static readonly PrefabGUID UC_Militia_Village_Indoors = new PrefabGUID(-22534710); public static readonly PrefabGUID UC_Militia_Village_Patrol = new PrefabGUID(-1271484347); public static readonly PrefabGUID UC_Militia_Village_Small_Rank01 = new PrefabGUID(586122826); public static readonly PrefabGUID UC_Militia_Village_Small_Rank02 = new PrefabGUID(1186905442); public static readonly PrefabGUID UC_Mutants_Mix_RareSpawn_FromSide = new PrefabGUID(-151305648); public static readonly PrefabGUID UC_Mutants_Quad_NormalTrash_FromSide = new PrefabGUID(1081019739); public static readonly PrefabGUID UC_Mutants_Single_Rare_FromSide = new PrefabGUID(691873631); public static readonly PrefabGUID UC_Mutants_Trio_Normal_FromSide = new PrefabGUID(165620166); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Duo_Normal = new PrefabGUID(-315925743); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Duo_Trash = new PrefabGUID(-1146829234); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Bandits_Solo_Normal = new PrefabGUID(2090854880); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Duo_Trash = new PrefabGUID(-984793803); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Followers_Church = new PrefabGUID(-266128533); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Quad_Normal = new PrefabGUID(-2097795966); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Church = new PrefabGUID(985037506); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Normal = new PrefabGUID(-2119933034); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Solo_Paladin = new PrefabGUID(1339850625); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Church = new PrefabGUID(-1620522627); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Normal = new PrefabGUID(-1690508570); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Guards_Trio_Trash = new PrefabGUID(-1806473345); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Duo_Normal = new PrefabGUID(106715076); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Duo_Trash = new PrefabGUID(-1009213987); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Militia_Solo_Normal = new PrefabGUID(-1180810891); public static readonly PrefabGUID UC_Silverlight_BrightHaven_Villagers_2to3 = new PrefabGUID(741189306); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Duo_Trash = new PrefabGUID(-1575153250); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Quad_Normal = new PrefabGUID(449100388); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Solo_Normal = new PrefabGUID(-946781253); public static readonly PrefabGUID UC_Silverlight_Fortification_Guard_Trio_Normal = new PrefabGUID(1142554585); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Duo_Normal = new PrefabGUID(617069211); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Duo_Trash = new PrefabGUID(-1181554274); public static readonly PrefabGUID UC_Silverlight_Fortification_Militia_Solo_Normal = new PrefabGUID(-286132619); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Super = new PrefabGUID(-1524344047); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trash = new PrefabGUID(-1312724250); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trio_BrightHaven = new PrefabGUID(-649984199); public static readonly PrefabGUID UC_Silverlight_GlobalPatrol_Guards_Trio_Normal = new PrefabGUID(423565074); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Normal = new PrefabGUID(534640823); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Normal_FromAbove = new PrefabGUID(2023603466); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Duo_Trash = new PrefabGUID(-692649458); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal = new PrefabGUID(1787706987); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal_FromAbove = new PrefabGUID(-531569131); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Solo_Normal_FromSide = new PrefabGUID(569479331); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Trio_Normal_FromAbove = new PrefabGUID(-1937418864); public static readonly PrefabGUID UC_Silverlight_HarpyNest_Trio_Trash = new PrefabGUID(1713489339); public static readonly PrefabGUID UC_Silverlight_Noctem_GlobalPatrol = new PrefabGUID(2136416659); public static readonly PrefabGUID UC_Silverlight_OakveilAttack_Quad_Normal = new PrefabGUID(-119188726); public static readonly PrefabGUID UC_Silverlight_SilverMine_Guards_Duo_Trash = new PrefabGUID(-995191671); public static readonly PrefabGUID UC_Silverlight_SilverMine_Guards_Trio_Trash = new PrefabGUID(-40325839); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Duo_Normal = new PrefabGUID(-333884822); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Duo_Trash = new PrefabGUID(-1182222227); public static readonly PrefabGUID UC_Silverlight_SilverMine_Militia_Solo_Normal = new PrefabGUID(1198392115); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlaveComp_Normal = new PrefabGUID(-1204645915); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlaveMaster_Solo = new PrefabGUID(-736495815); public static readonly PrefabGUID UC_Silverlight_SilverMine_SlavePatrol_Normal = new PrefabGUID(-1093412070); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Prayer = new PrefabGUID(308770937); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Roaming = new PrefabGUID(-48880565); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Sit = new PrefabGUID(1536550713); public static readonly PrefabGUID UC_Silverlight_Villager_MicroPOI_Sleep = new PrefabGUID(1443903670); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Duo_Trash = new PrefabGUID(100532191); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Quad_Normal = new PrefabGUID(-909770865); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Solo_Normal = new PrefabGUID(1395438837); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Trio_Normal = new PrefabGUID(1293302348); public static readonly PrefabGUID UC_Silverlight_WineYard_Guards_Trio_Trash = new PrefabGUID(-1608814553); public static readonly PrefabGUID UC_Silverlight_WineYard_Villagers_2to3 = new PrefabGUID(1011893399); public static readonly PrefabGUID UC_Spiders_AttackPatrol = new PrefabGUID(-1422655284); public static readonly PrefabGUID UC_Spiders_Duo = new PrefabGUID(1107553844); public static readonly PrefabGUID UC_Spiders_Quad = new PrefabGUID(-2008038934); public static readonly PrefabGUID UC_Spiders_Solo_Broodmother = new PrefabGUID(648500792); public static readonly PrefabGUID UC_Spiders_Solo_Normal = new PrefabGUID(1420687813); public static readonly PrefabGUID UC_Spiders_Spiderlings = new PrefabGUID(1772842569); public static readonly PrefabGUID UC_Spiders_Trio = new PrefabGUID(-940457293); public static readonly PrefabGUID UC_Undead_BishopOfDeath_VBlood = new PrefabGUID(101916245); public static readonly PrefabGUID UC_Undead_ChurchOfTheDamned_Duo = new PrefabGUID(1667345206); public static readonly PrefabGUID UC_Undead_ChurchOfTheDamned_Quad = new PrefabGUID(1468816856); public static readonly PrefabGUID UC_Undead_Farbane_Patrol = new PrefabGUID(1396151940); public static readonly PrefabGUID UC_Undead_Farbane_Patrol_Easy = new PrefabGUID(-295869149); public static readonly PrefabGUID UC_UpperGloomrot_General_Duo_Medium = new PrefabGUID(1087496402); public static readonly PrefabGUID UC_UpperGloomrot_General_Duo_Trash = new PrefabGUID(1956735952); public static readonly PrefabGUID UC_UpperGloomrot_General_Solo_Tank = new PrefabGUID(1495318020); public static readonly PrefabGUID UC_UpperGloomrot_GlobalPatrol_Group = new PrefabGUID(-1260008979); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Duo_Medium = new PrefabGUID(-202065495); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Duo_Trash = new PrefabGUID(128906022); public static readonly PrefabGUID UC_UpperGloomrot_Labratory_Trio_Medium = new PrefabGUID(717824743); public static readonly PrefabGUID UC_UpperGloomrot_LabratoryOutside_Solo_Tank = new PrefabGUID(1048538286); public static readonly PrefabGUID UC_UpperGloomrot_LabratoryOutside_Trio_Tank = new PrefabGUID(-1081037995); public static readonly PrefabGUID UC_UpperGloomrot_LocalExterminatorPatrol = new PrefabGUID(691787355); public static readonly PrefabGUID UC_UpperGloomrot_Powerplant_Duo_Medium = new PrefabGUID(745500450); public static readonly PrefabGUID UC_UpperGloomrot_Powerplant_Duo_Trash = new PrefabGUID(-313478732); public static readonly PrefabGUID UC_UpperGloomrot_PowerplantOutside_Solo_Tank = new PrefabGUID(-800891487); public static readonly PrefabGUID UC_UpperGloomrot_PowerplantOutside_Trio_Tank = new PrefabGUID(-2102565740); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Major = new PrefabGUID(748184886); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Minor = new PrefabGUID(-1986233044); public static readonly PrefabGUID UC_WarEvent_Legion_Bosses_Primal = new PrefabGUID(-1264407246); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Major = new PrefabGUID(309638234); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Minor = new PrefabGUID(-789054312); public static readonly PrefabGUID UC_WarEvent_Legion_Smallwaves_Primal = new PrefabGUID(1642336478); public static readonly PrefabGUID UC_WarEvent_Legion_Tempowaves = new PrefabGUID(1383252554); public static readonly PrefabGUID UC_WarEvent_Legion_Trash = new PrefabGUID(-261971401); public static readonly PrefabGUID UC_Waygate_WitheredVampire = new PrefabGUID(-291521478); public static readonly PrefabGUID UC_Waygate_WitheredVampireSmall = new PrefabGUID(-1407896188); public static readonly PrefabGUID UC_Wilderness_BuilderChunk_General_Patrol = new PrefabGUID(371798427); public static readonly PrefabGUID UC_Wilderness_CorruptedCrow_FromAbove = new PrefabGUID(-2073865112); public static readonly PrefabGUID UC_Wilderness_CorruptedCrow_Trio_FromAbove = new PrefabGUID(165269252); public static readonly PrefabGUID UC_Wilderness_GiantCrow_FromAbove = new PrefabGUID(796676707); public static readonly PrefabGUID UC_Wilderness_Manticore_FromSide = new PrefabGUID(2111159493); public static readonly PrefabGUID UC_Wilderness_Mantraps = new PrefabGUID(1461267729); public static readonly PrefabGUID UC_Wilderness_NoctemCrow_FromAbove = new PrefabGUID(725846794); public static readonly PrefabGUID UC_Wilderness_RandomFarbane = new PrefabGUID(1760202007); public static readonly PrefabGUID UC_Wilderness_UndeadCrow_FromAbove = new PrefabGUID(1738338363); public static readonly PrefabGUID UC_Wilderness_Wolves_Medium = new PrefabGUID(1828027626); public static readonly PrefabGUID UC_Wilderness_Wolves_Small = new PrefabGUID(-1441886056); public static readonly PrefabGUID UC_WitheredVampire_1to2 = new PrefabGUID(-875289650); public static readonly PrefabGUID UC_WitheredVampire_3 = new PrefabGUID(-1844084184); public static readonly PrefabGUID UC_WitheredVampire_4to5 = new PrefabGUID(1685869681); public static readonly PrefabGUID UISequenceMapping = new PrefabGUID(-1080364537); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Far_Rear = new PrefabGUID(-1133885917); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Far_RearClear = new PrefabGUID(-271805518); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Left = new PrefabGUID(-1116643482); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_LeftClear = new PrefabGUID(1415229498); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Rear = new PrefabGUID(-529019452); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_RearClear = new PrefabGUID(366589782); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_Right = new PrefabGUID(837772421); public static readonly PrefabGUID Undead_ArenaChampion_AntennaBuff_RightClear = new PrefabGUID(1657289916); public static readonly PrefabGUID Undead_ArenaChampion_AwakeBuff = new PrefabGUID(-74018337); public static readonly PrefabGUID Undead_ArenaChampion_CenterPoint = new PrefabGUID(-288427482); public static readonly PrefabGUID Undead_ArenaChampion_CorpseBuff = new PrefabGUID(-485230865); public static readonly PrefabGUID Undead_BishopOfDeath_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-60073400); public static readonly PrefabGUID Undead_BishopOfShadows_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-2078867449); public static readonly PrefabGUID Undead_CursedSmith_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1484351866); public static readonly PrefabGUID Undead_Priest_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1613946623); public static readonly PrefabGUID Unholy_Parry_MoveSpeedCurve = new PrefabGUID(-936177266); public static readonly PrefabGUID Unholy_Shared_Minion_DeathKnight_Buff = new PrefabGUID(1352304839); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_LifetimeBuff = new PrefabGUID(-1142502435); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_ShieldBuff = new PrefabGUID(1033104052); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_SpawnBuff = new PrefabGUID(-1243983303); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_SpawnBuff_ExtendedLifeTime = new PrefabGUID(-1475112620); public static readonly PrefabGUID Unholy_Shared_Minion_Skeleton_VeilOfBones_ExplodeSpawner = new PrefabGUID(-1049101267); public static readonly PrefabGUID Unholy_Vampire_Buff_Agony = new PrefabGUID(1025643444); public static readonly PrefabGUID Unholy_Vampire_Buff_Amplify = new PrefabGUID(1936344180); public static readonly PrefabGUID Unholy_Vampire_Buff_Bane = new PrefabGUID(1688799287); public static readonly PrefabGUID Unholy_Vampire_Buff_Condemn = new PrefabGUID(-325758519); public static readonly PrefabGUID UnholyDashXCurve = new PrefabGUID(-1923578463); public static readonly PrefabGUID UnholyDashXCurve2 = new PrefabGUID(916592701); public static readonly PrefabGUID UnholySpellSchoolAsset = new PrefabGUID(232985690); public static readonly PrefabGUID Unit_StatsSettings_Health_Default = new PrefabGUID(-1724763162); public static readonly PrefabGUID Unit_StatsSettings_Physical_Default = new PrefabGUID(2131874575); public static readonly PrefabGUID Unit_StatsSettings_Resource_Default = new PrefabGUID(1060413001); public static readonly PrefabGUID Unit_StatsSettings_Siege_Default = new PrefabGUID(1476468719); public static readonly PrefabGUID Unit_StatsSettings_Spell_Default = new PrefabGUID(1644963370); public static readonly PrefabGUID UnitSlowDebuffCurve = new PrefabGUID(243528966); public static readonly PrefabGUID UnitTeam = new PrefabGUID(-1434736744); public static readonly PrefabGUID USB_Undead_Skeleton_EarthCrawl = new PrefabGUID(-1500949089); public static readonly PrefabGUID User = new PrefabGUID(1420623103); public static readonly PrefabGUID UserCommandData = new PrefabGUID(1123697976); public static readonly PrefabGUID UserMapZoneState = new PrefabGUID(1781887812); public static readonly PrefabGUID Vampire_FeedAndBiteTravel_Curve = new PrefabGUID(-2143375178); public static readonly PrefabGUID Vampire_FeedOnTarget_Curve = new PrefabGUID(1181622316); public static readonly PrefabGUID Vampire_ShadowDash = new PrefabGUID(-1554194071); public static readonly PrefabGUID Vampire_Sword_Shockwave_InAirTravelStrike = new PrefabGUID(1608120768); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01 = new PrefabGUID(858385739); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Damaged = new PrefabGUID(-630032924); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Disabled = new PrefabGUID(-1504743076); public static readonly PrefabGUID VampireCastlePalisade01Door01Frame01_Phased = new PrefabGUID(-708719462); public static readonly PrefabGUID VampireCastlePalisade01Pillar01 = new PrefabGUID(-1663784884); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Damaged = new PrefabGUID(-966519832); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Disabled = new PrefabGUID(-847349700); public static readonly PrefabGUID VampireCastlePalisade01Pillar01_Phased = new PrefabGUID(-925475920); public static readonly PrefabGUID VampireCastlePalisade01Wall01 = new PrefabGUID(-1548170185); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Damaged = new PrefabGUID(-1873366280); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Disabled = new PrefabGUID(1772802474); public static readonly PrefabGUID VampireCastlePalisade01Wall01_Phased = new PrefabGUID(-163928352); public static readonly PrefabGUID VampireCoffin_ScreenEffect_Curve = new PrefabGUID(1720163670); public static readonly PrefabGUID VampireCoffinRespawnCurve = new PrefabGUID(1587252042); public static readonly PrefabGUID VampireCoffinRespawnHeightCurve = new PrefabGUID(-1746195253); public static readonly PrefabGUID VampireCombatPreset_ArenaChampion = new PrefabGUID(714470338); public static readonly PrefabGUID VampireCombatPreset_Dantos = new PrefabGUID(372965508); public static readonly PrefabGUID VampireCombatPreset_Erwin = new PrefabGUID(-1204310398); public static readonly PrefabGUID VampireCombatPreset_Megara_Brutal = new PrefabGUID(-2036758413); public static readonly PrefabGUID VampireCombatPreset_Megara_Normal = new PrefabGUID(2066683398); public static readonly PrefabGUID VampireCombatPreset_ProgTest = new PrefabGUID(-1320537872); public static readonly PrefabGUID VampireCombatPreset_Quincy = new PrefabGUID(238761445); public static readonly PrefabGUID VampireCombatPreset_T05_5_ArenaChampion = new PrefabGUID(690575617); public static readonly PrefabGUID VampireCombatPreset_T05_Fabian = new PrefabGUID(-2110483094); public static readonly PrefabGUID VampireCombatPreset_T06_Iron_Rogue = new PrefabGUID(-1925880109); public static readonly PrefabGUID VampireCombatPreset_T07_BlackfangBosses = new PrefabGUID(531846054); public static readonly PrefabGUID VampireCombatPreset_T07_Blackfangbosses_Brutal = new PrefabGUID(888281538); public static readonly PrefabGUID VampireCombatPreset_T07_Blackfangbosses_Normal = new PrefabGUID(-57104557); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyHighPower = new PrefabGUID(642543173); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyLowPower = new PrefabGUID(1551347159); public static readonly PrefabGUID VampireCombatPreset_T08_ShardBossReadyLowPower_ALREADY_EXISTS_2 = new PrefabGUID(1881465201); public static readonly PrefabGUID VampireCombatPreset_T08_Valyr = new PrefabGUID(-1985007569); public static readonly PrefabGUID VampireCombatPreset_T09_Dracua_JeremysSorrow = new PrefabGUID(1997194606); public static readonly PrefabGUID VampireCombatPreset_T09_Dracula = new PrefabGUID(813166544); public static readonly PrefabGUID VampireCombatPreset_T09_Dracula_Brute_Warrior = new PrefabGUID(1098118212); public static readonly PrefabGUID VampireCombatPresetCollection = new PrefabGUID(1093894748); public static readonly PrefabGUID VampireDeathBuff = new PrefabGUID(2064583457); public static readonly PrefabGUID VampireDoor01_Arena01 = new PrefabGUID(-1664673066); public static readonly PrefabGUID VampireDoor01_DefaultSet01 = new PrefabGUID(-182000134); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Damaged = new PrefabGUID(-135329240); public static readonly PrefabGUID VampireDoor01_DefaultSet01_dark = new PrefabGUID(948113200); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Disabled = new PrefabGUID(-1845561276); public static readonly PrefabGUID VampireDoor01_DefaultSet01_grey = new PrefabGUID(1480508823); public static readonly PrefabGUID VampireDoor01_DefaultSet01_light = new PrefabGUID(-2004402091); public static readonly PrefabGUID VampireDoor01_DefaultSet01_Phased = new PrefabGUID(1557418686); public static readonly PrefabGUID VampireDoor01_Gloomrot01 = new PrefabGUID(-1325694430); public static readonly PrefabGUID VampireDoor01_Prison01 = new PrefabGUID(-1399132287); public static readonly PrefabGUID VampireDoor01_ProjectK01 = new PrefabGUID(-624991747); public static readonly PrefabGUID VampireDoor01_ProjectMK01 = new PrefabGUID(1422393122); public static readonly PrefabGUID VampireDoor01_RedStone01 = new PrefabGUID(-1927153092); public static readonly PrefabGUID VampireDoor01_Royal01 = new PrefabGUID(-530490836); public static readonly PrefabGUID VampireDoor01_Royal02 = new PrefabGUID(-1683920408); public static readonly PrefabGUID VampireDoor01_Stable01 = new PrefabGUID(43317295); public static readonly PrefabGUID VampireDoor01_Stable02 = new PrefabGUID(-1840456597); public static readonly PrefabGUID VampireDoor01_StrongbladeDLC01 = new PrefabGUID(-239786081); public static readonly PrefabGUID VampireDoor01_WhiteStone01 = new PrefabGUID(-549027912); public static readonly PrefabGUID VampireDoor01_WhiteWood01 = new PrefabGUID(-1408271808); public static readonly PrefabGUID VampireDoor01_Wood01 = new PrefabGUID(1242387827); public static readonly PrefabGUID VampireFemale_AccessoryCollection = new PrefabGUID(-1735363948); public static readonly PrefabGUID VampireFemale_FaceCollection = new PrefabGUID(908841294); public static readonly PrefabGUID VampireFemale_FeatureCollection = new PrefabGUID(-27981505); public static readonly PrefabGUID VampireFemale_HairCollection = new PrefabGUID(1002422866); public static readonly PrefabGUID VampireFemale_Ragdoll100_Prefab = new PrefabGUID(273893200); public static readonly PrefabGUID VampireFemale_Ragdoll130_Prefab = new PrefabGUID(-1755022845); public static readonly PrefabGUID VampireHunter_Stake_Curve = new PrefabGUID(1143898865); public static readonly PrefabGUID VampireMale_AccessoryCollection = new PrefabGUID(-213827181); public static readonly PrefabGUID VampireMale_CryptKeeper_Ragdoll250_Prefab = new PrefabGUID(1722833435); public static readonly PrefabGUID VampireMale_FaceCollection = new PrefabGUID(1221615766); public static readonly PrefabGUID VampireMale_FeatureCollection = new PrefabGUID(-1329427468); public static readonly PrefabGUID VampireMale_HairCollection = new PrefabGUID(194447506); public static readonly PrefabGUID VampireMale_Ragdoll100_Prefab = new PrefabGUID(1704006817); public static readonly PrefabGUID VampireMale_Ragdoll125_Prefab = new PrefabGUID(1149271738); public static readonly PrefabGUID VampireMale_Ragdoll125_Prefab_ALREADY_EXISTS_2 = new PrefabGUID(1470413468); public static readonly PrefabGUID VampireMale_Ragdoll130_Prefab = new PrefabGUID(-1658877559); public static readonly PrefabGUID VampireMale_Ragdoll140_Prefab = new PrefabGUID(1255678030); public static readonly PrefabGUID VampireMale_Ragdoll150_Prefab = new PrefabGUID(-1102447151); public static readonly PrefabGUID VampirePillar01_ArenaSet01_Clean01 = new PrefabGUID(-973436518); public static readonly PrefabGUID VampirePillar01_CastleStoneSet01 = new PrefabGUID(2080775517); public static readonly PrefabGUID VampirePillar01_CastleStoneSet02 = new PrefabGUID(120012700); public static readonly PrefabGUID VampirePillar01_CastleStoneSet03 = new PrefabGUID(914813267); public static readonly PrefabGUID VampirePillar01_ClassicalSet01_Clean01 = new PrefabGUID(-1500538790); public static readonly PrefabGUID VampirePillar01_ClassicalSet02_Clean01 = new PrefabGUID(346794081); public static readonly PrefabGUID VampirePillar01_ClassicalSet03_Clean01 = new PrefabGUID(-1428395030); public static readonly PrefabGUID VampirePillar01_CordialSet01_Clean = new PrefabGUID(-14649797); public static readonly PrefabGUID VampirePillar01_DefaultSet01 = new PrefabGUID(-611790539); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Damaged = new PrefabGUID(949708339); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Disabled = new PrefabGUID(989004673); public static readonly PrefabGUID VampirePillar01_DefaultSet01_Phased = new PrefabGUID(-1900362364); public static readonly PrefabGUID VampirePillar01_DLCGloomrotSet01 = new PrefabGUID(-1042130541); public static readonly PrefabGUID VampirePillar01_DLCRoyal01 = new PrefabGUID(-2123536347); public static readonly PrefabGUID VampirePillar01_DLCRoyal02 = new PrefabGUID(-1297321647); public static readonly PrefabGUID VampirePillar01_ImperiousSet01_Clean = new PrefabGUID(1532022974); public static readonly PrefabGUID VampirePillar01_PrisonSet01_BedAndBall = new PrefabGUID(-231359674); public static readonly PrefabGUID VampirePillar01_PrisonSet01_Clean = new PrefabGUID(-1939143968); public static readonly PrefabGUID VampirePillar01_PrisonSet01_Restraints = new PrefabGUID(-1236942574); public static readonly PrefabGUID VampirePillar01_ProjectK01 = new PrefabGUID(-2134940579); public static readonly PrefabGUID VampirePillar01_ProjectMK01 = new PrefabGUID(260442587); public static readonly PrefabGUID VampirePillar01_StablePanelSet01_Pillar01 = new PrefabGUID(-1152326744); public static readonly PrefabGUID VampirePillar01_StablePanelSet02_Pillar01 = new PrefabGUID(426104015); public static readonly PrefabGUID VampirePillar01_StrongbladeDLC01_Pillar01 = new PrefabGUID(-472620931); public static readonly PrefabGUID VampirePillar01_VampireWall01_PrisonSet01_Clean = new PrefabGUID(-1903904042); public static readonly PrefabGUID VampirePillar01_WoodPanelSet01_Wood = new PrefabGUID(1491724163); public static readonly PrefabGUID VampirePillar01_WorkshopSet01_Clean = new PrefabGUID(-1218422370); public static readonly PrefabGUID VampirePillar01_WorkshopSet01_ToolStorage = new PrefabGUID(2125723396); public static readonly PrefabGUID VampireWall01_Arena01 = new PrefabGUID(655834680); public static readonly PrefabGUID VampireWall01_Arena02 = new PrefabGUID(1405350384); public static readonly PrefabGUID VampireWall01_Arena03 = new PrefabGUID(-2120946028); public static readonly PrefabGUID VampireWall01_CastleStoneSet01 = new PrefabGUID(1499316381); public static readonly PrefabGUID VampireWall01_CastleStoneSet02 = new PrefabGUID(-1085602042); public static readonly PrefabGUID VampireWall01_CastleStoneSet03 = new PrefabGUID(-1143867394); public static readonly PrefabGUID VampireWall01_ClassicalSet01_Clean01 = new PrefabGUID(2010347868); public static readonly PrefabGUID VampireWall01_ClassicalSet01_Clean02 = new PrefabGUID(1331283909); public static readonly PrefabGUID VampireWall01_ClassicalSet02_Clean01 = new PrefabGUID(-1664696103); public static readonly PrefabGUID VampireWall01_ClassicalSet02_Clean02 = new PrefabGUID(-763940057); public static readonly PrefabGUID VampireWall01_ClassicalSet03_Clean01 = new PrefabGUID(746766420); public static readonly PrefabGUID VampireWall01_ClassicalSet03_Clean02 = new PrefabGUID(285972056); public static readonly PrefabGUID VampireWall01_CordialSet01_Clean = new PrefabGUID(1319160812); public static readonly PrefabGUID VampireWall01_CordialSet01_Flourish = new PrefabGUID(-1508447031); public static readonly PrefabGUID VampireWall01_CordialSet01_Wallpaper = new PrefabGUID(537497917); public static readonly PrefabGUID VampireWall01_DefaultSet01 = new PrefabGUID(293797836); public static readonly PrefabGUID VampireWall01_DefaultSet01_Damaged = new PrefabGUID(345199974); public static readonly PrefabGUID VampireWall01_DefaultSet01_Disabled = new PrefabGUID(590871980); public static readonly PrefabGUID VampireWall01_DefaultSet01_Phased = new PrefabGUID(-1941657071); public static readonly PrefabGUID VampireWall01_DLCGloomRotSet01 = new PrefabGUID(1440351233); public static readonly PrefabGUID VampireWall01_DLCGloomRotSet02 = new PrefabGUID(1356131645); public static readonly PrefabGUID VampireWall01_DLCRoyal01 = new PrefabGUID(-456696376); public static readonly PrefabGUID VampireWall01_DLCRoyal02 = new PrefabGUID(-2045027619); public static readonly PrefabGUID VampireWall01_ImperiousSet01_Clean = new PrefabGUID(-663694947); public static readonly PrefabGUID VampireWall01_ImperiousSet01_FullWallpaper01 = new PrefabGUID(-1601646507); public static readonly PrefabGUID VampireWall01_ImperiousSet01_HalfWallpaper01 = new PrefabGUID(373311331); public static readonly PrefabGUID VampireWall01_PrisonSet01_BedAndBall = new PrefabGUID(-589318900); public static readonly PrefabGUID VampireWall01_PrisonSet01_Clean = new PrefabGUID(-1647994514); public static readonly PrefabGUID VampireWall01_PrisonSet01_Restraints = new PrefabGUID(-2093445556); public static readonly PrefabGUID VampireWall01_ProjectK_Clean = new PrefabGUID(-1480971767); public static readonly PrefabGUID VampireWall01_ProjectK_Corners = new PrefabGUID(1889337971); public static readonly PrefabGUID VampireWall01_ProjectK_Left = new PrefabGUID(-2047577592); public static readonly PrefabGUID VampireWall01_ProjectK_Middle = new PrefabGUID(1323056749); public static readonly PrefabGUID VampireWall01_ProjectK_Right = new PrefabGUID(64517879); public static readonly PrefabGUID VampireWall01_ProjectMK01 = new PrefabGUID(682544750); public static readonly PrefabGUID VampireWall01_StablePanelSet01_Wall01 = new PrefabGUID(995368482); public static readonly PrefabGUID VampireWall01_StablePanelSet01_Wall02 = new PrefabGUID(1625361760); public static readonly PrefabGUID VampireWall01_StablePanelSet02_Wall01 = new PrefabGUID(-1922465722); public static readonly PrefabGUID VampireWall01_StablePanelSet02_Wall02 = new PrefabGUID(-1707075637); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall01 = new PrefabGUID(2131821852); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall02 = new PrefabGUID(764548442); public static readonly PrefabGUID VampireWall01_StrongbladeDLC01_Wall03 = new PrefabGUID(-1144861346); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Halloween01 = new PrefabGUID(1033044541); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Halloween02 = new PrefabGUID(-1382341633); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Plaster = new PrefabGUID(603649283); public static readonly PrefabGUID VampireWall01_WoodPanelSet01_Wood = new PrefabGUID(-192595870); public static readonly PrefabGUID VampireWall01_WorkshopSet01_Clean = new PrefabGUID(-895869538); public static readonly PrefabGUID VampireWall01_WorkshopSet01_ToolStorage = new PrefabGUID(118705319); public static readonly PrefabGUID VampireWindow01_Arena01 = new PrefabGUID(-547118723); public static readonly PrefabGUID VampireWindow01_CastleStoneSet01 = new PrefabGUID(1831197016); public static readonly PrefabGUID VampireWindow01_CastleStoneSet02 = new PrefabGUID(-272781308); public static readonly PrefabGUID VampireWindow01_CastleStoneSet03 = new PrefabGUID(-960517992); public static readonly PrefabGUID VampireWindow01_ClassicalSet01_Clean01 = new PrefabGUID(472325953); public static readonly PrefabGUID VampireWindow01_ClassicalSet02_Clean01 = new PrefabGUID(1382482552); public static readonly PrefabGUID VampireWindow01_ClassicalSet03_Clean01 = new PrefabGUID(-1599029350); public static readonly PrefabGUID VampireWindow01_CordialSet01_Clean = new PrefabGUID(778925841); public static readonly PrefabGUID VampireWindow01_CordialSet01_Flourish = new PrefabGUID(-1164166222); public static readonly PrefabGUID VampireWindow01_CordialSet01_Wallpaper = new PrefabGUID(1295626721); public static readonly PrefabGUID VampireWindow01_DefaultSet01 = new PrefabGUID(-2065740574); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Damaged = new PrefabGUID(-500804411); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Disabled = new PrefabGUID(-1243659174); public static readonly PrefabGUID VampireWindow01_DefaultSet01_Phased = new PrefabGUID(-1411499442); public static readonly PrefabGUID VampireWindow01_DLCGloomrotSet01 = new PrefabGUID(1298228157); public static readonly PrefabGUID VampireWindow01_DLCGloomrotSet02 = new PrefabGUID(2084577439); public static readonly PrefabGUID VampireWindow01_DLCRoyal01 = new PrefabGUID(-1814897110); public static readonly PrefabGUID VampireWindow01_DLCRoyal02 = new PrefabGUID(541135977); public static readonly PrefabGUID VampireWindow01_ImperiousSet01_Clean = new PrefabGUID(-443620464); public static readonly PrefabGUID VampireWindow01_PrisonSet01_Clean = new PrefabGUID(-1808416110); public static readonly PrefabGUID VampireWindow01_ProjectK_Clean = new PrefabGUID(-1200553064); public static readonly PrefabGUID VampireWindow01_ProjectK_Corners = new PrefabGUID(-1480062004); public static readonly PrefabGUID VampireWindow01_ProjectK_Left = new PrefabGUID(-1213053681); public static readonly PrefabGUID VampireWindow01_ProjectK_Middle = new PrefabGUID(1265992483); public static readonly PrefabGUID VampireWindow01_ProjectK_Right = new PrefabGUID(-1476535572); public static readonly PrefabGUID VampireWindow01_ProjectMK01 = new PrefabGUID(-829389798); public static readonly PrefabGUID VampireWindow01_Stable01 = new PrefabGUID(343121976); public static readonly PrefabGUID VampireWindow01_Stable02 = new PrefabGUID(-762867208); public static readonly PrefabGUID VampireWindow01_StrongbladeDLC01 = new PrefabGUID(-999272779); public static readonly PrefabGUID VampireWindow01_WoodPanelSet01_Wood = new PrefabGUID(-1038864770); public static readonly PrefabGUID VampireWindow01_WorkshopSet01_Clean = new PrefabGUID(936421221); public static readonly PrefabGUID Vermin_DireRat_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1766333927); public static readonly PrefabGUID VFXReplacementSettings = new PrefabGUID(-1644427455); public static readonly PrefabGUID VHunter_Castleman_VBlood_Emote_OnAggro_Buff = new PrefabGUID(-1022229288); public static readonly PrefabGUID VHunter_Leader_VBlood_Emote_OnAggro_Buff = new PrefabGUID(1892762278); public static readonly PrefabGUID VIB_AbsorbedDamage = new PrefabGUID(50307623); public static readonly PrefabGUID VIB_Aftershock = new PrefabGUID(841225492); public static readonly PrefabGUID VIB_Aftershock_Intense = new PrefabGUID(39532577); public static readonly PrefabGUID VIB_AftershockCast = new PrefabGUID(1310807762); public static readonly PrefabGUID VIB_ArmyOfTheDeadCast = new PrefabGUID(-303080652); public static readonly PrefabGUID VIB_AxePrimaryAttack = new PrefabGUID(1366223991); public static readonly PrefabGUID VIB_Bear_Dire_AreaAttack = new PrefabGUID(393329485); public static readonly PrefabGUID VIB_BloodBloodFountain_Cast = new PrefabGUID(726321680); public static readonly PrefabGUID VIB_BloodBloodFountain_Cast_ALREADY_EXISTS_2 = new PrefabGUID(442230224); public static readonly PrefabGUID VIB_BloodBloodFountain_Execute = new PrefabGUID(350368292); public static readonly PrefabGUID VIB_BloodBloodFountain_Execute_ALREADY_EXISTS_2 = new PrefabGUID(-911171653); public static readonly PrefabGUID VIB_BloodBloodFountain_GroundImpact = new PrefabGUID(-656198061); public static readonly PrefabGUID VIB_BloodBloodFountain_GroundImpact_ALREADY_EXISTS_2 = new PrefabGUID(1963086248); public static readonly PrefabGUID VIB_BloodBloodRage = new PrefabGUID(-95006034); public static readonly PrefabGUID VIB_BloodBloodRage_ALREADY_EXISTS_2 = new PrefabGUID(-79265133); public static readonly PrefabGUID VIB_BloodBloodRite = new PrefabGUID(-1743223727); public static readonly PrefabGUID VIB_BloodBloodRite_ALREADY_EXISTS_2 = new PrefabGUID(1087088660); public static readonly PrefabGUID VIB_BloodCrimsonBeam = new PrefabGUID(-81259260); public static readonly PrefabGUID VIB_BloodCrimsonBeam_ALREADY_EXISTS_2 = new PrefabGUID(-1571368937); public static readonly PrefabGUID VIB_BloodCrimsonChanneling = new PrefabGUID(1287826588); public static readonly PrefabGUID VIB_BloodCrimsonChanneling_ALREADY_EXISTS_2 = new PrefabGUID(-1504973146); public static readonly PrefabGUID VIB_BloodHeartStrike = new PrefabGUID(-475126065); public static readonly PrefabGUID VIB_BloodHeartStrike_ALREADY_EXISTS_2 = new PrefabGUID(-1478014370); public static readonly PrefabGUID VIB_BloodHeartStrikeCast = new PrefabGUID(-1673917211); public static readonly PrefabGUID VIB_BloodHeartStrikeCast_ALREADY_EXISTS_2 = new PrefabGUID(-1625831245); public static readonly PrefabGUID VIB_BloodHeartStrikePhase = new PrefabGUID(1967208797); public static readonly PrefabGUID VIB_BloodHeartStrikePhase_ALREADY_EXISTS_2 = new PrefabGUID(-1508180817); public static readonly PrefabGUID VIB_BloodShadowBolt = new PrefabGUID(457709150); public static readonly PrefabGUID VIB_BloodShadowBolt_ALREADY_EXISTS_2 = new PrefabGUID(839180761); public static readonly PrefabGUID VIB_Build_Dismantle = new PrefabGUID(1166933674); public static readonly PrefabGUID VIB_Build_Success = new PrefabGUID(-737531618); public static readonly PrefabGUID VIB_BuildFail = new PrefabGUID(-1272435820); public static readonly PrefabGUID VIB_ChaosBarrierCast = new PrefabGUID(-853925526); public static readonly PrefabGUID VIB_ChaosBarrierCast_ALREADY_EXISTS_2 = new PrefabGUID(-1005195532); public static readonly PrefabGUID VIB_Dracula_BloodCurse_Buff = new PrefabGUID(-1422738556); public static readonly PrefabGUID VIB_Feed = new PrefabGUID(450624679); public static readonly PrefabGUID VIB_Feed_VBlood = new PrefabGUID(1482108190); public static readonly PrefabGUID VIB_FeedCancel = new PrefabGUID(-71862135); public static readonly PrefabGUID VIB_FeedComplete = new PrefabGUID(-790413713); public static readonly PrefabGUID VIB_FeedComplete_VBlood = new PrefabGUID(1486426292); public static readonly PrefabGUID VIB_Generic_Buff = new PrefabGUID(-831678517); public static readonly PrefabGUID VIB_Generic_Buff_InstantFeedback = new PrefabGUID(131225857); public static readonly PrefabGUID VIB_Generic_Cast_ExtraLarge = new PrefabGUID(-1791408242); public static readonly PrefabGUID VIB_Generic_Cast_Large = new PrefabGUID(1355042556); public static readonly PrefabGUID VIB_Generic_Cast_Medium = new PrefabGUID(-454702334); public static readonly PrefabGUID VIB_Generic_Cast_Small = new PrefabGUID(1695025556); public static readonly PrefabGUID VIB_Generic_Channel = new PrefabGUID(-1022326766); public static readonly PrefabGUID VIB_Generic_Dash = new PrefabGUID(-236946353); public static readonly PrefabGUID VIB_Generic_Dash_Strong = new PrefabGUID(1375266325); public static readonly PrefabGUID VIB_GreatswordDeathFromAboveCast = new PrefabGUID(-2108480705); public static readonly PrefabGUID VIB_GreatswordDeathFromAboveHit = new PrefabGUID(-305469766); public static readonly PrefabGUID VIB_GreatswordGreatcleaverCast = new PrefabGUID(1007067148); public static readonly PrefabGUID VIB_GreatswordGreatcleaverExecute = new PrefabGUID(1656847560); public static readonly PrefabGUID VIB_GreatswordGreatcleaverHit = new PrefabGUID(1114485057); public static readonly PrefabGUID VIB_HitFeedback_Large = new PrefabGUID(2094699026); public static readonly PrefabGUID VIB_HitFeedback_Large_Counters = new PrefabGUID(-1490582370); public static readonly PrefabGUID VIB_HitFeedback_Medium = new PrefabGUID(310756637); public static readonly PrefabGUID VIB_HitFeedback_Medium_LightningTendrils = new PrefabGUID(381415690); public static readonly PrefabGUID VIB_HitFeedback_Medium_Soft = new PrefabGUID(-1381245347); public static readonly PrefabGUID VIB_HitFeedback_Medium_ThousandStabs = new PrefabGUID(308557231); public static readonly PrefabGUID VIB_HitFeedback_Small = new PrefabGUID(-1928983488); public static readonly PrefabGUID VIB_HitFeedback_Small_Global = new PrefabGUID(1893669721); public static readonly PrefabGUID VIB_HitFeedback_Small_HalfAmp = new PrefabGUID(1166623177); public static readonly PrefabGUID VIB_HowlingReaper = new PrefabGUID(-2048977927); public static readonly PrefabGUID VIB_LightningTyphoon = new PrefabGUID(-1595645716); public static readonly PrefabGUID VIB_LongbowGuidedArrow = new PrefabGUID(2083928003); public static readonly PrefabGUID VIB_LongbowMultishot = new PrefabGUID(-2060931672); public static readonly PrefabGUID VIB_LongbowPrimaryAttack = new PrefabGUID(-1959512215); public static readonly PrefabGUID VIB_MaceCrushingBlow = new PrefabGUID(-32415313); public static readonly PrefabGUID VIB_MacePrimaryAttack = new PrefabGUID(-21382791); public static readonly PrefabGUID VIB_MaceSmack = new PrefabGUID(1156463602); public static readonly PrefabGUID VIB_PlayerAttack_Big_Medium = new PrefabGUID(-310505666); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Medium = new PrefabGUID(-1501107426); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Strong = new PrefabGUID(-1849599800); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak = new PrefabGUID(1695384546); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_Fast = new PrefabGUID(960496717); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_HeavyAttacks = new PrefabGUID(-1837310549); public static readonly PrefabGUID VIB_PlayerAttack_Medium_Weak_NoFollowThrough = new PrefabGUID(-295342306); public static readonly PrefabGUID VIB_Quake_ArticLeap = new PrefabGUID(1473036527); public static readonly PrefabGUID VIB_Quake_Large = new PrefabGUID(-1274893552); public static readonly PrefabGUID VIB_Quake_Large_Local = new PrefabGUID(1713070388); public static readonly PrefabGUID VIB_Quake_Medium = new PrefabGUID(-525427564); public static readonly PrefabGUID VIB_Quake_Medium_Local = new PrefabGUID(1562432613); public static readonly PrefabGUID VIB_Quake_Medium_Short = new PrefabGUID(496289672); public static readonly PrefabGUID VIB_Quake_Small = new PrefabGUID(370045079); public static readonly PrefabGUID VIB_Quake_Small_Local = new PrefabGUID(1306221601); public static readonly PrefabGUID VIB_Quake_Small_Multitrigger = new PrefabGUID(119828308); public static readonly PrefabGUID VIB_Quake_Small_Short = new PrefabGUID(-883322196); public static readonly PrefabGUID VIB_Quake_Small_Short_Local = new PrefabGUID(-659786264); public static readonly PrefabGUID VIB_ReleaseTarget = new PrefabGUID(458616084); public static readonly PrefabGUID VIB_SanguoneCoilCast = new PrefabGUID(1228950823); public static readonly PrefabGUID VIB_SanguoneCoilCast_ALREADY_EXISTS_2 = new PrefabGUID(-521152517); public static readonly PrefabGUID VIB_StormRagingTempestCast = new PrefabGUID(-1201513108); public static readonly PrefabGUID VIB_StormRagingTempestCast_ALREADY_EXISTS_2 = new PrefabGUID(-946366013); public static readonly PrefabGUID VIB_SwordPrimaryHit = new PrefabGUID(-2046525743); public static readonly PrefabGUID VIB_SwordShockwave = new PrefabGUID(1806794761); public static readonly PrefabGUID VIB_SwordWhirlwind = new PrefabGUID(1839282153); public static readonly PrefabGUID VIB_TakeDamageBig = new PrefabGUID(1517806806); public static readonly PrefabGUID VIB_TakeDamageMedium = new PrefabGUID(1421214633); public static readonly PrefabGUID VIB_TakeDamageSmall = new PrefabGUID(-489989865); public static readonly PrefabGUID VIB_TakeSunDamage = new PrefabGUID(1606091480); public static readonly PrefabGUID VIB_VeilOfBloodCast = new PrefabGUID(-1112255503); public static readonly PrefabGUID VIB_VeilOfShadowCast = new PrefabGUID(1012519963); public static readonly PrefabGUID VIB_WhipDashCast = new PrefabGUID(-1501894495); public static readonly PrefabGUID VIB_WhipDashExecute = new PrefabGUID(-1534324920); public static readonly PrefabGUID VIB_WhipEntangleCast = new PrefabGUID(1302471012); public static readonly PrefabGUID VIB_WhipEntangleExecute = new PrefabGUID(364215368); public static readonly PrefabGUID VIB_WhipEntangleHit = new PrefabGUID(1233123826); public static readonly PrefabGUID VIB_WhipPrimaryCast = new PrefabGUID(-1987947128); public static readonly PrefabGUID VIB_WhipPrimaryExecute = new PrefabGUID(-2000538427); public static readonly PrefabGUID VIB_WhipPrimaryHit = new PrefabGUID(-153087556); public static readonly PrefabGUID VIB_WhipPrimaryHit_Heavy = new PrefabGUID(-1252832245); public static readonly PrefabGUID Villager_CursedWanderer_VBlood_Emote_OnAggro = new PrefabGUID(1987604274); public static readonly PrefabGUID Villager_Tailor_VBlood_Emote_OnAggro = new PrefabGUID(422225431); public static readonly PrefabGUID VM_CRAPPY_Human_Female_05_DONT_USE = new PrefabGUID(-1438162738); public static readonly PrefabGUID VM_Critter_Bull = new PrefabGUID(2108135722); public static readonly PrefabGUID VM_Critter_Cow = new PrefabGUID(675809511); public static readonly PrefabGUID VM_Critter_Pig = new PrefabGUID(-543250863); public static readonly PrefabGUID VM_Critter_Pig_Small = new PrefabGUID(36554183); public static readonly PrefabGUID VM_Critter_Ram = new PrefabGUID(1435246759); public static readonly PrefabGUID VM_Critter_Sheep = new PrefabGUID(-1952885669); public static readonly PrefabGUID VM_Gloom_Rot_Mechanical_Walker_Big = new PrefabGUID(-1177921136); public static readonly PrefabGUID VM_Gloom_Rot_Mechanical_Walker_Small = new PrefabGUID(-2127522178); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Flesh_Golem = new PrefabGUID(787797552); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Rat_Horror = new PrefabGUID(326783977); public static readonly PrefabGUID VM_Gloom_Rot_Mutant_Spitter = new PrefabGUID(-1345869435); public static readonly PrefabGUID VM_Golem_Spectral = new PrefabGUID(-1741666185); public static readonly PrefabGUID VM_Human_Bellringer_Villager_Male_D = new PrefabGUID(1358996913); public static readonly PrefabGUID VM_Human_Cultist = new PrefabGUID(927473112); public static readonly PrefabGUID VM_Human_Generic_Female_01 = new PrefabGUID(-1905285576); public static readonly PrefabGUID VM_Human_Generic_Female_01_Attack_Chance_Lowered = new PrefabGUID(795744305); public static readonly PrefabGUID VM_Human_Generic_Female_01_Gloomrot_Mask = new PrefabGUID(-1533581306); public static readonly PrefabGUID VM_Human_Generic_Female_01_Helmet_Old = new PrefabGUID(1278045887); public static readonly PrefabGUID VM_Human_Generic_Female_02 = new PrefabGUID(-1480471379); public static readonly PrefabGUID VM_Human_Generic_Female_02_Gloomrot_Mask = new PrefabGUID(2045025762); public static readonly PrefabGUID VM_Human_Generic_Female_02_Helmet_Old = new PrefabGUID(-816919307); public static readonly PrefabGUID VM_Human_Generic_Female_03 = new PrefabGUID(322846758); public static readonly PrefabGUID VM_Human_Generic_Female_03_Gloomrot_Mask = new PrefabGUID(499840120); public static readonly PrefabGUID VM_Human_Generic_Female_03_Helmet_Old = new PrefabGUID(1791830084); public static readonly PrefabGUID VM_Human_Generic_Female_04 = new PrefabGUID(1504562014); public static readonly PrefabGUID VM_Human_Generic_Female_04_Archer_Attack_Chance_Lowered = new PrefabGUID(-969080617); public static readonly PrefabGUID VM_Human_Generic_Female_04_Gloomrot_Mask = new PrefabGUID(632783050); public static readonly PrefabGUID VM_Human_Generic_Female_04_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(-2006512486); public static readonly PrefabGUID VM_Human_Generic_Female_04_Helmet_Old = new PrefabGUID(-1030435318); public static readonly PrefabGUID VM_Human_Generic_Female_05_BAD_DONT_USE = new PrefabGUID(-1258334676); public static readonly PrefabGUID VM_Human_Generic_Female_06 = new PrefabGUID(1241166845); public static readonly PrefabGUID VM_Human_Generic_Female_06_Gloomrot_Mask = new PrefabGUID(-1115600416); public static readonly PrefabGUID VM_Human_Generic_Female_06_Helmet_Old = new PrefabGUID(-690106187); public static readonly PrefabGUID VM_Human_Generic_Female_07 = new PrefabGUID(204186332); public static readonly PrefabGUID VM_Human_Generic_Female_07_Attack_Chance_Lowered = new PrefabGUID(1746608302); public static readonly PrefabGUID VM_Human_Generic_Female_07_Gloomrot_Mask = new PrefabGUID(-1870068034); public static readonly PrefabGUID VM_Human_Generic_Female_07_Helmet_Old = new PrefabGUID(1816825158); public static readonly PrefabGUID VM_Human_Generic_Female_08 = new PrefabGUID(-1115464127); public static readonly PrefabGUID VM_Human_Generic_Female_08_Gloomrot_Mask = new PrefabGUID(2077990534); public static readonly PrefabGUID VM_Human_Generic_Female_08_Helmet_Old = new PrefabGUID(-503648574); public static readonly PrefabGUID VM_Human_Generic_Male_01 = new PrefabGUID(-94664388); public static readonly PrefabGUID VM_Human_Generic_Male_01_Blackfang_Sentinel = new PrefabGUID(1194412455); public static readonly PrefabGUID VM_Human_Generic_Male_01_Gloomrot_Mask = new PrefabGUID(136215547); public static readonly PrefabGUID VM_Human_Generic_Male_01_Helmet_Old = new PrefabGUID(-1656730793); public static readonly PrefabGUID VM_Human_Generic_Male_02 = new PrefabGUID(-608431864); public static readonly PrefabGUID VM_Human_Generic_Male_02_Gloomrot_Mask = new PrefabGUID(2067771777); public static readonly PrefabGUID VM_Human_Generic_Male_02_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(116274260); public static readonly PrefabGUID VM_Human_Generic_Male_02_Helmet_Old = new PrefabGUID(-1720222272); public static readonly PrefabGUID VM_Human_Generic_Male_03 = new PrefabGUID(1878807783); public static readonly PrefabGUID VM_Human_Generic_Male_03_Archer_Attack_Chance_Lowered = new PrefabGUID(-1798392838); public static readonly PrefabGUID VM_Human_Generic_Male_03_Gloomrot_Mask = new PrefabGUID(-1646626059); public static readonly PrefabGUID VM_Human_Generic_Male_03_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(-468465893); public static readonly PrefabGUID VM_Human_Generic_Male_03_Helmet_New_IR = new PrefabGUID(-973762562); public static readonly PrefabGUID VM_Human_Generic_Male_03_Helmet_Old = new PrefabGUID(-63469580); public static readonly PrefabGUID VM_Human_Generic_Male_04 = new PrefabGUID(-14526849); public static readonly PrefabGUID VM_Human_Generic_Male_04_Gloomrot_Mask = new PrefabGUID(-67458269); public static readonly PrefabGUID VM_Human_Generic_Male_04_Helmet_Old = new PrefabGUID(-1306258927); public static readonly PrefabGUID VM_Human_Generic_Male_05 = new PrefabGUID(-661601043); public static readonly PrefabGUID VM_Human_Generic_Male_05_Attack_Chance_Lowered_Dont_Stop_If_Repeating = new PrefabGUID(341743850); public static readonly PrefabGUID VM_Human_Generic_Male_05_Gloomrot_Mask = new PrefabGUID(647080508); public static readonly PrefabGUID VM_Human_Generic_Male_05_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(1720373381); public static readonly PrefabGUID VM_Human_Generic_Male_05_Helmet_Old = new PrefabGUID(880391461); public static readonly PrefabGUID VM_Human_Generic_Male_06 = new PrefabGUID(653745827); public static readonly PrefabGUID VM_Human_Generic_Male_06_Gloomrot_Mask = new PrefabGUID(242592943); public static readonly PrefabGUID VM_Human_Generic_Male_06_Gloomrot_Mask_Lower_Chance_Attack = new PrefabGUID(291983309); public static readonly PrefabGUID VM_Human_Generic_Male_06_Helmet_Old = new PrefabGUID(-860111828); public static readonly PrefabGUID VM_Human_Generic_Male_06_Rifleman_Attack_Chance_Lowered = new PrefabGUID(2111307187); public static readonly PrefabGUID VM_Human_Generic_Male_07 = new PrefabGUID(1522806301); public static readonly PrefabGUID VM_Human_Generic_Male_07_Gloomrot_Mask = new PrefabGUID(83915525); public static readonly PrefabGUID VM_Human_Generic_Male_07_Helmet_Old = new PrefabGUID(2045386359); public static readonly PrefabGUID VM_Human_Generic_Male_08 = new PrefabGUID(-389279778); public static readonly PrefabGUID VM_Human_Generic_Male_08_Gloomrot_Mask = new PrefabGUID(-705287739); public static readonly PrefabGUID VM_Human_Generic_Male_08_Helmet_New_IR = new PrefabGUID(780769229); public static readonly PrefabGUID VM_Human_Generic_Male_08_Helmet_Old = new PrefabGUID(1086286676); public static readonly PrefabGUID VM_Human_Gloom_Villager_Female_A = new PrefabGUID(509736693); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_A = new PrefabGUID(1940656964); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_B = new PrefabGUID(-1315912871); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_C = new PrefabGUID(-1252947292); public static readonly PrefabGUID VM_Human_Gloom_Villager_Male_D_DONT_USE_ME_BAD = new PrefabGUID(-143646212); public static readonly PrefabGUID VM_Human_Micke = new PrefabGUID(1415043697); public static readonly PrefabGUID VM_Human_Silverlight_Cleric_Female = new PrefabGUID(1505419659); public static readonly PrefabGUID VM_Human_Silverlight_Priest_Male = new PrefabGUID(-653142637); public static readonly PrefabGUID VM_Human_Slave_Ruffian_A = new PrefabGUID(82857080); public static readonly PrefabGUID VM_Human_Slave_Ruffian_A_OLD_DONT_USE_ME = new PrefabGUID(-798258944); public static readonly PrefabGUID VM_Human_Slave_Ruffian_B = new PrefabGUID(1665275145); public static readonly PrefabGUID VM_Human_Slave_Ruffian_C = new PrefabGUID(-1604801159); public static readonly PrefabGUID VM_Human_Slave_Ruffian_D = new PrefabGUID(-141850185); public static readonly PrefabGUID VM_Human_Slave_Ruffian_E = new PrefabGUID(-346387187); public static readonly PrefabGUID VM_Human_Villager_Female_01_OLD_DONT_USE = new PrefabGUID(1383764767); public static readonly PrefabGUID VM_Human_Villager_Female_A = new PrefabGUID(1491071088); public static readonly PrefabGUID VM_Human_Villager_Female_B = new PrefabGUID(604003400); public static readonly PrefabGUID VM_Human_Villager_Female_C = new PrefabGUID(1485156738); public static readonly PrefabGUID VM_Human_Villager_Female_D = new PrefabGUID(597649896); public static readonly PrefabGUID VM_Human_Villager_Female_E = new PrefabGUID(1561936620); public static readonly PrefabGUID VM_Human_Villager_Male_01_OLD_DONT_USE = new PrefabGUID(1663867561); public static readonly PrefabGUID VM_Human_Villager_Male_A = new PrefabGUID(-393171023); public static readonly PrefabGUID VM_Human_Villager_Male_B = new PrefabGUID(1925079062); public static readonly PrefabGUID VM_Human_Villager_Male_C = new PrefabGUID(-682107159); public static readonly PrefabGUID VM_Human_Villager_Male_D = new PrefabGUID(131325772); public static readonly PrefabGUID VM_Human_Villager_Male_E = new PrefabGUID(-1243446819); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Female_E = new PrefabGUID(-39223776); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Male_A = new PrefabGUID(187341720); public static readonly PrefabGUID VM_Human_Villager_Prisoner_Male_D = new PrefabGUID(-1533654457); public static readonly PrefabGUID VM_Militia_Ink_Crawler = new PrefabGUID(1672636200); public static readonly PrefabGUID VM_Monster_Fallen_Angel = new PrefabGUID(-1221396415); public static readonly PrefabGUID VM_Monster_Harpy_Big = new PrefabGUID(1750457457); public static readonly PrefabGUID VM_Monster_Harpy_Normal = new PrefabGUID(-895836006); public static readonly PrefabGUID VM_Monster_Harpy_Normal_Nether_Demon = new PrefabGUID(558382760); public static readonly PrefabGUID VM_Monster_Harpy_Small = new PrefabGUID(62418921); public static readonly PrefabGUID VM_Monster_Harpy_VBlood = new PrefabGUID(-889459917); public static readonly PrefabGUID VM_Monster_Morgana_Tail = new PrefabGUID(268992033); public static readonly PrefabGUID VM_Monster_MountainBeast = new PrefabGUID(1273574187); public static readonly PrefabGUID VM_Monster_Nightlurker = new PrefabGUID(-770195979); public static readonly PrefabGUID VM_Monster_Scarecrow = new PrefabGUID(-1841434104); public static readonly PrefabGUID VM_Monster_SeaSerpent = new PrefabGUID(858863559); public static readonly PrefabGUID VM_Monster_Werewolf = new PrefabGUID(-1305712666); public static readonly PrefabGUID VM_Monster_Witch = new PrefabGUID(188709646); public static readonly PrefabGUID VM_Monster_Witch_Nether_Demon = new PrefabGUID(-1662141375); public static readonly PrefabGUID VM_Monster_Wormterror = new PrefabGUID(2050321122); public static readonly PrefabGUID VM_Mount_Horse_Gloomrot = new PrefabGUID(1402997640); public static readonly PrefabGUID VM_Mount_Horse_Normal = new PrefabGUID(-1595628282); public static readonly PrefabGUID VM_Mount_Horse_Spectral = new PrefabGUID(-152883584); public static readonly PrefabGUID VM_Noctem_Crow = new PrefabGUID(453764389); public static readonly PrefabGUID VM_Noctem_Legion_Blood_Prophet = new PrefabGUID(1736937334); public static readonly PrefabGUID VM_Noctem_Legion_Dreadhorn = new PrefabGUID(-1517898932); public static readonly PrefabGUID VM_Noctem_Legion_Gargoyle = new PrefabGUID(-485166094); public static readonly PrefabGUID VM_Noctem_Legion_Giant_Bat = new PrefabGUID(1957049786); public static readonly PrefabGUID VM_Noctem_Legion_Night_Maiden = new PrefabGUID(1632819146); public static readonly PrefabGUID VM_Noctem_Legion_Nightmare = new PrefabGUID(575214743); public static readonly PrefabGUID VM_Noctem_Legion_Shadowkin = new PrefabGUID(-1254658425); public static readonly PrefabGUID VM_Noctem_Legion_Vargulf = new PrefabGUID(-842318628); public static readonly PrefabGUID VM_Ocean_Blowfish = new PrefabGUID(-1617695003); public static readonly PrefabGUID VM_Ocean_Piranha = new PrefabGUID(-132090339); public static readonly PrefabGUID VM_Pixie = new PrefabGUID(153067257); public static readonly PrefabGUID VM_Plant_Mantrap = new PrefabGUID(348843686); public static readonly PrefabGUID VM_Plant_Mantrap_Corrupted_Big = new PrefabGUID(-1440887788); public static readonly PrefabGUID VM_Plant_Mantrap_Corrupted_Small = new PrefabGUID(1780067803); public static readonly PrefabGUID VM_Plant_Treant = new PrefabGUID(237578135); public static readonly PrefabGUID VM_Plant_Treant_Nether_Demon = new PrefabGUID(-259738326); public static readonly PrefabGUID VM_Player_New_Female_VoiceMapping = new PrefabGUID(1515837925); public static readonly PrefabGUID VM_Player_New_Male_VoiceMapping = new PrefabGUID(1145294473); public static readonly PrefabGUID VM_Shadow_VBlood_Buckwald = new PrefabGUID(-691432441); public static readonly PrefabGUID VM_Shadow_VBlood_Clive = new PrefabGUID(-1511348415); public static readonly PrefabGUID VM_Shadow_VBlood_Cultist = new PrefabGUID(-415787217); public static readonly PrefabGUID VM_Shadow_VBlood_Cursed_Wanderer = new PrefabGUID(-1352168848); public static readonly PrefabGUID VM_Shadow_VBlood_Dire_Bear = new PrefabGUID(902581176); public static readonly PrefabGUID VM_Shadow_VBlood_Dire_Rat = new PrefabGUID(-977189252); public static readonly PrefabGUID VM_Shadow_VBlood_Goreswine = new PrefabGUID(-1070088187); public static readonly PrefabGUID VM_Shadow_VBlood_Grayson = new PrefabGUID(-494873467); public static readonly PrefabGUID VM_Shadow_VBlood_Infiltrator = new PrefabGUID(-629235655); public static readonly PrefabGUID VM_Shadow_VBlood_Jade = new PrefabGUID(-1346603514); public static readonly PrefabGUID VM_Shadow_VBlood_Keely = new PrefabGUID(1312085721); public static readonly PrefabGUID VM_Shadow_VBlood_Leandra = new PrefabGUID(480286043); public static readonly PrefabGUID VM_Shadow_VBlood_Lidia = new PrefabGUID(542385125); public static readonly PrefabGUID VM_Shadow_VBlood_Nicholaus = new PrefabGUID(110124993); public static readonly PrefabGUID VM_Shadow_VBlood_Octavian = new PrefabGUID(536808104); public static readonly PrefabGUID VM_Shadow_VBlood_Poloma = new PrefabGUID(1645646458); public static readonly PrefabGUID VM_Shadow_VBlood_Raymond = new PrefabGUID(-1639965031); public static readonly PrefabGUID VM_Shadow_VBlood_Spider_Queen = new PrefabGUID(2050781956); public static readonly PrefabGUID VM_Shadow_VBlood_Tailor = new PrefabGUID(-4117372); public static readonly PrefabGUID VM_Shadow_VBlood_The_Purifier = new PrefabGUID(359135545); public static readonly PrefabGUID VM_Shadow_VBlood_Tourok = new PrefabGUID(1975333833); public static readonly PrefabGUID VM_Shadow_VBlood_Undead_General = new PrefabGUID(879253207); public static readonly PrefabGUID VM_Shadow_VBlood_Vadim = new PrefabGUID(603424792); public static readonly PrefabGUID VM_Shadow_VBlood_Vincent = new PrefabGUID(482879096); public static readonly PrefabGUID VM_Shadow_VBlood_Voltage = new PrefabGUID(-2139500463); public static readonly PrefabGUID VM_Shadow_VBlood_Wendigo = new PrefabGUID(1377139505); public static readonly PrefabGUID VM_Shadow_VBlood_Werewolf_Chieftain_Human_UNUSED = new PrefabGUID(-1369489468); public static readonly PrefabGUID VM_Shadow_VBlood_Werewolf_Chieftain_Wolf = new PrefabGUID(-1474278641); public static readonly PrefabGUID VM_Shadow_VBlood_Yeti = new PrefabGUID(-1437235077); public static readonly PrefabGUID VM_Shadow_Wildlife_Spider_Medium = new PrefabGUID(1683581943); public static readonly PrefabGUID VM_Trader_Noctem_Neutral_Vampire_Female = new PrefabGUID(-475789703); public static readonly PrefabGUID VM_Trader_Noctem_Neutral_Vampire_Male = new PrefabGUID(-2086650011); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Female_A_Original = new PrefabGUID(-2105956205); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Female_A_Variation_A = new PrefabGUID(613788510); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Male_A_Original = new PrefabGUID(1965695167); public static readonly PrefabGUID VM_Trader_T01_Shady_Bandit_Male_A_Variation_A = new PrefabGUID(-61352755); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Female_A_Original = new PrefabGUID(-835780298); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Female_A_Variation_A = new PrefabGUID(-452733963); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Male_A_Original = new PrefabGUID(-1160141599); public static readonly PrefabGUID VM_Trader_T02_Peasant_Trader_Male_A_Variation_A = new PrefabGUID(-1221665430); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_A_Original = new PrefabGUID(-1072238534); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_A_Variation_A = new PrefabGUID(94496320); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_B_Original = new PrefabGUID(1904134618); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Female_B_Variation_A = new PrefabGUID(-1220384472); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Male_A_Original = new PrefabGUID(-1527242830); public static readonly PrefabGUID VM_Trader_T03_Savvy_Merchant_Male_A_Variation_A = new PrefabGUID(-76309449); public static readonly PrefabGUID VM_Undead_Banshee_Female = new PrefabGUID(2142293965); public static readonly PrefabGUID VM_Undead_Banshee_Male = new PrefabGUID(-1301651639); public static readonly PrefabGUID VM_Undead_Ghoul = new PrefabGUID(-1998834347); public static readonly PrefabGUID VM_Undead_Necromancer = new PrefabGUID(-1768048336); public static readonly PrefabGUID VM_Undead_Priest_Male = new PrefabGUID(-570662333); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Standard = new PrefabGUID(-713872148); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Medium = new PrefabGUID(195368598); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small = new PrefabGUID(-1553242014); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small_Lower_Attack_Chance_Spectral = new PrefabGUID(-1240079969); public static readonly PrefabGUID VM_Undead_Skeleton_Bone_Voice_Small_Spectral = new PrefabGUID(-86202803); public static readonly PrefabGUID VM_Undead_Skeleton_OLD_UNUSED = new PrefabGUID(-727731680); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Golem = new PrefabGUID(1935647540); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Golem_Nether_Demon = new PrefabGUID(-799945920); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large = new PrefabGUID(-553861740); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large_Noctem = new PrefabGUID(-1112520912); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Large_Spectral = new PrefabGUID(-362368839); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium = new PrefabGUID(2145678549); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium_Noctem = new PrefabGUID(-1219094332); public static readonly PrefabGUID VM_Undead_Skeleton_Voice_Medium_Spectral = new PrefabGUID(-1381099250); public static readonly PrefabGUID VM_Undead_Withered_Bat_Minion = new PrefabGUID(921049289); public static readonly PrefabGUID VM_VBlood_AlphaWolf = new PrefabGUID(-1305284010); public static readonly PrefabGUID VM_VBlood_Bandit_Leader = new PrefabGUID(1067696697); public static readonly PrefabGUID VM_VBlood_Bat_Vampire_New_Dracula = new PrefabGUID(-466514072); public static readonly PrefabGUID VM_VBlood_Bat_Vampire_OLD_BUCKWALD = new PrefabGUID(-678695674); public static readonly PrefabGUID VM_VBlood_Behemoth = new PrefabGUID(1711955524); public static readonly PrefabGUID VM_VBlood_Behemoth_Spectral = new PrefabGUID(-354748940); public static readonly PrefabGUID VM_VBlood_Blackfang_Carver_Boss = new PrefabGUID(704011451); public static readonly PrefabGUID VM_VBlood_Blackfang_Livith = new PrefabGUID(-1942607872); public static readonly PrefabGUID VM_VBlood_Blackfang_Livith_Illusion = new PrefabGUID(1192920511); public static readonly PrefabGUID VM_VBlood_Blackfang_Lucie = new PrefabGUID(-713189167); public static readonly PrefabGUID VM_VBlood_Blackfang_Morgana_Human = new PrefabGUID(-1883007261); public static readonly PrefabGUID VM_VBlood_Blackfang_Morgana_Snake = new PrefabGUID(209913271); public static readonly PrefabGUID VM_VBlood_Blackfang_Valyr = new PrefabGUID(21513479); public static readonly PrefabGUID VM_VBlood_Buckwald = new PrefabGUID(-2079842739); public static readonly PrefabGUID VM_VBlood_Cardinal = new PrefabGUID(-2096340184); public static readonly PrefabGUID VM_VBlood_Castleman = new PrefabGUID(658137624); public static readonly PrefabGUID VM_VBlood_Clive = new PrefabGUID(-1462348889); public static readonly PrefabGUID VM_VBlood_Cultist = new PrefabGUID(-431379099); public static readonly PrefabGUID VM_VBlood_Cursed_Smith = new PrefabGUID(565521665); public static readonly PrefabGUID VM_VBlood_Cursed_Wanderer = new PrefabGUID(267826876); public static readonly PrefabGUID VM_VBlood_Dire_Bear = new PrefabGUID(44326508); public static readonly PrefabGUID VM_VBlood_Dire_Rat = new PrefabGUID(425269590); public static readonly PrefabGUID VM_VBlood_Dracula_Boss = new PrefabGUID(1046850283); public static readonly PrefabGUID VM_VBlood_Ezekiel = new PrefabGUID(-1909172876); public static readonly PrefabGUID VM_VBlood_Fisherman = new PrefabGUID(-1166557910); public static readonly PrefabGUID VM_VBlood_Glassblower = new PrefabGUID(-684373010); public static readonly PrefabGUID VM_VBlood_Goreswine = new PrefabGUID(1392861733); public static readonly PrefabGUID VM_VBlood_Grayson = new PrefabGUID(-470931202); public static readonly PrefabGUID VM_VBlood_HarpyMatriarch = new PrefabGUID(-1827283118); public static readonly PrefabGUID VM_VBlood_Infiltrator = new PrefabGUID(-2117925055); public static readonly PrefabGUID VM_VBlood_Infiltrator_After_Image = new PrefabGUID(1935716246); public static readonly PrefabGUID VM_VBlood_Iva = new PrefabGUID(1338931575); public static readonly PrefabGUID VM_VBlood_Jade = new PrefabGUID(588988042); public static readonly PrefabGUID VM_VBlood_Keely = new PrefabGUID(-637867341); public static readonly PrefabGUID VM_VBlood_Kings_Sommelier = new PrefabGUID(1962479200); public static readonly PrefabGUID VM_VBlood_Leandra = new PrefabGUID(893387149); public static readonly PrefabGUID VM_VBlood_Leandra_Shadow_Soldier = new PrefabGUID(-1938715202); public static readonly PrefabGUID VM_VBlood_Lidia = new PrefabGUID(-1107717687); public static readonly PrefabGUID VM_VBlood_Maja_The_Scribe = new PrefabGUID(-673613975); public static readonly PrefabGUID VM_VBlood_Manticore = new PrefabGUID(-114853324); public static readonly PrefabGUID VM_VBlood_Mariwyn_Former_Lightweaver = new PrefabGUID(-1245108019); public static readonly PrefabGUID VM_VBlood_Meredith = new PrefabGUID(87161764); public static readonly PrefabGUID VM_VBlood_Militia_Fabian = new PrefabGUID(102748632); public static readonly PrefabGUID VM_Vblood_Mount_Horse_Fabian_Steed = new PrefabGUID(-912824856); public static readonly PrefabGUID VM_Vblood_Mount_Horse_Fabian_Steed_Minion = new PrefabGUID(1738761601); public static readonly PrefabGUID VM_VBlood_Nicholaus = new PrefabGUID(-1861209455); public static readonly PrefabGUID VM_VBlood_Nun = new PrefabGUID(246220933); public static readonly PrefabGUID VM_VBlood_Octavian = new PrefabGUID(871487167); public static readonly PrefabGUID VM_VBlood_Paladin = new PrefabGUID(828228369); public static readonly PrefabGUID VM_VBlood_Poloma = new PrefabGUID(1432328808); public static readonly PrefabGUID VM_VBlood_Raymond = new PrefabGUID(523131332); public static readonly PrefabGUID VM_VBlood_Sergeant_Railgunner = new PrefabGUID(658911692); public static readonly PrefabGUID VM_VBlood_Sergeant_Railgunner_Minion = new PrefabGUID(456695238); public static readonly PrefabGUID VM_VBlood_Spider_Queen = new PrefabGUID(-2044136956); public static readonly PrefabGUID VM_VBlood_Tailor = new PrefabGUID(-998597185); public static readonly PrefabGUID VM_VBlood_Terah = new PrefabGUID(1091334060); public static readonly PrefabGUID VM_VBlood_The_Monster = new PrefabGUID(-2102428253); public static readonly PrefabGUID VM_VBlood_The_Overseer = new PrefabGUID(1001781566); public static readonly PrefabGUID VM_VBlood_The_Professor = new PrefabGUID(317559839); public static readonly PrefabGUID VM_VBlood_The_Purifier = new PrefabGUID(131708591); public static readonly PrefabGUID VM_VBlood_TheProfessor_OLD_DONT_USE = new PrefabGUID(-757303582); public static readonly PrefabGUID VM_VBlood_ToadKing = new PrefabGUID(-881562841); public static readonly PrefabGUID VM_VBlood_Tourok = new PrefabGUID(504174721); public static readonly PrefabGUID VM_VBlood_Undead_Arena_Champion = new PrefabGUID(-1996146983); public static readonly PrefabGUID VM_VBlood_Undead_General = new PrefabGUID(1636278096); public static readonly PrefabGUID VM_VBlood_Undead_Leader = new PrefabGUID(1248633463); public static readonly PrefabGUID VM_VBlood_Vadim = new PrefabGUID(-1614828446); public static readonly PrefabGUID VM_VBlood_Vampire_Blood_Knight = new PrefabGUID(535400786); public static readonly PrefabGUID VM_VBlood_Vampire_Countess_Ice_Ranger = new PrefabGUID(1264306545); public static readonly PrefabGUID VM_VBlood_Vampire_High_Lord = new PrefabGUID(766321387); public static readonly PrefabGUID VM_VBlood_Vincent = new PrefabGUID(431396351); public static readonly PrefabGUID VM_VBlood_Voltage = new PrefabGUID(1277285297); public static readonly PrefabGUID VM_VBlood_Wendigo = new PrefabGUID(-1445997469); public static readonly PrefabGUID VM_VBlood_Werewolf_Chieftain_Human = new PrefabGUID(797717172); public static readonly PrefabGUID VM_VBlood_Werewolf_Chieftain_Wolf = new PrefabGUID(-2126840739); public static readonly PrefabGUID VM_VBlood_Witch_Curse_Weaver = new PrefabGUID(-609123319); public static readonly PrefabGUID VM_VBlood_Yeti = new PrefabGUID(1555565298); public static readonly PrefabGUID VM_Wildlife_Bear = new PrefabGUID(-1699679192); public static readonly PrefabGUID VM_Wildlife_Bear_Corrupted = new PrefabGUID(882344541); public static readonly PrefabGUID VM_Wildlife_Bear_Mutant = new PrefabGUID(-37270724); public static readonly PrefabGUID VM_Wildlife_Bear_Spectral = new PrefabGUID(-259706207); public static readonly PrefabGUID VM_Wildlife_Colossus = new PrefabGUID(1751937700); public static readonly PrefabGUID VM_Wildlife_Deer = new PrefabGUID(-1911126034); public static readonly PrefabGUID VM_Wildlife_Deer_Corrupted = new PrefabGUID(1651582875); public static readonly PrefabGUID VM_Wildlife_Deer_Mutated = new PrefabGUID(697198402); public static readonly PrefabGUID VM_Wildlife_Hound = new PrefabGUID(-384310073); public static readonly PrefabGUID VM_Wildlife_Moose = new PrefabGUID(-13422453); public static readonly PrefabGUID VM_Wildlife_Moose_Mutated = new PrefabGUID(-925986547); public static readonly PrefabGUID VM_Wildlife_Mosquito = new PrefabGUID(473394882); public static readonly PrefabGUID VM_Wildlife_Rock_Elemental = new PrefabGUID(-1607468731); public static readonly PrefabGUID VM_Wildlife_Rock_Elemental_Nether_Demon = new PrefabGUID(-681735888); public static readonly PrefabGUID VM_Wildlife_Spider_Big_Broodmother = new PrefabGUID(-311227229); public static readonly PrefabGUID VM_Wildlife_Spider_Huge_Queen = new PrefabGUID(-1352779682); public static readonly PrefabGUID VM_Wildlife_Spider_Medium = new PrefabGUID(1347407458); public static readonly PrefabGUID VM_Wildlife_Spider_Small = new PrefabGUID(1510696557); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Geomancer_Main = new PrefabGUID(-446008658); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Geomancer_Minion = new PrefabGUID(1095187455); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Normal = new PrefabGUID(1198697594); public static readonly PrefabGUID VM_Wildlife_Stone_Golem_Normal_Nether_Demon = new PrefabGUID(-2123108484); public static readonly PrefabGUID VM_Wildlife_Toad_Minion = new PrefabGUID(-560029685); public static readonly PrefabGUID VM_Wildlife_Treant = new PrefabGUID(1769467552); public static readonly PrefabGUID VM_Wildlife_Vermin_Giantrat = new PrefabGUID(-1527000850); public static readonly PrefabGUID VM_Wildlife_Wolf = new PrefabGUID(1624202113); public static readonly PrefabGUID VM_Wildlife_Wolf_Corrupted = new PrefabGUID(2147043027); public static readonly PrefabGUID VM_Wildlife_Wolf_Mutated = new PrefabGUID(-2136055759); public static readonly PrefabGUID VM_Wildlife_Wolf_Spectral = new PrefabGUID(693143399); public static readonly PrefabGUID VM_Wildlife_Wolf_Spectral_OLD_DONT_USE = new PrefabGUID(1990270780); public static readonly PrefabGUID VulnerableGhostWallCurve = new PrefabGUID(1762775238); public static readonly PrefabGUID WalkingCurve = new PrefabGUID(-1297497701); public static readonly PrefabGUID WallFurnitureBuildMenuGroup = new PrefabGUID(-1147424962); public static readonly PrefabGUID WallHangingFlowersMenuGroup = new PrefabGUID(-520435611); public static readonly PrefabGUID WallHangingMirrorsBuildMenuGroup = new PrefabGUID(1294488483); public static readonly PrefabGUID WallHangingMiscMenuGroup = new PrefabGUID(262148078); public static readonly PrefabGUID WallHangingShelvesBuildMenuGroup = new PrefabGUID(1737280995); public static readonly PrefabGUID WallHangingToolsMenuGroup = new PrefabGUID(-377851389); public static readonly PrefabGUID WallHangingWeaponBuildMenuGroup = new PrefabGUID(2098121822); public static readonly PrefabGUID WardrobeBuildMenuGroup = new PrefabGUID(158933326); public static readonly PrefabGUID WarEvent_UnitKilledProjectile = new PrefabGUID(-1046523292); public static readonly PrefabGUID WarEventDynamicHealthScalingSingleton = new PrefabGUID(-571920625); public static readonly PrefabGUID WarEventSettings = new PrefabGUID(-1217815930); public static readonly PrefabGUID WarEventUIData_Inactive = new PrefabGUID(-1349990434); public static readonly PrefabGUID WarEventUIData_Major = new PrefabGUID(-1227193711); public static readonly PrefabGUID WarEventUIData_Minor = new PrefabGUID(-103636065); public static readonly PrefabGUID WarEventUIData_Primal = new PrefabGUID(1714506876); public static readonly PrefabGUID WarEventUnitSpawningCurve = new PrefabGUID(-72005327); public static readonly PrefabGUID WarEventWaveSpawningCurve = new PrefabGUID(553726549); public static readonly PrefabGUID WaypointMenuGroup = new PrefabGUID(655551236); public static readonly PrefabGUID Weapon_Attribute_Epic_Curve = new PrefabGUID(744090183); public static readonly PrefabGUID Weapon_Attribute_Legendary_Curve = new PrefabGUID(2011003530); public static readonly PrefabGUID Weapon_Attribute_Rare_Curve = new PrefabGUID(1603558828); public static readonly PrefabGUID Weapon_Greatsword_Cyclone_Curve = new PrefabGUID(1109172226); public static readonly PrefabGUID Weapon_Greatsword_JumpAttack_Traverse = new PrefabGUID(1482042175); public static readonly PrefabGUID Weapon_Mace_Attack1_Curve = new PrefabGUID(164668379); public static readonly PrefabGUID Weapon_Mace_Attack1Charged_Curve = new PrefabGUID(1167270723); public static readonly PrefabGUID Weapon_Mace_Attack3_Curve = new PrefabGUID(-1112847329); public static readonly PrefabGUID Weapon_Mace_Attack3_YCurve = new PrefabGUID(291660901); public static readonly PrefabGUID Weapon_Scythe_Attack1_Curve = new PrefabGUID(-660938612); public static readonly PrefabGUID Weapon_Scythe_Attack3_Curve = new PrefabGUID(-1131255679); public static readonly PrefabGUID Weapon_Scythe_ChargedAttack_Curve = new PrefabGUID(1259708262); public static readonly PrefabGUID Weapon_Scythe_Secondary_Curve = new PrefabGUID(-1919866133); public static readonly PrefabGUID Weapon_ShadowDash_Melee_Cast01 = new PrefabGUID(-93687625); public static readonly PrefabGUID Weapon_Slashers_Dash = new PrefabGUID(1849859295); public static readonly PrefabGUID Weapon_Slashers_Dash_Out = new PrefabGUID(-762930876); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve = new PrefabGUID(1810070846); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve_Ilves = new PrefabGUID(-123117441); public static readonly PrefabGUID Weapon_Spear_Attack1_Curve_Ilves_Old = new PrefabGUID(-2061543206); public static readonly PrefabGUID Weapon_Spear_Attack3_Curve_Ilves = new PrefabGUID(291858847); public static readonly PrefabGUID Weapon_Spear_Attack3_Curve_Ilves_Old = new PrefabGUID(-1833504448); public static readonly PrefabGUID Weapon_Spear_Secondary_Curve = new PrefabGUID(-207774647); public static readonly PrefabGUID Weapon_Spear_ShieldSlam_Curve = new PrefabGUID(-593993436); public static readonly PrefabGUID Weapon_Spear_Stab_Curve = new PrefabGUID(643292297); public static readonly PrefabGUID Weapon_Sword_Dash_Traverse = new PrefabGUID(508402848); public static readonly PrefabGUID Weapon_SwordOneHand_Attack1_Curve = new PrefabGUID(-984295867); public static readonly PrefabGUID Weapon_SwordOneHand_Attack1_Curve_Ilves = new PrefabGUID(764098528); public static readonly PrefabGUID Weapon_SwordOneHand_Attack2_Curve = new PrefabGUID(1843150517); public static readonly PrefabGUID Weapon_SwordOneHand_Attack2_Curve_Ilves = new PrefabGUID(-798523354); public static readonly PrefabGUID Weapon_SwordOneHand_Attack3_Curve = new PrefabGUID(-931575487); public static readonly PrefabGUID Weapon_SwordOneHand_Attack3_Curve_Ilves = new PrefabGUID(734096489); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack = new PrefabGUID(-1605954107); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack02 = new PrefabGUID(1459081001); public static readonly PrefabGUID Weapon_SwordOneHand_SecondaryAttack03 = new PrefabGUID(1793512547); public static readonly PrefabGUID Weapon_SwordTwoHand_Attack_Curve = new PrefabGUID(-549776925); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Cast_Curve = new PrefabGUID(-828111338); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Cast_Curve_Secondary = new PrefabGUID(-224587273); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Rotation_Curve = new PrefabGUID(1902360004); public static readonly PrefabGUID Weapon_SwordTwoHand_Rush_Rotation_Curve_Secondary = new PrefabGUID(779760337); public static readonly PrefabGUID Weapon_Unarmed_Attack1_Curve = new PrefabGUID(569646962); public static readonly PrefabGUID Weapon_Unarmed_Attack2_Curve = new PrefabGUID(-1072306035); public static readonly PrefabGUID Weapon_Unarmed_Attack3_Curve = new PrefabGUID(707924069); public static readonly PrefabGUID Weapon_Unarmed_Secondary_Curve = new PrefabGUID(-1274009910); public static readonly PrefabGUID WeaponFadeOut_Curve = new PrefabGUID(1012873345); public static readonly PrefabGUID WeaponSkill1AdaptiveTrigger = new PrefabGUID(2114440516); public static readonly PrefabGUID WeaponSkill2AdaptiveTrigger = new PrefabGUID(-576095815); public static readonly PrefabGUID Wendigo_Emote_OnAggro_Buff = new PrefabGUID(114895810); public static readonly PrefabGUID WerewolfChieftain_Human_Emote_OnAggro_Buff = new PrefabGUID(-110322579); public static readonly PrefabGUID WerewolfCieftain_Werewolf_Emote_OnAggro_Buff = new PrefabGUID(76185835); public static readonly PrefabGUID WhiteCarpetsBuildMenuGroup01 = new PrefabGUID(-752356687); public static readonly PrefabGUID WhiteCarpetsBuildMenuGroup02 = new PrefabGUID(1954686628); public static readonly PrefabGUID Wind_Curve_Branch = new PrefabGUID(-1139995127); public static readonly PrefabGUID Wind_Curve_Edge = new PrefabGUID(-13983891); public static readonly PrefabGUID Winter_Yeti_Icicle_01_Dynamics = new PrefabGUID(416419086); public static readonly PrefabGUID Winter_Yeti_MeleeLunge_Curve = new PrefabGUID(-1811689564); public static readonly PrefabGUID Winter_Yeti_VBlood_Emote_OnAggro = new PrefabGUID(-67573563); public static readonly PrefabGUID Witch_PigTransformation_Buff = new PrefabGUID(1356064917); public static readonly PrefabGUID Witch_RatTransformation_Buff = new PrefabGUID(-1453610507); public static readonly PrefabGUID Witch_SheepTransformation_Buff = new PrefabGUID(-1995148643); public static readonly PrefabGUID Witch_ToadTransformation_Buff = new PrefabGUID(400461302); public static readonly PrefabGUID Wolf_Dash_Curve = new PrefabGUID(1023033569); public static readonly PrefabGUID WolfBoss_Bite_Curve = new PrefabGUID(943114411); public static readonly PrefabGUID WolfLeapCurve = new PrefabGUID(1053425273); public static readonly PrefabGUID WolfLeapEaseInFlatStartCurve = new PrefabGUID(524787442); public static readonly PrefabGUID WoodenCoffinBuildMenuGroup = new PrefabGUID(2049027701); public static readonly PrefabGUID WoodenCoffinRespawnCurve = new PrefabGUID(-965586227); public static readonly PrefabGUID WoodenCoffinRespawnHeightCurve = new PrefabGUID(645449367); public static readonly PrefabGUID WoodPanel01WallpaperBuildMenuGroup = new PrefabGUID(353086150); public static readonly PrefabGUID Workshop01WallpaperBuildMenuGroup = new PrefabGUID(1323608277); public static readonly PrefabGUID WorkshopBuildMenuGroup = new PrefabGUID(239833285); public static readonly PrefabGUID WorkshopFloorBuildMenuGroup = new PrefabGUID(-85451374); public static readonly PrefabGUID Workstation_BloodPress_BuildMenuGroup = new PrefabGUID(693367808); public static readonly PrefabGUID Workstation_Furnace_BuildMenuGroup = new PrefabGUID(-48011651); public static readonly PrefabGUID Workstation_Loom_BuildMenuGroup = new PrefabGUID(1431410886); public static readonly PrefabGUID Workstation_Sawmill_BuildMenuGroup = new PrefabGUID(-1947520933); public static readonly PrefabGUID Workstation_StoneCutting_BuildMenuGroup = new PrefabGUID(-126983534); public static readonly PrefabGUID Workstation_Tannery_BuildMenuGroup = new PrefabGUID(1286740297); public static readonly PrefabGUID Workstation_VerminNest_BuildMenuGroup = new PrefabGUID(931250544); public static readonly PrefabGUID WoundedVampireInitFlash = new PrefabGUID(-359808516); public static readonly PrefabGUID XP_HigherLevel_Factor = new PrefabGUID(-436895998); public static readonly PrefabGUID XP_LowerLevel_Factor = new PrefabGUID(-1316941180); public static readonly PrefabGUID XP_ProgressioLevelToEntityLevel = new PrefabGUID(-1039323471); public static readonly PrefabGUID XP_RequiedXPForLevel = new PrefabGUID(-490693028); public static readonly PrefabGUID XPDefaultCurve = new PrefabGUID(2091460851); public static readonly PrefabGUID XPResourceCurve = new PrefabGUID(2052061906); public static readonly PrefabGUID Zero = new PrefabGUID(866816844); } internal class Secrets { [JsonPropertyName("NEW_SHARED_KEY")] public string NewSharedKey { get; set; } } internal static class SecretManager { private static Secrets _secrets; static SecretManager() { LoadSecrets(); } private static void LoadSecrets() { string text = "Eclipse.Resources.secrets.json"; using Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(text) ?? throw new InvalidOperationException("Resource '" + text + "' not found in assembly."); using StreamReader streamReader = new StreamReader(stream); _secrets = JsonSerializer.Deserialize(streamReader.ReadToEnd()) ?? throw new InvalidOperationException("Failed to deserialize secrets.json."); } public static string GetNewSharedKey() { return _secrets.NewSharedKey; } } } namespace Eclipse.Resources.Localization { internal static class PrefabNames { public static readonly Dictionary _localizedNameKeys = new Dictionary { { new PrefabGUID(781586362), "87951d61-02a2-4787-a7f1-1fb02e268d1f" }, { new PrefabGUID(-178249605), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-318118264), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-1233207977), "f39a5fe4-9aa7-43da-932e-930c5267f57f" }, { new PrefabGUID(-1873605364), "f39a5fe4-9aa7-43da-932e-930c5267f57f" }, { new PrefabGUID(-1988816037), "92e82ddb-9b3e-4d16-ad2a-979ce9d133fc" }, { new PrefabGUID(-262204844), "78c4b4cd-8984-43f3-85db-eaa3226e4896" }, { new PrefabGUID(-941913536), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-554782766), "215334e1-0dd0-46ff-9955-d1d9e191e143" }, { new PrefabGUID(532033005), "9989143a-4d61-41a9-8f05-42914d732795" }, { new PrefabGUID(-1697520941), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-1913987811), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(-1242910338), "fab35570-026e-4771-8bdb-39959f60f1d5" }, { new PrefabGUID(-441408420), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(-1636801169), "490fa285-080d-4726-a26c-dc1a2ec956a3" }, { new PrefabGUID(1075465533), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-2095610608), "7d50c766-d42d-4776-9710-8db399c6af99" }, { new PrefabGUID(-258808647), "f5657ce4-4bc4-4c3c-a102-36011efe004c" }, { new PrefabGUID(-1359494169), "475e7da5-bd79-4ade-a3af-e9715b34096b" }, { new PrefabGUID(-2128818978), "8fa4faf6-d8c0-404e-8a1b-db035a0f2970" }, { new PrefabGUID(-2049321404), "3912a034-2abe-4863-b6ea-155c1e0ceff2" }, { new PrefabGUID(-309124704), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(800879747), "10727671-022a-47df-b9b8-52b0d752b6c8" }, { new PrefabGUID(759629166), "f10a7639-9181-4ac5-bf4e-f364d7c6861f" }, { new PrefabGUID(-764630320), "f5657ce4-4bc4-4c3c-a102-36011efe004c" }, { new PrefabGUID(1966590385), "343c8db1-ba2e-4717-af24-bacb11eb0f61" }, { new PrefabGUID(-1779269313), "9beff0d6-658e-4d83-aa7d-4c1e7bb9b652" }, { new PrefabGUID(-944716649), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(1646351394), "db0c5557-81bf-45fe-b7b5-6f6a74e3d4d9" }, { new PrefabGUID(930747930), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(-1634108038), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(1746537832), "5a7b548e-daf2-45bc-a9c0-9c308c171026" }, { new PrefabGUID(429323760), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-655095317), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-2036196416), "a9362a1c-ea82-427c-b27f-5aaf6d748c3c" }, { new PrefabGUID(1729390800), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-473351958), "3a8c04c7-8a01-4fa1-a617-3615e93b0314" }, { new PrefabGUID(-1952374182), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(-2013887729), "8bcc97e7-d39a-48a1-97d1-be1b408ea51d" }, { new PrefabGUID(1686577386), "3df4d93f-282b-409f-901b-2622a8f513e3" }, { new PrefabGUID(961990006), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(1850873910), "649de94d-51f9-4954-9cd5-11bdb914be0b" }, { new PrefabGUID(-1337809256), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(1040125618), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(-944318126), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(-1344118299), "fe62ac2f-0da5-4df2-9346-71cd1312e01b" }, { new PrefabGUID(-77555820), "2a5f68f2-ae3f-4aa2-96b7-04ee176b3c6c" }, { new PrefabGUID(-706178162), "0e4cf14b-aa37-42ff-8ab7-82ecdcb90d0c" }, { new PrefabGUID(-1658630722), "47f993a6-88a9-4526-ab3e-8edfc896294a" }, { new PrefabGUID(-1205777419), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(675187526), "1067d6e4-3842-4c95-8436-a2e89a95d0d9" }, { new PrefabGUID(-1370210913), "c2277fb6-895b-4d28-b828-3167aa1b1e89" }, { new PrefabGUID(1692133021), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(2015299972), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(-483235215), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(301051123), "a3eb482f-4aa7-4b29-89c9-9df83de06334" }, { new PrefabGUID(886814985), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(-105026635), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(-1558814807), "47561a8b-63d3-4586-b583-b0e3dac4a65a" }, { new PrefabGUID(1912738568), "d8441cb6-6ad1-48f3-8b05-41596aee2873" }, { new PrefabGUID(1252366498), "55244198-1130-4f99-8141-e7883593941f" }, { new PrefabGUID(1217578824), "bbb7ebe0-86a2-4243-b198-58ee1fa68dc7" }, { new PrefabGUID(-930352575), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(352247730), "490d7218-ea13-4132-bb4d-9d8268cdffec" }, { new PrefabGUID(-15390086), "f06d140b-5ace-4b9c-a045-d75ea739c945" }, { new PrefabGUID(-752418019), "fab35570-026e-4771-8bdb-39959f60f1d5" }, { new PrefabGUID(1809631067), "2d3601b5-ef04-4cee-8b26-ea190d0e65f6" }, { new PrefabGUID(-1993947781), "fe2875b6-aebd-40ca-8747-8b2a4064b2df" }, { new PrefabGUID(714007172), "e696e7a7-69b9-4272-b5eb-7413c2d96053" }, { new PrefabGUID(-1424521314), "063e6062-9996-4a54-8438-8d5285fd0315" }, { new PrefabGUID(-399521517), "dbb8880a-8378-41e3-9827-73d8a3f47712" }, { new PrefabGUID(-1721887666), "2243c416-ada1-4ca8-b8a7-f2be911a4d38" }, { new PrefabGUID(-2100321922), "8f88a8d6-a4f8-410c-9529-10cfaa53903d" }, { new PrefabGUID(417648894), "e9ec4524-1a3f-4dec-af24-ad8794c73fe0" }, { new PrefabGUID(1458279255), "4552e8ae-fe09-48da-9544-7d091ddf83f3" }, { new PrefabGUID(607559019), "33275fb2-40c5-438b-b4bf-112f20781e53" }, { new PrefabGUID(-2073081569), "75045af3-e580-4565-a790-795adad43bce" }, { new PrefabGUID(890484447), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-548847761), "4488980a-d324-40e4-9215-7e82d75a3bc9" }, { new PrefabGUID(403967307), "20273954-c7ba-4a29-9f6b-69dd2a74f708" }, { new PrefabGUID(1375804543), "6f7c03d2-efe1-4bf3-9400-e51a1773d4a3" }, { new PrefabGUID(690259405), "e48660ff-5b7a-4682-a2f5-1d5ba9ce4f37" }, { new PrefabGUID(-2020831626), "6ebd3c6d-601e-4dc1-93dc-8c82c095a36a" }, { new PrefabGUID(-1169471531), "3980e72f-1ed3-414c-b096-2faefe9710ee" }, { new PrefabGUID(-2086890414), "83fe9df5-d932-4b42-bfc2-b46bdba1f0c5" }, { new PrefabGUID(679755989), "0f4074c1-c0db-40b3-87c3-3c43426099ec" }, { new PrefabGUID(-2081286944), "8d5be7fa-77d9-4c05-85a5-fc50f20ccafa" }, { new PrefabGUID(213967097), "e7217a92-71b7-4580-916e-00c3aa0b0212" }, { new PrefabGUID(75934448), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(1561531999), "3d88a2d2-2d68-4493-b8d2-a1c35938b303" }, { new PrefabGUID(-2068145306), "15e81313-a6df-4fa6-8462-2c706f2be1bc" }, { new PrefabGUID(1322545846), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(38319072), "a2598a7d-df3f-46e2-9da4-130608e1794c" }, { new PrefabGUID(2147390246), "2913004d-a6ad-4e08-9043-c46a3dbdab0e" }, { new PrefabGUID(1395316286), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(350769859), "5427cf2d-3163-4788-8b93-dee624c093ca" }, { new PrefabGUID(-1173681254), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(835610037), "c281f62c-fd4f-46de-8008-3a6af40f7bc5" }, { new PrefabGUID(1909654697), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(862477668), "37e872e1-4aa1-4f0a-8e2e-a67883b5a645" }, { new PrefabGUID(1040245278), "253b03c7-a054-46b0-8dea-de5dca313b82" }, { new PrefabGUID(-106283194), "3d03613f-3f33-48e8-a1cf-8e83b2120a8b" }, { new PrefabGUID(1906638073), "f16f1d0b-fe0e-4087-85d1-18f9549788e3" }, { new PrefabGUID(2103989354), "9baee9b1-0e14-4b39-8b91-5f88f7436d2b" }, { new PrefabGUID(818069106), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(-570287766), "0f5bac5d-8c5e-474a-ac37-970006cdba08" }, { new PrefabGUID(-1800289670), "aa284620-98bf-4aab-bfe4-8ebecbd7586f" }, { new PrefabGUID(994654794), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(455494178), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(897635802), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-949672483), "19185f9a-8f95-4c2a-8d0a-0d48ecd1ee88" }, { new PrefabGUID(1957540013), "b99843d7-9d76-463f-b0d2-f20d51665067" }, { new PrefabGUID(1561721357), "9c517103-e50e-4e96-a0ff-20f404ad6216" }, { new PrefabGUID(1863126275), "f2c66c7b-8358-4c72-ad57-110b3c20a56b" }, { new PrefabGUID(-777417289), "998a77e8-de89-42b0-bb8f-f5a089e44794" }, { new PrefabGUID(-1718233147), "863c027a-876a-4d22-ac7c-842cfcc95546" }, { new PrefabGUID(-1750550553), "b4f9fcd3-c477-430f-9590-c104ed0cfafb" }, { new PrefabGUID(791584738), "dd60c13f-9745-4fb7-8237-a7d33996882f" }, { new PrefabGUID(1005440012), "a5873627-5e92-4f06-a1ce-f0845bfa798e" }, { new PrefabGUID(1718353003), "10737e34-1bbf-4fbc-a86e-09d046708db9" }, { new PrefabGUID(-1788912715), "26eb9db5-9521-478e-a423-6f4d4e3ceab6" }, { new PrefabGUID(-946177070), "3ae1a5e3-70f8-46f3-8611-871137c4a71d" }, { new PrefabGUID(1939500376), "b92fdcda-645b-4882-aab6-f4fdf60d0c03" }, { new PrefabGUID(-224716062), "0ae1213b-bdbc-44ea-8bb5-30ad10538c5e" }, { new PrefabGUID(1499979825), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(1474515294), "1acc031d-2b42-481e-b769-b8a82926d35c" }, { new PrefabGUID(-96701352), "6caf065c-4074-4799-96c2-c3db8a2bd8dd" }, { new PrefabGUID(742900616), "12adf0a9-9ac6-48bc-9d90-9271eda2b8df" }, { new PrefabGUID(879103343), "7a60009f-6d1f-4bf4-8986-04682dd941f1" }, { new PrefabGUID(-946597284), "3cd2a79f-bb7d-4758-9ff0-10e5f8f6432d" }, { new PrefabGUID(-1596352033), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(-491969324), "9231fd1c-9eb9-4911-8b7a-727b9fa2e9a9" }, { new PrefabGUID(937375187), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(1526542305), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-977419819), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(1942009728), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(-452767162), "9642332e-5402-42cb-a6e2-7ba9a9bce788" }, { new PrefabGUID(-513865346), "dc08a866-0368-4626-9bf7-cc116746e2a2" }, { new PrefabGUID(-1111771702), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(1204352435), "1859fa37-5901-4d53-96a7-fa3af17fbc66" }, { new PrefabGUID(-1958602686), "9c071152-af39-45b5-a91f-bd8d0eaa8baa" }, { new PrefabGUID(-836889492), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-1261118965), "7d6b2b76-d157-492f-ba64-def7f02e4d7d" }, { new PrefabGUID(-443169356), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(-1183600395), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1629804427), "7d6d6620-d92b-4c87-96d2-2877d6c9f802" }, { new PrefabGUID(1799289635), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(1691702273), "1d42edac-034c-4c88-b30d-57744842acd7" }, { new PrefabGUID(762038154), "79d60a15-d4cc-47b8-a99b-406415cee51a" }, { new PrefabGUID(140761255), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(-853559619), "47ec25dd-b454-4f50-a5bb-28c1aa4e109f" }, { new PrefabGUID(1553481703), "f8c2c850-b75c-49f4-9806-fa61711ecdc3" }, { new PrefabGUID(1227483037), "75febfe5-0af1-49de-9e72-770b9add0b12" }, { new PrefabGUID(-2099422426), "1937df4e-c37f-4982-9159-03bd43b0386d" }, { new PrefabGUID(1856338018), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(-1444759832), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-167936394), "a45f2523-4448-40c2-9f96-4f2d43ada733" }, { new PrefabGUID(1413130999), "ab479ac6-9520-4e48-b1e6-e300416c013a" }, { new PrefabGUID(-374243736), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(858598154), "311b5420-e9da-41e4-8756-40d39855c4d3" }, { new PrefabGUID(-1184863500), "6e4ad93f-6c99-43c6-93be-09b01795170a" }, { new PrefabGUID(114259912), "7669d458-b31d-441a-8be1-1a191891f805" }, { new PrefabGUID(2042311455), "95c64973-7138-41ee-852b-1c83e9ff1aa9" }, { new PrefabGUID(-1987586694), "e53d048f-ae64-4104-b6a2-87f599e2524b" }, { new PrefabGUID(538326235), "9d1b74f1-18e8-4a02-b277-8ca2480290b1" }, { new PrefabGUID(786585343), "c8886e52-be6b-4a24-b3bb-4902e819d112" }, { new PrefabGUID(199425997), "f9c04101-5d90-4604-8b30-e10f7248654d" }, { new PrefabGUID(206151993), "06a2a635-3823-432c-a375-c593552fc14b" }, { new PrefabGUID(1811913705), "782d5ee4-fbee-4d5a-96c2-b16cb47cd7d4" }, { new PrefabGUID(649637190), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(1383064284), "135a97e6-f12f-4ac6-9bdd-ec0ff3fbe0af" }, { new PrefabGUID(-1003309553), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(828271620), "b1281ab5-cd12-4ff8-be13-9b3e6b900b7a" }, { new PrefabGUID(347441899), "fe2875b6-aebd-40ca-8747-8b2a4064b2df" }, { new PrefabGUID(1067300584), "998a77e8-de89-42b0-bb8f-f5a089e44794" }, { new PrefabGUID(1452779821), "cbe46003-3396-4fe7-ad13-2c2ad402c8f4" }, { new PrefabGUID(933057100), "ecf749fd-99a0-4782-bf0d-4f5923796dfa" }, { new PrefabGUID(-571562864), "19bb2bcc-680b-4226-93c5-342e97b47953" }, { new PrefabGUID(-1321865795), "d8c23f74-8196-41bb-b6e6-7dff3cbf5947" }, { new PrefabGUID(2025615662), "8f88a8d6-a4f8-410c-9529-10cfaa53903d" }, { new PrefabGUID(1271236919), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(1279283644), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(1703128595), "f1937a08-3e92-47c5-821e-47844d6b9a27" }, { new PrefabGUID(248289327), "d1ac188b-529d-4c5b-a3ea-98cbcd681bfd" }, { new PrefabGUID(1427084419), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(-1514540144), "6055ea8e-85c2-4f3a-81e0-6f62be45e8d5" }, { new PrefabGUID(1243967840), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(1707139699), "f6d28ea5-69bb-4bd8-9a54-7d01bb3dcccf" }, { new PrefabGUID(870884715), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(-1690985210), "34f5e50c-a078-4806-b59e-4caa9bab7b4c" }, { new PrefabGUID(1954207008), "15e81313-a6df-4fa6-8462-2c706f2be1bc" }, { new PrefabGUID(1332980397), "bb6fb6cd-5125-4225-81bf-10dd69b6f16e" }, { new PrefabGUID(1110550218), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-1562867444), "ac31873a-f4ea-4beb-89c4-98a55b0d3b53" }, { new PrefabGUID(-135435342), "5f3b1386-0989-4c61-919e-b869ac3296b5" }, { new PrefabGUID(-2130812821), "0e4df7f8-cc2a-43cb-9b0e-5aac49237ece" }, { new PrefabGUID(1726420644), "8903e192-d988-43e9-bfac-00d7a67afe44" }, { new PrefabGUID(362941759), "e95ed7b8-3191-4b19-8075-005aa2474866" }, { new PrefabGUID(455638025), "289541ff-bfff-4e65-8793-c13ae329d85e" }, { new PrefabGUID(-164367832), "d7664df2-0081-4874-9ea1-38b5277b981e" }, { new PrefabGUID(-1768698241), "1826b745-07a1-4a03-bb72-95134405bd55" }, { new PrefabGUID(813370507), "ae194664-19e8-44af-aaee-389f0259d956" }, { new PrefabGUID(-1386314668), "fe60d8ec-3c0c-49ec-83c1-80ce86a78d63" }, { new PrefabGUID(1474643910), "ccbfc0e5-5b03-4a31-a2be-7fe6064e27ac" }, { new PrefabGUID(-363718499), "caf886e7-0b32-4e76-ac16-8dca0770580a" }, { new PrefabGUID(-1409142667), "0c6c571f-8005-4fbb-8741-833669d195ee" }, { new PrefabGUID(583764996), "72cdfecc-9f3e-4688-a545-72a711cc64e0" }, { new PrefabGUID(-182923609), "b4e5a6a6-bb70-406e-a9fd-19ace68c3a78" }, { new PrefabGUID(1307976528), "2ca0f200-ef8f-43c8-81bd-1f5feaee9c00" }, { new PrefabGUID(88009216), "f5f0a118-4db5-429f-8dd8-c4590878dc95" }, { new PrefabGUID(-1624411159), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(106516056), "eafdefe1-1a6e-4d19-bb9e-f6cb7f6b53ce" }, { new PrefabGUID(1105981714), "d9f91e96-e927-4d83-8b4c-15dc9eac5e99" }, { new PrefabGUID(-598100816), "9d9e8062-03a3-4104-9cd1-d79dd68525b9" }, { new PrefabGUID(-696770536), "e8d188a3-6c1c-496c-beb4-3513f2b269f8" }, { new PrefabGUID(-102830349), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(935392085), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(-1798608844), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1994084762), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(821410795), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(-1931117134), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(-27238530), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(152014105), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(362386181), "475e7da5-bd79-4ade-a3af-e9715b34096b" }, { new PrefabGUID(-38051433), "7456e21e-444c-49f1-9e41-9e0e404b55de" }, { new PrefabGUID(201124833), "b3b95a9e-b249-4eca-b1c0-8afd1ebc8808" }, { new PrefabGUID(172410251), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-322544495), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(-1269116849), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(998259069), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(1540217782), "47d8c72b-1557-4b6f-a4e4-844838dba053" }, { new PrefabGUID(1168555540), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(973763812), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(1083105737), "83b253ab-47ee-43d8-84af-c54d73de7753" }, { new PrefabGUID(189228039), "d5f850ae-492f-4728-bd95-d0388077112e" }, { new PrefabGUID(-1038642372), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(14297698), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(-1396190808), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(-20041991), "e01c9f9c-1d76-4bcd-9565-0e3540350b45" }, { new PrefabGUID(-112921782), "649de94d-51f9-4954-9cd5-11bdb914be0b" }, { new PrefabGUID(-1401104184), "87951d61-02a2-4787-a7f1-1fb02e268d1f" }, { new PrefabGUID(927039475), "3b0d06aa-66f3-4a99-a166-2a8349b14782" }, { new PrefabGUID(-152150271), "d7819f72-23ed-42cf-87f2-a72569a47630" }, { new PrefabGUID(-703021474), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(-2047402903), "beab1c27-1827-4f15-a6bf-7f3829f2463e" }, { new PrefabGUID(-63123159), "16ab8bc9-e376-4f78-a6aa-1c0c3199eb52" }, { new PrefabGUID(3759455), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(1930526079), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(-269326085), "f0303c20-d2dd-4b94-b475-c06322c47be6" }, { new PrefabGUID(1241831522), "65ee2a37-fe83-4bc7-8962-9ccdbee9f964" }, { new PrefabGUID(-1021407417), "d8bf027d-8089-4108-a14b-f1aad7909f00" }, { new PrefabGUID(-895015382), "10727671-022a-47df-b9b8-52b0d752b6c8" }, { new PrefabGUID(-1233716303), "c29a7783-4e45-42ec-b8b8-cd03fcc857db" }, { new PrefabGUID(440780337), "2cfa55b9-5bdf-49bd-8ad7-1256dea59575" }, { new PrefabGUID(-1347054873), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1448686547), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(2023809276), "db832237-02cf-4cb3-8e85-4f592774de73" }, { new PrefabGUID(552409457), "28bd1896-8001-4e19-adf0-06d2f66ab5e8" }, { new PrefabGUID(-106224889), "526ccf3b-12d8-47bc-acca-33eb917db786" }, { new PrefabGUID(444400639), "d836346f-3f6c-4101-83af-5ca4c3e575c1" }, { new PrefabGUID(-364321170), "3fb53e04-3db1-4e7e-a275-1f220d9ac70d" }, { new PrefabGUID(-257494203), "43502d5e-ed48-4dfa-8d94-6113e0a29217" }, { new PrefabGUID(-1161279574), "6f8c94aa-e1eb-4e97-9fc5-c476e7dfaf15" }, { new PrefabGUID(-227965303), "724cec43-c5e2-4373-92ab-fb4973d3dc50" }, { new PrefabGUID(-1461326411), "6951b2d2-bca1-4edc-bcf2-4f4d49e85d2d" }, { new PrefabGUID(207381334), "d1b9db98-5b22-42de-b53d-d0d26e0cd938" }, { new PrefabGUID(-293419350), "5018783f-610a-4beb-8c6a-005d6c87b11e" }, { new PrefabGUID(225530658), "44997ec6-9c82-44a7-9700-544ed3b12817" }, { new PrefabGUID(-2059886133), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(686122001), "e1b1100b-e1b0-47e3-9a92-983f71365421" }, { new PrefabGUID(-684874624), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-82465606), "69f2770d-6db6-46b1-84ff-ec2856a9fa28" }, { new PrefabGUID(685024499), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-130369231), "41b9b590-b54b-4c1e-8482-861e6128c7bb" }, { new PrefabGUID(-341717525), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-1349059251), "9922c633-fb16-40ed-8f3b-24622dc62523" }, { new PrefabGUID(-710738056), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-1607893829), "a02b568e-4ca9-4fd9-986d-6d7d2bcc64f3" }, { new PrefabGUID(1613948207), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-77477508), "e6bc05ee-45cd-4f04-bdb3-4c78327f8d1b" }, { new PrefabGUID(460843266), "490d7218-ea13-4132-bb4d-9d8268cdffec" }, { new PrefabGUID(19130904), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(615301463), "a699cdd5-b1f2-4f86-8fa2-94bde9b0b847" }, { new PrefabGUID(-228881628), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(-1755568324), "76388169-115c-4326-b834-c14f2dbddfe4" }, { new PrefabGUID(-996201260), "cb7d84d6-1c56-445a-abb7-d554125fcc41" }, { new PrefabGUID(1322254792), "60f85bb4-181c-49f7-a54e-6708e119a9f5" }, { new PrefabGUID(-1885959251), "5f1866da-9932-417d-87a7-1c9da86d67ff" }, { new PrefabGUID(-1674680373), "c8f2db21-c43d-4a5b-93ef-1b48d0e2b0c8" }, { new PrefabGUID(-1361596609), "858b0ef0-ca9d-4dc0-a22d-04c7c4032e82" }, { new PrefabGUID(1033753207), "d016c091-e9a6-470c-9ace-5b79d3efd5c0" }, { new PrefabGUID(820408138), "1c790599-be1a-4926-8b58-c82a64c84809" }, { new PrefabGUID(993033515), "1699788b-277a-444d-abdb-96544b7d76ba" }, { new PrefabGUID(1759077469), "090100a9-eae3-4147-87ec-ffd029dc649e" }, { new PrefabGUID(1428883363), "bba4e6d1-9577-43bf-83f0-b7137ef6924a" }, { new PrefabGUID(-671246832), "0f705077-9433-460e-8e2d-5fea27c1246c" }, { new PrefabGUID(-412448857), "d57885b0-f39a-4773-bfdd-b248889f7363" }, { new PrefabGUID(409678749), "9c25a284-e887-47fc-bd93-ebd4abb0075c" }, { new PrefabGUID(-2100613085), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-2139183850), "dd60c13f-9745-4fb7-8237-a7d33996882f" }, { new PrefabGUID(-1787563914), "6b950f3a-3a3b-4f79-aee1-8ff23f4ca79a" }, { new PrefabGUID(130269272), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(97169184), "e7b8deca-876a-4d73-9331-1de50c61252f" }, { new PrefabGUID(343217159), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-651642571), "e1b1100b-e1b0-47e3-9a92-983f71365421" }, { new PrefabGUID(28358550), "a49c6576-c19d-44b6-8903-305d05f98292" }, { new PrefabGUID(-312598876), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-410008482), "18d80acf-8531-4b3d-9d70-8e5149b54bdc" }, { new PrefabGUID(1128027535), "e1fcf432-0557-4c37-a196-04d199736368" }, { new PrefabGUID(-1302801575), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(1702347530), "adf6aa7f-11a6-49a7-af61-72b8c51a76f5" }, { new PrefabGUID(824237901), "2640a763-4241-4ae1-8ce7-6d9c0bf5bcae" }, { new PrefabGUID(124616797), "c8f2db21-c43d-4a5b-93ef-1b48d0e2b0c8" }, { new PrefabGUID(1915695899), "7c5e6f7a-0300-4e8c-93f0-8d418dedd4a3" }, { new PrefabGUID(-464466648), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(714743556), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(239338934), "1fceb887-408c-4a08-8c1e-9eb4a0e7cd07" }, { new PrefabGUID(-2137364987), "85e3eae8-5c23-4e35-9f41-dfaa300e162d" }, { new PrefabGUID(136740861), "ebef14a8-70da-46ae-9423-f81935351d57" }, { new PrefabGUID(1818351545), "d7cb1a52-0978-4954-a3ba-a1447cd90421" }, { new PrefabGUID(1793042384), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(-898917584), "70f39466-b4e3-4912-a15d-33084f0071bd" }, { new PrefabGUID(-1463158090), "87a2c485-5353-4d63-89c7-f5690e949d86" }, { new PrefabGUID(1851490036), "28ba5d90-52a3-484d-b2fc-5cb0ef69463e" }, { new PrefabGUID(-593608743), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(1307774440), "177619d5-90ea-4290-b0ca-1aaa425ad036" }, { new PrefabGUID(518802008), "4d8508ce-5731-49b4-8eff-1e8c7c347265" }, { new PrefabGUID(-331345186), "0c3211ba-0e89-4582-851f-8710e8e4d387" }, { new PrefabGUID(-1991977825), "6b829f31-2eea-4077-8c2e-054b02ca8353" }, { new PrefabGUID(2069171407), "9952e74b-38b1-4104-a286-d1b429174989" }, { new PrefabGUID(-543524210), "ffdcea98-c8a2-4cd1-91a6-65b62570a1f0" }, { new PrefabGUID(2130810069), "00df7a34-e4e3-43de-ad61-fd60723bc02d" }, { new PrefabGUID(1284160983), "37ecb4e2-8418-4109-846e-bbf51e89d2f5" }, { new PrefabGUID(-2101941878), "9752a383-ef67-449f-b843-62109944ba79" }, { new PrefabGUID(1150376281), "dd1f57ef-db36-46de-85a6-ca645cfcf649" }, { new PrefabGUID(-1674555897), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(271594022), "75c167c9-0101-44bf-976b-d6b142689ece" }, { new PrefabGUID(-536717606), "1641075b-fb8a-403d-9592-7b596de6d981" }, { new PrefabGUID(1566989408), "77c17939-dddf-46a8-b4c3-842d24fdc128" }, { new PrefabGUID(-1531666018), "291c32e8-d894-4ff2-8715-51ed602caa0c" }, { new PrefabGUID(1788016417), "1e3ef569-8fb6-480c-b78f-a7f80c5c408c" }, { new PrefabGUID(880699252), "b9a89e68-963d-4d8b-9c95-bb1e1a2ce0ab" }, { new PrefabGUID(-608131642), "db091b2f-12eb-4134-9818-cbc515cbe6ff" }, { new PrefabGUID(1872733144), "bd56b555-c7c6-425b-9589-70c6fcc27c7c" }, { new PrefabGUID(-1397591435), "d3d856e1-3668-4dc5-bc04-cb1ac8067178" }, { new PrefabGUID(-2043983118), "cf18c7e0-e1bc-42f9-9003-92f9f83fa9a0" }, { new PrefabGUID(-1749304196), "8f9c9cc5-f628-479f-a6f2-b5734e34b148" }, { new PrefabGUID(-305160765), "561d9397-06f0-4d89-9c78-4bd78dcacfcb" }, { new PrefabGUID(2116142390), "7452cad5-56b4-4acb-9690-8cb1199dfcaa" }, { new PrefabGUID(702067317), "dba4a883-1a00-4ccd-94d7-4e857bf8edab" }, { new PrefabGUID(-1527315816), "52ad7e7b-7ff0-44d4-8ba3-3687d2703862" }, { new PrefabGUID(576389135), "c4438986-0e5e-4cd3-be0f-bdae55dc8933" }, { new PrefabGUID(-1645899934), "ad632915-9796-4b77-bad2-2816a485e2c1" }, { new PrefabGUID(-1930402723), "7e656bc3-feef-432a-bf3c-961ea83ed21d" }, { new PrefabGUID(1570363331), "7e656bc3-feef-432a-bf3c-961ea83ed21d" }, { new PrefabGUID(-1123608041), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-1814109557), "f9163ea5-2828-4e13-8687-5496d0008b24" }, { new PrefabGUID(-117205517), "4552e8ae-fe09-48da-9544-7d091ddf83f3" }, { new PrefabGUID(-431964258), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(567413754), "bc1eab22-617e-4ed6-b9a4-ca162eb14b12" }, { new PrefabGUID(220001518), "9fbe2381-cf57-4a3f-9350-4d4536391d1e" }, { new PrefabGUID(389446538), "6c84e3f4-c8fb-48fa-a047-e788d7d1126c" }, { new PrefabGUID(-926928101), "0b528297-05e6-4664-8f00-f27bc15b740a" }, { new PrefabGUID(-1383718976), "970de4e0-d6aa-48c8-b5d1-55cc42d59137" }, { new PrefabGUID(-1222725729), "c2b45e7d-cacf-4d69-811e-1e8c98ca34ee" }, { new PrefabGUID(1334469825), "691d197a-564d-46d1-a329-ac14630e72e3" }, { new PrefabGUID(-465491217), "b181a58b-8491-42a1-888d-e04246610372" }, { new PrefabGUID(-1455388114), "64ead2e5-c972-4169-ad29-3481d79360c1" }, { new PrefabGUID(-762000259), "5ec0066a-1213-4f0b-b547-03c7859d5c38" }, { new PrefabGUID(-1130238142), "eabf9828-248b-4d0c-862a-7321913e9904" }, { new PrefabGUID(-1458997116), "05773351-6677-48f7-a7e9-e43ea55847c1" }, { new PrefabGUID(-184713893), "44381fce-ece2-4527-9ecb-a955d3ffd37b" }, { new PrefabGUID(-352704566), "3c8fe9ba-bec4-4da2-b8c5-452eb233f9be" }, { new PrefabGUID(-651878258), "1f3d42bb-0189-44dd-a085-da8be631fe17" }, { new PrefabGUID(176401052), "8a1fe020-ef4d-4f69-bc05-6af8326192a2" }, { new PrefabGUID(6711686), "2137733c-02af-41c9-8f80-3226422a5fe5" }, { new PrefabGUID(-313733383), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(633666898), "a2521eee-6420-4a07-b616-fef2c705bddf" }, { new PrefabGUID(-960205578), "50afed52-18c8-477a-84e0-e1f1fa29fc05" }, { new PrefabGUID(-1470260175), "d547666c-cb07-4109-b431-7bdcd9677580" }, { new PrefabGUID(-1402113736), "bee20477-d83f-4209-bfe5-75fc9ff192ab" }, { new PrefabGUID(-1595292245), "abe9c5c1-2361-48d8-84c0-3d6b7ea75330" }, { new PrefabGUID(-814739263), "7a3c71ee-90c6-41be-9160-80d03bc2ba6c" }, { new PrefabGUID(674407758), "90cc90c6-6264-45ce-af78-f9bc4b20f371" }, { new PrefabGUID(-1830162796), "4ba3c58d-75f4-4c7c-bc02-dea811b50d90" }, { new PrefabGUID(423790753), "915ca6cb-f339-4dbe-b3e2-850754da1aea" }, { new PrefabGUID(-211034148), "6a913c23-4a23-447b-80cb-8af8327f6206" }, { new PrefabGUID(-1573584970), "dcd8cf63-4235-435a-a583-8d70e690b82c" }, { new PrefabGUID(991396285), "86a00de5-363a-4b9a-9dde-fca29a7f85fd" }, { new PrefabGUID(1117281334), "ec4506d0-e9d2-45b0-a8a0-a6e431daba84" }, { new PrefabGUID(-1171060793), "a24ad262-d41f-4bef-8999-a7122ba96a1c" }, { new PrefabGUID(-1447213995), "1726158b-cd92-425d-895e-0286b4795d2c" }, { new PrefabGUID(-1740500585), "fa82f5ec-73e6-4d43-a11a-8ee8841ec6ba" }, { new PrefabGUID(-2104396934), "dda63ef0-8e1a-4816-b40b-4fa560ff656a" }, { new PrefabGUID(735880687), "0da25626-1455-4321-8fdf-fd9c717697f8" }, { new PrefabGUID(1302850112), "ea89c977-5e90-4c0b-9a12-d55497052b1a" }, { new PrefabGUID(902426262), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-24337506), "a4ae5668-66d6-4dac-9eda-159e0a934fbc" }, { new PrefabGUID(-170922187), "49f94711-4c07-4cb3-b99d-4f565532ef99" }, { new PrefabGUID(238268650), "9fcdc307-e5e0-4495-97db-aff20f42055f" }, { new PrefabGUID(-844537086), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(860383634), "0871f942-a155-4118-866f-c8c413dd89b9" }, { new PrefabGUID(-1840162782), "bc06b1d5-95b2-406f-977e-b37b39b30919" }, { new PrefabGUID(1520619383), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(437696083), "c122876a-2b2d-412c-9d7a-49d59b3d028a" }, { new PrefabGUID(-1703746731), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(-2125696865), "f6d737e7-b297-4b7a-8a6d-f397a3352b6a" }, { new PrefabGUID(2053574378), "1cc4751e-012a-4e7a-bc31-336c53de32bb" }, { new PrefabGUID(473545520), "00c78084-4f29-4eaf-a540-cb86c28d4312" }, { new PrefabGUID(-749171183), "991b014e-ea23-41f3-b736-297823615bae" }, { new PrefabGUID(1762839393), "0d52ba2c-0a3c-49a6-af3c-3bca095b6d86" }, { new PrefabGUID(-1289785922), "bf52fe43-9ad4-4d3d-95ca-82a1373d323a" }, { new PrefabGUID(-581757157), "5a5de7cb-b773-474e-bdc9-630d6ba6e08a" }, { new PrefabGUID(506082542), "37203186-39b8-4323-a349-4387e6d58e8c" }, { new PrefabGUID(55473000), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(223899244), "d48ebc77-726a-4c45-9828-d420903a05ea" }, { new PrefabGUID(-1593377811), "88f443ee-d66a-4532-bc64-5a12cfa28adc" }, { new PrefabGUID(-209873380), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-517906196), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(869276797), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(-922125625), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(-1276458869), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(-2060572315), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(1541522788), "90ce22a1-463d-4c8d-8581-593bb76d937a" }, { new PrefabGUID(750542699), "d6b7893c-6ba9-43ef-8af4-707b09c48446" }, { new PrefabGUID(-1242947472), "2d5590f1-43fc-4ca7-9fa1-9f57e2c550ff" }, { new PrefabGUID(2020764183), "16e0e8dc-9f5e-4f06-aaf5-21042d30aa9c" }, { new PrefabGUID(-2051574178), "85637060-9909-4f28-8d93-259321751c29" }, { new PrefabGUID(1613130430), "9707b792-9f4b-4b3d-8e55-569d26d6b49c" }, { new PrefabGUID(-222860772), "a7e02b2f-4171-4257-9148-32387cbff763" }, { new PrefabGUID(-449615886), "ad7c77bc-ba33-4ec3-9050-31711e7dbc63" }, { new PrefabGUID(-1033721040), "f33e7530-1ac3-4c8d-ba31-b5fdc18aeeb8" }, { new PrefabGUID(-796306296), "74c12753-36d5-4da9-a974-9747654c341d" }, { new PrefabGUID(-1998017941), "cc23b63d-dd8e-496e-9923-93a15c0fb609" }, { new PrefabGUID(1963988265), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(560446510), "9d88b6a4-efbd-4571-9c7e-12de69a9243b" }, { new PrefabGUID(2055058719), "f404363e-1046-440c-9e8e-905b59d7982c" }, { new PrefabGUID(-930514044), "13f5e1d9-b282-4966-9790-54eab06ba973" }, { new PrefabGUID(-1555051415), "4f9789b2-db0d-4282-9ad2-746ee2c33505" }, { new PrefabGUID(-435501075), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(198951695), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(1778128946), "ca218fea-89e9-4a87-beb0-043ffe73c52c" }, { new PrefabGUID(-276593802), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-425306671), "47f993a6-88a9-4526-ab3e-8edfc896294a" }, { new PrefabGUID(429052660), "bd3a763c-e43c-4f45-955e-f065653bd16f" }, { new PrefabGUID(1063517722), "8a272545-6718-406f-89d5-ab5c7d715395" }, { new PrefabGUID(177536500), "7bf886fd-d8e3-4fc8-9b3d-b08d07ec5d5e" }, { new PrefabGUID(-1043479168), "0b8eb8c3-e272-4ddb-8d0c-8876ad78868c" }, { new PrefabGUID(1785926321), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-383004511), "febbf9cc-c0d3-4b9a-b5c6-bd141d7a5df7" }, { new PrefabGUID(-849449432), "b6b1502a-7f57-4195-975c-2d9449d6a2fc" }, { new PrefabGUID(1014370193), "6beba5e2-f25a-49ef-8f0e-c186a80a2d04" }, { new PrefabGUID(1364444719), "1398ff59-dd05-4f94-9b15-300fde60a9f7" }, { new PrefabGUID(-1952560879), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(2114304481), "492071d4-4e4b-4e53-a7c5-841c5d61f709" }, { new PrefabGUID(1556544548), "f0303c20-d2dd-4b94-b475-c06322c47be6" }, { new PrefabGUID(492964298), "d1ac188b-529d-4c5b-a3ea-98cbcd681bfd" }, { new PrefabGUID(-996999913), "cd81705c-0140-491d-9feb-f2c0e2e47cc6" }, { new PrefabGUID(756555009), "7456e21e-444c-49f1-9e41-9e0e404b55de" }, { new PrefabGUID(978074988), "9cc1f937-ebf3-4ec6-b654-e71bfaa255f0" }, { new PrefabGUID(1479677538), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-1233700610), "2af28421-0c44-45c3-abf8-3c8a6e5fbfc5" }, { new PrefabGUID(-137886670), "91c155f6-c866-4e31-9131-f6f1f97cd56f" }, { new PrefabGUID(-1542642288), "88f72d17-e1cf-4bb6-88e0-9df5d52c8f7b" }, { new PrefabGUID(-1913800363), "ba0eb19c-23a3-4227-8be6-720fbe0aa53a" }, { new PrefabGUID(-1221174479), "ba78a518-b999-480f-bdcc-5542cc5491bc" }, { new PrefabGUID(-1205373095), "cffa2a58-6ada-4102-9de3-8b908ffe09c4" }, { new PrefabGUID(2094602185), "6dd05203-d10b-48e0-9a91-cf1999b63e4c" }, { new PrefabGUID(317317590), "496c941c-69cb-44a1-b3a1-89e2e8324613" }, { new PrefabGUID(-869864524), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(660670410), "9231fd1c-9eb9-4911-8b7a-727b9fa2e9a9" }, { new PrefabGUID(626083889), "c4f26f2b-f017-452c-a418-541fdb6a6086" }, { new PrefabGUID(-1003381140), "7e1a0d3c-e0eb-41fe-85f5-a426e9fabd49" }, { new PrefabGUID(-1455124124), "00e8b0c7-1553-4e9b-92ba-59b18b776ec3" }, { new PrefabGUID(1350548439), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(1035334240), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(320961855), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-2141642225), "4b785bd6-c907-4380-a897-6b2b9ded24fb" }, { new PrefabGUID(1340494453), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(1823379076), "2fe2ff47-6cad-4dea-b454-65bc87975cc5" }, { new PrefabGUID(948466634), "25c57d28-2a87-4671-b937-f71cbaab0309" }, { new PrefabGUID(1594270493), "5685442e-258e-40af-ae72-20083e801e83" }, { new PrefabGUID(-1042299347), "5db5a635-0691-4ce0-928a-de4a43d880eb" }, { new PrefabGUID(-1522497513), "41a8f63c-edb7-4418-bda7-62793419af17" }, { new PrefabGUID(-1390536751), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(1271087499), "1f6446ab-8f09-417d-83b5-9aa2dff92a19" }, { new PrefabGUID(213736942), "ab9c0d10-3287-4aa4-8dcf-c5fa938de06f" }, { new PrefabGUID(886819019), "157d25b3-9ca1-47d6-a639-98046893b799" }, { new PrefabGUID(-826325611), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-1844141622), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(1533847605), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(2106567892), "9fbe2381-cf57-4a3f-9350-4d4536391d1e" }, { new PrefabGUID(-774462329), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-651841188), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-204051056), "5bee13d4-cfd1-458c-ab66-38799284fefc" }, { new PrefabGUID(970650569), "492071d4-4e4b-4e53-a7c5-841c5d61f709" }, { new PrefabGUID(806031638), "739cd0e7-7805-4db7-bfc6-630ae9f58771" }, { new PrefabGUID(-2137054310), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(-2147445292), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(1259464735), "f5104b34-6c62-4d19-a181-305de954f463" }, { new PrefabGUID(526090146), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1310923765), "cbfbbf33-a706-415c-8449-e01431457610" }, { new PrefabGUID(-1012087769), "27b27ac4-c2b1-41b7-a0c6-74541b51ae60" }, { new PrefabGUID(-1397287045), "cc3ce453-48c5-40c8-8209-3030742ffa37" }, { new PrefabGUID(-2133879652), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-1578565561), "826ebdba-e5f7-4303-b172-5b6a85a042c4" }, { new PrefabGUID(1719144622), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-1061940339), "f8e3d576-6448-4b75-a4a6-1ee55a08d1ce" }, { new PrefabGUID(1908312304), "0a5c5f9b-5209-4938-b2dc-11109fa0eb3f" }, { new PrefabGUID(2134082866), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1030854657), "dc3962d8-61da-474b-a54f-6e97df442bd1" }, { new PrefabGUID(-1199531707), "6b24d813-7df2-46c6-acfb-a45f1b6141ea" }, { new PrefabGUID(-1257026088), "7584a7df-b33f-4b10-a481-7486f65e2bee" }, { new PrefabGUID(-1236809045), "ab62970d-b20f-437a-bf05-92f18e3b4ca3" }, { new PrefabGUID(-1289010178), "a9a23cdb-0232-469b-8676-751ce68e29cf" }, { new PrefabGUID(1953885108), "23424121-c0fa-46f4-8c22-1dfdf196dd20" }, { new PrefabGUID(-1190647720), "20cb3942-7604-4b0f-9107-f348fa0e4ced" }, { new PrefabGUID(519281449), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(1392314162), "f029ce8b-531a-468a-bb58-2efff454c610" }, { new PrefabGUID(157004582), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(968796494), "028bbfd2-2fbe-4f49-9308-4aff74de6d44" }, { new PrefabGUID(205207385), "ffeedf28-0c6d-4b85-b451-2adfd8ad3f10" }, { new PrefabGUID(-958936382), "3eda5a97-6c9a-415c-a0b9-5e31878d2f05" }, { new PrefabGUID(272647158), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(-744023422), "2ba9299d-73d0-4385-bc8b-93ba8f413a9b" }, { new PrefabGUID(-242277891), "bcb2a261-4f42-443a-87a1-b4ec2f1f84a1" }, { new PrefabGUID(660533034), "da64cbed-8ef1-4ab7-b6a0-c0cae0dc6fec" }, { new PrefabGUID(-2085919458), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-1929817673), "700d9931-a6c3-4aec-a684-38e23f2d1e14" }, { new PrefabGUID(1884115881), "4e304669-1f2a-4df6-a528-b3b71631b38a" }, { new PrefabGUID(608397239), "2bd93034-7020-4066-ac5f-97d00042fe3a" }, { new PrefabGUID(-1619308732), "6029af38-711d-4550-b572-64075b574feb" }, { new PrefabGUID(977816262), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(1630030026), "090100a9-eae3-4147-87ec-ffd029dc649e" }, { new PrefabGUID(-1837769884), "ebf34147-b6c2-4b31-a19b-fb010c207e28" }, { new PrefabGUID(-406808302), "5dec48d9-12fc-427e-b13b-c698b3d63006" }, { new PrefabGUID(-604941435), "a40237e8-4590-490a-9829-794a86c7c10a" }, { new PrefabGUID(12127911), "bbb7ebe0-86a2-4243-b198-58ee1fa68dc7" }, { new PrefabGUID(-567468235), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(-903587404), "3a2d7c41-1e20-453c-aa56-f48aa5b5518a" }, { new PrefabGUID(-1579575933), "7a3f0ce5-b407-4e71-bb06-c49e17bb690b" }, { new PrefabGUID(-1714012261), "357dfd3d-16a8-4f1f-b6f5-3e8abdb45c4e" }, { new PrefabGUID(1853029976), "e8c3895f-ed2b-4d14-9907-98f8444edf05" }, { new PrefabGUID(-768054337), "216f2d12-8d66-4e0c-b7a7-d0308d39dda9" }, { new PrefabGUID(606339127), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-314614708), "7aab8ec7-4782-47e8-b1cd-d58df9b538fc" }, { new PrefabGUID(-67943596), "f3102f4a-091a-4677-a12b-3e873ba96996" }, { new PrefabGUID(-847062445), "9996d0b3-1211-45eb-b6ce-03a288945274" }, { new PrefabGUID(-1333849822), "73919a4b-6467-4e63-8cc5-9366aa87d76a" }, { new PrefabGUID(-511360389), "4ba1d63d-33cc-4461-ad0b-cd24a34a9465" }, { new PrefabGUID(-1122389049), "f27aabb6-fb89-4264-b40f-773fbc027f6e" }, { new PrefabGUID(836066667), "2f5c2b73-3a14-405f-8433-e5329cb15bcd" }, { new PrefabGUID(769603740), "5a6b3971-013a-4ef5-bb00-1b6f4c817df2" }, { new PrefabGUID(-94650344), "5f7d2182-d9e3-452b-b490-4d9ed659e891" }, { new PrefabGUID(-1993708658), "8d2b6d93-9fe7-4a78-8b01-fe2a8a702fc2" }, { new PrefabGUID(1296724931), "8f484084-be8f-4eb3-b2ef-7ebf50ba8cf0" }, { new PrefabGUID(34841965), "df47bc51-1d42-4ade-83b7-c469f21b0c88" }, { new PrefabGUID(-650855520), "d607f8d2-0c0e-4eb7-aca0-810c11e52059" }, { new PrefabGUID(-261654929), "ef2db74a-9328-48c2-84f7-19abf7ddea5b" }, { new PrefabGUID(1275572025), "4bdd29b4-551b-42d8-b9bd-25eb68623432" }, { new PrefabGUID(960030104), "9024056e-bc99-4713-ba52-f2c6874acafd" }, { new PrefabGUID(-793913499), "ae3e3f14-b4cd-4002-8bee-a3ab49581faf" }, { new PrefabGUID(150621304), "7db17793-2a6d-4290-a865-96b20a990c2e" }, { new PrefabGUID(-1046748791), "0ae1213b-bdbc-44ea-8bb5-30ad10538c5e" }, { new PrefabGUID(2100090213), "2d3bc87c-e394-44f2-9968-f24f5e50416f" }, { new PrefabGUID(131015492), "e50f4966-2e1a-4202-8a4d-b616fe95c03b" }, { new PrefabGUID(2019195024), "ad330dd2-1c52-49db-91ac-81a808347b8e" }, { new PrefabGUID(-16130732), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-46006079), "59450c92-cb16-4d7c-831e-4d50e393b9cd" }, { new PrefabGUID(988417522), "2a4a5aa7-dd13-462f-81bd-1838ecd060fa" }, { new PrefabGUID(-1838793646), "9cf16903-e726-43c8-b237-10b7e9f4567b" }, { new PrefabGUID(834864259), "b3e66c75-1f29-4835-829b-cab41bec8fd8" }, { new PrefabGUID(-1583485601), "32e3bcee-8c19-4ffd-9998-5441c1faf888" }, { new PrefabGUID(-1324340002), "3edbb990-fcf8-4ed9-a4bb-57493c19dc87" }, { new PrefabGUID(-562511117), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-1564741377), "90ad9c60-8628-498c-a562-6580ca397057" }, { new PrefabGUID(1947940084), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-560146452), "2977ba91-8cf4-459c-908c-5e2634d129e1" }, { new PrefabGUID(662891042), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(502133568), "b9c1e67e-94fa-430e-ac47-1c4dfcc8c347" }, { new PrefabGUID(-1921018689), "0e4cf14b-aa37-42ff-8ab7-82ecdcb90d0c" }, { new PrefabGUID(-1752332712), "532e6391-a851-439c-a13d-febde43a6c20" }, { new PrefabGUID(-2044057823), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(-126076280), "51bba76d-36f8-46fc-ba54-bf69afb140a7" }, { new PrefabGUID(-850142339), "8e39fdff-52d2-47fd-af46-c1d0a395c950" }, { new PrefabGUID(147836723), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(-2053917766), "9a9b4c4e-0ebd-41aa-86ce-21b8b54623ff" }, { new PrefabGUID(-1777908217), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(-625033436), "a40237e8-4590-490a-9829-794a86c7c10a" }, { new PrefabGUID(-297349982), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(1389040540), "cd7dd20d-1777-41f4-9eff-aafff23d25a5" }, { new PrefabGUID(1071656850), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(1860352606), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1023762087), "e4063fce-8fee-4625-ba4e-d07ff5dc6f83" }, { new PrefabGUID(998240678), "16e0e8dc-9f5e-4f06-aaf5-21042d30aa9c" }, { new PrefabGUID(1738392650), "40a9c9bf-a3ed-49c5-bc8b-5dfbd8457556" }, { new PrefabGUID(1469185034), "9c071152-af39-45b5-a91f-bd8d0eaa8baa" }, { new PrefabGUID(-14368032), "8b23b059-fe4c-4c89-bd77-a9a9dcf57ca3" }, { new PrefabGUID(1508214166), "da42a6c9-e746-4ea7-8be5-194016c6b694" }, { new PrefabGUID(1395895315), "79dd4549-a321-469c-8a95-80fa17a89673" }, { new PrefabGUID(-1296203752), "6cf2ce06-1561-4a26-86a2-341a16b94228" }, { new PrefabGUID(551949280), "1d8b5053-9840-4e04-a609-7f77cb7ffeea" }, { new PrefabGUID(-1024379681), "cd81705c-0140-491d-9feb-f2c0e2e47cc6" }, { new PrefabGUID(2085163661), "12e91175-864b-4653-8b6b-6eb094f1bcb4" }, { new PrefabGUID(1252507075), "645eb41f-f454-40a3-880d-48941b5bd2e4" }, { new PrefabGUID(-2029933415), "3a72479b-4ddc-4413-9423-46e5fcc28a8b" }, { new PrefabGUID(-595456862), "283b0102-b216-4193-bc4a-a0d7ccc96672" }, { new PrefabGUID(-950839771), "96601a2f-2edd-441a-a0c6-2b7bac150ef0" }, { new PrefabGUID(-1803818846), "d2dfed12-2e9b-4541-b163-2fbaa3e8163f" }, { new PrefabGUID(-1166627007), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-840839363), "0484b02e-8ca9-4f80-8dad-e0c4c470622f" }, { new PrefabGUID(1913822231), "752549aa-06f5-4836-aab3-62f6e3b59a5f" }, { new PrefabGUID(926722036), "ba0da94d-60a8-4f1e-a58b-a3fe3af97c99" }, { new PrefabGUID(820932258), "ee79e1ce-ee9c-4140-a79e-b2d28a8153f3" }, { new PrefabGUID(1887724512), "05598bf6-7769-444a-8905-177546804fff" }, { new PrefabGUID(1200302278), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(-1932461974), "5e3efd44-c838-4e52-9542-ad03dca531ad" }, { new PrefabGUID(-1219959051), "00e8b0c7-1553-4e9b-92ba-59b18b776ec3" }, { new PrefabGUID(-534142437), "e4063fce-8fee-4625-ba4e-d07ff5dc6f83" }, { new PrefabGUID(343324920), "7e1a0d3c-e0eb-41fe-85f5-a426e9fabd49" }, { new PrefabGUID(763326246), "b6b1502a-7f57-4195-975c-2d9449d6a2fc" }, { new PrefabGUID(-999518496), "b3ea436a-fc5c-4cb4-b530-29790ddbb01a" }, { new PrefabGUID(-90702575), "1398ff59-dd05-4f94-9b15-300fde60a9f7" }, { new PrefabGUID(181112381), "6beba5e2-f25a-49ef-8f0e-c186a80a2d04" }, { new PrefabGUID(1101206623), "febbf9cc-c0d3-4b9a-b5c6-bd141d7a5df7" }, { new PrefabGUID(-1819786494), "fd9c9790-96f3-4b74-b305-62bd1c5ed7fc" }, { new PrefabGUID(711062517), "2b524815-ce53-4f5e-8e1e-3d5bf18c62ee" }, { new PrefabGUID(1588258447), "a5b0f9c3-430d-4c90-8704-251202778bbf" }, { new PrefabGUID(2038011836), "c4d250f2-437a-43e5-b93e-217e30587822" }, { new PrefabGUID(1244180446), "e9323c78-9ec6-4c58-b0c8-2e6e7e0e45e1" }, { new PrefabGUID(-745793193), "0b230626-a70b-4128-bc71-5b0c428bfd05" }, { new PrefabGUID(-1017402979), "3719afd2-979c-4881-9917-d079a701443c" }, { new PrefabGUID(-589858836), "994efb5d-29e4-4652-94d2-1ead98220c9e" }, { new PrefabGUID(-1805325497), "37f33a05-a18e-4445-947c-a9ccb192e984" }, { new PrefabGUID(-1907572080), "cb5cb21e-c3d1-4f5e-a7b1-2f34f2efc319" }, { new PrefabGUID(-810738866), "4248133f-011d-4c83-b2b4-0768113cdcef" }, { new PrefabGUID(1821405450), "ab479ac6-9520-4e48-b1e6-e300416c013a" }, { new PrefabGUID(1123463900), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(780044299), "950446a9-072a-4863-b7c1-aacb34d2ccf6" }, { new PrefabGUID(-958110636), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(-2091288477), "6b3abeed-4775-476f-929c-f8011018ef97" }, { new PrefabGUID(-1566269773), "3a933056-c2c4-4596-958e-5bdeb171711d" }, { new PrefabGUID(-196284663), "6cf2ce06-1561-4a26-86a2-341a16b94228" }, { new PrefabGUID(1128262258), "22e0bf5b-545f-4031-885e-230edb8010a0" }, { new PrefabGUID(805157024), "33b09f26-749b-4435-a7c8-195230aacc77" }, { new PrefabGUID(-1797796642), "a109fcac-2ab3-4192-92f6-3708ac786a07" }, { new PrefabGUID(-700774739), "3b77d47e-592c-4932-bee9-e485fbb839f9" }, { new PrefabGUID(-1150810012), "d67e26d1-37f4-46c9-add2-e4790529b8e5" }, { new PrefabGUID(-219760992), "654e1b00-7140-497d-a68d-7597c6c39894" }, { new PrefabGUID(1249076837), "9a4b122c-993b-4cef-b011-05abde5fc8b4" }, { new PrefabGUID(828432508), "faf99a30-bc16-47ba-aae1-8a0e5db8ae17" }, { new PrefabGUID(574313564), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(1370998844), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(-353076115), "78f43368-bc7c-41e5-bbf1-f0cbc4e14ced" }, { new PrefabGUID(1283345494), "563d2334-ea8d-4701-af21-0cb4a6fb5898" }, { new PrefabGUID(357608868), "7c8129e4-a804-4e01-8c62-a9dc5c531836" }, { new PrefabGUID(689272399), "4c4aa21c-43b3-45ab-9820-6d8b0628ebba" }, { new PrefabGUID(1354115931), "68a1aa32-8d7a-43fb-b71c-af14c9c754a1" }, { new PrefabGUID(-1676748911), "e3dc878e-eae2-4816-8453-45de979453a7" }, { new PrefabGUID(-1886460367), "9f9f95e7-c83c-4274-9205-2f76999181f2" }, { new PrefabGUID(1712262077), "19238e0f-740e-4a84-9c71-0ebc270ec188" }, { new PrefabGUID(1587354182), "263c135b-4a34-4cf9-9ad2-b5528ea7f300" }, { new PrefabGUID(-2066262923), "2fd499e5-2f64-4b12-9dfb-72aeddd3603c" }, { new PrefabGUID(-1090887222), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-1601295908), "9a7c1ebc-deb6-4042-8c9c-7581407b1f06" }, { new PrefabGUID(-437611596), "be3ae420-72ed-4a07-acac-d516d0287c20" }, { new PrefabGUID(101601247), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(-2136716453), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(710159072), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-1199259626), "4d2c08a1-334f-48d4-a5fe-165f54624dd5" }, { new PrefabGUID(-1818243335), "2876ee12-06fe-484f-bd06-655c3c59a2ff" }, { new PrefabGUID(-1905547794), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(1488205677), "b92bc003-e567-44ca-bfaf-cefbee0bebaa" }, { new PrefabGUID(-1024626758), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(442700150), "b2d1d3fe-ba17-4619-a3a3-2296f61f9300" }, { new PrefabGUID(1402953369), "ac468ed0-9659-4a1d-855f-c087d437ed0a" }, { new PrefabGUID(-1237019921), "58ef5c2c-ee41-4e62-8c67-7a224272e8cb" }, { new PrefabGUID(1552240197), "6cabfe46-754a-4142-b28a-504824b0a068" }, { new PrefabGUID(1126901893), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(-978856806), "918eb1b9-fcce-41fa-9037-b83cf0745f29" }, { new PrefabGUID(1223264867), "fe78ab51-b91f-4cc0-99ce-49c8146b5dab" }, { new PrefabGUID(-1413694594), "e36441c3-4503-4fca-9bbd-9e61a26f5b55" }, { new PrefabGUID(1905539368), "71a53629-8abd-42d6-87a7-6086ba1925d5" }, { new PrefabGUID(-1063966176), "3e9eb57f-57fc-4c56-b86d-f9f1d627027b" }, { new PrefabGUID(-345596442), "c930d281-a86b-47f5-8cb1-8f108eed8675" }, { new PrefabGUID(394140527), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(876293388), "554751c9-68fc-412b-9cc2-a2af569a7a57" }, { new PrefabGUID(424158416), "9b471228-780f-4239-9186-fcb8ddeaafd1" }, { new PrefabGUID(140526202), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(1387124262), "226639ab-5bf4-443b-8730-e6af9266d32b" }, { new PrefabGUID(666433583), "26eb9db5-9521-478e-a423-6f4d4e3ceab6" }, { new PrefabGUID(1172935197), "7d50c766-d42d-4776-9710-8db399c6af99" }, { new PrefabGUID(-699863795), "6c80bfd5-a0b9-45f4-975e-806db5b2ed89" }, { new PrefabGUID(447901086), "9234da8f-d502-4cc8-974c-0a2527421b02" }, { new PrefabGUID(-580716317), "666ae7cc-f3c5-4914-b76a-623033db5fe6" }, { new PrefabGUID(1779299585), "c8616346-1ed2-4a6e-beb5-e1ddc9d01ef2" }, { new PrefabGUID(-1508992859), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-2014020548), "cace9261-1b54-4d50-ae3d-dbf79d281eba" }, { new PrefabGUID(830032282), "c2f282eb-cd2f-4954-8cc9-fc6d36dc5fb9" }, { new PrefabGUID(666089763), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(-1796954295), "abf54b6f-f281-497a-8820-4d070634a6b8" }, { new PrefabGUID(-295674777), "8f9e91f1-4915-4ffa-a558-5cdbd819dc8c" }, { new PrefabGUID(1996361886), "ef3172de-b588-4237-a5e7-7a4fad3638af" }, { new PrefabGUID(-1961050884), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(215017089), "3fcf3a19-6657-4691-8aa1-1197c302115b" }, { new PrefabGUID(665418354), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(-112151309), "59494f79-9328-45db-84d2-55ecb635294a" }, { new PrefabGUID(-1785271534), "a9085a62-f6dc-40e4-b67c-4fb11f41bf3c" }, { new PrefabGUID(50824544), "88f72d17-e1cf-4bb6-88e0-9df5d52c8f7b" }, { new PrefabGUID(-1564372276), "5a81ec1a-21df-4c94-a4fd-1e6a47ed1dc0" }, { new PrefabGUID(-668460646), "f06d140b-5ace-4b9c-a045-d75ea739c945" }, { new PrefabGUID(-1783670291), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(-2102875089), "9c517103-e50e-4e96-a0ff-20f404ad6216" }, { new PrefabGUID(206495029), "863c027a-876a-4d22-ac7c-842cfcc95546" }, { new PrefabGUID(-223452038), "58053d16-1049-493b-be72-8154a11debe5" }, { new PrefabGUID(1065194820), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(82781195), "298950b2-7f7b-4ee4-9102-eafec0fc912f" }, { new PrefabGUID(866934844), "8864803d-27b2-45c1-a2b1-981dab75ae74" }, { new PrefabGUID(1840869087), "dbb8880a-8378-41e3-9827-73d8a3f47712" }, { new PrefabGUID(1393113320), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-687294429), "43a0dad4-d248-4d08-900a-2cf2e667fa2d" }, { new PrefabGUID(1748886117), "3af959f0-ee14-4bf7-a92d-f288b003f73d" }, { new PrefabGUID(-1651990235), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(-247737453), "d8106954-515d-46f1-9088-80a099f852b5" }, { new PrefabGUID(1221976097), "f51d484f-0f9b-4b2c-a5dc-6188e769d087" }, { new PrefabGUID(1850870666), "dfb946ae-169a-4d7c-9f0d-401af9ffc9df" }, { new PrefabGUID(1951565953), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(703783407), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(-1502177717), "e85a47f8-c349-4f33-8ec7-02ec0b9962c2" }, { new PrefabGUID(-1519267007), "3a00979d-912d-4c33-beef-f87dec52c085" }, { new PrefabGUID(-1329744719), "07069251-d4dd-45e8-a45b-2c47c45f00ff" }, { new PrefabGUID(-1641042717), "c4f26f2b-f017-452c-a418-541fdb6a6086" }, { new PrefabGUID(-327754127), "fe62ac2f-0da5-4df2-9346-71cd1312e01b" }, { new PrefabGUID(1042817390), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(-647547545), "c019e04f-9aff-428c-a5c3-afe3a9ebd488" }, { new PrefabGUID(51576788), "79d60a15-d4cc-47b8-a99b-406415cee51a" }, { new PrefabGUID(610958202), "1acc031d-2b42-481e-b769-b8a82926d35c" }, { new PrefabGUID(-69916288), "4537e1f8-56d2-4841-b1b4-c750ee5ebd9b" }, { new PrefabGUID(322804535), "0da25626-1455-4321-8fdf-fd9c717697f8" }, { new PrefabGUID(744344540), "d8441cb6-6ad1-48f3-8b05-41596aee2873" }, { new PrefabGUID(138060378), "b4984411-d795-4c21-9393-e5b363a260b1" }, { new PrefabGUID(889298519), "68f4f8ca-8b5a-4815-bbe8-3408eb527d7f" }, { new PrefabGUID(-2127687996), "2fd499e5-2f64-4b12-9dfb-72aeddd3603c" }, { new PrefabGUID(1247389106), "59450c92-cb16-4d7c-831e-4d50e393b9cd" }, { new PrefabGUID(-454576348), "283b0102-b216-4193-bc4a-a0d7ccc96672" }, { new PrefabGUID(-205820651), "2ff9a674-cf11-4cad-850d-4a618d26fb7d" }, { new PrefabGUID(-1922998918), "af6e96ca-f8c7-4c00-addc-aa7c8a9a26dd" }, { new PrefabGUID(-1394295910), "a8b61073-6059-4aac-b5b8-726f9f62bbf3" }, { new PrefabGUID(-36717533), "1937df4e-c37f-4982-9159-03bd43b0386d" }, { new PrefabGUID(285318201), "c29b211a-5cd5-4f83-ba9c-b2af2382375a" }, { new PrefabGUID(-11246506), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(1272855317), "1c790599-be1a-4926-8b58-c82a64c84809" }, { new PrefabGUID(1753801067), "2d3601b5-ef04-4cee-8b26-ea190d0e65f6" }, { new PrefabGUID(1413772406), "ed7f3af4-ab32-4b1f-b2e1-e6b9c080ad2a" }, { new PrefabGUID(2107622409), "7ccbf212-f3de-4d1b-93d1-4f1e90211712" }, { new PrefabGUID(1381699867), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1226559814), "b9ebd761-349b-485d-987e-00772ded4b88" }, { new PrefabGUID(-1793793429), "c8053c20-62cc-4218-bd97-62657333cde7" }, { new PrefabGUID(1499160417), "5b4da24e-53b6-474e-91d0-c54159d1b145" }, { new PrefabGUID(-1897495615), "014330b9-06d2-4a6f-afdb-5145c93c8c87" }, { new PrefabGUID(-2035190786), "98864279-123d-4b7d-9948-9e7c9989c9e9" }, { new PrefabGUID(531984050), "4196d5de-1eff-4950-be07-84013a7fb347" }, { new PrefabGUID(1985892973), "5e76e327-f275-4fe2-a8d4-77d10bf59cf8" }, { new PrefabGUID(-1645974345), "a318f705-b651-4f05-93b4-ff354b0948ba" }, { new PrefabGUID(-911541799), "4d1c40e0-b38d-40ed-afeb-6edbf34563df" }, { new PrefabGUID(776216743), "d5326dcc-0b27-42c3-83e9-ce27b3b80060" }, { new PrefabGUID(489001758), "df77fd9d-7d13-4991-8c78-c5fea2c6c6e4" }, { new PrefabGUID(764480170), "9c25a284-e887-47fc-bd93-ebd4abb0075c" }, { new PrefabGUID(1755478077), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(1055898174), "feeecdb3-f41b-46d9-b368-38b6923d552e" }, { new PrefabGUID(271061481), "c93c1bff-9972-4db6-b683-8b780feebdbe" }, { new PrefabGUID(125611165), "75ac912e-6631-4746-a009-7a6d8cdedd50" }, { new PrefabGUID(-204401621), "e3240d8c-0ff5-49f3-84c1-be2ac309def2" }, { new PrefabGUID(-1322000172), "b8c6c3a6-309b-4e55-bdf5-cca5861a2d96" }, { new PrefabGUID(1400688919), "98137b0a-c750-4b38-808b-79897f151cb8" }, { new PrefabGUID(-2017255390), "255722ad-8e0e-4000-be76-85dba4c89158" }, { new PrefabGUID(282707515), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(759775881), "82f4aebb-2b7a-4e56-95bb-82d1d063e71a" }, { new PrefabGUID(1519475093), "1cfed3cf-1052-4ef1-93e9-bce624427062" }, { new PrefabGUID(-832387204), "33584318-3948-4309-9022-940b0ef63ea7" }, { new PrefabGUID(1522792650), "91df3a93-5672-46dd-8a63-3e193e6dfe27" }, { new PrefabGUID(1364460757), "7309750d-6b8f-4bd3-a7ec-d4a5337f6cff" }, { new PrefabGUID(-107137497), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-114411609), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-588909332), "23c172a7-b919-4dcf-b715-319f2498e2ef" }, { new PrefabGUID(1529216919), "07069251-d4dd-45e8-a45b-2c47c45f00ff" }, { new PrefabGUID(1592149279), "a3895a00-8e38-4ad6-a268-bab2eb920e9b" }, { new PrefabGUID(-1793846754), "c00133a2-2c65-4d74-a457-c8b63ccbbee8" }, { new PrefabGUID(-1209228232), "35eddf7b-975d-48c4-b86c-bdf20573485f" }, { new PrefabGUID(-168044197), "8af97552-3d45-4cda-8b53-d61e48fa985c" }, { new PrefabGUID(1370755976), "747e3ef3-e937-4c5a-95b2-522ffbd29966" }, { new PrefabGUID(28625845), "7ee186e1-8375-492c-b6a6-80db48ae2ffc" }, { new PrefabGUID(1247086852), "2a66b27c-3a1a-49a0-996e-b15ab82083bf" }, { new PrefabGUID(-2117279191), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(-147757377), "18f67f1f-dba2-4089-bede-8b8a2c939000" }, { new PrefabGUID(-1624005683), "0d558768-982d-4474-ad1e-faef091c18ca" }, { new PrefabGUID(-1563178470), "52328bb4-5fed-4c42-9925-60cc267778c7" }, { new PrefabGUID(-1979905169), "2b5a1ef6-5df7-416b-be14-d23fa0a65399" }, { new PrefabGUID(1177597629), "21d227ba-e193-48a9-ac0a-40da97bbda16" }, { new PrefabGUID(-1957642407), "5dab7987-cef9-42af-8ee9-e2f7d3893e42" }, { new PrefabGUID(-390381611), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(2065714452), "33d1bcfe-f6f3-4f4f-ba41-b0a9c49c851d" }, { new PrefabGUID(-749764415), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-152327780), "bf60bde8-e0c9-473e-8f4d-e8ec60ab8e6f" }, { new PrefabGUID(98952351), "c646e168-097c-4d5b-b5d1-4670c2b5cf41" }, { new PrefabGUID(67930804), "e5d62e4a-033d-4865-9221-200b9e3f7eb2" }, { new PrefabGUID(-1206629745), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(1410262258), "00fb82db-2142-4b57-8be4-fd7974d203b7" }, { new PrefabGUID(1277476884), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-860388090), "fb13a989-cbed-4476-9055-c2583d028482" }, { new PrefabGUID(898159697), "551f1fde-2a7a-46e8-afdb-7cf33fcc2dfd" }, { new PrefabGUID(-1530254765), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(-2037272000), "2f331141-f3aa-406a-8e52-87b03da6ddc0" }, { new PrefabGUID(1270271716), "1aceb43d-1fb7-45f6-a256-3c13be1130ce" }, { new PrefabGUID(-1624770558), "dae4b9e2-e2e8-46e8-bd69-5fc678858451" }, { new PrefabGUID(730869315), "92463350-1d10-4d0b-8615-e8d45465cdb4" }, { new PrefabGUID(-1382451936), "7f733022-b33d-4079-ba8d-de2aba95d720" }, { new PrefabGUID(-2134499162), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(2012771684), "0cd3dd26-aebd-4402-b0de-f51030ddc4de" }, { new PrefabGUID(-314251399), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(1336896559), "ab42274a-3deb-4b7a-8e49-55f383f2163e" }, { new PrefabGUID(-1927784576), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(-269336230), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(-652069131), "188d06be-1258-4971-956c-5fb5bece3810" }, { new PrefabGUID(2061238391), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(1717016192), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(1490846791), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(285875674), "24d64df6-3497-4c5f-a5c7-ba3601963f3a" }, { new PrefabGUID(-2137269775), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-655493979), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(2029158532), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1766731531), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(160471982), "11d3aaa3-b9ca-4a7d-afa9-a295efd1da49" }, { new PrefabGUID(-189270614), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(-1513121786), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(341837267), "5427cf2d-3163-4788-8b93-dee624c093ca" }, { new PrefabGUID(738473666), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-41686151), "a0c37cba-fc9b-44b0-8e63-6004f0cfbc9f" }, { new PrefabGUID(-626353315), "23394150-bc5e-44f6-ac07-70aa03262488" }, { new PrefabGUID(674704033), "f73f4063-f034-4127-85a4-5030e33e863b" }, { new PrefabGUID(-1743584975), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(-1638796801), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(855691699), "3ab54827-0cb5-4977-9071-660933803495" }, { new PrefabGUID(540608060), "b8ddaab7-1d44-4821-97b5-cf94a4a4ffac" }, { new PrefabGUID(1479621167), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(1186268870), "650d7cc0-8f16-4268-8a6a-23024e41f7bc" }, { new PrefabGUID(-457986654), "39b3cbaf-8c58-4542-a53f-2c2af4cc1366" }, { new PrefabGUID(-809059551), "5018783f-610a-4beb-8c6a-005d6c87b11e" }, { new PrefabGUID(-1034273124), "8498441f-be9f-4970-80d3-039cd47ede7e" }, { new PrefabGUID(765693103), "775d7528-9a98-4dfd-b12d-5a2fa0c85bfe" }, { new PrefabGUID(814603706), "b7a0e7e7-25ac-48fb-b51e-c2a820e93ed1" }, { new PrefabGUID(-1381982890), "019d86b9-d17f-468e-9231-1ce8f8a99907" }, { new PrefabGUID(1658596502), "b5ea7d52-bcd8-4faa-a628-e95a2fb62c2b" }, { new PrefabGUID(-766642494), "0d1d420b-e239-4a64-9f3e-42f822d4197a" }, { new PrefabGUID(904226111), "eb9e0ed1-5c27-4f8b-b428-f7c515e2c366" }, { new PrefabGUID(-262414476), "8949a1b0-843d-42dc-9c77-e19afda7151e" }, { new PrefabGUID(2000981302), "d0665e24-33f0-4e35-97cb-d120c9c36310" }, { new PrefabGUID(896678280), "fe9669f2-af0c-41d3-8d50-ce490c3adf88" }, { new PrefabGUID(2063723255), "6c60e6b8-2274-445d-85ea-d7f48811ed13" }, { new PrefabGUID(-1190496962), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(-1180115034), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1412786604), "ff3ffc1e-4cdd-44c3-9212-182a3d266fc5" }, { new PrefabGUID(-556391992), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1177453385), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1183157751), "33b7db27-9939-4972-b9d7-543c3fc9490f" }, { new PrefabGUID(947998050), "06368b5d-cc87-41e2-a74f-02f3b152115d" }, { new PrefabGUID(-957963240), "22ddab9c-995d-441a-8cfb-4a2c45874652" }, { new PrefabGUID(-338333923), "30548a69-8a99-47b3-b3cf-147357d05433" }, { new PrefabGUID(-1871776321), "8783ba9f-56d2-455b-8083-ce840f5e2ede" }, { new PrefabGUID(1925394440), "cad7a3a5-a110-40d3-8a6a-485f1b719976" }, { new PrefabGUID(-1588051702), "96723844-c5dd-4f41-80d0-733de1161666" }, { new PrefabGUID(1112619884), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1123282909), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(1637216050), "253c69a6-7a28-475e-8530-bf5f4ac89df8" }, { new PrefabGUID(517296275), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(1192629421), "79dd4549-a321-469c-8a95-80fa17a89673" }, { new PrefabGUID(1579758125), "2a3f9679-fa40-4175-baac-c6da20611618" }, { new PrefabGUID(-1513937321), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-1260254082), "a7e02b2f-4171-4257-9148-32387cbff763" }, { new PrefabGUID(-1416449755), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1314569175), "2be08eb9-734a-4e51-8e44-deb49acc4b23" }, { new PrefabGUID(-1823614190), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(-915028618), "1067d6e4-3842-4c95-8436-a2e89a95d0d9" }, { new PrefabGUID(675013523), "f14ff669-2b71-40da-89a6-e8b416899c29" }, { new PrefabGUID(639992282), "a29045ba-e8f5-4699-abb4-f090c067cc6d" }, { new PrefabGUID(-349470582), "2f1d9a90-05fd-43ac-8403-4d4c07d4e1be" }, { new PrefabGUID(-1696677607), "3bbc42d5-4ca1-4374-8da8-00b42dd77102" }, { new PrefabGUID(-1715039285), "076cd345-4513-420a-9c32-96d94e25a8e6" }, { new PrefabGUID(1458090717), "6e4ad93f-6c99-43c6-93be-09b01795170a" }, { new PrefabGUID(-1748835106), "3170100c-ffb7-4b90-9890-9fd59aeb060f" }, { new PrefabGUID(594180030), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(1261174372), "5bbeb25e-706c-4713-a23f-90bad9094048" }, { new PrefabGUID(1677983904), "5afd9112-b03d-4fea-9117-f978076743a8" }, { new PrefabGUID(-1023114892), "edad94ea-ba8f-4a96-945a-aa873117967f" }, { new PrefabGUID(1814558673), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(584164197), "8cbe99a6-c5f9-40ce-bebb-d58067d6a6ad" }, { new PrefabGUID(-1067360120), "ce45f05e-e816-4aa1-97a7-14551ac9ad47" }, { new PrefabGUID(821609569), "9898d06d-1af1-44ea-8fd9-bb6f91d9ee59" }, { new PrefabGUID(155899991), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(1485993952), "532e6391-a851-439c-a13d-febde43a6c20" }, { new PrefabGUID(2099198078), "fdfbf969-6575-43bd-93eb-1a305277a480" }, { new PrefabGUID(1239564213), "fdfbf969-6575-43bd-93eb-1a305277a480" }, { new PrefabGUID(1262845777), "1f18296c-74fe-4804-977c-817288d6c504" }, { new PrefabGUID(-2081646636), "7f5b86f6-359a-4b76-b1f9-8bce63553e2e" }, { new PrefabGUID(1046366876), "0c4452a1-3d0e-4006-85eb-10784a119031" }, { new PrefabGUID(724428437), "9306bd23-7a5c-41cc-a947-2da60ef1b0b0" }, { new PrefabGUID(-1962855117), "edf435e4-b55a-4195-933d-e995b3b8d789" }, { new PrefabGUID(1253216070), "5e3c8cfa-7d84-45ba-b068-d1371872ab46" }, { new PrefabGUID(1705028227), "90a9c457-e37a-4138-8db9-7880f90962f4" }, { new PrefabGUID(-237441421), "9b0a2d7c-6292-4807-b15b-d41ef12dd7a0" }, { new PrefabGUID(1898237421), "3f5e7661-9962-46bb-a26a-498b9b70a6a4" }, { new PrefabGUID(-1129708579), "3588c90c-9fb6-4a84-9f7b-08a153ecd968" }, { new PrefabGUID(802050789), "2fe28708-e7a7-4e81-ab62-a06d7cea58d1" }, { new PrefabGUID(-1963826510), "31c69f4a-0623-477a-beed-b57062181570" }, { new PrefabGUID(287586809), "279f3de5-b398-4461-aad5-74a05c1a8079" }, { new PrefabGUID(51046573), "ae7de705-825d-44d8-b4af-60da6226a927" }, { new PrefabGUID(-1147920398), "e727e45f-ffa3-468d-90e3-5050ca7bf05b" }, { new PrefabGUID(-2111388989), "bdb1c09c-d248-4c22-a0f6-8ee893e00cf0" }, { new PrefabGUID(-2020212226), "441f9638-01db-406f-8f6b-2799983ec420" }, { new PrefabGUID(867351268), "288e46d8-1679-4e1d-8aa8-e711df208957" }, { new PrefabGUID(-2118441460), "e656d37b-0932-43b0-8e79-dcd94b7e3796" }, { new PrefabGUID(-1983566585), "be0dcda4-89ae-4e33-b122-9b8913682d80" }, { new PrefabGUID(803445709), "568ca320-a756-45b2-ad46-6ff7dbf00dbd" }, { new PrefabGUID(-1913156733), "550eacac-2abc-42c5-aa42-cb8cd3fbb0c1" }, { new PrefabGUID(90716564), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(-1147510581), "b4984411-d795-4c21-9393-e5b363a260b1" }, { new PrefabGUID(-1681104075), "8c7d76d1-a803-4eb7-a8a2-b4c3ebc4af47" }, { new PrefabGUID(-1177172544), "b4dcae09-cc7b-428c-99ac-71936600da0b" }, { new PrefabGUID(1557814269), "49418d0f-1cd5-400c-b9a4-e317421d4ca6" }, { new PrefabGUID(1355823667), "df016dab-57fc-4f18-b5a0-d0574cd914ae" }, { new PrefabGUID(269771183), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(336922685), "ba0eb19c-23a3-4227-8be6-720fbe0aa53a" }, { new PrefabGUID(-886916793), "cbfbbf33-a706-415c-8449-e01431457610" }, { new PrefabGUID(918613164), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-213056154), "80c1ba60-7d7c-4bf6-808e-de50a7aedea8" }, { new PrefabGUID(1012837641), "82f4aebb-2b7a-4e56-95bb-82d1d063e71a" }, { new PrefabGUID(-651554566), "b92fdcda-645b-4882-aab6-f4fdf60d0c03" }, { new PrefabGUID(1655869633), "4e77a4af-348e-41d0-88ae-ecbe993d3fa6" }, { new PrefabGUID(-21943750), "ad330dd2-1c52-49db-91ac-81a808347b8e" }, { new PrefabGUID(1286615355), "870b62bb-37e1-4433-ac05-0c29775507af" }, { new PrefabGUID(-1581189572), "6029af38-711d-4550-b572-64075b574feb" }, { new PrefabGUID(666638454), "e2fcee98-60ca-462e-98e6-45278ca603f6" }, { new PrefabGUID(-1601304786), "1859fa37-5901-4d53-96a7-fa3af17fbc66" }, { new PrefabGUID(-305440546), "594821cb-8073-4547-99a6-5534dd6edc31" }, { new PrefabGUID(-1870194782), "69108690-82d1-4bf8-9f13-9665f608569e" }, { new PrefabGUID(-811840389), "8209b039-1be2-4cc9-a4ad-3f1fc595f75b" }, { new PrefabGUID(-455117097), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(2115367516), "3f39d6b3-bed6-41b7-8554-cdd8e91261cf" }, { new PrefabGUID(-749828559), "3f3f1544-433e-4d2a-b451-7b24152a07db" }, { new PrefabGUID(541321301), "2d5590f1-43fc-4ca7-9fa1-9f57e2c550ff" }, { new PrefabGUID(722498174), "e841ae68-7d42-4a52-a2c6-2b8b7544bbd5" }, { new PrefabGUID(-1260890289), "ec923170-8ee0-4eb2-bd11-6b021705c09f" }, { new PrefabGUID(1031107636), "f21f54d0-d0f8-4d8f-99ef-1ea2c83282dc" }, { new PrefabGUID(1216450741), "1a5b153b-30ad-46c2-8a70-bc4bcf66c0f3" }, { new PrefabGUID(-1568756102), "8bcc97e7-d39a-48a1-97d1-be1b408ea51d" }, { new PrefabGUID(-1723445833), "c5918d69-f70b-4eec-bba3-646a99767276" }, { new PrefabGUID(1510182325), "52328bb4-5fed-4c42-9925-60cc267778c7" }, { new PrefabGUID(725607617), "24467697-f830-410e-8080-4e0939511cda" }, { new PrefabGUID(-2102469163), "01c373de-a20a-46b3-ac19-415511b08499" }, { new PrefabGUID(-1561468105), "05f6c0c1-fde7-44c0-bf37-4a5d5c182063" }, { new PrefabGUID(177845365), "853c5842-49f0-4615-9b4f-c0dc2ee201b5" }, { new PrefabGUID(-1265586439), "5a6b3971-013a-4ef5-bb00-1b6f4c817df2" }, { new PrefabGUID(188653143), "a23f6af7-6850-4958-9f28-6cccd8d4d849" }, { new PrefabGUID(-656822228), "e95ed7b8-3191-4b19-8075-005aa2474866" }, { new PrefabGUID(-1304625582), "13075df2-60e2-4e14-8f18-752117ddbe22" }, { new PrefabGUID(2075997018), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(-1766408331), "ea89c977-5e90-4c0b-9a12-d55497052b1a" }, { new PrefabGUID(329301090), "a5f44102-5d96-4056-8516-b806b9f51a69" }, { new PrefabGUID(1328680870), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-1215982687), "69f65350-b775-4c1d-a7ec-e48e283d7a8b" }, { new PrefabGUID(1048518929), "1461ff73-af32-46fd-8916-1f14126fe141" }, { new PrefabGUID(-1277074895), "842612e9-dccd-4836-a30e-f972bd0f5384" }, { new PrefabGUID(1780339680), "2724087a-06c6-4d33-80d7-3e00f95121be" }, { new PrefabGUID(-1027710236), "294790bb-b4a1-4ad3-8d22-8537e37d3475" }, { new PrefabGUID(1501868129), "13dda5db-1dd2-4020-b1bd-c1a53a0bdac9" }, { new PrefabGUID(572026243), "7573c724-b6ee-4b47-add3-cff3ce2d11d1" }, { new PrefabGUID(747911021), "ef559449-7c2a-4d62-a1f4-05f2b13008d5" }, { new PrefabGUID(-413259500), "3b34e31f-6da6-48c0-b550-1fd71872ab64" }, { new PrefabGUID(-1421775051), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(-1075670534), "37b5ce1c-9a39-44a1-925f-e117981a0a78" }, { new PrefabGUID(-2039337521), "9244c448-4238-4704-b763-b297fb3d51ad" }, { new PrefabGUID(-1746159915), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(1855323424), "3ba8607c-6b94-4c9b-aef8-5e67d5667103" }, { new PrefabGUID(-1826382550), "d29f54a3-8848-4c44-82e9-5bbdd76f9865" }, { new PrefabGUID(1455590675), "dd1f57ef-db36-46de-85a6-ca645cfcf649" }, { new PrefabGUID(1335546377), "a698ebd9-8804-40fe-a06f-a42696688470" }, { new PrefabGUID(1871735757), "b9c1e67e-94fa-430e-ac47-1c4dfcc8c347" }, { new PrefabGUID(-262114802), "ec923170-8ee0-4eb2-bd11-6b021705c09f" }, { new PrefabGUID(1646489863), "ccb61bff-e798-425c-9ea4-5731983fe31f" }, { new PrefabGUID(-1279475298), "7d6b2b76-d157-492f-ba64-def7f02e4d7d" }, { new PrefabGUID(1039083725), "b05680d0-a76d-496a-8f9f-d6f7b38313b6" }, { new PrefabGUID(1725419936), "f235ea4c-d65d-434e-960d-ed833bbdb922" }, { new PrefabGUID(-1385786654), "cb7d84d6-1c56-445a-abb7-d554125fcc41" }, { new PrefabGUID(1531721602), "978cdc55-8e64-43f2-b416-cc94af89aed6" }, { new PrefabGUID(-919709436), "bc06b1d5-95b2-406f-977e-b37b39b30919" }, { new PrefabGUID(-1899539896), "5a2d0ef5-0d5b-4728-a180-d629f047bdca" }, { new PrefabGUID(-1305686817), "88639c52-ccec-4af0-aeda-e82018cfa5e5" }, { new PrefabGUID(703230071), "3912a034-2abe-4863-b6ea-155c1e0ceff2" }, { new PrefabGUID(-340571020), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-382349289), "1c452b9b-e332-4eb4-93d9-251f50d9e49c" }, { new PrefabGUID(750788905), "6f8c94aa-e1eb-4e97-9fc5-c476e7dfaf15" }, { new PrefabGUID(1982551454), "aac41dfb-5b9e-4e01-b97a-8fd62aebd6c6" }, { new PrefabGUID(1401940772), "adcd3fc2-c7e8-4d48-b254-bfe1dcf371b8" }, { new PrefabGUID(-481041545), "dda63ef0-8e1a-4816-b40b-4fa560ff656a" }, { new PrefabGUID(-181179773), "c82c1885-792c-4d1c-928c-530948e34195" }, { new PrefabGUID(-104934480), "3e9eb57f-57fc-4c56-b86d-f9f1d627027b" }, { new PrefabGUID(-175650376), "0871f942-a155-4118-866f-c8c413dd89b9" }, { new PrefabGUID(1380368392), "991b014e-ea23-41f3-b736-297823615bae" }, { new PrefabGUID(-1306155896), "d2dfed12-2e9b-4541-b163-2fbaa3e8163f" }, { new PrefabGUID(-296161379), "adf6aa7f-11a6-49a7-af61-72b8c51a76f5" }, { new PrefabGUID(-1004351840), "063e6062-9996-4a54-8438-8d5285fd0315" }, { new PrefabGUID(379281083), "186ec0bb-fd46-451b-8272-3e4bc1446d0a" }, { new PrefabGUID(626118128), "eb1c50c3-ece4-4ca6-9ab9-6a9e36780827" }, { new PrefabGUID(-786493143), "8b38b801-0f12-4e6f-a1d6-2c4226e0915b" }, { new PrefabGUID(-192381912), "490fa285-080d-4726-a26c-dc1a2ec956a3" }, { new PrefabGUID(11798247), "9eb589a7-0adf-4f14-87ca-6434e64c6bb4" }, { new PrefabGUID(2142983740), "387bc0ae-2710-40e5-b731-f1b1f1d6c035" }, { new PrefabGUID(2001389164), "3cb936cf-b0da-40dd-977d-e504f083ad0b" }, { new PrefabGUID(790210443), "34f5e50c-a078-4806-b59e-4caa9bab7b4c" }, { new PrefabGUID(-1495639636), "2388ee67-fce1-4c99-a67f-1e0f6ad136fa" }, { new PrefabGUID(421203343), "6b1f9009-a972-4f10-9c7a-f402e95b1b36" }, { new PrefabGUID(-173571027), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(-1958888844), "42b4f584-96af-4443-b837-bd0a2a01339b" }, { new PrefabGUID(-1617671082), "c0b92cd6-27f8-4865-a8cf-aa08ad319e60" }, { new PrefabGUID(-830893351), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(182214837), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1801132968), "4af06f01-a089-4760-bc94-1b17df1f4277" }, { new PrefabGUID(-859437190), "4af06f01-a089-4760-bc94-1b17df1f4277" }, { new PrefabGUID(-1642545082), "05ba86ad-6e7e-4304-bd70-7b27c8afa236" }, { new PrefabGUID(-149778795), "2202baf6-4c24-4397-a479-b586e389d425" }, { new PrefabGUID(736318803), "d701bf3a-477b-45a1-b85d-501aee8fa300" }, { new PrefabGUID(-1845443712), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(-1810734832), "94ee38ce-166e-4a0e-8448-3189bd94e8c3" }, { new PrefabGUID(2106123809), "2a868d94-433a-4db6-8a00-7e53fa6cf07c" }, { new PrefabGUID(1328323768), "a1eb25e8-9d1a-41f5-b571-14de8e95b06c" }, { new PrefabGUID(1532551951), "bbc94234-a490-43e3-a68d-4fda323ea415" }, { new PrefabGUID(707710831), "05ba8c57-60d1-4266-bfae-ad893e5c4fbe" }, { new PrefabGUID(-1460281233), "1004b0ad-d178-4200-9bd2-5fbec7f7b027" }, { new PrefabGUID(-953253466), "4d2c08a1-334f-48d4-a5fe-165f54624dd5" }, { new PrefabGUID(1102277512), "91f1da75-63bd-42a6-bce0-cd05ad6714e0" }, { new PrefabGUID(-557203874), "91f1da75-63bd-42a6-bce0-cd05ad6714e0" }, { new PrefabGUID(-585346267), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(-996555621), "67ff4595-ba8f-49e0-98f5-cf73ecc8d96d" }, { new PrefabGUID(-535477182), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1071187362), "b25b3f08-e539-45e3-a68f-f97d9a78cdf3" }, { new PrefabGUID(-1270904319), "48800890-58b6-4f5e-abe5-243440b1caa5" }, { new PrefabGUID(974739126), "a9085a62-f6dc-40e4-b67c-4fb11f41bf3c" }, { new PrefabGUID(-1965958712), "f37b93cf-9552-48a7-9ffb-7cd6caf9411c" }, { new PrefabGUID(950358400), "0f705077-9433-460e-8e2d-5fea27c1246c" }, { new PrefabGUID(-1391446205), "249208b3-ae5c-4ff9-87a2-0e21b0c855e1" }, { new PrefabGUID(-1255119436), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(74811721), "c9f51ca4-f6b2-4135-8573-d0538d1b8dee" }, { new PrefabGUID(680112231), "a1eb25e8-9d1a-41f5-b571-14de8e95b06c" }, { new PrefabGUID(-1595316636), "4537e1f8-56d2-4841-b1b4-c750ee5ebd9b" }, { new PrefabGUID(-456161884), "a14a3a8f-b9ae-42cc-a12a-9eed45e00330" }, { new PrefabGUID(1341367867), "1283cd9e-3341-4a95-a54a-3e92fe406401" }, { new PrefabGUID(-113436752), "52ff05e8-b0e7-40b9-acd5-dbfc6aaf7d48" }, { new PrefabGUID(1075994038), "11032e5f-3d52-49f8-964f-96f8d202f3a0" }, { new PrefabGUID(-1060453249), "fa88255c-3e92-4794-ab6e-f01110e8423d" }, { new PrefabGUID(-2054797612), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(1881059081), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(-928330249), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(665184248), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(587164554), "f9c04101-5d90-4604-8b30-e10f7248654d" }, { new PrefabGUID(-1222824286), "80a22c4b-c4bd-4115-857c-f87a6ecdd7ee" }, { new PrefabGUID(1705984031), "722c2d9e-5965-4054-b822-79151d5d097c" }, { new PrefabGUID(-1214309698), "aa96636c-24ca-4e30-b39a-c116791aa452" }, { new PrefabGUID(-1354920908), "a3a394b7-c3d7-4aa0-a722-8f5416620f90" }, { new PrefabGUID(601169005), "cc3ce453-48c5-40c8-8209-3030742ffa37" }, { new PrefabGUID(193249843), "9e9dbcf8-70c3-435f-b861-fe7847fd13f4" }, { new PrefabGUID(1729289046), "f16cd7f0-91af-462c-b4d0-6fa854b9ad27" }, { new PrefabGUID(1048769481), "cc55519f-6b7d-4a95-a5bd-a81f08bd4872" }, { new PrefabGUID(195858450), "53932c04-d589-4945-b773-5740744163cd" }, { new PrefabGUID(-1512099553), "da42a6c9-e746-4ea7-8be5-194016c6b694" }, { new PrefabGUID(1388962120), "283db06a-cad2-40d5-830f-b2d750a8e64d" }, { new PrefabGUID(300582272), "ac41a471-9a40-44e8-96ac-1b1af0020550" }, { new PrefabGUID(447918373), "a964d349-95cb-46aa-9bec-6cc87cfdae99" }, { new PrefabGUID(804798592), "3c44a269-7d2d-4e54-91b8-3a15e31bcb4b" }, { new PrefabGUID(-1620185637), "68c204d3-478f-49b7-a593-31c44268c9fe" }, { new PrefabGUID(524822543), "dac22958-9052-4880-8d89-dcd23199b489" }, { new PrefabGUID(1821108694), "aea6c49b-e6cf-4e01-a36e-5e2495e500a3" }, { new PrefabGUID(1476452791), "2e5ea006-44fd-459b-9407-691ae09bed68" }, { new PrefabGUID(-516976528), "9d38057b-6e76-4b9c-a835-5e1b1622a1ac" }, { new PrefabGUID(-1776904174), "da1df76b-1645-4a11-8af4-6d2b2ac6a32c" }, { new PrefabGUID(1328126535), "20287638-a68b-458f-8ebb-d272e808cd04" }, { new PrefabGUID(-338774148), "ecbf2193-1aa5-4663-ad52-3651b4c3dee5" }, { new PrefabGUID(-1382693416), "f24eb71b-3be2-4240-b414-d7566e22286d" }, { new PrefabGUID(910644396), "cfe242ac-953c-4532-bad6-21900583dde1" }, { new PrefabGUID(2010023718), "eba6112f-1f51-45f1-acea-b9a4d2d8f6b9" }, { new PrefabGUID(1876501183), "cf7a713e-2bbd-4b6c-862d-26093655a700" }, { new PrefabGUID(-1203529515), "963f74a8-1f1b-4161-84b5-eacc9bab91c2" }, { new PrefabGUID(2131080437), "9f8a8856-d919-4fb9-8bac-1b69d9aa7744" }, { new PrefabGUID(1192126406), "05e80e5e-bfba-4fd2-943e-f957c46d3324" }, { new PrefabGUID(1783352458), "41809193-42c6-419f-ba43-6a3b31d1b7f2" }, { new PrefabGUID(-581098863), "432ae9bd-47b9-49fe-927d-a8361725d2f8" }, { new PrefabGUID(-1872940151), "51cfccca-7bfd-4e47-a235-aac8c228306a" }, { new PrefabGUID(321841627), "0ba2f8ff-f91d-41ba-93a5-1e9b7ac5e12e" }, { new PrefabGUID(944031787), "0a9903a2-b034-4589-851e-a350c39637f6" }, { new PrefabGUID(1154316853), "539a64f6-954b-41dd-8b40-af144b4634ea" }, { new PrefabGUID(-1203333778), "f32bf8bc-7564-4094-87e3-cc62549aa299" }, { new PrefabGUID(750222285), "47117c96-3c0b-4243-bb35-daac679261fa" }, { new PrefabGUID(-1891230577), "37c7ea60-50f6-4350-bc78-4861eee491d4" }, { new PrefabGUID(-1849014216), "bb36d2e5-0dd5-499c-a08e-cb294d3a52b0" }, { new PrefabGUID(-928087973), "2b7be3e8-44c1-42ff-a065-9271b7833b18" }, { new PrefabGUID(917424779), "8f5b7730-44f3-4475-a46d-3dc6183d9d97" }, { new PrefabGUID(-802591385), "47117c96-3c0b-4243-bb35-daac679261fa" }, { new PrefabGUID(1868620532), "99f0feb2-468d-4933-85b2-ebed1fa217ed" }, { new PrefabGUID(-1223353367), "83962ffd-0779-4b44-ab80-1ea2a0b507eb" }, { new PrefabGUID(1823472841), "963f74a8-1f1b-4161-84b5-eacc9bab91c2" }, { new PrefabGUID(-2002168845), "17a4f57f-d71c-4f31-92ea-2c32c7999535" }, { new PrefabGUID(415888609), "527938e5-fbba-416e-a9a8-deb7816cbb91" }, { new PrefabGUID(-544486556), "f2c0376e-7618-4b8c-b704-07e4ea709b4e" }, { new PrefabGUID(-1190354298), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-1936575244), "15da3e2d-6b6b-49d4-b386-8e4fddd434b4" }, { new PrefabGUID(-1942352521), "fb3e731a-933b-4ff8-b5ef-ae1aa49d711b" }, { new PrefabGUID(-84975023), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(414648299), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(1304434816), "824b3ae5-1cc3-49a2-afff-df61741cca06" }, { new PrefabGUID(-322293503), "824b3ae5-1cc3-49a2-afff-df61741cca06" }, { new PrefabGUID(577478542), "886eb898-df5a-460d-8525-04251a5ed23d" }, { new PrefabGUID(-164116132), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-872078546), "fac7c366-d818-404d-9c23-6c701e883111" }, { new PrefabGUID(-1363137425), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(1706319681), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(468179469), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(24378719), "a9c38cae-4d12-44dd-b1d8-876b905baae2" }, { new PrefabGUID(-864975423), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1106602776), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(-1671572471), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1576267559), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-81727312), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1505705712), "7f5102ec-fa0d-449d-82c0-b1b29621109d" }, { new PrefabGUID(1405099312), "3fcf3a19-6657-4691-8aa1-1197c302115b" }, { new PrefabGUID(-2114140065), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(51737727), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(1239832946), "18a391fa-5963-48eb-a6df-380275178de9" }, { new PrefabGUID(613251918), "6d8b0943-47ab-49a7-8420-46a46fb4624b" }, { new PrefabGUID(-392776091), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(-65981941), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(805231073), "846528ce-861c-4516-8260-5d8147fd7c1a" }, { new PrefabGUID(-2013903325), "846528ce-861c-4516-8260-5d8147fd7c1a" }, { new PrefabGUID(-1562098554), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-38041784), "ff1c75d1-856a-415e-a6b4-f2d4a510be26" }, { new PrefabGUID(1635780151), "d8addf40-d23b-43bf-83fb-fd8ea2cc8cef" }, { new PrefabGUID(1069072707), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-943858353), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(820492683), "dae1a235-da83-4d83-a38b-26abd7e6433e" }, { new PrefabGUID(-935560085), "7e2db9cc-0801-4554-9cb7-b4bafa5caad2" }, { new PrefabGUID(96544496), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(1092792896), "03823ca1-7877-4238-bb89-55bec935b1eb" }, { new PrefabGUID(-1287013240), "8a8deaeb-048c-4c14-8d69-61fdebb357e3" }, { new PrefabGUID(-1381375644), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1554428547), "4de457e7-8680-475d-bd1e-e894839feca4" }, { new PrefabGUID(-1794508086), "3fb53e04-3db1-4e7e-a275-1f220d9ac70d" }, { new PrefabGUID(-1140588645), "aac57eea-19d9-4617-9415-306f095212af" }, { new PrefabGUID(981369753), "aac57eea-19d9-4617-9415-306f095212af" }, { new PrefabGUID(-1653554504), "55244198-1130-4f99-8141-e7883593941f" }, { new PrefabGUID(2112911542), "b923ebbc-2437-4f85-ad42-8e28d8dbbe9e" }, { new PrefabGUID(-779411607), "64b907b8-06de-4ccf-ad5b-561185692f09" }, { new PrefabGUID(2018586909), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1192403515), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1168705805), "68eb266c-017b-4d8f-9b46-cd0d24dd242c" }, { new PrefabGUID(-1761137820), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1610391169), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(326378955), "846da9a8-95af-458f-9e07-d504c69917b9" }, { new PrefabGUID(571929806), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-755774482), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(1743532914), "f782e217-dc37-44c1-9a76-c049076eba1c" }, { new PrefabGUID(-1438710930), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1074322242), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1788957652), "007a016d-022b-4079-9ea5-3ad7ac990819" }, { new PrefabGUID(1924724671), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(722671522), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(-19416663), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(826666431), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(1395549638), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(-1925881340), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1157537604), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(407967118), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1750347680), "eb7b70b3-ca59-48ff-8d2d-5150a0ca7641" }, { new PrefabGUID(57255106), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(814083983), "bbcdac34-dbd1-4e96-86c7-02d685972271" }, { new PrefabGUID(-2020619708), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1117581429), "42395e0c-b8ec-4291-aa38-4b6db70497ce" }, { new PrefabGUID(1938756250), "5c238aab-5c9d-4ae2-bd29-83f10b67c441" }, { new PrefabGUID(-1588337666), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-383158562), "bbce82bb-53a9-4f4c-9d96-9d122be0a5fc" }, { new PrefabGUID(1250474035), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(1604500740), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(1866779672), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(2055824593), "fe54c061-22c4-4658-8744-9988d963886e" }, { new PrefabGUID(173259239), "5111a5b4-42b2-4230-9018-94f9acf00a16" }, { new PrefabGUID(452018442), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(304726480), "0d93bdc6-977f-4289-913f-7c79c6b54e0f" }, { new PrefabGUID(1144208724), "5f496043-6f81-4478-8f62-e80d17aeda56" }, { new PrefabGUID(-669027288), "97be4833-aa7e-4253-a6e7-ed2d0e3d472e" }, { new PrefabGUID(1635167941), "4440fe99-a8d9-45db-8869-ef292e5f4f53" }, { new PrefabGUID(1809382006), "abe68942-0436-4804-b09b-6fd4d25e6f34" }, { new PrefabGUID(-1388651766), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(1527640414), "60f98f04-8e41-40ef-90f2-bc274442107c" }, { new PrefabGUID(1318855899), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1124739990), "850d90b2-fcac-4988-bbeb-6b9e327ad036" }, { new PrefabGUID(20817667), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(-1810631919), "5289293b-888a-4da1-8ecc-a09b05af03df" }, { new PrefabGUID(470753758), "587d4289-25ed-4f03-b084-bf1b7d53861f" }, { new PrefabGUID(1502148822), "5c6975cc-d0d8-45b1-b4b8-2cf2f5d31b21" }, { new PrefabGUID(-1076780215), "5c6975cc-d0d8-45b1-b4b8-2cf2f5d31b21" }, { new PrefabGUID(-1082044089), "4da6a4a1-e3df-4bf3-b388-bf70c1f803b6" }, { new PrefabGUID(-775762125), "dae1a235-da83-4d83-a38b-26abd7e6433e" }, { new PrefabGUID(2049379982), "3b172886-827b-4abb-bcd6-7c0b076e71c3" }, { new PrefabGUID(-653348998), "2d4e6885-7094-4cfc-8b75-e37c5e300605" }, { new PrefabGUID(763796308), "5d401243-595e-41da-a1c6-c86a75bc109f" }, { new PrefabGUID(1107541186), "53d256de-fa52-4157-9f7a-bc9d65d63d8b" }, { new PrefabGUID(-443327719), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1733829912), "740edb57-0a6c-4919-b70f-906cdc3544bb" }, { new PrefabGUID(-572568236), "a98cc88d-fb88-488d-a75d-deb2d6b6024d" }, { new PrefabGUID(763273073), "033181b8-c4ce-4ea8-bea4-45420555e4b4" }, { new PrefabGUID(1209580976), "a8bd510a-f877-4a1b-acaf-1c776a36282b" }, { new PrefabGUID(-1859852856), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(2111003460), "121eb14b-3e78-464d-9f01-0a464264f1b4" }, { new PrefabGUID(-494298686), "97e2f3e6-554e-43ae-b3e9-c543c3562bf4" }, { new PrefabGUID(1864177126), "9432cd54-b5b8-45b3-b5b9-b3f457356f93" }, { new PrefabGUID(-427888732), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1101874342), "c5c0bcf8-6a58-457e-ab06-e9e16035b9ad" }, { new PrefabGUID(-327335305), "d4c423dd-de78-4652-8e07-aea40e51f4ec" }, { new PrefabGUID(281572043), "bcf8aff4-f6e4-4f91-8c17-34fb5db544cd" }, { new PrefabGUID(1185952775), "bbce82bb-53a9-4f4c-9d96-9d122be0a5fc" }, { new PrefabGUID(-1373413273), "a4631f74-f77e-4bc7-a70a-59d803d0418c" }, { new PrefabGUID(-1200074387), "f934dde1-cc86-49d3-840b-789cb28a9cce" }, { new PrefabGUID(1980594081), "f934dde1-cc86-49d3-840b-789cb28a9cce" }, { new PrefabGUID(114912615), "de6bdc63-562d-4441-ac1a-9e5456ea4629" }, { new PrefabGUID(-436956599), "e1568a29-022b-4083-9edf-d5a131b3c5e5" }, { new PrefabGUID(-671059374), "d2cde96f-3f2b-4df6-9e76-6043583fa79d" }, { new PrefabGUID(1050151632), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(761646020), "d9d28939-23b5-4f91-b53a-1fde1c33f4fd" }, { new PrefabGUID(-2080231735), "1b3f612e-ecad-4d55-a9b3-3c533c64da6e" }, { new PrefabGUID(1912966420), "1b3f612e-ecad-4d55-a9b3-3c533c64da6e" }, { new PrefabGUID(1494126678), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-29797003), "df33d822-c589-4c09-a91e-ec3e0f28eafd" }, { new PrefabGUID(-268935837), "4ab538c5-1fc5-4dc5-bb46-da3ab0f5b3ce" }, { new PrefabGUID(1148936156), "4ab538c5-1fc5-4dc5-bb46-da3ab0f5b3ce" }, { new PrefabGUID(-823557242), "c65a3c63-f098-427c-97e0-a8617766bf6b" }, { new PrefabGUID(1787640747), "70d20e57-6ffa-4a1d-94f6-035f5918cc4a" }, { new PrefabGUID(-303396552), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(616274140), "1df1f8a0-28d7-4486-ab41-f9af77d4eed0" }, { new PrefabGUID(-1418430647), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(106480588), "59af5689-73bc-49cc-ae20-d893a65ecb2b" }, { new PrefabGUID(-981051151), "300b37b3-ce8f-46f9-ae3f-fd99f643f536" }, { new PrefabGUID(-1009917656), "300b37b3-ce8f-46f9-ae3f-fd99f643f536" }, { new PrefabGUID(407089231), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(232701971), "fe70732a-70a1-4b78-be1f-127d5975729c" }, { new PrefabGUID(-575831311), "50fb6eb0-87fa-435e-b04e-6c3b5309c0cb" }, { new PrefabGUID(336560131), "7e1a0761-1a1a-4766-9de1-4638156b5970" }, { new PrefabGUID(-1055380229), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(593505050), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-138006205), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(-2039670689), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-444945115), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(1426964824), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-2018710724), "eb79e083-eedc-46c6-92d6-d8c412414680" }, { new PrefabGUID(1745498602), "695bd903-bead-4502-80ad-a21b927d332c" }, { new PrefabGUID(-55245645), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1099451233), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(1626314708), "1f842f41-ebb2-4e69-b985-2f709c3bc9bf" }, { new PrefabGUID(2041915372), "333f832e-3733-4aa3-9c07-7f655846fcdd" }, { new PrefabGUID(280858720), "1a23435b-2543-48d0-802e-396b2d5708c3" }, { new PrefabGUID(-259591573), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-1099047820), "121eb14b-3e78-464d-9f01-0a464264f1b4" }, { new PrefabGUID(-1988959460), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(924132254), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-767167590), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-393555055), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-1697944553), "a3bd3baf-94d4-4461-a21e-cdb82401520c" }, { new PrefabGUID(1043643344), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(1106149033), "98b27507-db6e-494b-9499-04a896c687da" }, { new PrefabGUID(986768339), "be4df1b1-ca7d-4c89-b987-c5ec25adaa32" }, { new PrefabGUID(-442412464), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(-240536861), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(-1584807109), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(-2046268156), "52925a56-73db-484d-b666-ba37d72bc3fe" }, { new PrefabGUID(769065062), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-924080115), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(1728773109), "0e744db8-6d01-4076-9d25-1745c28ef97f" }, { new PrefabGUID(1780171587), "2cd45895-6936-4af4-9e20-881662101f82" }, { new PrefabGUID(1897056612), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-450600397), "100df82f-664f-43bf-a93b-3a9b166c97d8" }, { new PrefabGUID(-1128238456), "100df82f-664f-43bf-a93b-3a9b166c97d8" }, { new PrefabGUID(1462269123), "973ecdc8-18b3-4b72-807e-b77fbb012d55" }, { new PrefabGUID(-910296704), "a2fd6eb4-9553-4fa3-9553-b7e3e3ba06a7" }, { new PrefabGUID(-99012450), "460f5eef-29f9-4bab-a9b8-6541b24c99aa" }, { new PrefabGUID(-1365627158), "7300a627-2547-4597-9b80-885b0828cc64" }, { new PrefabGUID(855721879), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(729746981), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-218175217), "aee0ed29-9fb8-423b-b892-21678e0dda34" }, { new PrefabGUID(666177656), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(55100532), "d6cd23b4-5603-4583-b266-75a117b6222d" }, { new PrefabGUID(-372256748), "159932ac-ce5d-46f2-ae29-f81651fa11d1" }, { new PrefabGUID(-2072914343), "159932ac-ce5d-46f2-ae29-f81651fa11d1" }, { new PrefabGUID(-1108748448), "e1568a29-022b-4083-9edf-d5a131b3c5e5" }, { new PrefabGUID(1029047051), "ceef770a-9352-45be-aa5e-2e6d62dfb690" }, { new PrefabGUID(-221278041), "d38d2b28-155b-45b4-949d-1b73cf40c933" }, { new PrefabGUID(-559819989), "635ade35-3edc-45aa-b649-bc9e79534aa0" }, { new PrefabGUID(-75106506), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-364183632), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-2089362645), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(17367048), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(-930333806), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(172235178), "53d5aebb-d82b-4a94-a070-2d79d42a5760" }, { new PrefabGUID(-884401089), "782e1cab-f8b4-4372-80d8-2f7b7a9a4739" }, { new PrefabGUID(-1025552087), "3fdbf0fc-8e64-4d6c-9112-23cf690a398b" }, { new PrefabGUID(823276204), "3fdbf0fc-8e64-4d6c-9112-23cf690a398b" }, { new PrefabGUID(-195077008), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(597386568), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(803219139), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(572729167), "9393226f-bef6-46a6-b80f-8a6bc25592c1" }, { new PrefabGUID(1224283123), "1bb6aadb-6c36-43aa-bb65-3ce185a3b76d" }, { new PrefabGUID(-1172003904), "2805ac56-5074-4bf1-a026-4df29da2e7ea" }, { new PrefabGUID(-878541676), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(731857280), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-548489519), "22ffd45f-259a-47a5-95fe-1d8d7849323d" }, { new PrefabGUID(-2110724275), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(-799718518), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-614820237), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1072754152), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(1105583702), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(891705701), "0653dbae-dadf-40aa-a096-3745a3780514" }, { new PrefabGUID(1078424589), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(342127250), "5574a8a4-b349-42f1-a87b-15d865f22515" }, { new PrefabGUID(910988233), "3b5a9d1b-1f50-4d07-ad71-0204d54680ba" }, { new PrefabGUID(-779632831), "49de252b-d142-412f-ac46-3d54b6a6dad2" }, { new PrefabGUID(-1618703048), "ec81d147-6172-4757-a4c5-b88ee49aac31" }, { new PrefabGUID(-1914181232), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(-1266036232), "38f60026-3576-4817-8f91-86b3f1f9b4ae" }, { new PrefabGUID(-1799461404), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-235172198), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(343833814), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-740796338), "3578461a-547d-4223-b4d6-1af8491dfdc8" }, { new PrefabGUID(-375258845), "d378419c-dfbe-45ba-9bc7-bb7e31b7012f" }, { new PrefabGUID(1496810447), "52fd9e33-298b-4f4c-af5b-efe3faa91ba7" }, { new PrefabGUID(1906807803), "9432cd54-b5b8-45b3-b5b9-b3f457356f93" }, { new PrefabGUID(1476543271), "1222ad09-0185-4d18-822a-bb4fcf7a31fd" }, { new PrefabGUID(194933933), "d8c8a097-23fe-4c16-b893-fe5e09a3342e" }, { new PrefabGUID(658578725), "5a7cfcb6-f268-4ccd-ac69-504619bb8645" }, { new PrefabGUID(2097040330), "f7950d49-516f-4b3b-8cd1-159f4b2dd4ca" }, { new PrefabGUID(-831097925), "49de252b-d142-412f-ac46-3d54b6a6dad2" }, { new PrefabGUID(-2086433846), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-1832935107), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(17609984), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1779239433), "c60c38c3-23de-4c53-9391-51b5290fd865" }, { new PrefabGUID(302393064), "d2629c2b-7276-4de5-a52c-44ad8fb3ee50" }, { new PrefabGUID(-1115032717), "df47bc51-1d42-4ade-83b7-c469f21b0c88" }, { new PrefabGUID(-1380216646), "46ceaedf-193b-42f1-9da0-92cd2fdc92c2" }, { new PrefabGUID(-1075824048), "3f1dada3-dbf3-48fe-9bff-6b214a797a30" }, { new PrefabGUID(-694328454), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(794228023), "aad74bfa-aff1-4a05-a7a1-fb0e62259f5d" }, { new PrefabGUID(-1034892278), "a6f71258-5d9f-45b1-afdb-9cc23830260d" }, { new PrefabGUID(-825299465), "a6f71258-5d9f-45b1-afdb-9cc23830260d" }, { new PrefabGUID(-18289884), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(1767714956), "6a81594f-0aa1-4319-be37-75da6bb2b794" }, { new PrefabGUID(-54072010), "cbe46003-3396-4fe7-ad13-2c2ad402c8f4" }, { new PrefabGUID(-56441915), "1bcfb112-b568-4742-9925-c45beb5b12de" }, { new PrefabGUID(-1884553416), "a685f11b-064e-4f26-bbbe-9e4b7b44c91e" }, { new PrefabGUID(-370708253), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(1772451421), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(153561250), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(1631713257), "419d4222-f813-4d96-ac40-a0eb9abb2b3c" }, { new PrefabGUID(-1070366200), "a81889b6-54a7-4025-86c8-d0e308deda55" }, { new PrefabGUID(1732477970), "a81889b6-54a7-4025-86c8-d0e308deda55" }, { new PrefabGUID(192241915), "bdab1ee9-b540-4211-b1a6-516342d2da79" }, { new PrefabGUID(-2039908510), "3b0d06aa-66f3-4a99-a166-2a8349b14782" }, { new PrefabGUID(-784265984), "99039d80-5a98-4686-b44e-9cc13ce0d457" }, { new PrefabGUID(1479720323), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(-1433235567), "106257f9-0a09-4d97-ae2e-e703aa683d84" }, { new PrefabGUID(2054432370), "1f842f41-ebb2-4e69-b985-2f709c3bc9bf" }, { new PrefabGUID(2090982759), "27a5471c-d0fc-410a-a4a6-bcc7785e0b83" }, { new PrefabGUID(1451256919), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-1722278689), "e7217a92-71b7-4580-916e-00c3aa0b0212" }, { new PrefabGUID(-1089337069), "46805a4c-7249-4a9e-aa4a-72e635ceecdc" }, { new PrefabGUID(332296669), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-198252716), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(2145471156), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(134039094), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(1406266284), "948cd904-dc34-440c-a2e1-56704e73641f" }, { new PrefabGUID(1112903312), "2f428da9-f7e3-4e2d-8ecb-40c23d780aa1" }, { new PrefabGUID(-1659842473), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(-893091615), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(2036785949), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-2092104425), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-63435588), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(-2075236675), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1327926350), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(937597711), "ae34e53c-de67-4f77-9ffd-a8ed33489824" }, { new PrefabGUID(1640311129), "ae34e53c-de67-4f77-9ffd-a8ed33489824" }, { new PrefabGUID(673647636), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(850622034), "e7644bef-0106-4ee5-9dec-e07daf4737a8" }, { new PrefabGUID(-1342764880), "89e4ece4-4776-44ba-a0e7-d8f6dccaddb2" }, { new PrefabGUID(-1669199769), "a7fabc15-6e38-440e-815c-8220cc5b05d5" }, { new PrefabGUID(343676339), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(-1399273168), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(478580792), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1906792990), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(-625375348), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(-1508046438), "b185e956-b54a-43e8-81f4-df2baec1ae30" }, { new PrefabGUID(721166952), "4440fe99-a8d9-45db-8869-ef292e5f4f53" }, { new PrefabGUID(-1391546313), "7b7b7478-a726-4b8e-a02a-59d839593d4d" }, { new PrefabGUID(345283594), "0d3540df-e2d1-42bc-be08-5975b5f4f6e0" }, { new PrefabGUID(-558928562), "abe68942-0436-4804-b09b-6fd4d25e6f34" }, { new PrefabGUID(-2037006512), "59494f79-9328-45db-84d2-55ecb635294a" }, { new PrefabGUID(-1719944550), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(2128996433), "4717a3eb-fbd9-413c-9caa-90ce1e20100d" }, { new PrefabGUID(1218339832), "5f00d99d-eac3-4bd3-af94-8e2ddc1de955" }, { new PrefabGUID(849891426), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(516718373), "89e4ece4-4776-44ba-a0e7-d8f6dccaddb2" }, { new PrefabGUID(1233988687), "590ff5f7-b82f-47cc-9545-57e2b33996c6" }, { new PrefabGUID(-1967480038), "78294744-3ea9-4768-be41-3a85832212cc" }, { new PrefabGUID(153390636), "0404cf9d-9b94-43e2-afa1-c125ecdda2de" }, { new PrefabGUID(-932793458), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-76116724), "cc08d478-85e6-4107-b917-388ed3442b30" }, { new PrefabGUID(-1737346940), "dda35e16-2a66-4faf-ac5e-5825aa8157f8" }, { new PrefabGUID(-915182578), "4c841f64-06a7-41f8-bf7a-dc9c067bc4f0" }, { new PrefabGUID(-1722506709), "b99fe1c7-b3d8-4abc-8763-79192892aee0" }, { new PrefabGUID(1727426580), "f4de612b-ceba-443a-b659-eaf4a674a0c4" }, { new PrefabGUID(1971653132), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(-1786031969), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-2025921616), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1416355128), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(-1875351031), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(2079933370), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(1688478381), "198d311b-92db-4b67-9c39-bfdec509b75b" }, { new PrefabGUID(1466015976), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(38526109), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-1917548708), "69f2770d-6db6-46b1-84ff-ec2856a9fa28" }, { new PrefabGUID(685266977), "a52b8c47-9562-4119-b3c6-62213e43048b" }, { new PrefabGUID(-1928607398), "cc08d478-85e6-4107-b917-388ed3442b30" }, { new PrefabGUID(-143994147), "aec2c905-e4a3-4883-8a9f-92a3e3f688e0" }, { new PrefabGUID(-203043163), "ba73c4c9-c890-4a32-a589-8e061b011773" }, { new PrefabGUID(-1387838833), "b2cccf82-f497-4278-bb87-9b72c5492d1f" }, { new PrefabGUID(2005508157), "e04cc728-70c2-4293-bcb7-6628ded0c34d" }, { new PrefabGUID(-1846851895), "d8addf40-d23b-43bf-83fb-fd8ea2cc8cef" }, { new PrefabGUID(-126478565), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-1682746393), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(-1587402408), "201f12cc-0def-49b2-8f53-3f617d6f506a" }, { new PrefabGUID(847893333), "fe70732a-70a1-4b78-be1f-127d5975729c" }, { new PrefabGUID(1896428751), "83409624-6b4e-4a09-97cb-5dd633d811e2" }, { new PrefabGUID(575918722), "ff1c75d1-856a-415e-a6b4-f2d4a510be26" }, { new PrefabGUID(326501064), "4cbbde3d-9b0d-45a2-90f7-17b7b3795960" }, { new PrefabGUID(-1670130821), "106257f9-0a09-4d97-ae2e-e703aa683d84" }, { new PrefabGUID(1990744594), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1213645419), "a34f55e7-91b8-43f6-9e73-a45eb11b3844" }, { new PrefabGUID(1401026468), "a34f55e7-91b8-43f6-9e73-a45eb11b3844" }, { new PrefabGUID(-915884427), "2071206a-75b8-43c2-9d20-26df6335db81" }, { new PrefabGUID(426583055), "2071206a-75b8-43c2-9d20-26df6335db81" }, { new PrefabGUID(1684831595), "ec81d147-6172-4757-a4c5-b88ee49aac31" }, { new PrefabGUID(1254601307), "e3a817b1-c662-4543-ba43-6688f75bcc7d" }, { new PrefabGUID(-1383529374), "e3a817b1-c662-4543-ba43-6688f75bcc7d" }, { new PrefabGUID(-744966291), "cd082b7b-9ef7-4cb6-a967-961662337098" }, { new PrefabGUID(1900336326), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1531777139), "8a8deaeb-048c-4c14-8d69-61fdebb357e3" }, { new PrefabGUID(48283616), "f782e217-dc37-44c1-9a76-c049076eba1c" }, { new PrefabGUID(834333879), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(-764515001), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(213173421), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1703325932), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(1193263017), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(956965183), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-26105228), "9277b654-8567-49b5-8ec6-1e63aeb0184b" }, { new PrefabGUID(37713289), "be4df1b1-ca7d-4c89-b987-c5ec25adaa32" }, { new PrefabGUID(-1464869978), "5f00d99d-eac3-4bd3-af94-8e2ddc1de955" }, { new PrefabGUID(1532829342), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(2136899683), "e4d0168f-dc4a-42e0-9c5e-d5c00c5acf2e" }, { new PrefabGUID(128488545), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-989493184), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-1365931036), "fefef080-eb6a-49e1-bb2d-ab2b744751a0" }, { new PrefabGUID(-1502865710), "c9778d76-70f0-41ca-bbba-f4b92679669c" }, { new PrefabGUID(203103783), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(2103131615), "c5449422-89a3-43cd-a914-562002edab1c" }, { new PrefabGUID(2142021685), "4cbbde3d-9b0d-45a2-90f7-17b7b3795960" }, { new PrefabGUID(-1420322422), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-2025101517), "9163ff1b-1784-461c-9867-a2eaecb9e9bb" }, { new PrefabGUID(1730498275), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(-1395711815), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(565869317), "373240ae-1ef6-4ef4-ad5e-d7c10000fd54" }, { new PrefabGUID(-293507834), "373240ae-1ef6-4ef4-ad5e-d7c10000fd54" }, { new PrefabGUID(-1915060856), "60f98f04-8e41-40ef-90f2-bc274442107c" }, { new PrefabGUID(-680831417), "2fc6d543-b4ef-46fc-acc8-a3cb3378e498" }, { new PrefabGUID(-1789347076), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(1112948824), "7fee9abd-d1cc-4a3b-b1a6-deb8d3fd3dac" }, { new PrefabGUID(1687896942), "b8172b76-29af-4fac-b79a-0da82c903272" }, { new PrefabGUID(374565592), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1719333743), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-1084690188), "b189abe5-b93a-4e72-830b-dea7a7d0d13f" }, { new PrefabGUID(1434914085), "b189abe5-b93a-4e72-830b-dea7a7d0d13f" }, { new PrefabGUID(-753453016), "1d527ada-ec57-4fd8-8409-a857ff7286b0" }, { new PrefabGUID(-1160778038), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(109969450), "4d645623-80e5-4d9e-b2a2-be0f7ca4b137" }, { new PrefabGUID(2016963774), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(173817657), "cf538724-0ada-4923-b1e3-254adce55b1b" }, { new PrefabGUID(1510247015), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1347412392), "aa7475b0-6842-4c09-95d8-d9a07196510f" }, { new PrefabGUID(-2002658567), "296ce7e5-10be-49d4-8d81-13573749f4ec" }, { new PrefabGUID(-1308100049), "fd361515-b66d-450a-8948-7e4a15e37ce2" }, { new PrefabGUID(-578677530), "9e8a65d1-a178-4e04-a1c5-535ba1459142" }, { new PrefabGUID(-496360395), "d7f5b785-a846-4f9e-be66-a20bf57db6c6" }, { new PrefabGUID(1772642154), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(709450349), "a21c8550-15bf-4680-a0f7-2c135fe581c5" }, { new PrefabGUID(-2085282780), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1773935659), "e04cc728-70c2-4293-bcb7-6628ded0c34d" }, { new PrefabGUID(2009018555), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(-340923989), "97e2f3e6-554e-43ae-b3e9-c543c3562bf4" }, { new PrefabGUID(-39008356), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(-700632469), "007a016d-022b-4079-9ea5-3ad7ac990819" }, { new PrefabGUID(-484556888), "cb492cc0-5523-4271-8c13-05ad5b97bb1c" }, { new PrefabGUID(-175381832), "79906aad-0041-4cdd-9812-12eaa018c27d" }, { new PrefabGUID(-732208863), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(169329980), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(1660801216), "c65a3c63-f098-427c-97e0-a8617766bf6b" }, { new PrefabGUID(1945956671), "fec53478-9ae5-46d4-92c2-372a693d2e29" }, { new PrefabGUID(-1146194149), "5b21fd8d-48a8-4277-abee-fbf3799113b6" }, { new PrefabGUID(-1659822956), "0d2e3f54-23b5-4ffd-b787-8c7a32235621" }, { new PrefabGUID(-309264723), "d8659623-2569-41f0-be12-1bef6afc998c" }, { new PrefabGUID(577495705), "4b785bd6-c907-4380-a897-6b2b9ded24fb" }, { new PrefabGUID(574276383), "380b97d6-2af0-453c-83ae-f1ca318f5074" }, { new PrefabGUID(-2122682556), "9afaaaa5-61e2-4132-aae1-2af99c7be5bc" }, { new PrefabGUID(-2092246077), "64b907b8-06de-4ccf-ad5b-561185692f09" }, { new PrefabGUID(40217214), "740edb57-0a6c-4919-b70f-906cdc3544bb" }, { new PrefabGUID(-1048977650), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(-1594911649), "9d729558-6f82-4009-8fd3-53572d3965c7" }, { new PrefabGUID(1917502536), "4fa2822e-8f0f-4d77-b99c-c1e166f04960" }, { new PrefabGUID(-1208066429), "dc99eeb9-f4c8-4ed1-9211-2405cf3cf6d8" }, { new PrefabGUID(-375581934), "0d4a0fe9-5e41-4582-8868-d5d30d8be98f" }, { new PrefabGUID(-1728284448), "f763269c-3838-4fad-8498-81b2d89de15b" }, { new PrefabGUID(1406393857), "f763269c-3838-4fad-8498-81b2d89de15b" }, { new PrefabGUID(657708566), "f2af3a90-4ed7-4ccb-8969-8b164e8cf7a8" }, { new PrefabGUID(947731555), "83e1fff6-8b4b-45d8-b5c4-8ef4d0b67c90" }, { new PrefabGUID(1825512527), "ce7c266f-8914-4274-b3d1-88a8e2229d34" }, { new PrefabGUID(619948378), "65bd2953-493b-4699-94bd-a537768a2fc4" }, { new PrefabGUID(2122229952), "69b296b9-b55b-4ef2-98b4-560fc7a32ea6" }, { new PrefabGUID(-1990875761), "f3900ed7-e5b8-4ee3-9719-85048c296319" }, { new PrefabGUID(-1449631170), "bff27151-9d05-45a5-8438-eda9799414be" }, { new PrefabGUID(1974733695), "c5449422-89a3-43cd-a914-562002edab1c" }, { new PrefabGUID(-1822337177), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1570140219), "565a110a-c477-493b-bbea-dcb8005b30f8" }, { new PrefabGUID(-951976780), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-1353870145), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-242295780), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(-982850914), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-253226787), "a8bd510a-f877-4a1b-acaf-1c776a36282b" }, { new PrefabGUID(-440174408), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1065970933), "10b52efc-9c24-4f0e-8dd1-0d83cfe46fc4" }, { new PrefabGUID(-19165577), "f26fc772-46a9-43cb-94a9-836b5eaf6a47" }, { new PrefabGUID(1453520986), "d8659623-2569-41f0-be12-1bef6afc998c" }, { new PrefabGUID(-1004061470), "99e17797-3744-4cae-a951-992929827b13" }, { new PrefabGUID(2119230788), "e4d0168f-dc4a-42e0-9c5e-d5c00c5acf2e" }, { new PrefabGUID(939467639), "b8977486-8c0f-48dc-b451-dbd0422dd81d" }, { new PrefabGUID(795262842), "c2517a6c-1fa5-4fb5-ace0-951589f1120e" }, { new PrefabGUID(-1642110920), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(952695804), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-236166535), "a5b597ab-a632-47af-9b45-0c3b1c038bff" }, { new PrefabGUID(1083647444), "6b248451-7950-4f0f-888f-ba1d66fbb0db" }, { new PrefabGUID(-458883491), "ec7331d7-6fbb-4052-a7e0-1b2d3d90adee" }, { new PrefabGUID(400170781), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(218843465), "0d4a0fe9-5e41-4582-8868-d5d30d8be98f" }, { new PrefabGUID(674807351), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(692079022), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(-208499374), "0f21c81c-b8b2-47ab-94fa-1d059fa4324a" }, { new PrefabGUID(-861407720), "a63160e5-a08a-488f-bb39-467c56402501" }, { new PrefabGUID(-1897484769), "6bb2eef6-acf0-4f7a-9c8f-ea5aca103d57" }, { new PrefabGUID(1756241788), "6bb2eef6-acf0-4f7a-9c8f-ea5aca103d57" }, { new PrefabGUID(2057508774), "f4de612b-ceba-443a-b659-eaf4a674a0c4" }, { new PrefabGUID(-2086044081), "74ae9fc7-5251-4a62-b312-a3aed0bf941e" }, { new PrefabGUID(-1030822544), "74ae9fc7-5251-4a62-b312-a3aed0bf941e" }, { new PrefabGUID(1649578802), "0e744db8-6d01-4076-9d25-1745c28ef97f" }, { new PrefabGUID(-1805216630), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-837329073), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-603934060), "555e403f-3de1-4ee8-9f4f-89c023ed9cfe" }, { new PrefabGUID(-301730941), "a05752c9-9820-48c4-ada9-8cf2a67eb568" }, { new PrefabGUID(-1509286426), "e1d6e9ef-cdfb-403d-ba38-9814ab3e6bdc" }, { new PrefabGUID(2065149172), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(923140362), "fac7c366-d818-404d-9c23-6c701e883111" }, { new PrefabGUID(1481842114), "d5a1bddc-cf12-464c-bae3-27018898fe6f" }, { new PrefabGUID(-1301144178), "e058c75e-bf7c-4731-8880-cbce1a8c0fc0" }, { new PrefabGUID(233127264), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(591725925), "3f1dada3-dbf3-48fe-9bff-6b214a797a30" }, { new PrefabGUID(-1252779334), "a7b2b314-aa8d-44a1-8ee4-c19115f30f05" }, { new PrefabGUID(-589412777), "b923ebbc-2437-4f85-ad42-8e28d8dbbe9e" }, { new PrefabGUID(282791819), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1968372384), "a174902c-6321-4470-ac8c-a0f430ad2ca0" }, { new PrefabGUID(-274383877), "d9d28939-23b5-4f91-b53a-1fde1c33f4fd" }, { new PrefabGUID(-1287507270), "eb90126b-f5e2-485c-81e3-a6be44cd1cec" }, { new PrefabGUID(-1224027101), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1905691330), "4ec97a89-7b65-4343-8036-a534785882f6" }, { new PrefabGUID(-1476015811), "18a391fa-5963-48eb-a6df-380275178de9" }, { new PrefabGUID(-1447279513), "e683a386-9da5-4362-8c07-fa632c028e35" }, { new PrefabGUID(1309418594), "edf1df16-b793-491f-8102-323639461a9c" }, { new PrefabGUID(2072218017), "60ea79f1-43cc-49fc-8dfb-ec2952d07e17" }, { new PrefabGUID(1094898203), "8214cb0c-c146-4a6c-a722-db2e7f25dfef" }, { new PrefabGUID(769910415), "bb37aacd-a44e-43a2-a21c-35d42f51bc80" }, { new PrefabGUID(348038236), "659e6763-8e67-4834-a260-f313fdb1da70" }, { new PrefabGUID(-85729652), "659e6763-8e67-4834-a260-f313fdb1da70" }, { new PrefabGUID(-581295882), "6e2ed58f-bbe9-4e3e-82a2-2c9a0d202b6b" }, { new PrefabGUID(1216169364), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(-1194643220), "fd361515-b66d-450a-8948-7e4a15e37ce2" }, { new PrefabGUID(1149585723), "c9778d76-70f0-41ca-bbba-f4b92679669c" }, { new PrefabGUID(286320185), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(1478790879), "fd315ca0-1344-495a-9471-68b1dd9fc3be" }, { new PrefabGUID(1220569089), "8214cb0c-c146-4a6c-a722-db2e7f25dfef" }, { new PrefabGUID(-699233841), "e45b5b06-f34a-4ed4-9000-e15779e41a51" }, { new PrefabGUID(358623979), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(2107764370), "7191dd30-58a5-4b18-b3cc-77cbad94eabc" }, { new PrefabGUID(495971434), "d553ccd2-fb35-49dc-aee6-0a8eb330f124" }, { new PrefabGUID(-1666526529), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-1292194494), "b43cdb58-1164-468a-8b31-b3e35df5ba4e" }, { new PrefabGUID(1854211210), "5244385c-fcd8-4882-af82-29813298a565" }, { new PrefabGUID(1295855316), "3e228167-88a2-410d-a13c-c4ca323ff414" }, { new PrefabGUID(1655577903), "48075555-d5d0-42b2-b4b0-99b866c321fd" }, { new PrefabGUID(1696014952), "4b0679a6-6a11-4665-8b2c-308c8c6b925d" }, { new PrefabGUID(-1193126567), "bda8399a-8e9e-4dd1-9287-765e3da0d30a" }, { new PrefabGUID(-694393029), "9eecf02c-57b6-4b9b-b7f4-1590ff6569a2" }, { new PrefabGUID(-371347062), "9eecf02c-57b6-4b9b-b7f4-1590ff6569a2" }, { new PrefabGUID(1786690263), "f2ddb694-946c-45c8-97b5-826c4fcc7854" }, { new PrefabGUID(192051202), "9c7c1ef0-cf92-412a-adde-053a6018de47" }, { new PrefabGUID(-1356006948), "60171a7c-3b8f-444f-9713-8d283665f642" }, { new PrefabGUID(1420480270), "60171a7c-3b8f-444f-9713-8d283665f642" }, { new PrefabGUID(525027204), "d0ff0568-35d0-4194-bc1d-d0f5bead44cc" }, { new PrefabGUID(177376927), "4e92c37a-42e4-486d-a7b7-acc8dd3d50ca" }, { new PrefabGUID(1887807944), "b9252b8a-1c90-4f77-b617-e7ed7425573b" }, { new PrefabGUID(-223185284), "2901c637-3941-45ee-8538-87c7445a826f" }, { new PrefabGUID(-1707267769), "f2af3a90-4ed7-4ccb-8969-8b164e8cf7a8" }, { new PrefabGUID(2105565286), "95c64973-7138-41ee-852b-1c83e9ff1aa9" }, { new PrefabGUID(739223277), "c8e00a7b-b1ae-424e-8c90-77c7b9593a36" }, { new PrefabGUID(1012307512), "19481ffe-e078-4a25-a72a-21b41af5f628" }, { new PrefabGUID(1807491570), "56090c86-b5b4-4d47-8c54-6a04f6ccdb41" }, { new PrefabGUID(-1189707552), "67991f12-503c-48bb-8395-2f48b642cc74" }, { new PrefabGUID(-1208888966), "e3e5021f-a812-495c-83c4-2ead6fe8ddae" }, { new PrefabGUID(2025660438), "a98cc88d-fb88-488d-a75d-deb2d6b6024d" }, { new PrefabGUID(-249647316), "1cbe6350-7548-4481-af45-f6d8cb75a2e1" }, { new PrefabGUID(233171451), "bfae74ba-ceb4-4c48-9299-58ff75896622" }, { new PrefabGUID(1002732935), "47160d2a-5900-4074-bc09-fcaceba4737e" }, { new PrefabGUID(-1617973064), "082c8c97-97b3-450d-9b1e-f5e65c727818" }, { new PrefabGUID(1148284648), "a16f184c-40ea-416d-b9d5-46b0cbb86d65" }, { new PrefabGUID(-1087318964), "acf41408-f100-46fe-95eb-298bf75714fa" }, { new PrefabGUID(-1051190225), "db1afc86-c561-4873-8bfa-1898ec1dc2cc" }, { new PrefabGUID(2128629897), "a6270824-2256-427d-9e9a-51a363a7579b" }, { new PrefabGUID(841757706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-568845499), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-496233120), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(247896794), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-847327302), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1020324236), "1e024a2f-d4eb-44d2-8181-70ba38aa4e56" }, { new PrefabGUID(14947666), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(2099812790), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-116587794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-280574043), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1441325084), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-597391921), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-915929892), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(701450949), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1741189817), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-382913708), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1563014858), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-730437928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(88850785), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(183752077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1309114324), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1551140710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-420570478), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(617823552), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-350642638), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1276648449), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-931708593), "7eb8ae56-3287-4c74-8a83-81855d5e37a6" }, { new PrefabGUID(211300082), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(964878669), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1177797340), "0511ad2f-393e-46d7-863b-f80402612cc7" }, { new PrefabGUID(-1691591896), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-689229573), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1714996121), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1062857775), "39c6261a-b41d-4be2-afd3-66fb9e0d5c85" }, { new PrefabGUID(-20539715), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(98022305), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(1546717070), "5360353f-5722-4833-970e-9b5fb21d3975" }, { new PrefabGUID(761680482), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(481411985), "090f5547-c30d-42ef-b353-7da661826a4c" }, { new PrefabGUID(-1249437419), "9174693a-090f-4e21-b360-c8f801a43e26" }, { new PrefabGUID(477397109), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-440373841), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(1249925269), "89a9aa3d-5767-46d5-977c-a0e36f27da3e" }, { new PrefabGUID(205884718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2036664505), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(-1683730497), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(495259674), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-650192545), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(211394464), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1390611238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2029387940), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1986179833), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-267258900), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-581209791), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(452822121), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1016182556), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(2122998237), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(-3758365), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(2136688539), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1850527627), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1399369255), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-843384411), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1427506356), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1492189086), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1297311521), "af9c6213-297e-492e-badd-ce2c7bd8992f" }, { new PrefabGUID(1864378264), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-1648920159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1196517991), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1783782358), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1798913199), "e8d7e584-b387-4032-9866-b4acbab8112c" }, { new PrefabGUID(-2020699185), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1416105872), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(117247654), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(1548379114), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1879864480), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1335616296), "ba956907-2aef-4ab9-8929-18c3c5bd1e96" }, { new PrefabGUID(1013114237), "ba956907-2aef-4ab9-8929-18c3c5bd1e96" }, { new PrefabGUID(248404806), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(898033701), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-891060764), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-494771621), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1357870002), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-254080557), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(149514079), "5b18b878-bac0-4d4b-a9b6-f019e3bd9b0e" }, { new PrefabGUID(965421878), "a0b73f4a-bc24-47af-a926-f3342a8ce369" }, { new PrefabGUID(1456136938), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1422240708), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-664569083), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1532726733), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(94933870), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1986068244), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-39228843), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(651647554), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-708850140), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(192866635), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-27840697), "9636c2c0-c7e7-4dc6-8275-842282dc9f14" }, { new PrefabGUID(-1803981405), "12bccdbd-a428-487f-b7d7-78d7556a469e" }, { new PrefabGUID(-149514613), "bfc1ad69-7bcf-4acd-afd0-22f9dee33358" }, { new PrefabGUID(1687099904), "4ab18071-1b11-44c3-8859-769dc04e2258" }, { new PrefabGUID(-1204819086), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1978007923), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1409019914), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501158829), "d4bfaba6-9878-437a-868a-a30013c85d28" }, { new PrefabGUID(-309871879), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-639593760), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1315478418), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1162366175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1448118517), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1695763915), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(1383453728), "d84dd5d7-cc8c-4412-b5b4-5cf96299c7c4" }, { new PrefabGUID(221530600), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1866448125), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1770841962), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(72734316), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(756139644), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-749389155), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(2091042632), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1168210403), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(556335075), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1031474651), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-2090815764), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(295045820), "c2104733-ba7f-474a-9873-a389792867f9" }, { new PrefabGUID(2095802125), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1340177024), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(1808221013), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-857675545), "97db39a8-aa0b-4197-aa82-f0a047809d05" }, { new PrefabGUID(-680856467), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1479612756), "4e7e347a-05c9-465d-bf88-ff926cdf342c" }, { new PrefabGUID(8807466), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1322698651), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(1945392759), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(822633768), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-805514691), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-842785205), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(-1506728203), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1077498120), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(992060171), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(1225529685), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(-759138830), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(91249849), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(1473095785), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1047491293), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1742500275), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1007451621), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1047692800), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-914344112), "86ba2b61-1407-4cd5-afb8-df8f4193b413" }, { new PrefabGUID(2070140125), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-1016145613), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(-1362226779), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1924032736), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1428855842), "ea3d88c4-1e4e-4449-bdda-c33d6efb4629" }, { new PrefabGUID(-1670440585), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2081714952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1236214928), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(886063983), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1156226621), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(-1525577000), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-839386508), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1210884829), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(131953285), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1983112426), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2059612596), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(657450547), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1814959003), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-501371757), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-963623992), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(948730951), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(929369353), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-230952990), "f9a23880-fedc-4dae-9ba7-658a5a415b04" }, { new PrefabGUID(-685952199), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1678557149), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1209038175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-833255541), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(543365747), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-130280994), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1648128560), "1f4f4d50-ebb2-440d-841e-b6ab67edd083" }, { new PrefabGUID(-70575944), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-943061757), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-668888775), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(-329078808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(340003308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1826323796), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(151173850), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(546685538), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-332863103), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1162725480), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1889094547), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(847476786), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(722599012), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-501592674), "037480d3-3e4e-4f94-8fbc-ccaf3c6b0996" }, { new PrefabGUID(2024460612), "21458a9d-8bad-4280-96f7-af998b011625" }, { new PrefabGUID(-1036943907), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-809284772), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-939006306), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-914903899), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-595482115), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(922855296), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1629569043), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1643450845), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1336700473), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(596395337), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(112453727), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(797450963), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1869018808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1484849310), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1293609465), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(-1198075389), "ee19bf4f-c169-4831-a8c9-0fe5e01a3b75" }, { new PrefabGUID(1709284795), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(403738972), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1246326726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-715615220), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(325658714), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1617717290), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(695067846), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(769558056), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2146217789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1058201566), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(-1942495608), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1691254929), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(-1545438316), "db8508f6-71e3-45db-8973-4d5531a97dee" }, { new PrefabGUID(1654467658), "205783cd-64cf-487f-8a26-0de58091fe2e" }, { new PrefabGUID(1629100793), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1039955663), "5bc95e5d-4089-4908-b3d0-01c0c365cc34" }, { new PrefabGUID(-312796240), "98dbf9f7-ec93-45ae-ab80-0bfb2acb0cf8" }, { new PrefabGUID(2053056011), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(846507754), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1617880256), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(973975627), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1310557060), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501543883), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(550876706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-802865471), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1628835400), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2029137394), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1592003626), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(505640659), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1088859718), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(385165207), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(382761265), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1358113706), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-200440242), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(741783094), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(1262003451), "1ac79631-845e-42a7-82db-6fd87e4f96f1" }, { new PrefabGUID(2041625587), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-22490832), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(594778109), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-743963442), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1478784055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-841402173), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1325722355), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(1624827356), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1607170837), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1110188840), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1108325193), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1634136571), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-776694525), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(33571279), "2419671a-4624-49dc-ac8e-8d9d719a05df" }, { new PrefabGUID(1517447626), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1114643812), "04784c13-9dbd-49eb-9efa-452d1d533c5d" }, { new PrefabGUID(19031114), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-68142483), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1713640367), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1502523453), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-935015750), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-294731102), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1994950191), "e3a38645-0628-406d-8437-da66620c1cc8" }, { new PrefabGUID(-66951019), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1323999965), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(261951503), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2110769437), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(488481150), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-191894025), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1262525269), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-377463117), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-593875444), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(537620937), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-447578631), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2125818102), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1357699119), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1479036818), "515d6ec4-5c3b-4baa-b075-3b9e664ee00b" }, { new PrefabGUID(903306477), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2029046970), "c4c842ce-acbd-4972-b6b9-97eb676d6aee" }, { new PrefabGUID(2030125327), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1261373899), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-407341422), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1294766036), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-187744612), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(1650878435), "0d93bdc6-977f-4289-913f-7c79c6b54e0f" }, { new PrefabGUID(-1698981316), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1964067196), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(68363809), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-9078612), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1329409686), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1633132226), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-405003450), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1590188261), "6a1ac649-16f2-426d-8686-3c7f594bcfcd" }, { new PrefabGUID(-98135680), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1393329717), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(1130939687), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(919946085), "4e1df81a-570b-4152-b05c-6cb297a1c941" }, { new PrefabGUID(-2042076580), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-639471262), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-809908964), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1438305657), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(1529659981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2122592609), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1059091794), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1763951497), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-859352730), "53cfc5cc-c849-47e1-9d72-140b89dcbd18" }, { new PrefabGUID(1351498027), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(544237275), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(998806487), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1026449575), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1112631726), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1015070299), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1888981494), "06368b5d-cc87-41e2-a74f-02f3b152115d" }, { new PrefabGUID(-59488185), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1224470698), "9ac4e25f-6f73-4eba-ac23-0dbf885a4427" }, { new PrefabGUID(-1869011274), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-560639220), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-150520781), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(294532069), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1924288461), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1648249846), "e36441c3-4503-4fca-9bbd-9e61a26f5b55" }, { new PrefabGUID(-2049927912), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-55735320), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1762655324), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(329043640), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2138222166), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-356990326), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-53726244), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-866526980), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1401138411), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-580940152), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1575317901), "db01301d-1c6d-41cc-ab20-7401a52f7f6d" }, { new PrefabGUID(-1966260928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-930815588), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2060534730), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1660458588), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(760344149), "45c214be-2829-44a2-a2d3-5fc4f79c2cc3" }, { new PrefabGUID(1749064378), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1510954952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1648996357), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-352214814), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(523087989), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1131137826), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1166812757), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1568904735), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(821808685), "e1ec25f4-0f9d-48e2-8501-71ca354019c5" }, { new PrefabGUID(-1229087512), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(86533405), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1115417829), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1882115765), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-968445725), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1915922151), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1912437283), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-634705694), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-898001858), "14761769-49e8-4028-94b3-b9a4e3eaebc8" }, { new PrefabGUID(1059128), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-987810170), "e737c728-0cd9-4291-80b3-3f5b071c20c2" }, { new PrefabGUID(-948735477), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1167502816), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1629729690), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-865776841), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-635085409), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1382585346), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1006960825), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(211628325), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2142882097), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1941093851), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-324538848), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2036638378), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(951198708), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1262881470), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(175670852), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1220301459), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(-1498306516), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(323806214), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1317017789), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1944086996), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1797731340), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(71067886), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2139983264), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(897325595), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(940071564), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1888098383), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(837193552), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(-839571202), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(797495975), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1761660947), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-831562637), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-284360089), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1789525825), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1876841142), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1063690361), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-496335760), "56691bd3-7674-4243-a1ee-43dd855216c7" }, { new PrefabGUID(1878838878), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1853889696), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(340577476), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1191517048), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-177268000), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1749428209), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2016544872), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-215712550), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(788963695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2031950279), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1548349308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1707593926), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-336633586), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(1851411882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1143650386), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1372140488), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1161896955), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-317345251), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(381862924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1142040823), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-208121356), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(4267150), "5094cbff-f80c-4605-8264-fce8d4c80c93" }, { new PrefabGUID(1617928948), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(530484088), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(-1282136902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145896190), "4051ab6a-8484-4ae7-bd78-58fe42053197" }, { new PrefabGUID(-1771783202), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1537394790), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-876908134), "848fb8bd-6c74-43c5-9551-19a5948e1c6e" }, { new PrefabGUID(727824809), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-67405040), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-245435862), "f37b93cf-9552-48a7-9ffb-7cd6caf9411c" }, { new PrefabGUID(-1934538221), "999c86cc-1552-45cd-8184-264787aaf81b" }, { new PrefabGUID(-1030552412), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1884688827), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1770479364), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-444905742), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1612983976), "c6bf6d9c-817e-4ace-b14d-889cf893df83" }, { new PrefabGUID(1126476370), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1125833271), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1105771640), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1213228171), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1684687653), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-347082762), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1717961213), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1622839653), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-64218175), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(193936844), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-705534828), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(107764414), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(215933642), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-1965562520), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1115346958), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1558475957), "e8b77439-2f72-4951-bcb4-55f5bdee5474" }, { new PrefabGUID(936625846), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1672126097), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1425686238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1189720448), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-41022254), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(1228457971), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(698366326), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(62042854), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1922493152), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(718360189), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1567787423), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1343651850), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-825962514), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(651637774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(787702249), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(973636261), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-675519112), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(556902791), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-744145902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1720952746), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1369843173), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1526010521), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1781779733), "1bceb59f-0798-46e9-98ef-90cd3ef7e639" }, { new PrefabGUID(-740078985), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1961570821), "8a5b4d1a-82fe-409e-9ca1-1b73c8dc1270" }, { new PrefabGUID(74226303), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1874296899), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(900927411), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(780432315), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-323939446), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145809434), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(622287046), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-184530068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1968364229), "f5ce8738-2e50-4d23-9cfe-4a0b40a5cb36" }, { new PrefabGUID(1238313774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(5164221), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-292632051), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1493606342), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-249023543), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(417450031), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1407801281), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(421907078), "0d4d0ca1-5483-4155-9664-a9bfb0672941" }, { new PrefabGUID(-1662046920), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1675917968), "b335d1b7-aedc-4ac4-bc57-b16dc788ec2d" }, { new PrefabGUID(-84816111), "9fcd437c-b1e1-469c-9ae3-f1ae6740d328" }, { new PrefabGUID(1966330719), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1446310610), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2108112601), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1378417368), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1130363778), "ae1e9031-28f4-47aa-90c9-3124c26019f1" }, { new PrefabGUID(-1599671939), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-328302080), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1041059859), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(558343424), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(78384915), "15feb009-e91e-439b-aeed-852d0b092f3e" }, { new PrefabGUID(1898980277), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(604121141), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-646168524), "0b169ff9-c4cc-4a38-9ba6-545394e8c4d2" }, { new PrefabGUID(1293091219), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(97206555), "45c214be-2829-44a2-a2d3-5fc4f79c2cc3" }, { new PrefabGUID(1166337981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2013132333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(65616384), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-310753479), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-500071289), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-193432841), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(369886705), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1745337333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-195118922), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-413591328), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-14207169), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1708209167), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1854645901), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1789897775), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(110097606), "106b7887-30b2-488a-9424-e6b350bde7b3" }, { new PrefabGUID(1520734123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1232816408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1989618782), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1217615468), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(401668748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1365358996), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(91941562), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1897317770), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1212343160), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1926314891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(413176017), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-448018551), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-626021308), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1420346034), "8c7e94d0-9755-455e-af99-17fd2cd41acf" }, { new PrefabGUID(2067760264), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-265839081), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-578672354), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-738502538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1599972576), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1340319300), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-433204738), "9c71681e-3ada-4df1-be04-36961596588a" }, { new PrefabGUID(-2107123661), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1887600892), "b54c0570-7d4d-4971-b936-b9c596dce19b" }, { new PrefabGUID(607644390), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1725804558), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-1581417695), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(397860291), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1090673078), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(986693563), "15be7b2d-5f6b-4ce1-b98a-75a2c8977026" }, { new PrefabGUID(501615608), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1969189808), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1903010945), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1601666166), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(936609695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(444781406), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(896963123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1461754263), "080b91b9-e96e-4754-944a-ffc46f84b2bb" }, { new PrefabGUID(-1743551272), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(526997488), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(318813926), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-1136860480), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-690426342), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(765386506), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(-523365900), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1698500590), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1155840114), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1767074088), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(452849117), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-79785701), "1f4f4d50-ebb2-440d-841e-b6ab67edd083" }, { new PrefabGUID(-1278121774), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2110406288), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1327173823), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-430375110), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1816495876), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(1952703098), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(-413053555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1364891068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1000260252), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(-1847055470), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1884419467), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1001804923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1333250097), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1589627808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(61265236), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1095356108), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-195896692), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(304685414), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-341552237), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(646443134), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1450987113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(870237772), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1149489416), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1715136284), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1041665194), "1f2a802f-1769-47ea-80b0-b920552ccde9" }, { new PrefabGUID(-56422536), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-926110853), "25936bf3-159e-4587-bda5-b99091062fd2" }, { new PrefabGUID(1089139335), "2255535d-d296-447e-a2f8-ba5ef5c960b7" }, { new PrefabGUID(-633982282), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(257841890), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(345138892), "61f1e9f3-2869-4b00-9c52-82df5f062b49" }, { new PrefabGUID(-1330909978), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1462154593), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1795148379), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(583436571), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(906463896), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-328617085), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(766284586), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-13231823), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-2064810948), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(1856432305), "7b93fc76-2700-4e61-a6be-22862113de5e" }, { new PrefabGUID(54541608), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-736079997), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1459248190), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1766338327), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-79098693), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1485105952), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1195333673), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1007898441), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(54266570), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1473399128), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(-1063090297), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1272535312), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1736553762), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1473393531), "bea721d7-5a66-40e6-b846-17e11357ed7e" }, { new PrefabGUID(-1689067072), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2063732211), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-1784566500), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(304835919), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1375787055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1760359784), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(1489736348), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1601771862), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1450204157), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-459395643), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-986547656), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(845410366), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(461701172), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1157907958), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-265915268), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1274762079), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1733128159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2130811227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1586810476), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1078822594), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1573712465), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2109003637), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-460221305), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1499629710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(193592408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1779071085), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(270247647), "aa99afe4-9d18-4963-abb5-6beca344c70a" }, { new PrefabGUID(1132262199), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1075000607), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(725170243), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-420953378), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1425167877), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-768614933), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-190598145), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(341866865), "2c06db1e-517c-4dcd-adf4-d8246cf532e3" }, { new PrefabGUID(-631049507), "be17695d-2d02-49d5-9123-ad94f150074c" }, { new PrefabGUID(27585400), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1883675026), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(437523703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1850037222), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1969627539), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1423169435), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-725150213), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(401195214), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1259884575), "b9947a45-05d5-401b-a8fd-a241cb9be2a1" }, { new PrefabGUID(-2138455533), "94450904-51e0-401b-8bd6-707dc18e2a37" }, { new PrefabGUID(-840954076), "7525ec83-7082-4c43-8678-3aaadf50face" }, { new PrefabGUID(-26826346), "5a2ea9b5-ccaf-4fae-a084-b59c7f2065de" }, { new PrefabGUID(-1655641312), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1685517289), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(1180130515), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1077139800), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2025881745), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(983916408), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1873182450), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1239155316), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-926355648), "6e4e2a5e-117c-445c-b40a-e866ac151fe3" }, { new PrefabGUID(1870875931), "a222648a-6711-470b-b802-d940dc2baceb" }, { new PrefabGUID(-700139030), "db326145-ce7f-44fb-96c6-3c06ffce2d2d" }, { new PrefabGUID(-1565434117), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1347356700), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-880131926), "7120d5aa-558c-48b0-bc61-6894e22f9655" }, { new PrefabGUID(-885902431), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1967657578), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-680710725), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1630648333), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-660542965), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1435233272), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1439531953), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(391943159), "d4bfaba6-9878-437a-868a-a30013c85d28" }, { new PrefabGUID(203761859), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-521003587), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-925169006), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(-618850823), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1843850355), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(262116525), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1238817965), "e1ec25f4-0f9d-48e2-8501-71ca354019c5" }, { new PrefabGUID(680554094), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-891864538), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957509060), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1079667900), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(14271023), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1110054537), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-927251534), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(1487412876), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1045581646), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(418002062), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-401259144), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(194868388), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-89125940), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-725828654), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(341647784), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1284243288), "9ab105e7-9c7c-47a3-8006-f0fc2f3fa5a7" }, { new PrefabGUID(-1810214745), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1781725233), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1492032516), "19f416d2-e02e-4260-9bbd-8e4cb6486a29" }, { new PrefabGUID(-2023636973), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-547251580), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1253650402), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-887581044), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1175912131), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1756717462), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1357375516), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-893194478), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1587195740), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(409165231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1583944483), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(1105185654), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(980772169), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1938535864), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-358319417), "806bddbf-82d7-42d6-97ce-b78632e87b3a" }, { new PrefabGUID(-1385141321), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034689434), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1176933244), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(250913160), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-764767694), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1883230955), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1711588061), "b700c835-a867-4260-ad2a-88561017f69f" }, { new PrefabGUID(-1111373807), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(1364843731), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(1221980502), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1861621769), "a29045ba-e8f5-4699-abb4-f090c067cc6d" }, { new PrefabGUID(784029872), "4816fff6-dcc1-4026-a580-d92fed01c97a" }, { new PrefabGUID(-1754787506), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-163679409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1190925292), "0b169ff9-c4cc-4a38-9ba6-545394e8c4d2" }, { new PrefabGUID(105274396), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1309712000), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1104043123), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(937561987), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-386396572), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1637210619), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1900214847), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1365760673), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(377144854), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-66831677), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(532210332), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(364141768), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(-2103202975), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(-1287837541), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1128466169), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-7407393), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2005193286), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1915068828), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-618038480), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1940289109), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-703291679), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-91023537), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-1951127647), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(138513891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-603849198), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1388701732), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(561623729), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1372353064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1294182358), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-650079140), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2092012453), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(80712753), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1559349374), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1814567660), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-217583794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(483769006), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(684476797), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(207057426), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1915605718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1491658671), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(429807295), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(362512593), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(2107853915), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(593979922), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1688748795), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1267543813), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-47403235), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-96620724), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2078583785), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1684865572), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2121218473), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-645101263), "40d14ea5-e460-4503-ba32-1c4aa689b360" }, { new PrefabGUID(-1553594984), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1484354243), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1219885177), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-367310449), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(479773974), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-91811178), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-895081056), "5f1866da-9932-417d-87a7-1c9da86d67ff" }, { new PrefabGUID(-1865487078), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(226929260), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(466462408), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(808904257), "ad53decc-e81a-4d75-abcc-fc0ca1dd2e1d" }, { new PrefabGUID(589136658), "f412686d-d091-440b-b2da-296f077782a3" }, { new PrefabGUID(367876187), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(875909348), "95b27b9f-38a6-47e6-965a-0d5a69cd8a95" }, { new PrefabGUID(1639668286), "19f416d2-e02e-4260-9bbd-8e4cb6486a29" }, { new PrefabGUID(-1181502209), "ab300887-4022-4648-8cc9-96c5bccd6d15" }, { new PrefabGUID(-591813536), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-296227812), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(189403977), "0d882673-4e3f-4cec-9310-1e089aab544c" }, { new PrefabGUID(-127603789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1512616160), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-589722860), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1137336047), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-158502505), "deaa875a-0e2a-42f3-bd29-1d0733ddfe6b" }, { new PrefabGUID(1779758273), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(101220113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(286182923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(626219559), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-499397494), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1709055711), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1360812741), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1765846328), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1250098443), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1490887838), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1623874343), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1220318405), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1717533555), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(978386280), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(1920281924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-117718548), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(338593632), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(544227616), "677d91fb-6188-4eed-b5ee-d933c9e1249b" }, { new PrefabGUID(-459642635), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1516349451), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(571532506), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(647582679), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2096565232), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-405467076), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(514628041), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1601441951), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1657698157), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-228936316), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-82547339), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1807544727), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(643209588), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-332244204), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1912093062), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2005435470), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2025233638), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1512916174), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1439273397), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(172828642), "f9a23880-fedc-4dae-9ba7-658a5a415b04" }, { new PrefabGUID(-1267641072), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-83187650), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1485838951), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(616732424), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-77977745), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-44955695), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1071205195), "8a8895c9-03b8-411a-a57d-8d34a4f2b2bb" }, { new PrefabGUID(-1380116221), "1bc02a7d-5d95-466e-9f79-5637d7db51bf" }, { new PrefabGUID(-933544131), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(128007572), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1858007153), "3e741135-6b29-40dd-9ff8-329d10cf9ec3" }, { new PrefabGUID(891644945), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-8655403), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-23281706), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-737556373), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(504586218), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1277638345), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1191439206), "6b767c92-3a0b-4ce9-a236-fd58436addf4" }, { new PrefabGUID(784360484), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1696612225), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1326540020), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2027014613), "354a8372-3c68-49ea-8673-76673c552ea9" }, { new PrefabGUID(1216522353), "84668d27-2f48-4f36-8e81-96802146266b" }, { new PrefabGUID(975866147), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1326377581), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1022555711), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(1278045964), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-100357751), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2079740557), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957691133), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1689119503), "d46072e0-8f18-4371-b50d-84fa33772718" }, { new PrefabGUID(874909393), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(605530795), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(88026855), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-469608333), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1145861576), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-376210658), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(317399990), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(-29584300), "40ad7715-1c15-4c7e-af48-5e5514288979" }, { new PrefabGUID(994921501), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(34416775), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(592600719), "6b11e2ef-c7d7-4d9e-ab56-a29843279188" }, { new PrefabGUID(873699859), "eb5860f1-f2fa-460f-acd4-3c0cf2be2fc8" }, { new PrefabGUID(1239800293), "eb5860f1-f2fa-460f-acd4-3c0cf2be2fc8" }, { new PrefabGUID(1772194590), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1286987800), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-202704002), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(336380612), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1509483896), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-900859351), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2057340406), "2ddb02b8-b354-47c4-bcdb-afcbd557db56" }, { new PrefabGUID(-1796211602), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1798105602), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2102431676), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1147924409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(684024768), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1705726981), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1808411682), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(761844990), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-808215778), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-968756307), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-722759857), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(486569900), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-627924949), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2134120100), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-298983941), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1290253258), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(475860611), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-418737686), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1501188283), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1686895005), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1744671763), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(995945059), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1301873763), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(45443379), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1852992863), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(1172834223), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1625958933), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-16930230), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1547108554), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(114484622), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1373056433), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2115527946), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1015165123), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1381729810), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1454652495), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1756745786), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1379598377), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-618550771), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(830495620), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1031367685), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1356470853), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(109607953), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-225237355), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1756529149), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1977998485), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1243386667), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1267698255), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1634335063), "143ccb6f-e4fd-4589-a567-028fc80a85bf" }, { new PrefabGUID(1805214524), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1651089042), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1113171592), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2030404176), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(149010586), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(257418700), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1121958763), "6a1ac649-16f2-426d-8686-3c7f594bcfcd" }, { new PrefabGUID(-1981491221), "a0729f30-13b7-4368-9d4d-61406a329297" }, { new PrefabGUID(1074626555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1472848281), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1698228064), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(628133433), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1584749067), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1404029255), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(-1262842180), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1552626046), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1671419025), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2143553487), "4051ab6a-8484-4ae7-bd78-58fe42053197" }, { new PrefabGUID(-1457510412), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2026199659), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1449494345), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1621601748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1302295192), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1337706250), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-223453383), "597a42fb-ee97-4fc0-9c6d-7f441128e61c" }, { new PrefabGUID(1959283631), "5bee13d4-cfd1-458c-ab66-38799284fefc" }, { new PrefabGUID(-2136524530), "21458a9d-8bad-4280-96f7-af998b011625" }, { new PrefabGUID(979394873), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(162388614), "b8af0f11-11e4-4420-ab2a-b1b60371c741" }, { new PrefabGUID(66606146), "515d6ec4-5c3b-4baa-b075-3b9e664ee00b" }, { new PrefabGUID(1913579080), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1069881409), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1145923288), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1142698587), "0b8738c2-edc6-4ed3-a7fa-f94ff1635762" }, { new PrefabGUID(-440165167), "53a76370-2e14-4514-965e-a84acd3a6da4" }, { new PrefabGUID(833416928), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(575048784), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-719487446), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(57588514), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1365714615), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1791635791), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-923762386), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(236831977), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1706926836), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1068854418), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1853611622), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(764489448), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2054557525), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(164595507), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1693720077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1659620404), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(723715376), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2066895745), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1065629794), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(124368471), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1795073911), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1492585365), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1869894099), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2127334043), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-741006712), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-820078889), "a222648a-6711-470b-b802-d940dc2baceb" }, { new PrefabGUID(927872126), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(14728131), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1808542763), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1125894381), "3397231e-bd7a-4c1f-9ce3-7c2f984c6ce6" }, { new PrefabGUID(-570933441), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1988754598), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1503327574), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1484650418), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-2034290170), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1280314509), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1414167161), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(540661576), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(2052063970), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1338374909), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-466422619), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1619461812), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1971068020), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1837385563), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-827928543), "48cdc22c-7682-4a7a-854c-47e2732e2c3b" }, { new PrefabGUID(-801968342), "abebddf0-4149-4d24-97a4-ddc12fa6c989" }, { new PrefabGUID(352570759), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-655343218), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-304507736), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-325952371), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(102790706), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-557111974), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1771330790), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1406000418), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-988264305), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-566065717), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1445822330), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-192549213), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-174926399), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1293762372), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-241312231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(893332545), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(2142000031), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1696712851), "5f685b39-3c81-4070-a860-65baa65ce919" }, { new PrefabGUID(-930424159), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-213757827), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1252510507), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(1870073064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1802655130), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2015856259), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(976341724), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1228302737), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-983491078), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-746972983), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-735966107), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2003945269), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1946568656), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1843696472), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(341041700), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-12917778), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1137335620), "8166c89b-694b-477a-8ec3-4acf4e30a3de" }, { new PrefabGUID(494176178), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-514516956), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-424388071), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1212947823), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1088363798), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(889811193), "bba207d7-603f-481c-919f-f81b0002cfd9" }, { new PrefabGUID(1721154667), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2064327511), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1576686583), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(1112116762), "c0961447-357d-4a9e-b6a1-1db9886a0886" }, { new PrefabGUID(-1863241708), "4a04fa43-83b5-4289-bb33-6920be04c477" }, { new PrefabGUID(1294567037), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1835500377), "14761769-49e8-4028-94b3-b9a4e3eaebc8" }, { new PrefabGUID(-1528770669), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(951831242), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(191219781), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(892342913), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1524767753), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(705089395), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1660492999), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1718898538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-514415940), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(546136204), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(1790744720), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1808492070), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1864096491), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1292896032), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(298784800), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1238687119), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1421967280), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1704026958), "7b634581-41ca-4e2f-9079-f0a953506374" }, { new PrefabGUID(1232856473), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1509344340), "1b1f1628-63ad-41ed-8830-2aeac54b50ba" }, { new PrefabGUID(-449872140), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(109530037), "f7d8ffe0-c4a8-4622-a303-0bcd7d54f97c" }, { new PrefabGUID(-1732463804), "e842c9a8-50c5-46f0-8826-2f4cfb87242e" }, { new PrefabGUID(1898092173), "4a8f9a35-a7b7-4cb8-b469-82455a00ef15" }, { new PrefabGUID(-984481115), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(73467714), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-370061286), "a3d1e21c-dec8-4e4f-9680-16f42c9fe3e1" }, { new PrefabGUID(-1770586075), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(445289088), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(516384057), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1573201851), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1641231517), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2073002423), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-130931989), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(736733073), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2015521421), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1684997624), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(750606882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-818533945), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1639330095), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-1736482208), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1973550282), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(-1355723507), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1891756809), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-281576382), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-2018732849), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-751119210), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1451199905), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1979483677), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2138402840), "31e7b084-8e34-4105-8dd7-f746adf25842" }, { new PrefabGUID(-2067963108), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-123334608), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1138991224), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(481790231), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(560207432), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(170206690), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-637041016), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-838311342), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1372642162), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-385314771), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-315621824), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1318543111), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(987540308), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1518495336), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-140727030), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(168833229), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1174831223), "3f5a242d-bb52-4bf6-80f9-a14ad2e81afa" }, { new PrefabGUID(-1187406748), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1752758196), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1802963726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-891106318), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-67893977), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1790377808), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1801222341), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(1033948100), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(165220777), "e842c9a8-50c5-46f0-8826-2f4cfb87242e" }, { new PrefabGUID(613355091), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-985136954), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(1792964134), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(493409764), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1823825002), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1541929232), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(49364370), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(375131842), "ad2d256e-6291-44de-bc3e-e2bb8f43fd54" }, { new PrefabGUID(1734337277), "04784c13-9dbd-49eb-9efa-452d1d533c5d" }, { new PrefabGUID(1245308829), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(471046053), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-116877786), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-587604072), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1142491430), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-819795639), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-923957888), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-559662270), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(1817985064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-727882902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1957366402), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-841469184), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1820645555), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1379672205), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-915534386), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(98352404), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-506564570), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1693120911), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1904011556), "1a041907-248e-4a02-869d-86402f37f29a" }, { new PrefabGUID(830123499), "c87e47d7-d43f-4e8f-a0fc-bbd6b616ae6b" }, { new PrefabGUID(-2097618568), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1109386231), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922412053), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2102890955), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1589312992), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-342380924), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-20922272), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(340686786), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2092537748), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1059734295), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-845442935), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(955484879), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-912372242), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1306041529), "c48c0c3c-b69d-4c41-8dd3-7a2d5e177eb9" }, { new PrefabGUID(436038744), "79f62e69-50b7-4c12-b2f4-7eaaba5345c4" }, { new PrefabGUID(1244670975), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1214299173), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(234226418), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(948587795), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-351745987), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1797118698), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1102042167), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1916767891), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1298764600), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1694480301), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(464665677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2095151729), "5ca3073d-9a8a-4c78-b907-b9a6a7901ad4" }, { new PrefabGUID(1500843923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1691491221), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1108274345), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-104327922), "9340e8a8-a29a-461f-ab37-bc7e7017af1e" }, { new PrefabGUID(931534835), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-668603830), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(139802405), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2136656017), "ff1282a4-35c3-4934-ae50-a322f2dd3635" }, { new PrefabGUID(-1193077056), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1754021382), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-607666302), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1653116246), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-349738324), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-822790233), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-650383304), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-412600077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(411852610), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(716346677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1416508240), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-597709516), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1146467217), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-331113507), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1418783710), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1148606177), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1436929556), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1603735911), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1081890077), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-730217983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-499389517), "f257551a-7c73-4024-9481-da1079023e2d" }, { new PrefabGUID(-1126624947), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-34533844), "e66c4f59-86c3-406b-ab72-fb355ee2a79d" }, { new PrefabGUID(1199769322), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1019568127), "f9b75cb3-d9cc-42d6-a549-4d8c156cd7b6" }, { new PrefabGUID(368122726), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-88118341), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(296313928), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-545560531), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1611191665), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1957047297), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1049539886), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1674395967), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-948311829), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(-321651703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-609538743), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-2121210997), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-2054010438), "d3e465e8-2742-4b93-8b90-dc02ee1c0751" }, { new PrefabGUID(-325335847), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1060298293), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1024156492), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(342417296), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-259433272), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-544864084), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1700777111), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-80003337), "cc6ff9af-b728-4fd3-90d7-bb84670d9433" }, { new PrefabGUID(477749225), "970f8952-81fe-4e2c-a116-162e83801cc2" }, { new PrefabGUID(1238529741), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(780372716), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-359326766), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-905574209), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1568811754), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1387986806), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1839296163), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-544868559), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1910986910), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1205896854), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1253708985), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-1321161639), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(430166804), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(2067796423), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1571128781), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-252663641), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(320434570), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(691162066), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1126887871), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-1560986745), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(851287157), "c4c842ce-acbd-4972-b6b9-97eb676d6aee" }, { new PrefabGUID(-2126197617), "ab300887-4022-4648-8cc9-96c5bccd6d15" }, { new PrefabGUID(1074442576), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(938684260), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-1139777657), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-1024883556), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-604910466), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(416744805), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(174655882), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(403340165), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-188185340), "64a91856-97e8-498e-9820-3b9064889d19" }, { new PrefabGUID(-1230681995), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1717210880), "f79d6776-0809-4fff-89eb-ba45fd1a8c5a" }, { new PrefabGUID(-836774616), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1996370390), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(642767950), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1181691042), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1432758970), "9d14e044-84c6-4f01-8e24-7f821c1f121a" }, { new PrefabGUID(-292254536), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-127510613), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2008977590), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1254118139), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(180580857), "e781881a-c775-49ff-bce8-2c45036ab213" }, { new PrefabGUID(302896371), "c48c0c3c-b69d-4c41-8dd3-7a2d5e177eb9" }, { new PrefabGUID(89236731), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(-1199987827), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(919394375), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(22263894), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1606718216), "cb970ccd-ffee-4e86-83af-f4d8851ae3a9" }, { new PrefabGUID(-1574580061), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1651864139), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(699013677), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(920868547), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(834886466), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-658066984), "c6e0052e-db35-4476-b2c1-21aa46670fad" }, { new PrefabGUID(-577179884), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1115425417), "8abf33e8-3236-4f57-931b-bf149307a8c4" }, { new PrefabGUID(641943079), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1712538598), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-588647240), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1506479890), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034438314), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1204182143), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-659513479), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(474075607), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(828954334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-281508142), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-186690512), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2019689688), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-592301846), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1922948406), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1008562275), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(-198012170), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1104025162), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1332977411), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(633696135), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1398375841), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1160883278), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(815729526), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-8479990), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-1099406988), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1250624804), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(455219779), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1997657671), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-453755281), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2003603501), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(840159262), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(69086718), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(82350674), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1452056926), "5cb62386-cefe-4e3f-b73e-02fb011eec75" }, { new PrefabGUID(358187796), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-3835897), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2000340068), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2021815703), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1687310776), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1800699406), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1287271443), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1064533554), "0fddee0d-a919-4093-9b72-764456788114" }, { new PrefabGUID(-2010697707), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1272395899), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-980532804), "1e149447-4b7f-4b0c-ad59-978c134951ed" }, { new PrefabGUID(396802528), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1908054166), "08102e93-6821-46dc-ae54-f87089668960" }, { new PrefabGUID(1167119356), "8da794ae-53c8-4700-83ad-854c5bfd27c3" }, { new PrefabGUID(1234809194), "dd40ce37-4ca6-4a92-8f64-e2c1074c0a52" }, { new PrefabGUID(761268127), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(817680188), "7446e014-162d-496c-b6ae-8c42d7c23ed5" }, { new PrefabGUID(-781549505), "162c0e6c-e1a9-4645-9bdc-3a7bed1dba2a" }, { new PrefabGUID(245173408), "2d586558-df6c-41af-98e7-19c14e0d8138" }, { new PrefabGUID(-621324159), "1bf471bb-bfe6-4e6d-b63a-07bc79583bb2" }, { new PrefabGUID(346834991), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(253163764), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-1845982676), "3eee37ae-3a44-40cb-9401-a39184e110e2" }, { new PrefabGUID(1673956324), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1428882023), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-999342671), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2012523607), "c4c430a1-d6e9-436c-babc-4a8372f44940" }, { new PrefabGUID(1524772628), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-409778117), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1631838527), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1790847128), "d0fc9607-cc98-48df-89be-ab8f3eabb0ed" }, { new PrefabGUID(-292542362), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1430256354), "ee5eb912-522d-4ac4-8089-d0f79104e87e" }, { new PrefabGUID(-1282606238), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(943885425), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(910704281), "780bc5b7-2adf-4aa0-8001-c8c6cabd755a" }, { new PrefabGUID(2130985273), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-133703992), "5a7aa0d5-cbe1-46bd-85b8-f25edc435898" }, { new PrefabGUID(92820140), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1773431654), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-578764388), "4f6e1284-6218-44d5-b785-1cb334cc7c5c" }, { new PrefabGUID(1552780633), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1914101495), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-892431821), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(-1417141477), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-343320686), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1100933071), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(224496996), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1187864883), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(-175257190), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(985201241), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-871701576), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1503146131), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1568783706), "cee67181-a29a-4436-84eb-465f4236704b" }, { new PrefabGUID(-1330984343), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(46962343), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1432555386), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(419215380), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-313732628), "73e462c6-2956-478c-9645-b9da907014ea" }, { new PrefabGUID(2013545793), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1550864188), "d17154d9-a557-424b-ab0c-9ddc9fd7f655" }, { new PrefabGUID(1207495983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1586616867), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(446999227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1187623532), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2107551739), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1600917906), "53a83a2e-af28-45bc-9e49-77b47e3e66ac" }, { new PrefabGUID(-1745021468), "9174693a-090f-4e21-b360-c8f801a43e26" }, { new PrefabGUID(-2120286823), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-321918794), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1122774146), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1119012588), "d873d8cc-4b2e-474e-a3fe-dd623d50f265" }, { new PrefabGUID(268059675), "2b8daa15-a9fe-48c7-99dc-3f81dc6ba840" }, { new PrefabGUID(-1635892700), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1925592126), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-221719333), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2106422510), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1079488801), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1160664147), "278493bd-4521-4049-abbe-968473adbdaa" }, { new PrefabGUID(-1204505053), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-716557249), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-598112885), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2084016434), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-576906626), "f626c598-da9d-449d-8a40-a341bd702875" }, { new PrefabGUID(2038916168), "6b7a9e8e-b392-4c87-9fad-61ebac36cf92" }, { new PrefabGUID(-242769430), "c0b3bf16-4459-4388-b7a6-d4c3e2259551" }, { new PrefabGUID(2103931135), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1875280201), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(-354379679), "196003ac-aa44-48dc-b36a-12e57d97cd51" }, { new PrefabGUID(151283351), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1454951943), "d1b77468-bada-4e3a-a26b-e4a1a3d16ece" }, { new PrefabGUID(953519927), "98aa6faa-ba15-4f7d-91f0-5374792121ae" }, { new PrefabGUID(1431473799), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1766924388), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2057952818), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-808864212), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1710744334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1064969109), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2033547790), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1795809188), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1946293901), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(381103028), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1295370119), "2c56b280-6458-418f-909f-a9ee98ed2393" }, { new PrefabGUID(-964075599), "717f4668-4810-490f-90eb-ebc9bf34560d" }, { new PrefabGUID(-2147238865), "27bfae92-0028-4f8f-a190-e72765a404e8" }, { new PrefabGUID(-1154891994), "64a91856-97e8-498e-9820-3b9064889d19" }, { new PrefabGUID(1524554505), "27bfae92-0028-4f8f-a190-e72765a404e8" }, { new PrefabGUID(-366103191), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-53273186), "02997d12-30d2-4e3b-af6a-15bf57814f9f" }, { new PrefabGUID(900707394), "bb43bd39-b8b2-4be8-864e-9d42d538373d" }, { new PrefabGUID(-1563062700), "942617a0-9d9f-4e06-88de-7feb124c6876" }, { new PrefabGUID(-1739260908), "814356f3-35d5-48a1-964c-3287c0c74833" }, { new PrefabGUID(430979240), "6d32f428-12f8-4120-bbca-3b720c52760a" }, { new PrefabGUID(-739563600), "6b11e2ef-c7d7-4d9e-ab56-a29843279188" }, { new PrefabGUID(-941466362), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-286223348), "3cab0a1c-1645-4856-8e5d-a43bafb3c53b" }, { new PrefabGUID(-1199198217), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1679087496), "e8b77439-2f72-4951-bcb4-55f5bdee5474" }, { new PrefabGUID(-1308520526), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1174644772), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(800186323), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1281316565), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2034763818), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1825130923), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922419960), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1673497547), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1852467646), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(998464144), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-422683973), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(51772774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-552723816), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1720407974), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1172099204), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-297165667), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1954926268), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1462866563), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1398187000), "e83a4d55-95f6-4fcf-8694-f4033dc2195a" }, { new PrefabGUID(1336193986), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1339620791), "39b357a4-1184-4765-971b-c230d8413bd1" }, { new PrefabGUID(1850515789), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1970983747), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-326374250), "298cd476-0bd2-4145-8ef0-6f4a98fb1c9c" }, { new PrefabGUID(-1880729304), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(711231628), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-976938930), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1711943933), "9e67072d-7de2-46a0-bb47-956d9c99f35d" }, { new PrefabGUID(-937443015), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1067834426), "5a75d559-b485-4294-ab62-3acad3dbd6d3" }, { new PrefabGUID(1738354598), "256ac2f6-2900-4ec7-88c1-a04e0c823cb6" }, { new PrefabGUID(-1428039996), "2567cac8-742a-42ef-8d7c-4eccc337edc3" }, { new PrefabGUID(-1504629350), "4dd23ad7-f810-4be5-8a07-1332216ea39c" }, { new PrefabGUID(-2095410919), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1734839687), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1956103113), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-691814641), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2106739571), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2097352908), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(576026408), "9340e8a8-a29a-461f-ab37-bc7e7017af1e" }, { new PrefabGUID(138056981), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1385465144), "dd40ce37-4ca6-4a92-8f64-e2c1074c0a52" }, { new PrefabGUID(-1401133170), "002f5033-d4d7-484b-ba81-eda2fcffc212" }, { new PrefabGUID(-105601189), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(124285667), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(31826871), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-498302954), "8c613833-9031-4a3b-a842-e884c14ade3b" }, { new PrefabGUID(1927100043), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(985669672), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(305230608), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(2096535189), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1015932492), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(330164959), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(306615743), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1485893437), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-39311902), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(377778793), "2c56b280-6458-418f-909f-a9ee98ed2393" }, { new PrefabGUID(564244811), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(2111431121), "ad54783a-3d42-4b07-b2ce-f8384ec1338d" }, { new PrefabGUID(-1432604486), "8abf33e8-3236-4f57-931b-bf149307a8c4" }, { new PrefabGUID(-786900742), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-348862907), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1743540461), "53befbab-3d9f-4b95-b2b0-ba0be0f38555" }, { new PrefabGUID(1250277114), "9b419d27-95f4-4d68-8934-2732d39a7271" }, { new PrefabGUID(1771061239), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1628136011), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1271143604), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(793860757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-955554663), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2117925151), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1400073690), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-309308308), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1173842428), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-918633640), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1684080967), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-195933675), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1298478938), "c55a234a-1d22-491c-8862-a6ed36995e93" }, { new PrefabGUID(-63677606), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1185642044), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-668068170), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(2099754785), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1990869093), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(846291757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1241930020), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1980019894), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-135866689), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-616120746), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1298623256), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1326530647), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(898624706), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1242557903), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-95450612), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(325438116), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1372470796), "1e024a2f-d4eb-44d2-8181-70ba38aa4e56" }, { new PrefabGUID(-1681336728), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(734658196), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(345561766), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1104157543), "eb4a31d2-efae-45c4-9310-5402388d8a82" }, { new PrefabGUID(-1245963301), "61588315-1cbc-43a7-9584-bfa65245fb14" }, { new PrefabGUID(-1654954396), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1558429115), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(920051497), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(280173050), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(379001645), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(1397338806), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1161539168), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(688350142), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2145136774), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1072457678), "3a933056-c2c4-4596-958e-5bdeb171711d" }, { new PrefabGUID(-526118698), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-821573025), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(-1996241419), "ce20631a-0fae-473a-a503-348f91c75284" }, { new PrefabGUID(76767983), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(247740796), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-453760177), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2013216961), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1825390216), "b8af0f11-11e4-4420-ab2a-b1b60371c741" }, { new PrefabGUID(2039677643), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1270706044), "ae2dcdee-a6b7-4ffa-8ca2-2c06707be8bb" }, { new PrefabGUID(1070827786), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-1854347593), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-452406649), "23fefb60-4e3b-4eee-b735-47fd052d1340" }, { new PrefabGUID(-1038102898), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1303418171), "40d14ea5-e460-4503-ba32-1c4aa689b360" }, { new PrefabGUID(-932485064), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(160063059), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1972594588), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(992487676), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-723874886), "f8636567-f406-42e8-bdbe-4a1a950593e6" }, { new PrefabGUID(-1389186216), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-317399619), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1181965808), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(140047325), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1841930998), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-290102537), "fa0e4477-3204-4050-8b57-7ee9c30953e9" }, { new PrefabGUID(1713280509), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-345652149), "4fdf13aa-1869-4f81-b98a-a111aef3e4b8" }, { new PrefabGUID(2072201164), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-749335766), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1085783726), "dff082b1-1710-4dae-b4ff-26fbab5f4aaf" }, { new PrefabGUID(-453331838), "fb5f3892-03f5-4d70-8e7e-6b54491c6301" }, { new PrefabGUID(-212014657), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1238091894), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1328627408), "972c2a22-8e4a-4bc9-a18d-aacd9b935a2c" }, { new PrefabGUID(644410055), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(974235336), "faf99a30-bc16-47ba-aae1-8a0e5db8ae17" }, { new PrefabGUID(-1362190512), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(210529811), "26c2e0da-c6de-4f99-9fb0-33e4e9abecfa" }, { new PrefabGUID(-1768784526), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-996493500), "8f4443ad-a8d7-4e03-8bdb-bd41404c2c66" }, { new PrefabGUID(-1329891521), "576c577e-468c-4945-bd33-830600225111" }, { new PrefabGUID(1450902136), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(859877682), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1734264526), "68d09f34-9bab-4319-86c2-1a6dca1bb926" }, { new PrefabGUID(1754040702), "677d91fb-6188-4eed-b5ee-d933c9e1249b" }, { new PrefabGUID(1470213751), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1623080868), "9b796d9c-3cf3-4e5b-9009-4635da6da444" }, { new PrefabGUID(1937597415), "67fb9c25-7ec9-4915-8502-3aac2512f615" }, { new PrefabGUID(935984304), "cc73854b-7e50-4a89-b30d-4a9bb059e387" }, { new PrefabGUID(-1365570044), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(-2068632541), "9d4315aa-3784-42e7-9957-97e886e34b17" }, { new PrefabGUID(2080406227), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1638937811), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-503137581), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-947518364), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1730693034), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1920828971), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-107743040), "749a9d1a-7274-41c6-8296-cd838ef55386" }, { new PrefabGUID(506072916), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1022054621), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-653938456), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(472850370), "fc6913e7-2cf6-4c39-aed0-a43103c448a3" }, { new PrefabGUID(-1360906203), "f01433c3-a12c-45fc-aeaf-a15598c58188" }, { new PrefabGUID(-880319836), "ecd2b1db-e1d3-4d17-8049-194dab91acb9" }, { new PrefabGUID(993583640), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(1335008684), "f67d6df5-aca2-4c41-aaca-809a89bc189c" }, { new PrefabGUID(574933909), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(826190081), "1d70a029-199f-4cc8-b93b-12509d6f7b3f" }, { new PrefabGUID(249896389), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1844993528), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(922686381), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(787005490), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(604882732), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2141326610), "a1d7ac88-a52b-456a-aec4-1e7b8b3c31f0" }, { new PrefabGUID(1680946425), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1729075022), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(32629003), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1860769470), "dabbed82-6f35-4760-b5b7-04a9aa66d1b9" }, { new PrefabGUID(-1772111618), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-57462538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1574404388), "0b8738c2-edc6-4ed3-a7fa-f94ff1635762" }, { new PrefabGUID(22199616), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-616794756), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(651613264), "566dd54c-313d-4619-9d32-d844ca50bc25" }, { new PrefabGUID(1129782597), "1631569e-8fec-461c-a629-b977f6b02e71" }, { new PrefabGUID(-938355432), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1470096516), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(163224625), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1636251764), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1221546136), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(566224334), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1685753538), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1759227484), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(1826128809), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(664138263), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1575781217), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(177071276), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(1550497814), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1364381862), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(1612184116), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-425763347), "810876cd-30d4-4b21-b202-bee5752fe221" }, { new PrefabGUID(-1184139778), "326cb84a-e436-4974-adc5-bb977427966b" }, { new PrefabGUID(1511001063), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(1660777757), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-650664522), "4e8f9389-78ca-47ab-8926-c8ed64c91db3" }, { new PrefabGUID(1834131915), "7f308c4a-f003-4be7-a2dc-b7af95ea7159" }, { new PrefabGUID(992015964), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1871956083), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2134585360), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-1859321594), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(690549364), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(438919203), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(-2140645618), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(62301155), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(29969582), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-2053450457), "59189da9-94bf-4153-8fbd-dcdcb086a66d" }, { new PrefabGUID(-1337273957), "97db39a8-aa0b-4197-aa82-f0a047809d05" }, { new PrefabGUID(-1193297071), "49eecac8-e9d0-4878-8b5a-dd03fb3f0145" }, { new PrefabGUID(1311267272), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(-1574537639), "c31af493-50a7-480c-96fb-3c7798db5370" }, { new PrefabGUID(578807372), "5a4b424f-3775-4322-84a9-a6bfa0804761" }, { new PrefabGUID(764619540), "97246fbe-4a67-40a9-bf33-df3caf89c686" }, { new PrefabGUID(2037106453), "b6db4147-5703-4ba0-8190-d35dc76080b0" }, { new PrefabGUID(-2024596663), "92dd8a5b-d92d-4e6d-9d3f-9417988f3259" }, { new PrefabGUID(-1255881274), "ed7735e1-218f-4e19-8048-adac907e1e8f" }, { new PrefabGUID(-1462274656), "ce2bf030-de34-4602-9e81-985a8c6f9875" } }; } } namespace Eclipse.Patches { [HarmonyPatch] internal static class BuffSystemSpawnClientPatch { [HarmonyPatch(typeof(BuffSystem_Spawn_Client), "OnUpdate")] [HarmonyPostfix] private static void OnUpdate(BuffSystem_Spawn_Client __instance) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) if (!Core.HasInitialized) { return; } EntityQuery query = __instance._Query; NativeArray val = ((EntityQuery)(ref query)).ToComponentDataArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val.GetEnumerator(); while (enumerator.MoveNext()) { PrefabGUID current = enumerator.Current; if (ShadowMatter.ShouldOverride(current)) { ShadowMatter.YieldChange(current).Run(); } } } finally { val.Dispose(); } } } [HarmonyPatch] internal static class ClientChatSystemPatch { public enum NetworkEventSubType { RegisterUser, ProgressToClient, ConfigsToClient } [CompilerGenerated] private sealed class d__22 : IEnumerator, IEnumerator, IDisposable { private int <>1__state; private object <>2__current; public string message; public string modVersion; public ClientChatSystem __instance; object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } object IEnumerator.Current { [DebuggerHidden] get { return <>2__current; } } [DebuggerHidden] public d__22(int <>1__state) { this.<>1__state = <>1__state; } [DebuggerHidden] void IDisposable.Dispose() { <>1__state = -2; } private bool MoveNext() { //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) switch (<>1__state) { default: return false; case 0: <>1__state = -1; <>2__current = WaitForSeconds; <>1__state = 1; return true; case 1: <>1__state = -1; SendMessage(NetworkEventSubType.RegisterUser, message, modVersion); _modifyUnitStatBuffLookup = ((SystemBase)__instance).GetBufferLookup(false); return false; } } bool IEnumerator.MoveNext() { //ILSpy generated this explicit interface implementation from .override directive in MoveNext return this.MoveNext(); } [DebuggerHidden] void IEnumerator.Reset() { throw new NotSupportedException(); } } public static bool _userRegistered = false; public static bool _pending = false; private static readonly Regex _regexExtract = new Regex("^\\[(\\d+)\\]:"); private static readonly Regex _regexMAC = new Regex(";mac([^;]+)$"); private static readonly ComponentType[] _networkEventComponents = (ComponentType[])(object)new ComponentType[4] { ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()), ComponentType.ReadOnly(Il2CppType.Of()) }; private static readonly NetworkEventType _networkEventType = new NetworkEventType { IsAdminEvent = false, EventId = NetworkEvents.EventId_ChatMessageEvent, IsDebugEvent = false }; public const string V1_3 = "1.3"; public const string VERSION = "1.3.14"; private static BufferLookup _modifyUnitStatBuffLookup; private static EntityManager EntityManager => Core.EntityManager; private static Entity LocalCharacter => Core.LocalCharacter; private static Entity LocalUser => Core.LocalUser; private static WaitForSeconds WaitForSeconds { get; } = new WaitForSeconds(2.5f); public static BufferLookup ModifyUnitStatBuffLookup => _modifyUnitStatBuffLookup; [HarmonyPatch(typeof(ClientChatSystem), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ClientChatSystem __instance) { //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Expected O, but got Unknown //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) if (!Core._initialized || !LocalCharacter.Exists() || !LocalUser.Exists()) { return; } if (!_userRegistered && !_pending) { _pending = true; try { string text = LocalUser.GetUser().PlatformId.ToString(); string message = "1.3.14;" + text; SendMessageDelayRoutine(__instance, message, "1.3.14").Run(); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(55, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Failed sending registration payload to server! Error - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); } } EntityQuery receiveChatMessagesQuery = __instance._ReceiveChatMessagesQuery; NativeArray val2 = ((EntityQuery)(ref receiveChatMessagesQuery)).ToEntityArray(AllocatorHandle.op_Implicit((Allocator)2)); try { Enumerator enumerator = val2.GetEnumerator(); while (enumerator.MoveNext()) { Entity current = enumerator.Current; if (current.Has()) { ChatMessageServerEvent val3 = current.Read(); string value = ((FixedString512Bytes)(ref val3.MessageText)).Value; if (((object)(ServerChatMessageType)(ref val3.MessageType)).Equals((object)(ServerChatMessageType)6) && TryHandleBridgeServerMessage(value, out var _)) { EntityManager entityManager = EntityManager; ((EntityManager)(ref entityManager)).DestroyEntity(current); } } } } finally { val2.Dispose(); } if (!((object)_modifyUnitStatBuffLookup).Equals((object?)default(BufferLookup))) { _modifyUnitStatBuffLookup.Update((SystemBase)(object)__instance); } } [IteratorStateMachine(typeof(d__22))] private static IEnumerator SendMessageDelayRoutine(ClientChatSystem __instance, string message, string modVersion) { //yield-return decompiler failed: Unexpected instruction in Iterator.Dispose() return new d__22(0) { __instance = __instance, message = message, modVersion = modVersion }; } private static void SendMessage(NetworkEventSubType subType, string message, string modVersion) { //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Expected O, but got Unknown string text = $"[ECLIPSE][{subType}]:{message}"; string text2 = ((!modVersion.StartsWith("1.3")) ? string.Empty : (text + ";mac" + GenerateMACV1_3(text))); string text3 = text2; if (!string.IsNullOrEmpty(text3) && !EmberglassEclipseBridge.TrySendRegistration(text3)) { ChatMessageEvent val = default(ChatMessageEvent); val.MessageText = new FixedString512Bytes(text3); val.MessageType = (ChatMessageType)4; val.ReceiverEntity = LocalUser.GetNetworkId(); ChatMessageEvent componentData = val; EntityManager entityManager = EntityManager; Entity entity = ((EntityManager)(ref entityManager)).CreateEntity(_networkEventComponents); entity.Write(new FromCharacter { Character = LocalCharacter, User = LocalUser }); entity.Write(_networkEventType); entity.Write(componentData); ManualLogSource log = Core.Log; bool flag = default(bool); BepInExInfoLogInterpolatedStringHandler val2 = new BepInExInfoLogInterpolatedStringHandler(54, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("Registration payload sent to server via ChatMessage ("); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(DateTime.Now); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral(")"); } log.LogInfo(val2); } } internal static bool TryHandleBridgeServerMessage(string message, out string messageKind) { messageKind = "server message"; if (!CheckMAC(message, out var originalMessage)) { return false; } messageKind = GetMessageKind(originalMessage); HandleServerMessage(originalMessage); TryLoadShadowMatter(); return true; } private static string GetMessageKind(string message) { if (!int.TryParse(_regexExtract.Match(message).Groups[1].Value, out var result)) { return "server message"; } return result switch { 1 => "progress", 2 => "configs", _ => "server message", }; } private static void TryLoadShadowMatter() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Expected O, but got Unknown try { ShadowMatter.OnLoad(); } catch (Exception ex) { ManualLogSource log = Core.Log; bool flag = default(bool); BepInExWarningLogInterpolatedStringHandler val = new BepInExWarningLogInterpolatedStringHandler(0, 1, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogWarning(val); } } private static void HandleServerMessage(string message) { //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Expected O, but got Unknown //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Expected O, but got Unknown bool flag = default(bool); if (int.TryParse(_regexExtract.Match(message).Groups[1].Value, out var result)) { try { switch (result) { case 1: DataService.ParsePlayerData(DataService.ParseMessageString(_regexExtract.Replace(message, ""))); if (CanvasService.DataHUD._killSwitch) { CanvasService.DataHUD._killSwitch = false; } if (CanvasService._canvasRoutine == null) { CanvasService._canvasRoutine = CanvasService.CanvasUpdateLoop().Run(); CanvasService.DataHUD._active = true; } break; case 2: DataService.ParseConfigData(DataService.ParseMessageString(_regexExtract.Replace(message, ""))); _userRegistered = true; break; } return; } catch (Exception ex) { ManualLogSource log = Core.Log; BepInExErrorLogInterpolatedStringHandler val = new BepInExErrorLogInterpolatedStringHandler(55, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("] failed to handle message after parsing event type - "); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted(ex); } log.LogError(val); return; } } ManualLogSource log2 = Core.Log; BepInExWarningLogInterpolatedStringHandler val2 = new BepInExWarningLogInterpolatedStringHandler(55, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("] failed to parse event type after MAC verification - "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(message); } log2.LogWarning(val2); } private static bool CheckMAC(string receivedMessage, out string originalMessage) { Match match = _regexMAC.Match(receivedMessage); originalMessage = string.Empty; if (match.Success) { string value = match.Groups[1].Value; string text = _regexMAC.Replace(receivedMessage, ""); if (VerifyMAC(text, value, Core.NEW_SHARED_KEY)) { originalMessage = text; return true; } Core.Log.LogInfo((object)"MAC verification failed for matched RegEx server message."); } return false; } private static bool VerifyMAC(string message, string receivedMAC, byte[] key) { using HMACSHA256 hMACSHA = new HMACSHA256(key); byte[] bytes = Encoding.UTF8.GetBytes(message); string s = Convert.ToBase64String(hMACSHA.ComputeHash(bytes)); return CryptographicOperations.FixedTimeEquals(Encoding.UTF8.GetBytes(s), Encoding.UTF8.GetBytes(receivedMAC)); } private static string GenerateMACV1_3(string message) { using HMACSHA256 hMACSHA = new HMACSHA256(Core.NEW_SHARED_KEY); byte[] bytes = Encoding.UTF8.GetBytes(message); return Convert.ToBase64String(hMACSHA.ComputeHash(bytes)); } private static void OnInputChange() { } public static void Reset() { //IL_0005: Unknown result type (might be due to invalid IL or missing references) _modifyUnitStatBuffLookup = default(BufferLookup); } } [HarmonyPatch] internal static class InitializationPatches { private static readonly bool _shouldInitialize = Plugin.Leveling || Plugin.Expertise || Plugin.Legacies || Plugin.Familiars || Plugin.Quests; private static bool _setCanvas; private static bool _attributesInitialized; private static InventorySubMenu _inventorySubMenu; public static bool AttributesInitialized => _attributesInitialized; [HarmonyPatch(typeof(GameDataManager), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(GameDataManager __instance) { //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Expected O, but got Unknown //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Expected O, but got Unknown if (!__instance.GameDataInitialized || !((ComponentSystemBase)__instance).World.IsCreated) { return; } bool flag = default(bool); try { if (!_shouldInitialize || Core._initialized) { return; } Core.Initialize(__instance); if (Core._initialized) { ManualLogSource log = Core.Log; BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(25, 2, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val).AppendLiteral("] initialized on client!"); } log.LogInfo(val); } } catch (Exception ex) { ManualLogSource log2 = Core.Log; BepInExErrorLogInterpolatedStringHandler val2 = new BepInExErrorLogInterpolatedStringHandler(59, 3, ref flag); if (flag) { ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("Eclipse"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("["); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted("1.3.14"); ((BepInExLogInterpolatedStringHandler)val2).AppendLiteral("] failed to initialize on client, exiting on try-catch... "); ((BepInExLogInterpolatedStringHandler)val2).AppendFormatted(ex); } log2.LogError(val2); } } [HarmonyPatch(typeof(UICanvasSystem), "UpdateHideIfDisabled")] [HarmonyPostfix] private static void OnUpdatePostfix(UICanvasBase canvas) { if (!_setCanvas && Core._initialized) { _setCanvas = true; Core.SetCanvas(canvas); } } [HarmonyPatch(typeof(InventorySubMenuMapper), "InitializeUI")] [HarmonyPostfix] private static void InitializeUIPostfix(InventorySubMenu menu) { if (_inventorySubMenu == null) { _inventorySubMenu = menu; } } public static void TryInitializeAttributeValues() { if (!_attributesInitialized && (Object)(object)_inventorySubMenu != (Object)null) { _attributesInitialized = CanvasService.InitializeHUD.InitializeAttributeValues(_inventorySubMenu); } } [HarmonyPatch(typeof(ClientBootstrapSystem), "OnDestroy")] [HarmonyPrefix] private static void OnUpdatePrefix(ClientBootstrapSystem __instance) { CanvasService._shiftRoutine.Stop(); CanvasService._canvasRoutine.Stop(); CanvasService.DataHUD._killSwitch = true; CanvasService._shiftRoutine = null; CanvasService._canvasRoutine = null; CanvasService.DataHUD._active = false; CanvasService.DataHUD._shiftActive = false; CanvasService.DataHUD._ready = false; ClientChatSystemPatch._userRegistered = false; ClientChatSystemPatch._pending = false; CanvasService.DataHUD._version = string.Empty; _setCanvas = false; CanvasService.DataHUD._abilityTooltipData = null; CanvasService.DataHUD._dailyQuestIcon = null; CanvasService.DataHUD._weeklyQuestIcon = null; _attributesInitialized = false; _inventorySubMenu = null; CanvasService.ResetState(); Core.Reset(); } } [HarmonyPatch] internal static class InputActionSystemPatch { private static bool _isGamepad; public static bool IsGamepad => _isGamepad; [HarmonyPatch(typeof(InputActionSystem), "OnUpdate")] [HarmonyPostfix] private static void OnUpdatePostfix(InputActionSystem __instance) { _isGamepad = __instance.UsingGamepad; } } [HarmonyPatch] internal static class ServantMenuMapperPatch { private const string SPELL_POWER = "Spell Power"; private const string HUNT_PROFICIENCY = "Hunt Proficiency"; public static readonly Dictionary ShinyBuffColorHexMap = new Dictionary { { new PrefabGUID(348724578), "Chaos" }, { new PrefabGUID(-1576512627), "Storm" }, { new PrefabGUID(-1246704569), "Blood" }, { new PrefabGUID(1723455773), "Illusion" }, { new PrefabGUID(27300215), "Frost" }, { new PrefabGUID(-325758519), "Unholy" } }; private static ServantInventorySubMenu _familiarServantMenu; private static Entity _familiarServant; private static Entity _familiar; [HarmonyPatch(typeof(ServantInventorySubMenuMapper), "OnUpdate")] [HarmonyPrefix] private static void OnUpdatePrefix(ServantInventorySubMenuMapper __instance) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) if (!Core._initialized || !__instance._Target.HasValue()) { return; } Entity target = __instance._Target; if (((Entity)(ref target)).Equals(_familiarServant)) { return; } if (!target.HasConnectedCoffin()) { _familiarServant = target; _familiarServantMenu = __instance._Menu; if (!__instance.GetLocalPlayer().TryGetBuffer(out DynamicBuffer dynamicBuffer)) { return; } Enumerator enumerator = dynamicBuffer.GetEnumerator(); while (enumerator.MoveNext()) { FollowerBuffer current = enumerator.Current; NetworkedEntity entity = current.Entity; Entity entityOnServer = ((NetworkedEntity)(ref entity)).GetEntityOnServer(); if (entityOnServer.Exists()) { _familiar = entityOnServer; _ = ShinyBuffColorHexMap.FirstOrDefault((KeyValuePair buff) => _familiar.HasBuff(buff.Key)).Value; } } } else if (target.Exists()) { _familiarServant = Entity.Null; _familiar = Entity.Null; } } private static void ModifyFamiliarServantMenu(GameObject menu) { } private static void RestoreServantMenu(GameObject menu) { } } } namespace BloodcraftEclipseBridge.Messages { internal sealed class EclipseRegistrationPacket { public string Message { get; set; } = string.Empty; public EclipseRegistrationPacket() { } public EclipseRegistrationPacket(string message) { Message = message; } } internal sealed class EclipseServerMessagePacket { public string Message { get; set; } = string.Empty; public EclipseServerMessagePacket() { } public EclipseServerMessagePacket(string message) { Message = message; } } }