Decompiled source of LBoL Run Logger v3.2.2

RunLogger.dll

Decompiled a month ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using System.Text;
using AddWatermark;
using BepInEx;
using BepInEx.Bootstrap;
using BepInEx.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using LBoL.Base;
using LBoL.Base.Extensions;
using LBoL.ConfigData;
using LBoL.Core;
using LBoL.Core.Adventures;
using LBoL.Core.Battle;
using LBoL.Core.Battle.BattleActions;
using LBoL.Core.Battle.Interactions;
using LBoL.Core.Cards;
using LBoL.Core.Dialogs;
using LBoL.Core.GapOptions;
using LBoL.Core.Intentions;
using LBoL.Core.Randoms;
using LBoL.Core.SaveData;
using LBoL.Core.Stations;
using LBoL.Core.Stats;
using LBoL.Core.StatusEffects;
using LBoL.Core.Units;
using LBoL.EntityLib.Adventures;
using LBoL.EntityLib.Adventures.FirstPlace;
using LBoL.EntityLib.Adventures.Shared12;
using LBoL.EntityLib.Adventures.Shared23;
using LBoL.EntityLib.Adventures.Stage1;
using LBoL.EntityLib.Adventures.Stage2;
using LBoL.EntityLib.Adventures.Stage3;
using LBoL.EntityLib.EnemyUnits.Character;
using LBoL.EntityLib.EnemyUnits.Opponent;
using LBoL.EntityLib.Exhibits;
using LBoL.EntityLib.Exhibits.Adventure;
using LBoL.EntityLib.Exhibits.Common;
using LBoL.EntityLib.PlayerUnits;
using LBoL.Presentation;
using LBoL.Presentation.I10N;
using LBoL.Presentation.UI;
using LBoL.Presentation.UI.ExtraWidgets;
using LBoL.Presentation.UI.Panels;
using LBoL.Presentation.UI.Widgets;
using Microsoft.CodeAnalysis;
using Newtonsoft.Json;
using PatchouliCharacterMod.Config;
using RunLogger.Utils;
using RunLogger.Utils.Enums;
using RunLogger.Utils.LogFile;
using RunLogger.Utils.Managers;
using RunLogger.Utils.RunLogLib;
using RunLogger.Utils.RunLogLib.BattleDetails;
using RunLogger.Utils.RunLogLib.Entities;
using RunLogger.Utils.RunLogLib.Nodes;
using RunLogger.Utils.UploadPanelObjects;
using RunLogger.Wrappers;
using TMPro;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.Networking;
using UnityEngine.SceneManagement;
using UnityEngine.UI;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: IgnoresAccessChecksTo("LBoL.Base")]
[assembly: IgnoresAccessChecksTo("LBoL.ConfigData")]
[assembly: IgnoresAccessChecksTo("LBoL.Core")]
[assembly: IgnoresAccessChecksTo("LBoL.EntityLib")]
[assembly: IgnoresAccessChecksTo("LBoL.Presentation")]
[assembly: IgnoresAccessChecksTo("Untitled.ConfigDataBuilder.Base")]
[assembly: AssemblyCompany("RunLogger")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+58ce987e3dcf0e89cfa7a7e0795d8897cbdadc2d")]
[assembly: AssemblyProduct("RunLogger")]
[assembly: AssemblyTitle("RunLogger")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
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;
		}
	}
}
namespace RunLogger
{
	[BepInPlugin("ev.lbol.utils.runLogger", "Run Logger", "3.2.2")]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	[BepInProcess("LBoL.exe")]
	public class BepinexPlugin : BaseUnityPlugin
	{
		private static readonly Harmony harmony = PInfo.harmony;

		internal static ManualLogSource log;

		internal static ConfigEntry<bool> SaveFailure;

		internal static ConfigEntry<bool> SaveAbandoned;

		internal static ConfigEntry<bool> SaveProfileName;

		internal static ConfigEntry<bool> SaveTogether;

		internal static List<ConfigEntry<bool>> AutoUploads = new List<ConfigEntry<bool>>();

		internal static bool HasPatchouliMod;

		private void Awake()
		{
			log = ((BaseUnityPlugin)this).Logger;
			Object.DontDestroyOnLoad((Object)(object)((Component)this).gameObject);
			((Object)((Component)this).gameObject).hideFlags = (HideFlags)61;
			SaveFailure = ((BaseUnityPlugin)this).Config.Bind<bool>("Save", "Save Failed Run", true, "Save log for the current run even it failed.");
			SaveAbandoned = ((BaseUnityPlugin)this).Config.Bind<bool>("Save", "Save Abandoned Run", false, "Save log for the current run even it is abandoned.");
			SaveProfileName = ((BaseUnityPlugin)this).Config.Bind<bool>("Save", "Save Profile Name", true, "Save and show profile name when uploaded to LBoL Logs.");
			SaveTogether = ((BaseUnityPlugin)this).Config.Bind<bool>("Save", "Save Profiles Together", true, "Save the logs of different profiles in the same directory.\nIf set to `false`, they are saved under the corresponding index, i.e. `0`/`1`/`2`.");
			for (int i = 0; i < 3; i++)
			{
				AutoUploads.Add(((BaseUnityPlugin)this).Config.Bind<bool>("Upload", $"Auto Upload Log #{i}", false, $"Auto upload the log of Profile #{i} to LBoL Logs.\nIf set to `false`, you can upload with description at the result screen.\nUploaded log will be deleted from local drive."));
			}
			harmony.PatchAll();
			if (Chainloader.PluginInfos.ContainsKey("neo.lbol.tools.watermark"))
			{
				WatermarkWrapper.ActivateWatermark();
			}
			HasPatchouliMod = Chainloader.PluginInfos.ContainsKey("rmrfmaxx.lbol.PatchouliCharacterMod");
		}

		private void OnDestroy()
		{
			if (harmony != null)
			{
				harmony.UnpatchSelf();
			}
			ObjectsManager.DestroyClone();
		}
	}
	public static class PInfo
	{
		public const string GUID = "ev.lbol.utils.runLogger";

		public const string Name = "Run Logger";

		public const string version = "3.2.2";

		public static readonly Harmony harmony = new Harmony("ev.lbol.utils.runLogger");
	}
}
namespace RunLogger.Wrappers
{
	internal class PatchouliModWrapper
	{
		internal static Dictionary<string, dynamic> GetConfigs()
		{
			return new Dictionary<string, object>
			{
				{
					"startingExhibitSign",
					GetStartingExhibitSignWrapper()
				},
				{
					"startingCardSign",
					GetStartingCardSignWrapper()
				}
			};
		}

		[MethodImpl(MethodImplOptions.NoInlining)]
		internal static int GetStartingExhibitSignWrapper()
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0006: Expected I4, but got Unknown
			return (int)PatchouliConfigEntry.GetStartingExhibitSign();
		}

		[MethodImpl(MethodImplOptions.NoInlining)]
		internal static int GetStartingCardSignWrapper()
		{
			//IL_0000: Unknown result type (might be due to invalid IL or missing references)
			//IL_0006: Expected I4, but got Unknown
			return (int)PatchouliConfigEntry.GetStartingCardSign();
		}
	}
	internal class WatermarkWrapper
	{
		[MethodImpl(MethodImplOptions.NoInlining)]
		internal static void ActivateWatermark()
		{
			API.ActivateWatermark();
		}
	}
}
namespace RunLogger.Utils
{
	internal static class Configs
	{
		internal const string RunLoggerDirName = "runLogger";

		internal const string TempDirName = "temp";

		internal const string GasUrl = "https://script.google.com/macros/s/AKfycbxQZf9xkxJX-YNYxXAjssmqT2-HFmH1EPZ6bjbcoz1RxvfWdHoP1eWC8D4XiQkIpmLvbw/exec";

		internal const string RandomMana = "A";

		internal const int Profiles = 3;

		internal static readonly string[] PriorityMods = new string[2] { "ev.lbol.utils.runLogger", "neo.lbol.fix.rngFix" };

		internal static readonly string[] ExcludedMods = new string[2] { "com.bepis.bepinex.scriptengine", "neo.lbol.tools.watermark" };

		internal const string HelpMeEirinMod = "neo.lbol.qol.helpMeEirin";

		internal const string PatchouliMod = "rmrfmaxx.lbol.PatchouliCharacterMod";
	}
	internal static class Controller
	{
		internal static Instance Instance { get; private set; }

		internal static StationObj LastStation
		{
			get
			{
				int num = CurrentStationIndex - 1;
				if (num == -1)
				{
					return null;
				}
				return Instance.RunLog.Stations[num];
			}
		}

		internal static StationObj CurrentStation => Instance.RunLog.Stations.LastOrDefault();

		internal static int CurrentStationIndex => Instance.RunLog.Stations.Count - 1;

		internal static bool ShowRandomResult => Instance.RunLog.Settings.ShowRandomResult;

		internal static void CreateInstance(RunLog runLog)
		{
			Instance = new Instance(runLog);
			Instance.IsInitialized = true;
		}

		internal static void DestroyInstance()
		{
			Instance.IsInitialized = false;
			Instance = null;
		}
	}
	internal class EnumeratorHook : IEnumerable
	{
		[CompilerGenerated]
		private sealed class <GetEnumerator>d__7 : IEnumerator<object>, IEnumerator, IDisposable
		{
			private int <>1__state;

			private object <>2__current;

			public EnumeratorHook <>4__this;

			private object <item>5__1;

			object IEnumerator<object>.Current
			{
				[DebuggerHidden]
				get
				{
					return <>2__current;
				}
			}

			object IEnumerator.Current
			{
				[DebuggerHidden]
				get
				{
					return <>2__current;
				}
			}

			[DebuggerHidden]
			public <GetEnumerator>d__7(int <>1__state)
			{
				this.<>1__state = <>1__state;
			}

			[DebuggerHidden]
			void IDisposable.Dispose()
			{
				<item>5__1 = null;
				<>1__state = -2;
			}

			private bool MoveNext()
			{
				switch (<>1__state)
				{
				default:
					return false;
				case 0:
					<>1__state = -1;
					<>4__this.prefixAction();
					break;
				case 1:
					<>1__state = -1;
					<>4__this.postItemAction(<item>5__1);
					<item>5__1 = null;
					break;
				}
				if (<>4__this.enumerator.MoveNext())
				{
					<item>5__1 = <>4__this.enumerator.Current;
					<>4__this.preItemAction(<item>5__1);
					<>2__current = <>4__this.itemAction(<item>5__1);
					<>1__state = 1;
					return true;
				}
				<>4__this.postfixAction();
				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();
			}
		}

		internal IEnumerator enumerator;

		internal Action prefixAction = delegate
		{
		};

		internal Action<object> preItemAction = delegate
		{
		};

		internal Func<object, object> itemAction = (object item) => item;

		internal Action<object> postItemAction = delegate
		{
		};

		internal Action postfixAction = delegate
		{
		};

		IEnumerator IEnumerable.GetEnumerator()
		{
			return GetEnumerator();
		}

		[IteratorStateMachine(typeof(<GetEnumerator>d__7))]
		internal IEnumerator GetEnumerator()
		{
			//yield-return decompiler failed: Unexpected instruction in Iterator.Dispose()
			return new <GetEnumerator>d__7(0)
			{
				<>4__this = this
			};
		}
	}
	internal static class Helpers
	{
		internal static Station CurrentStation => Singleton<GameMaster>.Instance.CurrentGameRun.CurrentStation;

		internal static int CurrentSaveIndex => Singleton<GameMaster>.Instance.CurrentSaveIndex.GetValueOrDefault();

		internal static bool AutoUpload
		{
			get
			{
				return BepinexPlugin.AutoUploads[CurrentSaveIndex].Value;
			}
			set
			{
				BepinexPlugin.AutoUploads[CurrentSaveIndex].Value = value;
			}
		}

		internal static void AddStatus(GameRunController gameRun, StationObj stationObj, int? overrideHp)
		{
			PlayerUnit player = gameRun.Player;
			int hp = overrideHp ?? ((Unit)player).Hp;
			Status status = new Status
			{
				Money = gameRun.Money,
				Hp = hp,
				MaxHp = ((Unit)player).MaxHp,
				Power = player.Power,
				MaxPower = player.MaxPower
			};
			if (stationObj == null)
			{
				Controller.Instance.RunLog.Settings.Status = status;
			}
			else
			{
				stationObj.Status = status;
			}
		}

		internal static string GetEnemyGroupId(Station station)
		{
			EnemyGroup val = null;
			BattleAdvTestStation val2 = (BattleAdvTestStation)(object)((station is BattleAdvTestStation) ? station : null);
			if (val2 != null)
			{
				val = val2.EnemyGroup;
			}
			else
			{
				BattleStation val3 = (BattleStation)(object)((station is BattleStation) ? station : null);
				if (val3 != null)
				{
					val = val3.EnemyGroup;
				}
			}
			return (val != null) ? val.Id : null;
		}

		internal static Adventure GetAdventure(Station station)
		{
			if (station == null)
			{
				station = CurrentStation;
			}
			Adventure result = null;
			BattleAdvTestStation val = (BattleAdvTestStation)(object)((station is BattleAdvTestStation) ? station : null);
			if (val != null)
			{
				result = val.Adventure;
			}
			else
			{
				AdventureStation val2 = (AdventureStation)(object)((station is AdventureStation) ? station : null);
				if (val2 != null)
				{
					result = val2.Adventure;
				}
				else
				{
					EntryStation val3 = (EntryStation)(object)((station is EntryStation) ? station : null);
					if (val3 != null)
					{
						result = val3.DebutAdventure;
					}
					else
					{
						TradeStation val4 = (TradeStation)(object)((station is TradeStation) ? station : null);
						if (val4 != null)
						{
							result = val4.Adventure;
						}
					}
				}
			}
			return result;
		}

		internal static string GetAdventureId(Station station)
		{
			Adventure adventure = GetAdventure(station);
			return (adventure != null) ? adventure.Id : null;
		}

		internal static bool IsAdventure<T>() where T : Adventure
		{
			DialogStorage storage;
			return IsAdventure<T>(out storage);
		}

		internal static bool IsAdventure<T>(out DialogStorage storage) where T : Adventure
		{
			Adventure adventure = GetAdventure(null);
			storage = ((adventure != null) ? adventure.Storage : null);
			return adventure is T;
		}

		internal static CardObj ParseCard(Card card)
		{
			return new CardObj
			{
				Id = ((GameEntity)card).Id,
				IsUpgraded = card.IsUpgraded,
				UpgradeCounter = card.UpgradeCounter
			};
		}

		internal static List<CardObj> ParseCards(IEnumerable<Card> cards)
		{
			return cards.Select((Card card) => ParseCard(card)).ToList();
		}

		internal static CardObjWithPrice ParseCardWithPrice(Card card, int? price = null)
		{
			return new CardObjWithPrice
			{
				Id = ((GameEntity)card).Id,
				IsUpgraded = card.IsUpgraded,
				UpgradeCounter = card.UpgradeCounter,
				Price = price
			};
		}

		internal static string GetBaseMana(string oldBaseMana, IEnumerable<string> exhibits)
		{
			//IL_001d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0023: Invalid comparison between Unknown and I4
			string text = oldBaseMana;
			foreach (string exhibit in exhibits)
			{
				ExhibitConfig val = ExhibitConfig.FromId(exhibit);
				if ((int)val.Rarity == 3 && !val.BaseManaColor.HasValue)
				{
					text += "A";
				}
			}
			return text;
		}

		internal static void GetData(out Dictionary<string, object> data)
		{
			StationObj currentStation = Controller.CurrentStation;
			data = currentStation.Data ?? (currentStation.Data = new Dictionary<string, object>());
		}

		internal static void AddDataValue<T>(string key, T value)
		{
			GetData(out var data);
			data.Add(key, value);
		}

		internal static void AddDataListItem<T>(string key, T item)
		{
			GetData(out var data);
			object value;
			List<T> list = (data.TryGetValue(key, out value) ? ((List<T>)value) : new List<T>());
			list.Add(item);
			data[key] = list;
		}

		internal static List<T1> GetStorageList<T1, T2>(DialogStorage storage, T2[] keys, string prefix, string suffix = "")
		{
			List<T1> list = new List<T1>();
			object obj = default(object);
			foreach (T2 val in keys)
			{
				string text = $"{prefix}{val}{suffix}";
				storage.TryGetValue<object>(text, ref obj);
				list.Add((T1)obj);
			}
			return list;
		}
	}
	internal class Instance
	{
		internal string Path;

		internal static bool IsInitialized;

		internal int? PreHealHp;

		internal int? BackgroundDancersIndex;

		internal int? DebutUncommonCardsIndex;

		internal bool DebutUncommonCardsChosen;

		internal bool? IsForced;

		internal List<IEnumerable<StationReward>> RewardsBeforeDebut;

		internal bool IsAbandoned;

		internal RunLog RunLog { get; private set; }

		internal Instance(RunLog runLog)
		{
			RunLog = runLog;
		}
	}
	internal class LBoLLogs : MonoBehaviour
	{
		[CompilerGenerated]
		private sealed class <Post>d__1 : IEnumerator<object>, IEnumerator, IDisposable
		{
			private int <>1__state;

			private object <>2__current;

			private UnityWebRequest <request>5__1;

			private byte[] <data>5__2;

			private bool <isNew>5__3;

			private Dictionary<string, object> <result>5__4;

			private object <value>5__5;

			private string <url>5__6;

			object IEnumerator<object>.Current
			{
				[DebuggerHidden]
				get
				{
					return <>2__current;
				}
			}

			object IEnumerator.Current
			{
				[DebuggerHidden]
				get
				{
					return <>2__current;
				}
			}

			[DebuggerHidden]
			public <Post>d__1(int <>1__state)
			{
				this.<>1__state = <>1__state;
			}

			[DebuggerHidden]
			void IDisposable.Dispose()
			{
				<request>5__1 = null;
				<data>5__2 = null;
				<result>5__4 = null;
				<value>5__5 = null;
				<url>5__6 = null;
				<>1__state = -2;
			}

			private bool MoveNext()
			{
				//IL_0055: Unknown result type (might be due to invalid IL or missing references)
				//IL_005f: Expected O, but got Unknown
				//IL_008b: Unknown result type (might be due to invalid IL or missing references)
				//IL_0095: Expected O, but got Unknown
				//IL_009c: Unknown result type (might be due to invalid IL or missing references)
				//IL_00a6: Expected O, but got Unknown
				switch (<>1__state)
				{
				default:
					return false;
				case 0:
					<>1__state = -1;
					((Component)ObjectsManager.Clone.Find("Upload")).gameObject.SetActive(false);
					UploadPanel.Log("Uploading...");
					<request>5__1 = new UnityWebRequest("https://script.google.com/macros/s/AKfycbxQZf9xkxJX-YNYxXAjssmqT2-HFmH1EPZ6bjbcoz1RxvfWdHoP1eWC8D4XiQkIpmLvbw/exec", "POST");
					<data>5__2 = Encoding.UTF8.GetBytes(Logger.Encode(Controller.Instance.RunLog, addIndent: false));
					<request>5__1.uploadHandler = (UploadHandler)new UploadHandlerRaw(<data>5__2);
					<request>5__1.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
					<request>5__1.SetRequestHeader("Content-Type", "application/json");
					<>2__current = <request>5__1.SendWebRequest();
					<>1__state = 1;
					return true;
				case 1:
					<>1__state = -1;
					<isNew>5__3 = HandleResponse(<request>5__1.downloadHandler.text, out <result>5__4);
					if (<isNew>5__3)
					{
						<result>5__4.TryGetValue("url", out <value>5__5);
						<url>5__6 = (string)<value>5__5;
						BepinexPlugin.log.LogDebug((object)<url>5__6);
						UploadPanel.Log("Uploaded", <url>5__6);
						Logger.DeleteLog(Controller.Instance.Path);
						<value>5__5 = null;
						<url>5__6 = null;
					}
					else
					{
						UploadPanel.Log("Upload failed");
					}
					Controller.DestroyInstance();
					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();
			}
		}

		internal static void Upload(string description = null)
		{
			if (!Utility.IsNullOrWhiteSpace(description))
			{
				Controller.Instance.RunLog.Description = description;
			}
			((MonoBehaviour)Singleton<GameMaster>.Instance).StartCoroutine(Post());
		}

		[IteratorStateMachine(typeof(<Post>d__1))]
		private static IEnumerator Post()
		{
			//yield-return decompiler failed: Unexpected instruction in Iterator.Dispose()
			return new <Post>d__1(0);
		}

		private static bool HandleResponse(string response, out Dictionary<string, object> result)
		{
			result = null;
			if (Utility.IsNullOrWhiteSpace(response))
			{
				return false;
			}
			result = JsonConvert.DeserializeObject<Dictionary<string, object>>(response);
			if (!result.TryGetValue("isNew", out var value))
			{
				return false;
			}
			return (bool)value;
		}
	}
}
namespace RunLogger.Utils.UploadPanelObjects
{
	internal static class ObjectsManager
	{
		internal static Transform Panel => GetTransformFromGameRunScene("UploadPanel");

		internal static Transform PanelTemp => GetTransformFromGameRunScene("UploadPanelTemp");

		internal static Transform Clone
		{
			get
			{
				UiManager instance = UiManager._instance;
				if ((Object)(object)instance == (Object)null || !Object.op_Implicit((Object)(object)instance))
				{
					return null;
				}
				if (!instance._panelTable.TryGetValue(typeof(GameResultPanel), out var value))
				{
					return null;
				}
				return ((Component)value).transform.Find("UploadPanel(Clone)");
			}
		}

		private static TMP_InputField TmpInput => ((Component)Clone.Find("TextArea/Input/TextFilterInput")).GetComponent<TMP_InputField>();

		internal static string Text
		{
			get
			{
				return TmpInput.text;
			}
			set
			{
				TmpInput.text = value;
			}
		}

		private static Transform GetTransformFromGameRunScene(string name)
		{
			//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)
			Scene sceneByName = SceneManager.GetSceneByName("GameRun");
			GameObject[] rootGameObjects = ((Scene)(ref sceneByName)).GetRootGameObjects();
			GameObject? obj = Array.Find(rootGameObjects, (GameObject gameObject) => ((Object)gameObject).name == name);
			return (obj != null) ? obj.transform : null;
		}

		internal static Transform GetFromTemp(string path)
		{
			Transform panelTemp = PanelTemp;
			return (panelTemp != null) ? panelTemp.Find(path) : null;
		}

		internal static RectTransform CopyGameObject(Transform transform, string path, Transform parent = null)
		{
			return Object.Instantiate<GameObject>(((Component)transform.Find(path)).gameObject, parent ?? PanelTemp, true).GetComponent<RectTransform>();
		}

		internal static void ChangeText(Transform transform, string text, string color = null)
		{
			LocalizedText component = ((Component)transform).GetComponent<LocalizedText>();
			((Behaviour)component).enabled = false;
			component.key = null;
			((TMP_Text)((Component)transform).GetComponent<TextMeshProUGUI>()).text = ((color == null) ? text : ("<color=#" + color + ">" + text + "</color>"));
		}

		internal static void SetClickEvent(Transform transform, UnityAction call)
		{
			//IL_0009: Unknown result type (might be due to invalid IL or missing references)
			//IL_0013: Expected O, but got Unknown
			//IL_0021: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Expected O, but got Unknown
			Button component = ((Component)transform).GetComponent<Button>();
			component.onClick = new ButtonClickedEvent();
			((UnityEvent)component.onClick).AddListener(new UnityAction(call.Invoke));
		}

		internal static void SetTooltip(Transform transform, string title, string description = null)
		{
			SimpleTooltipSource.CreateDirect(((Component)transform).gameObject, title, description).WithPosition((TooltipDirection)1, (TooltipAlignment)0);
		}

		internal static void UpdateStatus(string uploadStatus, string url)
		{
			//IL_004e: 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_008a: Expected O, but got Unknown
			Transform val = Clone.Find("Status");
			string text = ((url == null) ? uploadStatus : ("<u>" + uploadStatus + "</u>"));
			Transform transform = val.Find("SeedText");
			string color = ((url == null) ? null : ColorUtility.ToHtmlStringRGBA(GlobalConfig.UiBlue));
			ChangeText(transform, text, color);
			if (url != null)
			{
				SetClickEvent(val, (UnityAction)delegate
				{
					Application.OpenURL(url);
				});
			}
		}

		internal static void DestroyClone()
		{
			Transform clone = Clone;
			if ((Object)(object)clone != (Object)null)
			{
				Object.Destroy((Object)(object)((Component)clone).gameObject);
			}
		}
	}
	internal static class PositionsManager
	{
		private const float X = 0f;

		private const float Y = -14.88f;

		private const float BgOffsetX = -3.7f;

		private const float UploadOffsetX = 0.7f;

		private const float StatusOffsetY = 0.06f;

		private const float BoxOffsetY = 5.48f;

		internal const float QuickUploadOffsetX = 0.5f;

		internal const float QuickUploadScale = 0.004f;

		internal const float SwitchOffsetX = -600f;

		internal static Vector3 BgPosition = new Vector3(-3.7f, -14.88f, 10f);

		internal static Vector3 AutoUploadPosition = new Vector3(0f, -14.88f, 10f);

		internal static Vector3 UploadPosition = new Vector3(0.7f, -14.88f, 10f);

		internal static Vector3 StatusPosition = new Vector3(0.7f, -14.82f, 10f);

		internal static Vector3 InputLocalPosition = new Vector3(0f, 100f, 0f);

		internal static Vector3 InputSizeDelta = Vector2.op_Implicit(new Vector2(2000f, 700f));

		internal static Vector3 BoxPosition = new Vector3(0f, -9.4f, 10f);

		internal static Vector3 CountLocalPosition = new Vector3(150f, -340f, 0f);
	}
	internal static class UploadPanel
	{
		internal static bool HasPanel
		{
			get
			{
				//IL_0041: 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_007c: Unknown result type (might be due to invalid IL or missing references)
				Transform panel = ObjectsManager.Panel;
				if ((Object)(object)panel != (Object)null)
				{
					return true;
				}
				if ((Object)(object)ObjectsManager.PanelTemp == (Object)null)
				{
					panel = new GameObject("UploadPanelTemp", new Type[1] { typeof(RectTransform) }).transform;
					Transform transform = new GameObject("Upload", new Type[1] { typeof(RectTransform) }).transform;
					transform.SetParent(panel, true);
					transform.position = PositionsManager.UploadPosition;
					((Component)transform).gameObject.SetActive(false);
				}
				return false;
			}
		}

		internal static void AdjustPanel()
		{
			if ((Object)(object)ObjectsManager.PanelTemp == (Object)null)
			{
				return;
			}
			Transform fromTemp = ObjectsManager.GetFromTemp("Bg");
			Transform fromTemp2 = ObjectsManager.GetFromTemp("Status");
			Transform fromTemp3 = ObjectsManager.GetFromTemp("AutoUpload");
			Transform fromTemp4 = ObjectsManager.GetFromTemp("Upload");
			Transform fromTemp5 = ObjectsManager.GetFromTemp("TextArea");
			Transform fromTemp6 = ObjectsManager.GetFromTemp("QuickUpload");
			Transform fromTemp7 = ObjectsManager.GetFromTemp("Input");
			if (!((Object)(object)fromTemp == (Object)null) && !((Object)(object)fromTemp2 == (Object)null) && !((Object)(object)fromTemp3 == (Object)null) && !((Object)(object)fromTemp4 == (Object)null) && !((Object)(object)fromTemp5 == (Object)null) && !((Object)(object)fromTemp6 == (Object)null) && !((Object)(object)fromTemp7 == (Object)null))
			{
				Transform val = fromTemp4.Find("Edit");
				fromTemp6.SetParent(fromTemp4, false);
				fromTemp7.SetParent(fromTemp5, true);
				Image component = ((Component)fromTemp7.Find("TextFilterInput")).GetComponent<Image>();
				component.sprite = ((Component)fromTemp).GetComponent<Image>().sprite;
				component.type = (Type)1;
				Transform[] array = (Transform[])(object)new Transform[5] { fromTemp, fromTemp2, fromTemp3, fromTemp4, fromTemp5 };
				for (int i = 0; i < array.Length; i++)
				{
					array[i].SetSiblingIndex(i);
				}
				val.SetAsLastSibling();
				((Object)ObjectsManager.PanelTemp).name = "UploadPanel";
			}
		}

		internal static void Log(string uploadStatus, string url = null)
		{
			ObjectsManager.UpdateStatus(uploadStatus, url);
			BepinexPlugin.log.LogDebug((object)uploadStatus);
		}
	}
}
namespace RunLogger.Utils.RunLogLib
{
	public class ActObj
	{
		public int Act { get; set; }

		public List<ActNode> Nodes { get; set; } = new List<ActNode>();


		public string Boss { get; set; }
	}
	public class Mod
	{
		public string GUID { get; set; }

		public string Name { get; set; }

		public string Version { get; set; }

		public Dictionary<string, dynamic> Configs { get; set; }
	}
	public class Result
	{
		public string Type { get; set; }

		public string Timestamp { get; set; }

		public List<CardObj> Cards { get; set; }

		public List<string> Exhibits { get; set; }

		public string BaseMana { get; set; }

		public int ReloadTimes { get; set; }

		public string Seed { get; set; }
	}
	public class RunLog
	{
		public string Version { get; set; }

		public string? Name { get; set; }

		public Settings Settings { get; set; }

		public List<StationObj> Stations { get; set; } = new List<StationObj>();


		public List<ActObj> Acts { get; set; } = new List<ActObj>();


		public List<CardChange> Cards { get; set; } = new List<CardChange>();


		public List<ExhibitChange> Exhibits { get; set; } = new List<ExhibitChange>();


		public Result Result { get; set; }

		public string? Description { get; set; }
	}
	public class Settings
	{
		public string Character { get; set; }

		public string PlayerType { get; set; }

		public bool HasClearBonus { get; set; }

		public bool ShowRandomResult { get; set; }

		public bool IsAutoSeed { get; set; }

		public string Difficulty { get; set; }

		public List<string> Requests { get; set; }

		public List<string>? JadeBoxes { get; set; }

		public List<Mod> Mods { get; set; }

		public Status Status { get; set; }
	}
	public class StationObj
	{
		public string Type { get; set; }

		public StationNode Node { get; set; }

		public Status Status { get; set; }

		public Dictionary<string, object> Data { get; set; }

		public string? Id { get; set; }

		public Dictionary<string, object>? Rewards { get; set; }
	}
	public class Status
	{
		public int Money { get; set; }

		public int Hp { get; set; }

		public int MaxHp { get; set; }

		public int Power { get; set; }

		public int MaxPower { get; set; }
	}
}
namespace RunLogger.Utils.RunLogLib.Nodes
{
	public class ActNode
	{
		public int X { get; set; }

		public int Y { get; set; }

		public List<int> Followers { get; set; } = new List<int>();


		public string Type { get; set; }
	}
	public class StationNode
	{
		public int Act { get; set; }

		public int Level { get; set; }

		public int Y { get; set; }
	}
}
namespace RunLogger.Utils.RunLogLib.Entities
{
	public class CardChange : CardObj
	{
		public string Type { get; set; }

		public int Station { get; set; }
	}
	public class CardObj
	{
		public string Id { get; set; }

		public bool IsUpgraded { get; set; }

		public int? UpgradeCounter { get; set; }
	}
	public class CardObjWithPrice : CardObj
	{
		public int? Price { get; set; }

		public bool? IsDiscounted { get; set; }
	}
	public enum ChangeType
	{
		Add,
		Remove,
		Upgrade,
		Use
	}
	public class ExhibitChange
	{
		public string Id { get; set; }

		public int? Counter { get; set; }

		public string Type { get; set; }

		public int Station { get; set; }
	}
}
namespace RunLogger.Utils.RunLogLib.BattleDetails
{
	public class BattleStatusObj
	{
		public int Hp { get; set; }

		public int Block { get; set; }

		public int Barrier { get; set; }

		public int? Power { get; set; }
	}
	public class IntentionObj
	{
		public string Type { get; set; }

		public int? Damage { get; set; }

		public int? Times { get; set; }

		public bool? IsAccurate { get; set; }
	}
	public class StatusEffectObj
	{
		public string Id { get; set; }

		public int? Level { get; set; }

		public int? Duration { get; set; }

		public int? Count { get; set; }

		public int? Limit { get; set; }
	}
	public class TurnObj
	{
		public int Round { get; set; }

		public int Turn { get; set; }

		public string Id { get; set; }

		public string? Mana { get; set; }

		public List<CardObj>? Cards { get; set; }

		public List<IntentionObj>? Intentions { get; set; }

		public BattleStatusObj Status { get; set; }

		public List<StatusEffectObj> StatusEffects { get; set; }
	}
}
namespace RunLogger.Utils.Managers
{
	internal static class EntitiesManager
	{
		internal static void AddCardChange(IEnumerable<Card> cards, ChangeType changeType)
		{
			foreach (Card card in cards)
			{
				CardChange item = new CardChange
				{
					Id = ((GameEntity)card).Id,
					IsUpgraded = card.IsUpgraded,
					UpgradeCounter = card.UpgradeCounter,
					Type = changeType.ToString(),
					Station = Controller.CurrentStationIndex
				};
				Controller.Instance.RunLog.Cards.Add(item);
			}
		}

		internal static void AddExhibitChange(Exhibit exhibit, ChangeType changeType, int? counter = null, int offset = 0)
		{
			ExhibitChange item = new ExhibitChange
			{
				Id = ((GameEntity)exhibit).Id,
				Counter = counter,
				Type = changeType.ToString(),
				Station = Controller.CurrentStationIndex + offset
			};
			Controller.Instance.RunLog.Exhibits.Add(item);
		}
	}
	internal static class RewardsManager
	{
		internal static void GetRewards(out Dictionary<string, object> rewards)
		{
			StationObj currentStation = Controller.CurrentStation;
			rewards = currentStation.Rewards ?? (currentStation.Rewards = new Dictionary<string, object>());
		}

		internal static void AddCardsRewards(Interaction interaction)
		{
			MiniSelectCardInteraction val = (MiniSelectCardInteraction)(object)((interaction is MiniSelectCardInteraction) ? interaction : null);
			IReadOnlyList<Card> cards = ((val == null) ? ((SelectCardInteraction)((interaction is SelectCardInteraction) ? interaction : null)).PendingCards : val.PendingCards);
			List<CardObj> item = Helpers.ParseCards(cards);
			GetRewards(out var rewards);
			rewards.Add("Cards", new List<List<CardObj>> { item });
		}

		internal static void AddExhibitRewards(Exhibit exhibit)
		{
			//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_000e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0017: Expected O, but got Unknown
			StationReward reward = new StationReward
			{
				Type = (StationRewardType)2,
				Exhibit = exhibit
			};
			AddReward(reward);
		}

		private static void AddEntitiesRewardsListItem<T>(string type, T listItem)
		{
			string key = type + "s";
			GetRewards(out var rewards);
			if (!rewards.TryGetValue(key, out var value))
			{
				rewards[key] = new List<T>();
			}
			List<T> list = (value ?? rewards[key]) as List<T>;
			list.Add(listItem);
		}

		internal static void AddReward(StationReward reward)
		{
			//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_001e: 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_0021: 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_0025: Unknown result type (might be due to invalid IL or missing references)
			//IL_003c: Expected I4, but got Unknown
			//IL_0060: Unknown result type (might be due to invalid IL or missing references)
			GetRewards(out var rewards);
			StationRewardType type = reward.Type;
			string text = ((object)(StationRewardType)(ref type)).ToString();
			StationRewardType val = type;
			StationRewardType val2 = val;
			switch ((int)val2)
			{
			case 0:
				rewards[text] = reward.Money;
				break;
			case 1:
			case 3:
			{
				List<CardObj> listItem = Helpers.ParseCards(reward.Cards);
				StationRewardType val3 = (StationRewardType)1;
				AddEntitiesRewardsListItem(((object)(StationRewardType)(ref val3)).ToString(), listItem);
				break;
			}
			case 2:
			{
				string id = ((GameEntity)reward.Exhibit).Id;
				AddEntitiesRewardsListItem(text, id);
				break;
			}
			default:
				BepinexPlugin.log.LogDebug((object)("Reward of type `" + text + "` is ignored"));
				break;
			}
		}

		internal static void AddRewards(IEnumerable<StationReward> rewards)
		{
			foreach (StationReward reward in rewards)
			{
				AddReward(reward);
			}
		}
	}
	internal static class TurnObjManager
	{
		internal static void GetLastTurnObj(out TurnObj turnObj)
		{
			List<TurnObj> list = Controller.CurrentStation.Data["Details"] as List<TurnObj>;
			turnObj = list[list.Count - 1];
		}

		internal static void AppendTurnObj(int round, int turn, string id, string mana = null, List<CardObj> cards = null)
		{
			TurnObj item = new TurnObj
			{
				Round = round,
				Turn = turn,
				Id = id,
				Mana = mana,
				Cards = cards
			};
			Helpers.AddDataListItem("Details", item);
		}

		internal static void UpdateTurnObj(Unit unit)
		{
			GetLastTurnObj(out var turnObj);
			turnObj.Status = GetStatus(unit);
			turnObj.StatusEffects = GetStatusEffects(unit);
		}

		private static BattleStatusObj GetStatus(Unit unit)
		{
			int hp = unit.Hp;
			int block = unit.Block;
			int shield = unit.Shield;
			BattleStatusObj battleStatusObj = new BattleStatusObj
			{
				Hp = hp,
				Block = block,
				Barrier = shield
			};
			PlayerUnit val = (PlayerUnit)(object)((unit is PlayerUnit) ? unit : null);
			if (val != null)
			{
				battleStatusObj.Power = val.Power;
			}
			return battleStatusObj;
		}

		private static List<StatusEffectObj> GetStatusEffects(Unit unit)
		{
			return unit.StatusEffects.Select(delegate(StatusEffect se)
			{
				StatusEffectObj statusEffectObj = new StatusEffectObj
				{
					Id = ((GameEntity)se).Id
				};
				if (se.HasLevel)
				{
					statusEffectObj.Level = se.Level;
				}
				if (se.HasDuration)
				{
					statusEffectObj.Duration = se.Duration;
				}
				if (se.HasCount)
				{
					statusEffectObj.Count = se.Count;
				}
				int? num = se.Limit;
				if (num.HasValue && num != 0)
				{
					statusEffectObj.Limit = se.Limit;
				}
				return statusEffectObj;
			}).ToList();
		}
	}
}
namespace RunLogger.Utils.LogFile
{
	internal static class FileManager
	{
		private static string GetDirectory(string subDir)
		{
			List<string> list = new List<string> { "runLogger" };
			if (!BasicTypeExtensions.IsNullOrEmpty(subDir))
			{
				list.Add(subDir);
			}
			string[] paths = list.ToArray();
			string text = Path.Combine(paths);
			if (!Directory.Exists(text))
			{
				Directory.CreateDirectory(text);
			}
			return text;
		}

		internal static string GetFilePath(string name, string extension, string subDir)
		{
			string directory = GetDirectory(subDir);
			string path = name + "." + extension;
			return Path.Combine(directory, path);
		}

		internal static string ReadFile(string path)
		{
			if (!File.Exists(path))
			{
				return null;
			}
			return File.ReadAllText(path);
		}

		internal static void WriteFile(string path, string text)
		{
			File.WriteAllText(path, text);
		}
	}
	internal static class Logger
	{
		private static string ProfileName => Helpers.CurrentSaveIndex.ToString();

		internal static string Encode(RunLog runLog, bool addIndent)
		{
			//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_001b: Expected O, but got Unknown
			return JsonConvert.SerializeObject((object)runLog, (Formatting)(addIndent ? 1 : 0), new JsonSerializerSettings
			{
				NullValueHandling = (NullValueHandling)1
			});
		}

		private static RunLog Decode(string jsonString)
		{
			try
			{
				if (!string.IsNullOrEmpty(jsonString))
				{
					return JsonConvert.DeserializeObject<RunLog>(jsonString);
				}
			}
			catch (Exception ex)
			{
				BepinexPlugin.log.LogDebug((object)ex);
				DeleteTemp();
			}
			return null;
		}

		private static RunLog Read(string path)
		{
			string jsonString = FileManager.ReadFile(path);
			return Decode(jsonString);
		}

		private static void Write(string path, bool addIndent)
		{
			RunLog runLog = Controller.Instance.RunLog;
			if (runLog != null)
			{
				string text = Encode(runLog, addIndent);
				FileManager.WriteFile(path, text);
			}
		}

		private static string GetTempPath()
		{
			string profileName = ProfileName;
			string subDir = "temp";
			return FileManager.GetFilePath(profileName, "txt", subDir);
		}

		private static string GetLogPath(string name)
		{
			string subDir = (BepinexPlugin.SaveTogether.Value ? null : ProfileName);
			string filePath = FileManager.GetFilePath(name, "json", subDir);
			BepinexPlugin.log.LogDebug((object)("Log saved: " + filePath));
			return filePath;
		}

		internal static void SaveTemp(TempSaveTiming tempSaveTiming)
		{
			string tempPath = GetTempPath();
			Write(tempPath, addIndent: true);
			BepinexPlugin.log.LogDebug((object)$"Temp save timing: {tempSaveTiming}");
		}

		internal static RunLog LoadTemp()
		{
			string tempPath = GetTempPath();
			return Read(tempPath);
		}

		internal static void DeleteTemp()
		{
			string tempPath = GetTempPath();
			File.Delete(tempPath);
		}

		internal static void SaveLog(string name)
		{
			string logPath = GetLogPath(name);
			Write(logPath, addIndent: false);
			Controller.Instance.Path = logPath;
		}

		internal static void DeleteLog(string path)
		{
			File.Delete(path);
		}
	}
}
namespace RunLogger.Utils.Enums
{
	internal static class FilenameExtension
	{
		internal const string Temp = "txt";

		internal const string Log = "json";
	}
	internal enum TempSaveTiming
	{
		EnterStage,
		EnterMapNode,
		BattleFinish,
		Adventure
	}
	internal static class UploadStatus
	{
		internal const string Uploading = "Uploading...";

		internal const string Uploaded = "Uploaded";

		internal const string Failed = "Upload failed";

		internal const string NotSaved = "Log not saved";
	}
}
namespace RunLogger.Patches.SaveData
{
	internal static class CreateTemp
	{
		[HarmonyPatch(typeof(GameRunController), "Create")]
		private static class StartRun
		{
			private static void Prefix()
			{
				BepinexPlugin.log.LogDebug((object)"Start run");
				Controller.CreateInstance(new RunLog());
			}

			private static void Postfix(GameRunStartupParameters parameters, GameRunController __result)
			{
				//IL_000e: 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_0049: 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_0060: Unknown result type (might be due to invalid IL or missing references)
				string id = ((GameEntity)parameters.Player).Id;
				PlayerType playerType = parameters.PlayerType;
				string playerType2 = ((object)(PlayerType)(ref playerType)).ToString().Replace("Type", "");
				bool hasClearBonus = __result.HasClearBonus;
				bool showRandomResult = parameters.ShowRandomResult;
				bool isAutoSeed = __result.IsAutoSeed;
				GameDifficulty difficulty = parameters.Difficulty;
				string difficulty2 = ((object)(GameDifficulty)(ref difficulty)).ToString();
				IEnumerable<PuzzleFlag> source = PuzzleFlags.EnumerateComponents(parameters.Puzzles);
				List<string> requests = source.Select((PuzzleFlag puzzleFlag) => ((object)(PuzzleFlag)(ref puzzleFlag)).ToString()).ToList();
				List<string> list = parameters.JadeBoxes.Select((JadeBox jadeBox) => ((GameEntity)jadeBox).Id).ToList();
				Dictionary<string, PluginInfo> pluginInfos = Chainloader.PluginInfos;
				List<Mod> list2 = new List<Mod>();
				string[] priorityMods = Configs.PriorityMods;
				foreach (string key in priorityMods)
				{
					if (pluginInfos.TryGetValue(key, out var value))
					{
						list2.Add(ParseMod(value));
					}
				}
				foreach (var (text2, pluginInfo) in pluginInfos)
				{
					if (!Configs.PriorityMods.Contains(text2) && !Configs.ExcludedMods.Contains(text2))
					{
						if (text2 == "neo.lbol.qol.helpMeEirin")
						{
							hasClearBonus = true;
						}
						Mod mod = ParseMod(pluginInfo);
						if (text2 == "rmrfmaxx.lbol.PatchouliCharacterMod")
						{
							mod.Configs = PatchouliModWrapper.GetConfigs();
						}
						list2.Add(mod);
					}
				}
				Controller.Instance.RunLog.Version = VersionInfo.Current.Version;
				if (BepinexPlugin.SaveProfileName.Value)
				{
					Controller.Instance.RunLog.Name = parameters.UserProfile.Name;
				}
				Settings settings = new Settings
				{
					Character = id,
					PlayerType = playerType2,
					HasClearBonus = hasClearBonus,
					ShowRandomResult = showRandomResult,
					IsAutoSeed = isAutoSeed,
					Difficulty = difficulty2,
					Requests = requests,
					Mods = list2
				};
				if (list.Count > 0)
				{
					settings.JadeBoxes = list;
				}
				Controller.Instance.RunLog.Settings = settings;
			}

			private static Mod ParseMod(PluginInfo pluginInfo)
			{
				string gUID = pluginInfo.Metadata.GUID;
				string name = pluginInfo.Metadata.Name;
				string version = pluginInfo.Metadata.Version.ToString();
				return new Mod
				{
					GUID = gUID,
					Name = name,
					Version = version
				};
			}
		}
	}
	[HarmonyPatch]
	internal static class LoadTemp
	{
		[HarmonyPatch(typeof(GameRunController), "Restore")]
		[HarmonyPrefix]
		private static void RestoreRun()
		{
			BepinexPlugin.log.LogDebug((object)"Trying to restore run...");
			RunLog runLog = Logger.LoadTemp();
			if (runLog == null)
			{
				BepinexPlugin.log.LogDebug((object)"Run restore failed");
				return;
			}
			Controller.CreateInstance(runLog);
			BepinexPlugin.log.LogDebug((object)"Run restored");
		}
	}
	[HarmonyPatch]
	internal static class SaveLog
	{
		[HarmonyPatch(typeof(GameRunController), "AbandonGameRun")]
		[HarmonyPostfix]
		private static void SetIsAbandoned()
		{
			if (Instance.IsInitialized)
			{
				Controller.Instance.IsAbandoned = true;
			}
		}

		[HarmonyPatch(typeof(GameMaster), "SaveProfileWithEndingGameRun")]
		[HarmonyPostfix]
		private static void EndRun(GameRunController gameRun, GameRunRecordSaveData gameRunRecord)
		{
			if (Instance.IsInitialized)
			{
				BepinexPlugin.log.LogDebug((object)"End run");
				EndRunInternal(gameRun, gameRunRecord);
				Logger.DeleteTemp();
			}
		}

		private static void EndRunInternal(GameRunController gameRun, GameRunRecordSaveData gameRunRecord)
		{
			//IL_005d: Unknown result type (might be due to invalid IL or missing references)
			if (Controller.Instance.IsAbandoned && !BepinexPlugin.SaveAbandoned.Value)
			{
				return;
			}
			Helpers.AddStatus(gameRun, Controller.CurrentStation, null);
			string text = ((object)(GameResultType)(ref gameRunRecord.ResultType)).ToString();
			bool value = BepinexPlugin.SaveFailure.Value;
			GameResultType val = (GameResultType)0;
			bool flag = text == ((object)(GameResultType)(ref val)).ToString();
			if (value || !flag)
			{
				string saveTimestamp = gameRunRecord.SaveTimestamp;
				List<CardObj> cards = gameRunRecord.Cards.Select((CardRecordSaveData card) => new CardObj
				{
					Id = card.Id,
					IsUpgraded = card.Upgraded,
					UpgradeCounter = card.UpgradeCounter
				}).ToList();
				List<string> list = gameRunRecord.Exhibits.ToList();
				string baseMana = Helpers.GetBaseMana(gameRunRecord.BaseMana, list);
				int reloadTimes = gameRunRecord.ReloadTimes;
				string seed = RandomGen.SeedToString(gameRunRecord.Seed);
				Result result = new Result
				{
					Type = text,
					Timestamp = saveTimestamp,
					Cards = cards,
					Exhibits = list,
					BaseMana = baseMana,
					ReloadTimes = reloadTimes,
					Seed = seed
				};
				Controller.Instance.RunLog.Result = result;
				string text2 = saveTimestamp.Replace(":", "-");
				string player = gameRunRecord.Player;
				string text3 = gameRunRecord.PlayerType.ToString().Replace("Type", "");
				string text4 = list[0];
				Settings settings = Controller.Instance.RunLog.Settings;
				char c = settings.Difficulty[0];
				int count = settings.Requests.Count;
				string name = string.Join("_", text2, player, text3, text4, $"{c}{count}", text);
				Logger.SaveLog(name);
			}
		}
	}
	[HarmonyPatch]
	internal static class SaveTemp
	{
		[HarmonyPatch(typeof(GameMaster), "SaveGameRun")]
		[HarmonyPrefix]
		private static void SaveTempInAdventure(GameRunSaveData data, bool normalSave)
		{
			//IL_0009: Unknown result type (might be due to invalid IL or missing references)
			//IL_000f: Invalid comparison between Unknown and I4
			if (Instance.IsInitialized && (int)data.Timing == 4 && normalSave)
			{
				Logger.SaveTemp(TempSaveTiming.Adventure);
			}
		}
	}
	[HarmonyPatch]
	internal static class SelectProfile
	{
		[HarmonyPatch(typeof(GameMaster), "SelectProfile")]
		[HarmonyPostfix]
		private static void DestroyInstance()
		{
			BepinexPlugin.log.LogDebug((object)$"Profile #{Helpers.CurrentSaveIndex} selected");
			Controller.DestroyInstance();
		}
	}
}
namespace RunLogger.Patches.RunLogPatches
{
	[HarmonyPatch]
	internal static class ActObjPatch
	{
		[HarmonyPatch(typeof(GameRunController), "EnterStage")]
		[HarmonyPostfix]
		private static void NewAct(GameRunController __instance)
		{
			//IL_0096: 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)
			if (!Instance.IsInitialized)
			{
				return;
			}
			int level = __instance.CurrentStage.Level;
			GameMap currentMap = __instance.CurrentMap;
			string bossId = currentMap.BossId;
			List<ActNode> list = new List<ActNode>();
			for (int i = 0; i < currentMap.Nodes.GetLength(0); i++)
			{
				for (int j = 0; j < currentMap.Nodes.GetLength(1); j++)
				{
					MapNode val = currentMap.Nodes[i, j];
					if (val != null)
					{
						ActNode obj = new ActNode
						{
							X = val.X,
							Y = val.Y,
							Followers = val.FollowerList
						};
						StationType stationType = val.StationType;
						obj.Type = ((object)(StationType)(ref stationType)).ToString();
						ActNode item = obj;
						list.Add(item);
					}
				}
			}
			ActObj item2 = new ActObj
			{
				Act = level,
				Nodes = list,
				Boss = bossId
			};
			Controller.Instance.RunLog.Acts.Add(item2);
			Logger.SaveTemp(TempSaveTiming.EnterStage);
		}

		[HarmonyPatch(typeof(GameMaster), "SelectStationFlow")]
		[HarmonyPostfix]
		private static void AddBoss(ref IEnumerator __result)
		{
			if (Instance.IsInitialized)
			{
				EnumeratorHook enumeratorHook = new EnumeratorHook();
				enumeratorHook.enumerator = __result;
				enumeratorHook.postfixAction = postfixAction;
				EnumeratorHook enumeratorHook2 = enumeratorHook;
				__result = enumeratorHook2.GetEnumerator();
			}
			static void postfixAction()
			{
				Station currentStation = Helpers.CurrentStation;
				SelectStation val = (SelectStation)(object)((currentStation is SelectStation) ? currentStation : null);
				string selectedBoss = ((Station)val).Stage.SelectedBoss;
				Controller.Instance.RunLog.Acts[0].Boss = selectedBoss;
			}
		}
	}
	[HarmonyPatch]
	internal static class CardChangePatch
	{
		[HarmonyPatch(typeof(GameRunController), "InternalAddDeckCards")]
		[HarmonyPostfix]
		private static void AddCardsPatch(Card[] cards)
		{
			if (Instance.IsInitialized)
			{
				EntitiesManager.AddCardChange(cards, ChangeType.Add);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "RemoveDeckCards")]
		[HarmonyPrefix]
		private static void RemoveCardsPatch(IEnumerable<Card> cards)
		{
			if (Instance.IsInitialized)
			{
				EntitiesManager.AddCardChange(cards, ChangeType.Remove);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "UpgradeDeckCards")]
		[HarmonyPostfix]
		private static void UpgradeCardsPatch(IEnumerable<Card> cards)
		{
			if (Instance.IsInitialized)
			{
				EntitiesManager.AddCardChange(cards, ChangeType.Upgrade);
			}
		}
	}
	[HarmonyPatch]
	internal static class ExhibitChangePatch
	{
		[HarmonyPatch(/*Could not decode attribute arguments.*/)]
		private static class UseAndUpgrade
		{
			private static readonly string[] Exhibits = new string[5] { "GanzhuYao", "ChuRenou", "TiangouYuyi", "Moping", "Baota" };

			private static void Prefix(int value, Exhibit __instance)
			{
				//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)
				if (!Instance.IsInitialized)
				{
					return;
				}
				if (!Exhibits.Contains(((GameEntity)__instance).Id) || ((GameEntity)__instance).GameRun == null)
				{
					return;
				}
				int num = value - __instance.Counter;
				if (num < 0)
				{
					if (!(__instance is TiangouYuyi) || Controller.CurrentStation.Type == ((object)(StationType)(ref ((GameEntity)__instance).GameRun.StageRecords.LastOrDefault().Stations.LastOrDefault().Type)).ToString())
					{
						EntitiesManager.AddExhibitChange(__instance, ChangeType.Use, value);
					}
				}
				else
				{
					if (num <= 0)
					{
						return;
					}
					int offset = 0;
					if (__instance is Moping)
					{
						string type = Controller.CurrentStation.Type;
						StationType type2 = ((GameEntity)__instance).GameRun.CurrentStation.Type;
						if (!(type != ((object)(StationType)(ref type2)).ToString()))
						{
							return;
						}
						offset = 1;
					}
					EntitiesManager.AddExhibitChange(__instance, ChangeType.Upgrade, value, offset);
				}
			}

			private static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> instructions)
			{
				return instructions;
			}
		}

		[HarmonyPatch(typeof(GameRunController), "GainExhibitRunner")]
		[HarmonyPostfix]
		[HarmonyPriority(400)]
		private static void Add(Exhibit exhibit)
		{
			if (Instance.IsInitialized)
			{
				EntitiesManager.AddExhibitChange(exhibit, ChangeType.Add);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "LoseExhibit")]
		[HarmonyPostfix]
		private static void Remove(Exhibit exhibit)
		{
			if (Instance.IsInitialized)
			{
				EntitiesManager.AddExhibitChange(exhibit, ChangeType.Remove);
			}
		}
	}
}
namespace RunLogger.Patches.RunLogPatches.StationObjPatches
{
	[HarmonyPatch]
	internal static class EnemyGroupIdPatch
	{
		[HarmonyPatch(typeof(GameRunController), "LeaveBattle")]
		[HarmonyPostfix]
		private static void AddEnemyGroupId(EnemyGroup enemyGroup, GameRunController __instance)
		{
			if (Instance.IsInitialized)
			{
				string adventureId = Helpers.GetAdventureId(__instance.CurrentStation);
				if (adventureId != null)
				{
					Helpers.AddDataValue("Id", enemyGroup.Id);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class StationObjPatch
	{
		[HarmonyPatch(typeof(GameRunController), "EnterMapNode")]
		[HarmonyPrefix]
		private static void GetForced(bool forced)
		{
			if (Instance.IsInitialized)
			{
				Controller.Instance.IsForced = forced;
			}
		}

		[HarmonyPatch(typeof(GameRunController), "EnterStation")]
		[HarmonyPostfix]
		private static void NewStation(Station station, GameRunController __instance)
		{
			//IL_006e: 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)
			if (!Instance.IsInitialized)
			{
				return;
			}
			bool? isForced = Controller.Instance.IsForced;
			Controller.Instance.IsForced = null;
			if (isForced.GetValueOrDefault())
			{
				return;
			}
			int level = station.Stage.Level;
			int level2 = station.Level;
			MapNode visitingNode = __instance.CurrentMap.VisitingNode;
			int y = visitingNode.Y;
			StationType stationType = visitingNode.StationType;
			string type = ((object)(StationType)(ref stationType)).ToString();
			StationNode node = new StationNode
			{
				Act = level,
				Level = level2,
				Y = y
			};
			StationObj stationObj = new StationObj
			{
				Type = type,
				Node = node
			};
			string adventureId = Helpers.GetAdventureId(station);
			if (adventureId != null)
			{
				stationObj.Id = adventureId;
			}
			else
			{
				adventureId = Helpers.GetEnemyGroupId(station);
				stationObj.Id = adventureId;
			}
			Controller.Instance.RunLog.Stations.Add(stationObj);
			List<IEnumerable<StationReward>> rewardsBeforeDebut = Controller.Instance.RewardsBeforeDebut;
			if (rewardsBeforeDebut == null)
			{
				return;
			}
			foreach (IEnumerable<StationReward> item in rewardsBeforeDebut)
			{
				RewardsManager.AddRewards(item);
			}
			Controller.Instance.RewardsBeforeDebut = null;
		}

		[HarmonyPatch(typeof(BattleAdvTestStation), "SetEnemy")]
		[HarmonyPostfix]
		private static void AddEnemyGroupId(EnemyGroupEntry entry)
		{
			if (Instance.IsInitialized)
			{
				Controller.CurrentStation.Id = entry.Id;
			}
		}

		[HarmonyPatch(typeof(BattleAdvTestStation), "SetAdventure")]
		[HarmonyPostfix]
		private static void AddAdventureId(Adventure adventure)
		{
			if (Instance.IsInitialized)
			{
				Controller.CurrentStation.Id = adventure.Id;
			}
		}
	}
	[HarmonyPatch]
	internal static class StatusPatch
	{
		[HarmonyPatch(typeof(GameMaster), "SaveGameRun")]
		[HarmonyPrefix]
		private static void AddStatus(GameRunSaveData data, bool normalSave, GameMaster __instance)
		{
			//IL_0009: Unknown result type (might be due to invalid IL or missing references)
			//IL_000f: Invalid comparison between Unknown and I4
			if (Instance.IsInitialized && (int)data.Timing == 1 && normalSave)
			{
				BepinexPlugin.log.LogDebug((object)"Add `Status`");
				GameRunController currentGameRun = __instance.CurrentGameRun;
				Helpers.AddStatus(currentGameRun, Controller.LastStation, Controller.Instance.PreHealHp);
				Controller.Instance.PreHealHp = null;
				Logger.SaveTemp(TempSaveTiming.EnterMapNode);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "EnterNextStage")]
		[HarmonyPrefix]
		private static void AddStatusFix(GameRunController __instance)
		{
			if (Instance.IsInitialized)
			{
				PlayerUnit player = __instance.Player;
				Controller.Instance.PreHealHp = ((Unit)player).Hp;
			}
		}
	}
}
namespace RunLogger.Patches.RunLogPatches.StationObjPatches.DataPatches
{
	[HarmonyPatch]
	internal static class ChoicesPatch
	{
		[HarmonyPatch(typeof(DialogRunner), "SelectOption")]
		[HarmonyPostfix]
		private static void AddChoices(int id)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataListItem("Choices", id);
			}
		}
	}
	[HarmonyPatch]
	internal static class ExhibitsRewardsPatch
	{
		[HarmonyPatch(typeof(InteractionViewer), "View")]
		[HarmonyPrefix]
		private static void AddRewards(Interaction interaction)
		{
			if (!Instance.IsInitialized)
			{
				return;
			}
			GameEntity source = interaction.Source;
			string text = ((source != null) ? source.Id : null);
			if (text == null)
			{
				return;
			}
			RewardInteraction val = (RewardInteraction)(object)((interaction is RewardInteraction) ? interaction : null);
			if (val != null)
			{
				if (!(text == "HuiyeBaoxiang"))
				{
					return;
				}
				IReadOnlyList<Exhibit> pendingExhibits = val.PendingExhibits;
				RewardsManager.GetRewards(out var rewards);
				if (!rewards.TryGetValue("Exhibits", out var value))
				{
					rewards["Exhibits"] = new List<string>();
				}
				List<string> list = (value ?? rewards["Exhibits"]) as List<string>;
				{
					foreach (Exhibit item in pendingExhibits)
					{
						list.Add(((GameEntity)item).Id);
					}
					return;
				}
			}
			MiniSelectCardInteraction val2 = (MiniSelectCardInteraction)(object)((interaction is MiniSelectCardInteraction) ? interaction : null);
			if (val2 == null)
			{
				return;
			}
			if (text == "Modaoshu")
			{
				IReadOnlyList<Card> pendingCards = val2.PendingCards;
				RewardsManager.GetRewards(out var rewards2);
				if (!rewards2.TryGetValue("Cards", out var value2))
				{
					rewards2["Cards"] = new List<List<CardObj>>();
				}
				object obj = value2 ?? rewards2["Cards"];
				if (obj is List<List<CardObj>> list2)
				{
					list2.Add(new List<CardObj>());
					list2[list2.Count - 1] = Helpers.ParseCards(pendingCards);
				}
				else if (obj is List<List<CardObjWithPrice>> list3)
				{
					list3.Add(new List<CardObjWithPrice>());
					list3[list3.Count - 1] = pendingCards.Select((Card card) => Helpers.ParseCardWithPrice(card)).ToList();
				}
			}
			else if (text == "FixBook")
			{
				IReadOnlyList<Card> pendingCards2 = val2.PendingCards;
				List<List<CardObj>> value3 = new List<List<CardObj>> { Helpers.ParseCards(pendingCards2) };
				RewardsManager.GetRewards(out var rewards3);
				rewards3["Cards"] = value3;
			}
		}
	}
	[HarmonyPatch]
	internal static class GapPatch
	{
		[HarmonyPatch(typeof(GapOptionsPanel), "OnShowing")]
		[HarmonyPostfix]
		private static void AddOptions(GapStation gapStation)
		{
			if (Instance.IsInitialized)
			{
				List<string> value = gapStation.GapOptions.Select(delegate(GapOption gapOption)
				{
					//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)
					GapOptionType type = gapOption.Type;
					return ((object)(GapOptionType)(ref type)).ToString();
				}).ToList();
				Helpers.AddDataValue("Options", value);
			}
		}

		[HarmonyPatch(typeof(GapOptionsPanel), "OptionClicked")]
		[HarmonyPostfix]
		private static void AddChoice(GapOption option)
		{
			//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)
			if (Instance.IsInitialized)
			{
				GapOptionType type = option.Type;
				string value = ((object)(GapOptionType)(ref type)).ToString();
				Controller.CurrentStation.Data["Choice"] = value;
			}
		}

		[HarmonyPatch(typeof(SelectCardPanel), "ShowMiniSelect")]
		[HarmonyPrefix]
		private static void AddShanliangDengpao(SelectCardPayload payload)
		{
			if (Instance.IsInitialized && ((GapOption)Library.CreateGapOption<GetRareCard>()).Name == payload.Name)
			{
				List<CardObj> value = Helpers.ParseCards(payload.Cards);
				Helpers.AddDataValue("ShanliangDengpao", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class OpponentsPatch
	{
		[HarmonyPatch(typeof(SelectStation), "GenerateRecord")]
		[HarmonyPostfix]
		private static void AddOpponents(SelectStation __instance)
		{
			if (Instance.IsInitialized)
			{
				List<string> value = __instance.Opponents.Select((EnemyUnit opponent) => ((GameEntity)opponent).Id).ToList();
				Helpers.AddDataValue("Opponents", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class RewardsPatch
	{
		[HarmonyPatch(typeof(Station), "AddRewards", new Type[] { typeof(IEnumerable<StationReward>) })]
		[HarmonyPrefix]
		private static void AddRewards(IEnumerable<StationReward> rewards)
		{
			if (!Instance.IsInitialized)
			{
				return;
			}
			if (Helpers.IsAdventure<Debut>())
			{
				if (Controller.CurrentStation == null)
				{
					Instance instance = Controller.Instance;
					List<IEnumerable<StationReward>> list = instance.RewardsBeforeDebut ?? (instance.RewardsBeforeDebut = new List<IEnumerable<StationReward>>());
					list.Add(rewards);
				}
			}
			else
			{
				RewardsManager.AddRewards(rewards);
			}
		}

		[HarmonyPatch(typeof(BossStation), "GenerateBossRewards")]
		[HarmonyPostfix]
		private static void AddBossExhibits(BossStation __instance)
		{
			if (Instance.IsInitialized)
			{
				Exhibit[] bossRewards = __instance.BossRewards;
				foreach (Exhibit exhibit in bossRewards)
				{
					RewardsManager.AddExhibitRewards(exhibit);
				}
			}
		}

		[HarmonyPatch(typeof(Stage), "GetEnemyCardReward")]
		[HarmonyPostfix]
		private static void AddExtraCardsReward(StationReward __result)
		{
			if (Instance.IsInitialized)
			{
				Station currentStation = Helpers.CurrentStation;
				if (currentStation is EnemyStation && currentStation.Rewards.Count != 0)
				{
					RewardsManager.AddReward(__result);
				}
			}
		}

		[HarmonyPatch(typeof(Stage), "GetEliteEnemyExhibit")]
		[HarmonyPostfix]
		private static void AddExtraExhibitReward(Exhibit __result)
		{
			if (Instance.IsInitialized)
			{
				Station currentStation = Helpers.CurrentStation;
				if (currentStation is EliteEnemyStation && currentStation.Rewards.Count != 0)
				{
					RewardsManager.AddExhibitRewards(__result);
				}
			}
		}

		[HarmonyPatch(typeof(StationReward), "CreateToolCard")]
		[HarmonyPostfix]
		private static void GetShopToolCardsPatch(StationReward __result)
		{
			if (Instance.IsInitialized)
			{
				Station currentStation = Helpers.CurrentStation;
				if (currentStation is BattleStation)
				{
					RewardsManager.AddReward(__result);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class RoundsPatch
	{
		[HarmonyPatch(typeof(GameRunController), "LeaveBattle")]
		[HarmonyPostfix]
		private static void AddRounds(BattleStats __result)
		{
			if (Instance.IsInitialized)
			{
				int totalRounds = __result.TotalRounds;
				Helpers.AddDataValue("Rounds", totalRounds);
			}
		}

		[HarmonyPatch(typeof(GameMaster), "SaveGameRun")]
		[HarmonyPrefix]
		private static void SaveTemp(GameRunSaveData data, bool normalSave)
		{
			//IL_0009: Unknown result type (might be due to invalid IL or missing references)
			//IL_000f: Invalid comparison between Unknown and I4
			if (Instance.IsInitialized && (int)data.Timing == 2 && normalSave)
			{
				Logger.SaveTemp(TempSaveTiming.BattleFinish);
			}
		}
	}
	[HarmonyPatch]
	internal static class ShopPatch
	{
		[HarmonyPatch(typeof(GameRunController), "EnterMapNode")]
		[HarmonyPostfix]
		private static void AddData(bool forced, GameRunController __instance)
		{
			if (!Instance.IsInitialized)
			{
				return;
			}
			Station currentStation = __instance.CurrentStation;
			ShopStation val = (ShopStation)(object)((currentStation is ShopStation) ? currentStation : null);
			if (val == null)
			{
				return;
			}
			List<CardObjWithPrice> list = val.ShopCards.Select((ShopItem<Card> item) => Helpers.ParseCardWithPrice(item.Content, item.Price)).ToList();
			list[val.DiscountCardNo].IsDiscounted = true;
			Dictionary<string, int> dictionary = new Dictionary<string, int>
			{
				{ "Remove", val.RemoveDeckCardPrice },
				{ "Upgrade", val.UpgradeDeckCardPrice }
			};
			List<ShopItem<Exhibit>> shopExhibits = val.ShopExhibits;
			List<string> list2 = new List<string>();
			foreach (ShopItem<Exhibit> item in shopExhibits)
			{
				string id = ((GameEntity)item.Content).Id;
				dictionary[id] = item.Price;
				list2.Add(id);
			}
			Dictionary<string, object> rewards = new Dictionary<string, object>
			{
				{
					"Cards",
					new List<List<CardObjWithPrice>> { list }
				},
				{ "Exhibits", list2 }
			};
			Controller.CurrentStation.Rewards = rewards;
			if (forced)
			{
				Helpers.GetData(out var data);
				data["Prices"] = dictionary;
			}
			else
			{
				Helpers.AddDataValue("Prices", dictionary);
			}
		}

		[HarmonyPatch(typeof(ShopStation), "RemoveDeckCard")]
		[HarmonyPrefix]
		private static void AddRemove(Card card)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataValue("Choice", 0);
				Helpers.AddDataValue("Remove", Helpers.ParseCard(card));
			}
		}

		[HarmonyPatch(typeof(ShopStation), "UpgradeDeckCard")]
		[HarmonyPrefix]
		private static void AddUpgrade(Card card)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataValue("Choice", 1);
				Helpers.AddDataValue("Upgrade", Helpers.ParseCard(card));
			}
		}

		[HarmonyPatch(typeof(ShopStation), "GetPrice", new Type[]
		{
			typeof(Card),
			typeof(bool)
		})]
		[HarmonyPostfix]
		private static void AddExtraCard(Card card, int __result, ShopStation __instance)
		{
			if (!Instance.IsInitialized)
			{
				return;
			}
			if (!IsOnEnter(__instance))
			{
				Controller.CurrentStation.Rewards.TryGetValue("Cards", out object value);
				List<List<CardObjWithPrice>> list = value as List<List<CardObjWithPrice>>;
				if (list.Count <= 1 || !list[1][0].Price.HasValue)
				{
					list.Insert(1, new List<CardObjWithPrice>());
				}
				List<CardObjWithPrice> list2 = list[1];
				int price = GetPrice(__instance, __result);
				list2.Add(Helpers.ParseCardWithPrice(card, price));
			}
		}

		[HarmonyPatch(typeof(ShopStation), "GetPrice", new Type[] { typeof(Exhibit) })]
		[HarmonyPostfix]
		private static void AddExtraExhibit(Exhibit exhibit, int __result, ShopStation __instance)
		{
			if (Instance.IsInitialized && !(exhibit is KongZhanpinhe))
			{
				if (!IsOnEnter(__instance))
				{
					Controller.CurrentStation.Rewards.TryGetValue("Exhibits", out object value);
					List<string> list = value as List<string>;
					int price = GetPrice(__instance, __result);
					string id = ((GameEntity)exhibit).Id;
					list.Add(id);
					Helpers.GetData(out var data);
					data.TryGetValue("Prices", out var value2);
					Dictionary<string, int> dictionary = value2 as Dictionary<string, int>;
					dictionary.Add(id, price);
				}
			}
		}

		private static bool IsOnEnter(ShopStation shopStation)
		{
			return shopStation.ShopExhibits == null;
		}

		private static int GetPrice(ShopStation shopStation, int basePrice)
		{
			return (int)(((Station)shopStation).GameRun.FinalShopPriceMultiplier * (float)basePrice);
		}
	}
	[HarmonyPatch]
	internal static class TeammatesPatch
	{
		[HarmonyPatch(typeof(Cirno), "SetNextBuff")]
		[HarmonyPrefix]
		private static void AddTeammates(Cirno __instance)
		{
			if (Instance.IsInitialized)
			{
				Type nextBuff = __instance.NextBuff;
				if (!(nextBuff == null))
				{
					string name = nextBuff.Name;
					int nextLevel = __instance.NextLevel;
					StatusEffectObj item = new StatusEffectObj
					{
						Id = name,
						Level = nextLevel
					};
					Helpers.AddDataListItem("Teammates", item);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class ValuesPatch
	{
		[HarmonyPatch(typeof(DialogFunctions), "AdventureRand")]
		[HarmonyPostfix]
		private static void AddValues(int __result)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataListItem("Values", __result);
			}
		}
	}
}
namespace RunLogger.Patches.RunLogPatches.StationObjPatches.DataPatches.EventPatches
{
	[HarmonyPatch]
	internal static class AssistKagerouPatch
	{
		[HarmonyPatch(typeof(AssistKagerou), "InitVariables")]
		[HarmonyPostfix]
		private static void AddExhibit(AssistKagerou __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$exhibitReward", ref value);
				Helpers.AddDataValue("Exhibit", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class BackgroundDancersPatch
	{
		[HarmonyPatch(typeof(BackgroundDancers), "InitVariables")]
		[HarmonyPostfix]
		private static void AddHp(BackgroundDancers __instance)
		{
			if (Instance.IsInitialized)
			{
				float num = default(float);
				((Adventure)__instance).Storage.TryGetValue<float>("$hpLose", ref num);
				Helpers.AddDataValue("Hp", (int)num);
			}
		}

		[HarmonyPatch(typeof(BackgroundDancers), "RollOptions")]
		[HarmonyPostfix]
		private static void AddOptionsAndData(BackgroundDancers __instance, int[] ____optionIndices)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataValue("Options", ____optionIndices.ToList());
				foreach (int option in ____optionIndices)
				{
					HandleRandom(__instance, option);
				}
			}
		}

		[HarmonyPatch(typeof(BackgroundDancers), "SelectOption")]
		[HarmonyPostfix]
		private static void AddData(int index, ref IEnumerator __result)
		{
			if (Instance.IsInitialized)
			{
				EnumeratorHook enumeratorHook = new EnumeratorHook();
				enumeratorHook.enumerator = __result;
				enumeratorHook.postfixAction = postfixAction;
				EnumeratorHook enumeratorHook2 = enumeratorHook;
				Controller.Instance.BackgroundDancersIndex = index - 1;
				__result = enumeratorHook2.GetEnumerator();
			}
			static void postfixAction()
			{
				Adventure adventure = Helpers.GetAdventure(null);
				BackgroundDancers val = (BackgroundDancers)(object)((adventure is BackgroundDancers) ? adventure : null);
				int num = val._optionIndices[Controller.Instance.BackgroundDancersIndex.Value];
				Controller.Instance.BackgroundDancersIndex = null;
				Helpers.AddDataListItem("Options", num);
				HandleRandom(val, num);
			}
		}

		private static void HandleRandom(BackgroundDancers __instance, int option)
		{
			if (Controller.ShowRandomResult)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				switch (option)
				{
				case 0:
				case 2:
				case 3:
					break;
				case 1:
				{
					List<string> storageList = Helpers.GetStorageList<string, string>(storage, new string[2] { "", "2" }, "$reward2Rare");
					Helpers.AddDataListItem("Tools", storageList);
					break;
				}
				case 4:
				{
					string item2 = default(string);
					storage.TryGetValue<string>("$reward5Exhibit", ref item2);
					Helpers.AddDataListItem("Exhibits", item2);
					break;
				}
				case 5:
				{
					string item = default(string);
					storage.TryGetValue<string>("$reward6Ability", ref item);
					Helpers.AddDataListItem("Abilities", item);
					break;
				}
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class BaseManaPatch
	{
		[HarmonyPatch(/*Could not decode attribute arguments.*/)]
		private static class AddColor
		{
			private static void Prefix(ManaGroup value)
			{
				//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_0013: Unknown result type (might be due to invalid IL or missing references)
				if (Instance.IsInitialized)
				{
					ManaGroup val = value;
					string value2 = ManaColorExtensions.ToShortName(((ManaGroup)(ref val)).MaxColor).ToString();
					Helpers.AddDataValue("Color", value2);
				}
			}

			private static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> instructions)
			{
				return instructions;
			}
		}

		private static readonly string[] Adventures = new string[2] { "JunkoColorless", "PatchouliPhilosophy" };

		[HarmonyPatch(typeof(Adventure), "InitVariables")]
		[HarmonyPostfix]
		private static void AddBaseMana(Adventure __instance)
		{
			//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)
			if (Instance.IsInitialized && Adventures.Contains(__instance.Id))
			{
				GameRunController gameRun = __instance.GameRun;
				string[] exhibits = gameRun.ExhibitRecord.ToArray();
				ManaGroup baseMana = gameRun.BaseMana;
				string baseMana2 = Helpers.GetBaseMana(((object)(ManaGroup)(ref baseMana)).ToString(), exhibits);
				Helpers.AddDataValue("BaseMana", baseMana2);
			}
		}
	}
	[HarmonyPatch]
	internal static class BuduSuanmingPatch
	{
		[HarmonyPatch(typeof(DialogRunner), "SelectOption")]
		[HarmonyPostfix]
		private static void AddData(int id)
		{
			if (Instance.IsInitialized && Helpers.IsAdventure<BuduSuanming>(out DialogStorage storage))
			{
				switch (id)
				{
				case 0:
				{
					string value3 = default(string);
					storage.TryGetValue<string>("$bossId", ref value3);
					Helpers.AddDataValue("Boss", value3);
					break;
				}
				case 1:
				{
					string value2 = default(string);
					storage.TryGetValue<string>("$hostId", ref value2);
					Helpers.AddDataValue("Host", value2);
					break;
				}
				case 2:
				{
					string value = default(string);
					storage.TryGetValue<string>("$seijaItem", ref value);
					Helpers.AddDataValue("Exhibit", value);
					break;
				}
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class DebutPatch
	{
		[HarmonyPatch(typeof(Debut), "RollBonus")]
		[HarmonyPostfix]
		private static void AddData(Exhibit ____exhibit, int[] ____bonusNos, Debut __instance)
		{
			if (!Instance.IsInitialized || !Controller.Instance.RunLog.Settings.HasClearBonus)
			{
				return;
			}
			Helpers.AddDataValue("Options", ____bonusNos);
			int num = Array.IndexOf(____bonusNos, 0);
			if (num != -1)
			{
				Controller.Instance.DebutUncommonCardsIndex = num + 2;
			}
			if (!Controller.ShowRandomResult)
			{
				return;
			}
			Helpers.AddDataValue("Shining", ((GameEntity)____exhibit).Id);
			DialogStorage storage = ((Adventure)__instance).Storage;
			int[] array = ____bonusNos;
			string value3 = default(string);
			string value2 = default(string);
			string value = default(string);
			for (int i = 0; i < array.Length; i++)
			{
				switch (array[i])
				{
				case 0:
				{
					List<string> storageList = Helpers.GetStorageList<string, int>(storage, new int[3] { 1, 2, 3 }, "$uncommonCard");
					Helpers.AddDataValue("UncommonCards", storageList);
					break;
				}
				case 1:
					storage.TryGetValue<string>("$rareCard", ref value3);
					Helpers.AddDataValue("RareCard", value3);
					break;
				case 2:
					storage.TryGetValue<string>("$rareExhibit", ref value2);
					Helpers.AddDataValue("RareExhibit", value2);
					break;
				case 5:
					storage.TryGetValue<string>("$transformCard", ref value);
					Helpers.AddDataValue("TransformCard", value);
					break;
				}
			}
		}

		[HarmonyPatch(typeof(DialogRunner), "SelectOption")]
		[HarmonyPostfix]
		private static void Prefix(int id)
		{
			if (Instance.IsInitialized && id == Controller.Instance.DebutUncommonCardsIndex)
			{
				Controller.Instance.DebutUncommonCardsChosen = true;
			}
		}

		[HarmonyPatch(typeof(InteractionViewer), "View")]
		[HarmonyPrefix]
		private static void AddCardsRewards(Interaction interaction)
		{
			if (Instance.IsInitialized && Controller.Instance.DebutUncommonCardsChosen && Helpers.IsAdventure<Debut>())
			{
				RewardsManager.AddCardsRewards(interaction);
				Controller.Instance.DebutUncommonCardsIndex = null;
				Controller.Instance.DebutUncommonCardsChosen = false;
			}
		}
	}
	[HarmonyPatch]
	internal static class DoremyPortalPatch
	{
		[HarmonyPatch(typeof(DoremyPortal), "InitVariables")]
		[HarmonyPostfix]
		private static void AddExhibit(DoremyPortal __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$randomExhibit", ref value);
				Helpers.AddDataValue("Exhibit", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class EternityAscensionPatch
	{
		[HarmonyPatch(typeof(EternityAscension), "InitVariables")]
		[HarmonyPostfix]
		private static void AddCard(EternityAscension __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$transformCard", ref value);
				Helpers.AddDataValue("Card", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class HecatiaTshirtPatch
	{
		[HarmonyPatch(typeof(GameRunController), "GainExhibitRunner")]
		[HarmonyPostfix]
		[HarmonyPriority(200)]
		private static void UpgradeExhibit(Exhibit exhibit)
		{
			if (Instance.IsInitialized && exhibit is IdolTshirt)
			{
				int counter = exhibit.Counter;
				if (counter > exhibit.Config.InitialCounter)
				{
					EntitiesManager.AddExhibitChange(exhibit, ChangeType.Upgrade, counter);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class HinaCollectPatch
	{
		[HarmonyPatch(typeof(HinaCollect), "InitVariables")]
		[HarmonyPostfix]
		private static void AddCard(HinaCollect __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$card", ref value);
				Helpers.AddDataValue("Card", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class KaguyaVersusMokouPatch
	{
		[HarmonyPatch(typeof(KaguyaVersusMokou), "InitVariables")]
		[HarmonyPostfix]
		private static void AddHps(KaguyaVersusMokou __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				List<int> value = (from hp in Helpers.GetStorageList<float, string>(storage, new string[2] { "", "Low" }, "$hpLose")
					select (int)hp).ToList();
				Helpers.AddDataValue("Hps", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class KeineSalesPatch
	{
		[HarmonyPatch(typeof(KeineSales), "InitVariables")]
		[HarmonyPostfix]
		private static void AddQuestions(KeineSales __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				float num = default(float);
				storage.TryGetValue<float>("$stageNo", ref num);
				int[] keys = Enumerable.Range(1, (int)num).ToArray();
				List<int> value = (from question in Helpers.GetStorageList<float, int>(storage, keys, "$question", "No")
					select (int)question).ToList();
				Helpers.AddDataValue("Questions", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class KosuzuBookstorePatch
	{
		[HarmonyPatch(typeof(KosuzuBookstore), "InitVariables")]
		[HarmonyPostfix]
		private static void AddData(KosuzuBookstore __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				bool flag = default(bool);
				storage.TryGetValue<bool>("$thirdBook", ref flag);
				int count = (flag ? 3 : 2);
				int[] keys = Enumerable.Range(0, count).ToArray();
				List<string> storageList = Helpers.GetStorageList<string, int>(storage, keys, "$book");
				Helpers.AddDataValue("Exhibits", storageList);
				float num = default(float);
				storage.TryGetValue<float>("$returnBookCount", ref num);
				int num2 = (int)num;
				if (num2 != 0)
				{
					int[] keys2 = Enumerable.Range(0, num2).ToArray();
					List<string> storageList2 = Helpers.GetStorageList<string, int>(storage, keys2, "$returnBook");
					Helpers.AddDataValue("Returns", storageList2);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class MikeInvestPatch
	{
		[HarmonyPatch(typeof(MikeInvest), "InitVariables")]
		[HarmonyPostfix]
		private static void AddData(MikeInvest __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				float num = default(float);
				storage.TryGetValue<float>("$longMoney", ref num);
				Helpers.AddDataValue("Money", (int)num);
				if (Controller.ShowRandomResult)
				{
					string value = default(string);
					storage.TryGetValue<string>("$cardReward", ref value);
					Helpers.AddDataValue("Card", value);
				}
			}
		}
	}
	[HarmonyPatch]
	internal static class MiyoiBartenderPatch
	{
		[HarmonyPatch(typeof(MiyoiBartender), "InitVariables")]
		[HarmonyPrefix]
		private static void AddIds(MiyoiBartender __instance)
		{
			if (Instance.IsInitialized)
			{
				UniqueRandomPool<string> enemyPoolAct = ((Adventure)__instance).Stage.EnemyPoolAct3;
				List<string> value = ((IEnumerable<RandomPoolEntry<string>>)enemyPoolAct).Select((RandomPoolEntry<string> e) => e.Elem).ToList();
				Helpers.AddDataValue("Ids", value);
			}
		}

		[HarmonyPatch(typeof(MiyoiBartender), "InitVariables")]
		[HarmonyPostfix]
		private static void AddExhibitBeforeBattle(MiyoiBartender __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				AddExhibit(((Adventure)__instance).Storage);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "LeaveBattle")]
		[HarmonyPostfix]
		private static void AddExhibitAfterBattle()
		{
			if (Instance.IsInitialized && !Controller.ShowRandomResult && Helpers.IsAdventure<MiyoiBartender>(out DialogStorage storage))
			{
				AddExhibit(storage);
			}
		}

		private static void AddExhibit(DialogStorage storage)
		{
			string value = default(string);
			storage.TryGetValue<string>("$randomExhibit", ref value);
			Helpers.AddDataValue("Exhibit", value);
		}
	}
	[HarmonyPatch]
	internal static class NarumiOfferCardPatch
	{
		[HarmonyPatch(typeof(GameRunController), "RemoveDeckCards")]
		[HarmonyPostfix]
		private static void AddType(IEnumerable<Card> cards)
		{
			//IL_0025: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Invalid comparison between Unknown and I4
			//IL_004a: 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)
			if (Instance.IsInitialized && Helpers.IsAdventure<NarumiOfferCard>())
			{
				Card val = cards.First();
				string? text;
				if ((int)val.CardType != 8)
				{
					Rarity rarity = val.Config.Rarity;
					text = ((object)(Rarity)(ref rarity)).ToString();
				}
				else
				{
					CardType val2 = (CardType)8;
					text = ((object)(CardType)(ref val2)).ToString();
				}
				string value = text;
				Helpers.AddDataValue("Type", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class NazrinDetectPatch
	{
		[HarmonyPatch(typeof(NazrinDetectPanel), "Roll")]
		[HarmonyPostfix]
		private static void AddResult(int resultIndex)
		{
			if (Instance.IsInitialized)
			{
				Helpers.AddDataValue("Result", resultIndex);
			}
		}
	}
	[HarmonyPatch]
	internal static class ParseeJealousyPatch
	{
		[HarmonyPatch(typeof(ParseeJealousy), "InitVariables")]
		[HarmonyPostfix]
		private static void AddExhibit(ParseeJealousy __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$exhibitPassBy", ref value);
				Helpers.AddDataValue("Exhibit", value);
			}
		}

		[HarmonyPatch(typeof(ParseeJealousy), "GetExhibit")]
		[HarmonyPostfix]
		private static void AddExhibits(ParseeJealousy __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				List<string> storageList = Helpers.GetStorageList<string, string>(storage, new string[2] { "", "2" }, "$exhibit");
				Helpers.AddDataValue("Exhibits", storageList);
			}
		}
	}
	[HarmonyPatch]
	internal static class RemiliaMeetPatch
	{
		[HarmonyPatch(typeof(RemiliaMeet), "InitVariables")]
		[HarmonyPostfix]
		private static void AddHasExhibit(RemiliaMeet __instance)
		{
			if (Instance.IsInitialized)
			{
				bool value = default(bool);
				((Adventure)__instance).Storage.TryGetValue<bool>("$hasExhibit", ref value);
				Helpers.AddDataValue("HasExhibit", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class RingoEmpPatch
	{
		[HarmonyPatch(typeof(RingoEmp), "InitVariables")]
		[HarmonyPostfix]
		private static void AddCards(RingoEmp __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				List<string> storageList = Helpers.GetStorageList<string, int>(storage, new int[3] { 1, 2, 3 }, "$tool");
				Helpers.AddDataValue("Cards", storageList);
			}
		}
	}
	[HarmonyPatch]
	internal static class RinnosukeTradePatch
	{
		[HarmonyPatch(typeof(RinnosukeTrade), "InitVariables")]
		[HarmonyPostfix]
		private static void AddPrices(RinnosukeTrade __instance)
		{
			if (!Instance.IsInitialized)
			{
				return;
			}
			DialogStorage storage = ((Adventure)__instance).Storage;
			List<int> list = new List<int>();
			bool flag = default(bool);
			for (int i = 1; i <= 2; i++)
			{
				storage.TryGetValue<bool>($"$canSell{i}", ref flag);
				if (flag)
				{
					list.Add(i);
				}
			}
			if (list.Count == 0)
			{
				return;
			}
			int[] keys = list.ToArray();
			List<string> storageList = Helpers.GetStorageList<string, int>(storage, keys, "$exhibit");
			List<float> storageList2 = Helpers.GetStorageList<float, int>(storage, keys, "$exhibit", "Price");
			Dictionary<string, int> dictionary = new Dictionary<string, int>();
			for (int j = 0; j < storageList.Count; j++)
			{
				if (storageList[j] != null)
				{
					dictionary.Add(storageList[j], (int)storageList2[j]);
				}
			}
			Helpers.AddDataValue("Prices", dictionary);
		}
	}
	[HarmonyPatch]
	internal static class SatoriCounselingPatch
	{
		[HarmonyPatch(typeof(DialogFunctions), "AdventureRand")]
		[HarmonyPostfix]
		private static void AddHasMoney(int a, int __result, GameRunController ____gameRun)
		{
			if (Instance.IsInitialized && a == 50)
			{
				if (!(____gameRun.Player is Koishi) && !(Helpers.GetAdventureId(____gameRun.CurrentStation) != "SatoriCounseling"))
				{
					int money = ____gameRun.Money;
					bool value = money >= __result;
					Helpers.AddDataValue("HasMoney", value);
				}
			}
		}

		[HarmonyPatch(typeof(InteractionViewer), "View")]
		[HarmonyPrefix]
		private static void AddCardsRewards(Interaction interaction)
		{
			if (Instance.IsInitialized && Helpers.IsAdventure<SatoriCounseling>())
			{
				RewardsManager.AddCardsRewards(interaction);
			}
		}
	}
	[HarmonyPatch]
	internal static class ShinmyoumaruForgePatch
	{
		[HarmonyPatch(typeof(ShinmyoumaruForge), "InitVariables")]
		[HarmonyPostfix]
		private static void AddData(ShinmyoumaruForge __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				bool value = default(bool);
				storage.TryGetValue<bool>("$hasUpgradableBasics", ref value);
				bool value2 = default(bool);
				storage.TryGetValue<bool>("$hasNonBasics", ref value2);
				float num = default(float);
				storage.TryGetValue<float>("$loseMax", ref num);
				Helpers.AddDataValue("HasUpgradableBasics", value);
				Helpers.AddDataValue("HasNonBasics", value2);
				Helpers.AddDataValue("LoseMax", (int)num);
			}
		}
	}
	[HarmonyPatch]
	internal static class SumirekoGatheringPatch
	{
		[HarmonyPatch(typeof(SumirekoGathering), "InitVariables")]
		[HarmonyPostfix]
		private static void AddData(SumirekoGathering __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				string text = default(string);
				storage.TryGetValue<string>("$rareCard1", ref text);
				if (text != null)
				{
					bool isUpgraded = default(bool);
					storage.TryGetValue<bool>("$isUpgraded", ref isUpgraded);
					CardObj value = new CardObj
					{
						Id = text,
						IsUpgraded = isUpgraded
					};
					Helpers.AddDataValue("Card", value);
					AddCards(storage);
				}
			}
		}

		[HarmonyPatch(typeof(DialogFunctions), "HasMoney")]
		[HarmonyPostfix]
		private static void AddHasMoney(bool __result)
		{
			if (!Instance.IsInitialized || !Helpers.IsAdventure<SumirekoGathering>(out DialogStorage storage))
			{
				return;
			}
			bool flag = __result;
			Helpers.AddDataValue("HasMoney", flag);
			if (flag)
			{
				Helpers.GetData(out var data);
				if (!data.ContainsKey("Cards"))
				{
					AddCards(storage);
				}
			}
		}

		[HarmonyPatch(typeof(InteractionViewer), "View")]
		[HarmonyPrefix]
		private static void AddCardsRewards(Interaction interaction)
		{
			if (Instance.IsInitialized && Helpers.IsAdventure<SumirekoGathering>())
			{
				RewardsManager.AddCardsRewards(interaction);
			}
		}

		private static void AddCards(DialogStorage storage)
		{
			List<string> storageList = Helpers.GetStorageList<string, int>(storage, new int[3] { 1, 2, 3 }, "$rareTrade");
			Helpers.AddDataValue("Cards", storageList);
		}
	}
	[HarmonyPatch]
	internal static class SupplyPatch
	{
		[HarmonyPatch(typeof(Supply), "InitVariables")]
		[HarmonyPostfix]
		private static void AddData(Supply __instance)
		{
			if (Instance.IsInitialized)
			{
				DialogStorage storage = ((Adventure)__instance).Storage;
				List<string> storageList = Helpers.GetStorageList<string, string>(storage, new string[2] { "A", "B" }, "$exhibit");
				Helpers.AddDataValue("Exhibits", storageList);
				bool value = default(bool);
				storage.TryGetValue<bool>("$bothFlag", ref value);
				Helpers.AddDataValue("Both", value);
			}
		}
	}
	[HarmonyPatch]
	internal static class WatatsukiPurifyPatch
	{
		[HarmonyPatch(typeof(WatatsukiPurify), "InitVariables")]
		[HarmonyPostfix]
		private static void AddLoseMax(WatatsukiPurify __instance)
		{
			if (Instance.IsInitialized)
			{
				float num = default(float);
				((Adventure)__instance).Storage.TryGetValue<float>("$loseMax", ref num);
				Helpers.AddDataValue("LoseMax", (int)num);
			}
		}
	}
	[HarmonyPatch]
	internal static class YachieOppressionPatch
	{
		[HarmonyPatch(typeof(YachieOppression), "InitVariables")]
		[HarmonyPostfix]
		private static void AddExhibitBeforeBattle(YachieOppression __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				AddExhibit(((Adventure)__instance).Storage);
			}
		}

		[HarmonyPatch(typeof(GameRunController), "LeaveBattle")]
		[HarmonyPostfix]
		private static void AddExhibitAfterBattle()
		{
			if (Instance.IsInitialized && !Controller.ShowRandomResult && Helpers.IsAdventure<YachieOppression>(out DialogStorage storage))
			{
				AddExhibit(storage);
			}
		}

		private static void AddExhibit(DialogStorage storage)
		{
			string value = default(string);
			storage.TryGetValue<string>("$enemyExhibit", ref value);
			Helpers.AddDataValue("Exhibit", value);
		}
	}
	[HarmonyPatch]
	internal static class YoumuDeliveryPatch
	{
		[HarmonyPatch(typeof(YoumuDelivery), "InitVariables")]
		[HarmonyPostfix]
		private static void AddCard(YoumuDelivery __instance)
		{
			if (Instance.IsInitialized && Controller.ShowRandomResult)
			{
				string value = default(string);
				((Adventure)__instance).Storage.TryGetValue<string>("$transformCard", ref value);
				Helpers.AddDataValue("Card", value);
			}
		}
	}
}
namespace RunLogger.Patches.RunLogPatches.StationObjPatches.DataPatches.BattleDetailsPatches
{
	[HarmonyPatch]
	internal static class IntentionsPatch
	{
		[HarmonyPatch(typeof(Seija), "GetTurnMoves")]
		[HarmonyPostfix]
		private static void AddIntentions(Seija __instance, IEnumerable<IEnemyMove> __result)
		{
			if (Instance.IsInitialized)
			{
				if (((Unit)__instance).TurnCounter == 0)
				{
					TurnObjManager.UpdateTurnObj((Unit)(object)__instance);
				}
				AddIntentionsInternal(__instance, __result);
			}
		}

		private static void AddIntentionsInternal(Seija enemy, IEnumerable<IEnemyMove> moves)
		{
			TurnObjManager.GetLastTurnObj(out var turnObj);
			List<IntentionObj> intentions = moves.Select(delegate(IEnemyMove m)
			{
				//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_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_0022: 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_0027: Invalid comparison between Unknown and I4
				//IL_004f: Unknown result type (might be due to invalid IL or missing references)
				//IL_0054: 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_002b: Unknown result type (might be due to invalid IL or missing references)
				//IL_002f: Invalid comparison between Unknown and I4
				//IL_0036: Unknown result type (might be due to invalid IL or missing references)
				//IL_003a: Invalid comparison between Unknown and I4
				Intention intention = m.Intention;
				IntentionType type = intention.Type;
				string type2 = ((object)(IntentionType)(ref type)).ToString();
				IntentionType val = type;
				IntentionType val2 = val;
				if ((int)val2 == 1)
				{
					AttackIntention val3 = (AttackIntention)(object)((intention is AttackIntention) ? intention : null);
					DamageInfo damage = val3.Damage;
					int value = ((Unit)enemy).Battle.CalculateDamage((GameEntity)(object)enemy, (Unit)(object)enemy, (Unit)(object)((Unit)enemy).Battle.Player, damage);
					return new IntentionObj
					{
						Type = type2,
						Damage = value,
						Times = val3.Times,
						IsAccurate = val3.IsAccuracy
					};
				}
				if ((int)val2 == 10)
				{
					ClearIntention val4 = (ClearIntention)(object)((intention is ClearIntention) ? intention : null);
					return new IntentionObj
					{
						Type = type2
					};
				}
				if ((int)val2 == 12)
				{
					SpellCardIntention val5 = (SpellCardIntention)(object)((intention is SpellCardIntention) ? intention : null);
					return new IntentionObj
					{
						Type = type2
					};
				}
				return new IntentionObj();
			}).ToList();
			turnObj.Intentions = intentions;
		}
	}
	[HarmonyPatch]
	internal static class TurnObjPatch
	{
		[HarmonyPatch]
		private static class UpsertOnPlayerAndEnemyEndTurn
		{
			private static MethodBase TargetMethod()
			{
				return AccessTools.Method(typeof(BattleAction), "CreateEventPhase", (Type[])null, (Type[])null).MakeGenericMethod(typeof(UnitEventArgs));
			}

			private static void Prefix(string name, UnitEventArgs args, BattleAction __instance)
			{
				if (!Instance.IsInitialized || name != "TurnEnded")
				{
					return;
				}
				BattleController battle = __instance.Battle;
				if (battle.EnemyGroup.Id != "Seija")
				{
					return;
				}
				if (__instance is EndPlayerTurnAction)
				{
					Unit unit = args.Unit;
					PlayerUnit unit2 = (PlayerUnit)(object)((unit is PlayerUnit) ? unit : null);
					TurnObjManager.UpdateTurnObj((Unit)(object)unit2);
				}
				else if (__instance is EndEnemyTurnAction)
				{
					Unit unit3 = args.Unit;
					EnemyUnit val = (EnemyUnit)(object)((unit3 is EnemyUnit) ? unit3 : null);
					string id = ((GameEntity)val).Id;
					if (!(id != "Seija"))
					{
						int roundCounter = battle.RoundCounter;
						int turnCounter = ((Unit)val).TurnCounter;
						TurnObjManager.AppendTurnObj(roundCounter, turnCounter, id);
						TurnObjManager.UpdateTurnObj((Unit)(object)val);
					}
				}
			}
		}

		[HarmonyPatch(typeof(Seija), "OnEnterBattle")]
		[HarmonyPostfix]
		private static void AppendOnEnemyEnterBattle(Seija __instance)
		{
			if (Instance.IsInitialized)
			{
				TurnObjManager.AppendTurnObj(0, 0, ((GameEntity)__instance).Id);
			}
		}

		[HarmonyPatch(typeof(BattleAction), "CreatePhase", new Type[]
		{
			typeof(string),
			typeof(Action),
			typeof(bool)
		})]
		[HarmonyPrefix]
		private static void AppendOnPlayerStartTurn(string name, BattleAction __instance)
		{
			//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)
			if (Instance.IsInitialized && !(name != "InTurn"))
			{
				BattleController battle = __instance.Battle;
				if (!(battle.EnemyGroup.Id != "Seija") && !battle.PlayerTurnShouldEnd)
				{
					int roundCounter = battle.RoundCounter;
					int turnCounter = ((Unit)battle.Player).TurnCounter;
					ManaGroup battleMana = battle.BattleMana;
					string mana = ((object)(ManaGroup)(ref battleMana)).ToString();
					List<CardObj> cards = Helpers.ParseCards(battle.HandZone);
					TurnObjManager.AppendTurnObj(roundCounter, turnCounter, "Player", mana, cards);
				}
			}
		}
	}
}
namespace RunLogger.Patches.PanelPatches
{
	[HarmonyPatch]
	internal static class CardDetailPanelPatch
	{
		[HarmonyPatch(typeof(CardDetailPanel), "Awake")]
		[HarmonyPostfix]
		private static void CreateBg(CardDetailPanel __instance)
		{
			//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_0079: 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_009b: Unknown result type (might be due to invalid IL or missing references)
			if (!UploadPanel.HasPanel && !((Object)(object)ObjectsManager.GetFromTemp("Bg") != (Object)null))
			{
				RectTransform val = ObjectsManager.CopyGameObject(((Component)__instance).transform, "SubWidgetGroup/TooltipParent/TooltipTemplate/Root/ExtraText");
				((Object)val).name = "Bg";
				val.pivot = new Vector2(0f, 0.5f);
				val.anchorMin = new Vector2(0f, 1f);
				val.anchorMax = new Vector2(0f, 1f);
				val.sizeDelta = new Vector2(700f, 100f);
				((Transform)val).position = PositionsManager.BgPosition;
				Object.Destroy((Object)(object)((Component)((Transform)val).Find("UpgradeText")).gameObject);
				Object.Destroy((Object)(object)((Component)val).GetComponent<ContentSizeFitter>());
				ObjectsManager.ChangeText(((Transform)val).Find("PoolText"), null);
				UploadPanel.AdjustPanel();
			}
		}
	}
	[HarmonyPatch]
	internal static class GameResultPanelPatch
	{
		[Serializable]
		[CompilerGenerated]
		private sealed class <>c
		{
			public static readonly <>c <>9 = new <>c();

			public static UnityAction<bool> <>9__1_0;

			public static UnityAction <>9__1_3;

			internal void <DisplayPanel>b__1_0(bool isOn)
			{
				Helpers.AutoUpload = isOn;
			}

			internal void <DisplayPanel>b__1_3()
			{
				LBoLLogs.Upload();
			}
		}

		[HarmonyPatch(typeof(GameResultPanel), "Awake")]
		[HarmonyPostfix]
		private static void CreateQuickUpload(GameResultPanel __instance)
		{
			//IL_0071: Unknown result type (might be due to invalid IL or missing references)
			//IL_0087: Unknown result type (might be due to inva

Newtonsoft.Json.dll

Decompiled a month ago
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Data;
using System.Data.SqlTypes;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Numerics;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters;
using System.Runtime.Versioning;
using System.Security;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
using Microsoft.CodeAnalysis;
using Newtonsoft.Json.Bson;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Linq.JsonPath;
using Newtonsoft.Json.Schema;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json.Utilities;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AllowPartiallyTrustedCallers]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Schema, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Dynamic, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cbd8d53b9d7de30f1f1278f636ec462cf9c254991291e66ebb157a885638a517887633b898ccbcf0d5c5ff7be85a6abe9e765d0ac7cd33c68dac67e7e64530e8222101109f154ab14a941c490ac155cd1d4fcba0fabb49016b4ef28593b015cab5937da31172f03f67d09edda404b88a60023f062ae71d0b2e4438b74cc11dc9")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("9ca358aa-317b-4925-8ada-4a29e943a363")]
[assembly: CLSCompliant(true)]
[assembly: TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]
[assembly: AssemblyCompany("Newtonsoft")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Copyright © James Newton-King 2008")]
[assembly: AssemblyDescription("Json.NET is a popular high-performance JSON framework for .NET")]
[assembly: AssemblyFileVersion("13.0.3.27908")]
[assembly: AssemblyInformationalVersion("13.0.3+0a2e291c0d9c0c7675d445703e51750363a549ef")]
[assembly: AssemblyProduct("Json.NET")]
[assembly: AssemblyTitle("Json.NET .NET Standard 2.0")]
[assembly: AssemblyMetadata("RepositoryUrl", "https://github.com/JamesNK/Newtonsoft.Json")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyVersion("13.0.0.0")]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class IsReadOnlyAttribute : Attribute
	{
	}
	[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;
		}
	}
}
namespace System.Diagnostics.CodeAnalysis
{
	[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, AllowMultiple = true)]
	internal sealed class NotNullAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
	internal sealed class NotNullWhenAttribute : Attribute
	{
		public bool ReturnValue { get; }

		public NotNullWhenAttribute(bool returnValue)
		{
			ReturnValue = returnValue;
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, Inherited = false)]
	internal sealed class MaybeNullAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
	internal sealed class AllowNullAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
	internal class DoesNotReturnIfAttribute : Attribute
	{
		public bool ParameterValue { get; }

		public DoesNotReturnIfAttribute(bool parameterValue)
		{
			ParameterValue = parameterValue;
		}
	}
}
namespace Newtonsoft.Json
{
	public enum ConstructorHandling
	{
		Default,
		AllowNonPublicDefaultConstructor
	}
	public enum DateFormatHandling
	{
		IsoDateFormat,
		MicrosoftDateFormat
	}
	public enum DateParseHandling
	{
		None,
		DateTime,
		DateTimeOffset
	}
	public enum DateTimeZoneHandling
	{
		Local,
		Utc,
		Unspecified,
		RoundtripKind
	}
	public class DefaultJsonNameTable : JsonNameTable
	{
		private class Entry
		{
			internal readonly string Value;

			internal readonly int HashCode;

			internal Entry Next;

			internal Entry(string value, int hashCode, Entry next)
			{
				Value = value;
				HashCode = hashCode;
				Next = next;
			}
		}

		private static readonly int HashCodeRandomizer;

		private int _count;

		private Entry[] _entries;

		private int _mask = 31;

		static DefaultJsonNameTable()
		{
			HashCodeRandomizer = Environment.TickCount;
		}

		public DefaultJsonNameTable()
		{
			_entries = new Entry[_mask + 1];
		}

		public override string? Get(char[] key, int start, int length)
		{
			if (length == 0)
			{
				return string.Empty;
			}
			int num = length + HashCodeRandomizer;
			num += (num << 7) ^ key[start];
			int num2 = start + length;
			for (int i = start + 1; i < num2; i++)
			{
				num += (num << 7) ^ key[i];
			}
			num -= num >> 17;
			num -= num >> 11;
			num -= num >> 5;
			int num3 = Volatile.Read(ref _mask);
			int num4 = num & num3;
			for (Entry entry = _entries[num4]; entry != null; entry = entry.Next)
			{
				if (entry.HashCode == num && TextEquals(entry.Value, key, start, length))
				{
					return entry.Value;
				}
			}
			return null;
		}

		public string Add(string key)
		{
			if (key == null)
			{
				throw new ArgumentNullException("key");
			}
			int length = key.Length;
			if (length == 0)
			{
				return string.Empty;
			}
			int num = length + HashCodeRandomizer;
			for (int i = 0; i < key.Length; i++)
			{
				num += (num << 7) ^ key[i];
			}
			num -= num >> 17;
			num -= num >> 11;
			num -= num >> 5;
			for (Entry entry = _entries[num & _mask]; entry != null; entry = entry.Next)
			{
				if (entry.HashCode == num && entry.Value.Equals(key, StringComparison.Ordinal))
				{
					return entry.Value;
				}
			}
			return AddEntry(key, num);
		}

		private string AddEntry(string str, int hashCode)
		{
			int num = hashCode & _mask;
			Entry entry = new Entry(str, hashCode, _entries[num]);
			_entries[num] = entry;
			if (_count++ == _mask)
			{
				Grow();
			}
			return entry.Value;
		}

		private void Grow()
		{
			Entry[] entries = _entries;
			int num = _mask * 2 + 1;
			Entry[] array = new Entry[num + 1];
			for (int i = 0; i < entries.Length; i++)
			{
				Entry entry = entries[i];
				while (entry != null)
				{
					int num2 = entry.HashCode & num;
					Entry next = entry.Next;
					entry.Next = array[num2];
					array[num2] = entry;
					entry = next;
				}
			}
			_entries = array;
			Volatile.Write(ref _mask, num);
		}

		private static bool TextEquals(string str1, char[] str2, int str2Start, int str2Length)
		{
			if (str1.Length != str2Length)
			{
				return false;
			}
			for (int i = 0; i < str1.Length; i++)
			{
				if (str1[i] != str2[str2Start + i])
				{
					return false;
				}
			}
			return true;
		}
	}
	[Flags]
	public enum DefaultValueHandling
	{
		Include = 0,
		Ignore = 1,
		Populate = 2,
		IgnoreAndPopulate = 3
	}
	public enum FloatFormatHandling
	{
		String,
		Symbol,
		DefaultValue
	}
	public enum FloatParseHandling
	{
		Double,
		Decimal
	}
	public enum Formatting
	{
		None,
		Indented
	}
	public interface IArrayPool<T>
	{
		T[] Rent(int minimumLength);

		void Return(T[]? array);
	}
	public interface IJsonLineInfo
	{
		int LineNumber { get; }

		int LinePosition { get; }

		bool HasLineInfo();
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonArrayAttribute : JsonContainerAttribute
	{
		private bool _allowNullItems;

		public bool AllowNullItems
		{
			get
			{
				return _allowNullItems;
			}
			set
			{
				_allowNullItems = value;
			}
		}

		public JsonArrayAttribute()
		{
		}

		public JsonArrayAttribute(bool allowNullItems)
		{
			_allowNullItems = allowNullItems;
		}

		public JsonArrayAttribute(string id)
			: base(id)
		{
		}
	}
	[AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false)]
	public sealed class JsonConstructorAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public abstract class JsonContainerAttribute : Attribute
	{
		internal bool? _isReference;

		internal bool? _itemIsReference;

		internal ReferenceLoopHandling? _itemReferenceLoopHandling;

		internal TypeNameHandling? _itemTypeNameHandling;

		private Type? _namingStrategyType;

		private object[]? _namingStrategyParameters;

		public string? Id { get; set; }

		public string? Title { get; set; }

		public string? Description { get; set; }

		public Type? ItemConverterType { get; set; }

		public object[]? ItemConverterParameters { get; set; }

		public Type? NamingStrategyType
		{
			get
			{
				return _namingStrategyType;
			}
			set
			{
				_namingStrategyType = value;
				NamingStrategyInstance = null;
			}
		}

		public object[]? NamingStrategyParameters
		{
			get
			{
				return _namingStrategyParameters;
			}
			set
			{
				_namingStrategyParameters = value;
				NamingStrategyInstance = null;
			}
		}

		internal NamingStrategy? NamingStrategyInstance { get; set; }

		public bool IsReference
		{
			get
			{
				return _isReference.GetValueOrDefault();
			}
			set
			{
				_isReference = value;
			}
		}

		public bool ItemIsReference
		{
			get
			{
				return _itemIsReference.GetValueOrDefault();
			}
			set
			{
				_itemIsReference = value;
			}
		}

		public ReferenceLoopHandling ItemReferenceLoopHandling
		{
			get
			{
				return _itemReferenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_itemReferenceLoopHandling = value;
			}
		}

		public TypeNameHandling ItemTypeNameHandling
		{
			get
			{
				return _itemTypeNameHandling.GetValueOrDefault();
			}
			set
			{
				_itemTypeNameHandling = value;
			}
		}

		protected JsonContainerAttribute()
		{
		}

		protected JsonContainerAttribute(string id)
		{
			Id = id;
		}
	}
	public static class JsonConvert
	{
		public static readonly string True = "true";

		public static readonly string False = "false";

		public static readonly string Null = "null";

		public static readonly string Undefined = "undefined";

		public static readonly string PositiveInfinity = "Infinity";

		public static readonly string NegativeInfinity = "-Infinity";

		public static readonly string NaN = "NaN";

		public static Func<JsonSerializerSettings>? DefaultSettings { get; set; }

		public static string ToString(DateTime value)
		{
			return ToString(value, DateFormatHandling.IsoDateFormat, DateTimeZoneHandling.RoundtripKind);
		}

		public static string ToString(DateTime value, DateFormatHandling format, DateTimeZoneHandling timeZoneHandling)
		{
			DateTime value2 = DateTimeUtils.EnsureDateTime(value, timeZoneHandling);
			using StringWriter stringWriter = StringUtils.CreateStringWriter(64);
			stringWriter.Write('"');
			DateTimeUtils.WriteDateTimeString(stringWriter, value2, format, null, CultureInfo.InvariantCulture);
			stringWriter.Write('"');
			return stringWriter.ToString();
		}

		public static string ToString(DateTimeOffset value)
		{
			return ToString(value, DateFormatHandling.IsoDateFormat);
		}

		public static string ToString(DateTimeOffset value, DateFormatHandling format)
		{
			using StringWriter stringWriter = StringUtils.CreateStringWriter(64);
			stringWriter.Write('"');
			DateTimeUtils.WriteDateTimeOffsetString(stringWriter, value, format, null, CultureInfo.InvariantCulture);
			stringWriter.Write('"');
			return stringWriter.ToString();
		}

		public static string ToString(bool value)
		{
			if (!value)
			{
				return False;
			}
			return True;
		}

		public static string ToString(char value)
		{
			return ToString(char.ToString(value));
		}

		public static string ToString(Enum value)
		{
			return value.ToString("D");
		}

		public static string ToString(int value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(short value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(ushort value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(uint value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(long value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		private static string ToStringInternal(BigInteger value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(ulong value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(float value)
		{
			return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture));
		}

		internal static string ToString(float value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable);
		}

		private static string EnsureFloatFormat(double value, string text, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			if (floatFormatHandling == FloatFormatHandling.Symbol || (!double.IsInfinity(value) && !double.IsNaN(value)))
			{
				return text;
			}
			if (floatFormatHandling == FloatFormatHandling.DefaultValue)
			{
				if (nullable)
				{
					return Null;
				}
				return "0.0";
			}
			return quoteChar + text + quoteChar;
		}

		public static string ToString(double value)
		{
			return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture));
		}

		internal static string ToString(double value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable);
		}

		private static string EnsureDecimalPlace(double value, string text)
		{
			if (double.IsNaN(value) || double.IsInfinity(value) || StringUtils.IndexOf(text, '.') != -1 || StringUtils.IndexOf(text, 'E') != -1 || StringUtils.IndexOf(text, 'e') != -1)
			{
				return text;
			}
			return text + ".0";
		}

		private static string EnsureDecimalPlace(string text)
		{
			if (StringUtils.IndexOf(text, '.') != -1)
			{
				return text;
			}
			return text + ".0";
		}

		public static string ToString(byte value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(sbyte value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(decimal value)
		{
			return EnsureDecimalPlace(value.ToString(null, CultureInfo.InvariantCulture));
		}

		public static string ToString(Guid value)
		{
			return ToString(value, '"');
		}

		internal static string ToString(Guid value, char quoteChar)
		{
			string text = value.ToString("D", CultureInfo.InvariantCulture);
			string text2 = quoteChar.ToString(CultureInfo.InvariantCulture);
			return text2 + text + text2;
		}

		public static string ToString(TimeSpan value)
		{
			return ToString(value, '"');
		}

		internal static string ToString(TimeSpan value, char quoteChar)
		{
			return ToString(value.ToString(), quoteChar);
		}

		public static string ToString(Uri? value)
		{
			if (value == null)
			{
				return Null;
			}
			return ToString(value, '"');
		}

		internal static string ToString(Uri value, char quoteChar)
		{
			return ToString(value.OriginalString, quoteChar);
		}

		public static string ToString(string? value)
		{
			return ToString(value, '"');
		}

		public static string ToString(string? value, char delimiter)
		{
			return ToString(value, delimiter, StringEscapeHandling.Default);
		}

		public static string ToString(string? value, char delimiter, StringEscapeHandling stringEscapeHandling)
		{
			if (delimiter != '"' && delimiter != '\'')
			{
				throw new ArgumentException("Delimiter must be a single or double quote.", "delimiter");
			}
			return JavaScriptUtils.ToEscapedJavaScriptString(value, delimiter, appendDelimiters: true, stringEscapeHandling);
		}

		public static string ToString(object? value)
		{
			if (value == null)
			{
				return Null;
			}
			return ConvertUtils.GetTypeCode(value.GetType()) switch
			{
				PrimitiveTypeCode.String => ToString((string)value), 
				PrimitiveTypeCode.Char => ToString((char)value), 
				PrimitiveTypeCode.Boolean => ToString((bool)value), 
				PrimitiveTypeCode.SByte => ToString((sbyte)value), 
				PrimitiveTypeCode.Int16 => ToString((short)value), 
				PrimitiveTypeCode.UInt16 => ToString((ushort)value), 
				PrimitiveTypeCode.Int32 => ToString((int)value), 
				PrimitiveTypeCode.Byte => ToString((byte)value), 
				PrimitiveTypeCode.UInt32 => ToString((uint)value), 
				PrimitiveTypeCode.Int64 => ToString((long)value), 
				PrimitiveTypeCode.UInt64 => ToString((ulong)value), 
				PrimitiveTypeCode.Single => ToString((float)value), 
				PrimitiveTypeCode.Double => ToString((double)value), 
				PrimitiveTypeCode.DateTime => ToString((DateTime)value), 
				PrimitiveTypeCode.Decimal => ToString((decimal)value), 
				PrimitiveTypeCode.DBNull => Null, 
				PrimitiveTypeCode.DateTimeOffset => ToString((DateTimeOffset)value), 
				PrimitiveTypeCode.Guid => ToString((Guid)value), 
				PrimitiveTypeCode.Uri => ToString((Uri)value), 
				PrimitiveTypeCode.TimeSpan => ToString((TimeSpan)value), 
				PrimitiveTypeCode.BigInteger => ToStringInternal((BigInteger)value), 
				_ => throw new ArgumentException("Unsupported type: {0}. Use the JsonSerializer class to get the object's JSON representation.".FormatWith(CultureInfo.InvariantCulture, value.GetType())), 
			};
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value)
		{
			return SerializeObject(value, (Type?)null, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting)
		{
			return SerializeObject(value, formatting, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return SerializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return SerializeObject(value, null, formatting, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, JsonSerializerSettings? settings)
		{
			return SerializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Type? type, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			return SerializeObjectInternal(value, type, jsonSerializer);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting, JsonSerializerSettings? settings)
		{
			return SerializeObject(value, null, formatting, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Type? type, Formatting formatting, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			jsonSerializer.Formatting = formatting;
			return SerializeObjectInternal(value, type, jsonSerializer);
		}

		private static string SerializeObjectInternal(object? value, Type? type, JsonSerializer jsonSerializer)
		{
			StringWriter stringWriter = new StringWriter(new StringBuilder(256), CultureInfo.InvariantCulture);
			using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
			{
				jsonTextWriter.Formatting = jsonSerializer.Formatting;
				jsonSerializer.Serialize(jsonTextWriter, value, type);
			}
			return stringWriter.ToString();
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value)
		{
			return DeserializeObject(value, (Type?)null, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, JsonSerializerSettings settings)
		{
			return DeserializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, Type type)
		{
			return DeserializeObject(value, type, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value)
		{
			return JsonConvert.DeserializeObject<T>(value, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject)
		{
			return DeserializeObject<T>(value);
		}

		[DebuggerStepThrough]
		public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject, JsonSerializerSettings settings)
		{
			return DeserializeObject<T>(value, settings);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value, params JsonConverter[] converters)
		{
			return (T)DeserializeObject(value, typeof(T), converters);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value, JsonSerializerSettings? settings)
		{
			return (T)DeserializeObject(value, typeof(T), settings);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, Type type, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return DeserializeObject(value, type, settings);
		}

		public static object? DeserializeObject(string value, Type? type, JsonSerializerSettings? settings)
		{
			ValidationUtils.ArgumentNotNull(value, "value");
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			if (!jsonSerializer.IsCheckAdditionalContentSet())
			{
				jsonSerializer.CheckAdditionalContent = true;
			}
			using JsonTextReader reader = new JsonTextReader(new StringReader(value));
			return jsonSerializer.Deserialize(reader, type);
		}

		[DebuggerStepThrough]
		public static void PopulateObject(string value, object target)
		{
			PopulateObject(value, target, null);
		}

		public static void PopulateObject(string value, object target, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			using JsonReader jsonReader = new JsonTextReader(new StringReader(value));
			jsonSerializer.Populate(jsonReader, target);
			if (settings == null || !settings.CheckAdditionalContent)
			{
				return;
			}
			while (jsonReader.Read())
			{
				if (jsonReader.TokenType != JsonToken.Comment)
				{
					throw JsonSerializationException.Create(jsonReader, "Additional text found in JSON string after finishing deserializing object.");
				}
			}
		}

		public static string SerializeXmlNode(XmlNode? node)
		{
			return SerializeXmlNode(node, Formatting.None);
		}

		public static string SerializeXmlNode(XmlNode? node, Formatting formatting)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static string SerializeXmlNode(XmlNode? node, Formatting formatting, bool omitRootObject)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter
			{
				OmitRootObject = omitRootObject
			};
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static XmlDocument? DeserializeXmlNode(string value)
		{
			return DeserializeXmlNode(value, null);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName)
		{
			return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute: false);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute)
		{
			return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName;
			xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute;
			xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters;
			return (XmlDocument)DeserializeObject(value, typeof(XmlDocument), xmlNodeConverter);
		}

		public static string SerializeXNode(XObject? node)
		{
			return SerializeXNode(node, Formatting.None);
		}

		public static string SerializeXNode(XObject? node, Formatting formatting)
		{
			return SerializeXNode(node, formatting, omitRootObject: false);
		}

		public static string SerializeXNode(XObject? node, Formatting formatting, bool omitRootObject)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter
			{
				OmitRootObject = omitRootObject
			};
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static XDocument? DeserializeXNode(string value)
		{
			return DeserializeXNode(value, null);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName)
		{
			return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute: false);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute)
		{
			return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName;
			xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute;
			xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters;
			return (XDocument)DeserializeObject(value, typeof(XDocument), xmlNodeConverter);
		}
	}
	public abstract class JsonConverter
	{
		public virtual bool CanRead => true;

		public virtual bool CanWrite => true;

		public abstract void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer);

		public abstract object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer);

		public abstract bool CanConvert(Type objectType);
	}
	public abstract class JsonConverter<T> : JsonConverter
	{
		public sealed override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
		{
			if (!((value != null) ? (value is T) : ReflectionUtils.IsNullable(typeof(T))))
			{
				throw new JsonSerializationException("Converter cannot write specified value to JSON. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T)));
			}
			WriteJson(writer, (T)value, serializer);
		}

		public abstract void WriteJson(JsonWriter writer, T? value, JsonSerializer serializer);

		public sealed override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
		{
			bool flag = existingValue == null;
			if (!flag && !(existingValue is T))
			{
				throw new JsonSerializationException("Converter cannot read JSON with the specified existing value. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T)));
			}
			return ReadJson(reader, objectType, flag ? default(T) : ((T)existingValue), !flag, serializer);
		}

		public abstract T? ReadJson(JsonReader reader, Type objectType, T? existingValue, bool hasExistingValue, JsonSerializer serializer);

		public sealed override bool CanConvert(Type objectType)
		{
			return typeof(T).IsAssignableFrom(objectType);
		}
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Parameter, AllowMultiple = false)]
	public sealed class JsonConverterAttribute : Attribute
	{
		private readonly Type _converterType;

		public Type ConverterType => _converterType;

		public object[]? ConverterParameters { get; }

		public JsonConverterAttribute(Type converterType)
		{
			if (converterType == null)
			{
				throw new ArgumentNullException("converterType");
			}
			_converterType = converterType;
		}

		public JsonConverterAttribute(Type converterType, params object[] converterParameters)
			: this(converterType)
		{
			ConverterParameters = converterParameters;
		}
	}
	public class JsonConverterCollection : Collection<JsonConverter>
	{
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonDictionaryAttribute : JsonContainerAttribute
	{
		public JsonDictionaryAttribute()
		{
		}

		public JsonDictionaryAttribute(string id)
			: base(id)
		{
		}
	}
	[Serializable]
	public class JsonException : Exception
	{
		public JsonException()
		{
		}

		public JsonException(string message)
			: base(message)
		{
		}

		public JsonException(string message, Exception? innerException)
			: base(message, innerException)
		{
		}

		public JsonException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		internal static JsonException Create(IJsonLineInfo lineInfo, string path, string message)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			return new JsonException(message);
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public class JsonExtensionDataAttribute : Attribute
	{
		public bool WriteData { get; set; }

		public bool ReadData { get; set; }

		public JsonExtensionDataAttribute()
		{
			WriteData = true;
			ReadData = true;
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public sealed class JsonIgnoreAttribute : Attribute
	{
	}
	public abstract class JsonNameTable
	{
		public abstract string? Get(char[] key, int start, int length);
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonObjectAttribute : JsonContainerAttribute
	{
		private MemberSerialization _memberSerialization;

		internal MissingMemberHandling? _missingMemberHandling;

		internal Required? _itemRequired;

		internal NullValueHandling? _itemNullValueHandling;

		public MemberSerialization MemberSerialization
		{
			get
			{
				return _memberSerialization;
			}
			set
			{
				_memberSerialization = value;
			}
		}

		public MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling.GetValueOrDefault();
			}
			set
			{
				_missingMemberHandling = value;
			}
		}

		public NullValueHandling ItemNullValueHandling
		{
			get
			{
				return _itemNullValueHandling.GetValueOrDefault();
			}
			set
			{
				_itemNullValueHandling = value;
			}
		}

		public Required ItemRequired
		{
			get
			{
				return _itemRequired.GetValueOrDefault();
			}
			set
			{
				_itemRequired = value;
			}
		}

		public JsonObjectAttribute()
		{
		}

		public JsonObjectAttribute(MemberSerialization memberSerialization)
		{
			MemberSerialization = memberSerialization;
		}

		public JsonObjectAttribute(string id)
			: base(id)
		{
		}
	}
	internal enum JsonContainerType
	{
		None,
		Object,
		Array,
		Constructor
	}
	internal struct JsonPosition
	{
		private static readonly char[] SpecialCharacters = new char[18]
		{
			'.', ' ', '\'', '/', '"', '[', ']', '(', ')', '\t',
			'\n', '\r', '\f', '\b', '\\', '\u0085', '\u2028', '\u2029'
		};

		internal JsonContainerType Type;

		internal int Position;

		internal string? PropertyName;

		internal bool HasIndex;

		public JsonPosition(JsonContainerType type)
		{
			Type = type;
			HasIndex = TypeHasIndex(type);
			Position = -1;
			PropertyName = null;
		}

		internal int CalculateLength()
		{
			switch (Type)
			{
			case JsonContainerType.Object:
				return PropertyName.Length + 5;
			case JsonContainerType.Array:
			case JsonContainerType.Constructor:
				return MathUtils.IntLength((ulong)Position) + 2;
			default:
				throw new ArgumentOutOfRangeException("Type");
			}
		}

		internal void WriteTo(StringBuilder sb, ref StringWriter? writer, ref char[]? buffer)
		{
			switch (Type)
			{
			case JsonContainerType.Object:
			{
				string propertyName = PropertyName;
				if (propertyName.IndexOfAny(SpecialCharacters) != -1)
				{
					sb.Append("['");
					if (writer == null)
					{
						writer = new StringWriter(sb);
					}
					JavaScriptUtils.WriteEscapedJavaScriptString(writer, propertyName, '\'', appendDelimiters: false, JavaScriptUtils.SingleQuoteCharEscapeFlags, StringEscapeHandling.Default, null, ref buffer);
					sb.Append("']");
				}
				else
				{
					if (sb.Length > 0)
					{
						sb.Append('.');
					}
					sb.Append(propertyName);
				}
				break;
			}
			case JsonContainerType.Array:
			case JsonContainerType.Constructor:
				sb.Append('[');
				sb.Append(Position);
				sb.Append(']');
				break;
			}
		}

		internal static bool TypeHasIndex(JsonContainerType type)
		{
			if (type != JsonContainerType.Array)
			{
				return type == JsonContainerType.Constructor;
			}
			return true;
		}

		internal static string BuildPath(List<JsonPosition> positions, JsonPosition? currentPosition)
		{
			int num = 0;
			if (positions != null)
			{
				for (int i = 0; i < positions.Count; i++)
				{
					num += positions[i].CalculateLength();
				}
			}
			if (currentPosition.HasValue)
			{
				num += currentPosition.GetValueOrDefault().CalculateLength();
			}
			StringBuilder stringBuilder = new StringBuilder(num);
			StringWriter writer = null;
			char[] buffer = null;
			if (positions != null)
			{
				foreach (JsonPosition position in positions)
				{
					position.WriteTo(stringBuilder, ref writer, ref buffer);
				}
			}
			currentPosition?.WriteTo(stringBuilder, ref writer, ref buffer);
			return stringBuilder.ToString();
		}

		internal static string FormatMessage(IJsonLineInfo? lineInfo, string path, string message)
		{
			if (!message.EndsWith(Environment.NewLine, StringComparison.Ordinal))
			{
				message = message.Trim();
				if (!StringUtils.EndsWith(message, '.'))
				{
					message += ".";
				}
				message += " ";
			}
			message += "Path '{0}'".FormatWith(CultureInfo.InvariantCulture, path);
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				message += ", line {0}, position {1}".FormatWith(CultureInfo.InvariantCulture, lineInfo.LineNumber, lineInfo.LinePosition);
			}
			message += ".";
			return message;
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false)]
	public sealed class JsonPropertyAttribute : Attribute
	{
		internal NullValueHandling? _nullValueHandling;

		internal DefaultValueHandling? _defaultValueHandling;

		internal ReferenceLoopHandling? _referenceLoopHandling;

		internal ObjectCreationHandling? _objectCreationHandling;

		internal TypeNameHandling? _typeNameHandling;

		internal bool? _isReference;

		internal int? _order;

		internal Required? _required;

		internal bool? _itemIsReference;

		internal ReferenceLoopHandling? _itemReferenceLoopHandling;

		internal TypeNameHandling? _itemTypeNameHandling;

		public Type? ItemConverterType { get; set; }

		public object[]? ItemConverterParameters { get; set; }

		public Type? NamingStrategyType { get; set; }

		public object[]? NamingStrategyParameters { get; set; }

		public NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling.GetValueOrDefault();
			}
			set
			{
				_nullValueHandling = value;
			}
		}

		public DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling.GetValueOrDefault();
			}
			set
			{
				_defaultValueHandling = value;
			}
		}

		public ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_referenceLoopHandling = value;
			}
		}

		public ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling.GetValueOrDefault();
			}
			set
			{
				_objectCreationHandling = value;
			}
		}

		public TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling.GetValueOrDefault();
			}
			set
			{
				_typeNameHandling = value;
			}
		}

		public bool IsReference
		{
			get
			{
				return _isReference.GetValueOrDefault();
			}
			set
			{
				_isReference = value;
			}
		}

		public int Order
		{
			get
			{
				return _order.GetValueOrDefault();
			}
			set
			{
				_order = value;
			}
		}

		public Required Required
		{
			get
			{
				return _required.GetValueOrDefault();
			}
			set
			{
				_required = value;
			}
		}

		public string? PropertyName { get; set; }

		public ReferenceLoopHandling ItemReferenceLoopHandling
		{
			get
			{
				return _itemReferenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_itemReferenceLoopHandling = value;
			}
		}

		public TypeNameHandling ItemTypeNameHandling
		{
			get
			{
				return _itemTypeNameHandling.GetValueOrDefault();
			}
			set
			{
				_itemTypeNameHandling = value;
			}
		}

		public bool ItemIsReference
		{
			get
			{
				return _itemIsReference.GetValueOrDefault();
			}
			set
			{
				_itemIsReference = value;
			}
		}

		public JsonPropertyAttribute()
		{
		}

		public JsonPropertyAttribute(string propertyName)
		{
			PropertyName = propertyName;
		}
	}
	public abstract class JsonReader : IDisposable
	{
		protected internal enum State
		{
			Start,
			Complete,
			Property,
			ObjectStart,
			Object,
			ArrayStart,
			Array,
			Closed,
			PostValue,
			ConstructorStart,
			Constructor,
			Error,
			Finished
		}

		private JsonToken _tokenType;

		private object? _value;

		internal char _quoteChar;

		internal State _currentState;

		private JsonPosition _currentPosition;

		private CultureInfo? _culture;

		private DateTimeZoneHandling _dateTimeZoneHandling;

		private int? _maxDepth;

		private bool _hasExceededMaxDepth;

		internal DateParseHandling _dateParseHandling;

		internal FloatParseHandling _floatParseHandling;

		private string? _dateFormatString;

		private List<JsonPosition>? _stack;

		protected State CurrentState => _currentState;

		public bool CloseInput { get; set; }

		public bool SupportMultipleContent { get; set; }

		public virtual char QuoteChar
		{
			get
			{
				return _quoteChar;
			}
			protected internal set
			{
				_quoteChar = value;
			}
		}

		public DateTimeZoneHandling DateTimeZoneHandling
		{
			get
			{
				return _dateTimeZoneHandling;
			}
			set
			{
				if (value < DateTimeZoneHandling.Local || value > DateTimeZoneHandling.RoundtripKind)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_dateTimeZoneHandling = value;
			}
		}

		public DateParseHandling DateParseHandling
		{
			get
			{
				return _dateParseHandling;
			}
			set
			{
				if (value < DateParseHandling.None || value > DateParseHandling.DateTimeOffset)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_dateParseHandling = value;
			}
		}

		public FloatParseHandling FloatParseHandling
		{
			get
			{
				return _floatParseHandling;
			}
			set
			{
				if (value < FloatParseHandling.Double || value > FloatParseHandling.Decimal)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_floatParseHandling = value;
			}
		}

		public string? DateFormatString
		{
			get
			{
				return _dateFormatString;
			}
			set
			{
				_dateFormatString = value;
			}
		}

		public int? MaxDepth
		{
			get
			{
				return _maxDepth;
			}
			set
			{
				if (value <= 0)
				{
					throw new ArgumentException("Value must be positive.", "value");
				}
				_maxDepth = value;
			}
		}

		public virtual JsonToken TokenType => _tokenType;

		public virtual object? Value => _value;

		public virtual Type? ValueType => _value?.GetType();

		public virtual int Depth
		{
			get
			{
				int num = _stack?.Count ?? 0;
				if (JsonTokenUtils.IsStartToken(TokenType) || _currentPosition.Type == JsonContainerType.None)
				{
					return num;
				}
				return num + 1;
			}
		}

		public virtual string Path
		{
			get
			{
				if (_currentPosition.Type == JsonContainerType.None)
				{
					return string.Empty;
				}
				JsonPosition? currentPosition = ((_currentState != State.ArrayStart && _currentState != State.ConstructorStart && _currentState != State.ObjectStart) ? new JsonPosition?(_currentPosition) : null);
				return JsonPosition.BuildPath(_stack, currentPosition);
			}
		}

		public CultureInfo Culture
		{
			get
			{
				return _culture ?? CultureInfo.InvariantCulture;
			}
			set
			{
				_culture = value;
			}
		}

		public virtual Task<bool> ReadAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<bool>() ?? Read().ToAsync();
		}

		public async Task SkipAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			if (TokenType == JsonToken.PropertyName)
			{
				await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			}
			if (JsonTokenUtils.IsStartToken(TokenType))
			{
				int depth = Depth;
				while (await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false) && depth < Depth)
				{
				}
			}
		}

		internal async Task ReaderReadAndAssertAsync(CancellationToken cancellationToken)
		{
			if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
			{
				throw CreateUnexpectedEndException();
			}
		}

		public virtual Task<bool?> ReadAsBooleanAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<bool?>() ?? Task.FromResult(ReadAsBoolean());
		}

		public virtual Task<byte[]?> ReadAsBytesAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<byte[]>() ?? Task.FromResult(ReadAsBytes());
		}

		internal async Task<byte[]?> ReadArrayIntoByteArrayAsync(CancellationToken cancellationToken)
		{
			List<byte> buffer = new List<byte>();
			do
			{
				if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
				{
					SetToken(JsonToken.None);
				}
			}
			while (!ReadArrayElementIntoByteArrayReportDone(buffer));
			byte[] array = buffer.ToArray();
			SetToken(JsonToken.Bytes, array, updateIndex: false);
			return array;
		}

		public virtual Task<DateTime?> ReadAsDateTimeAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<DateTime?>() ?? Task.FromResult(ReadAsDateTime());
		}

		public virtual Task<DateTimeOffset?> ReadAsDateTimeOffsetAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<DateTimeOffset?>() ?? Task.FromResult(ReadAsDateTimeOffset());
		}

		public virtual Task<decimal?> ReadAsDecimalAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<decimal?>() ?? Task.FromResult(ReadAsDecimal());
		}

		public virtual Task<double?> ReadAsDoubleAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return Task.FromResult(ReadAsDouble());
		}

		public virtual Task<int?> ReadAsInt32Async(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<int?>() ?? Task.FromResult(ReadAsInt32());
		}

		public virtual Task<string?> ReadAsStringAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<string>() ?? Task.FromResult(ReadAsString());
		}

		internal async Task<bool> ReadAndMoveToContentAsync(CancellationToken cancellationToken)
		{
			bool flag = await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			if (flag)
			{
				flag = await MoveToContentAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			}
			return flag;
		}

		internal Task<bool> MoveToContentAsync(CancellationToken cancellationToken)
		{
			JsonToken tokenType = TokenType;
			if (tokenType == JsonToken.None || tokenType == JsonToken.Comment)
			{
				return MoveToContentFromNonContentAsync(cancellationToken);
			}
			return AsyncUtils.True;
		}

		private async Task<bool> MoveToContentFromNonContentAsync(CancellationToken cancellationToken)
		{
			JsonToken tokenType;
			do
			{
				if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
				{
					return false;
				}
				tokenType = TokenType;
			}
			while (tokenType == JsonToken.None || tokenType == JsonToken.Comment);
			return true;
		}

		internal JsonPosition GetPosition(int depth)
		{
			if (_stack != null && depth < _stack.Count)
			{
				return _stack[depth];
			}
			return _currentPosition;
		}

		protected JsonReader()
		{
			_currentState = State.Start;
			_dateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;
			_dateParseHandling = DateParseHandling.DateTime;
			_floatParseHandling = FloatParseHandling.Double;
			_maxDepth = 64;
			CloseInput = true;
		}

		private void Push(JsonContainerType value)
		{
			UpdateScopeWithFinishedValue();
			if (_currentPosition.Type == JsonContainerType.None)
			{
				_currentPosition = new JsonPosition(value);
				return;
			}
			if (_stack == null)
			{
				_stack = new List<JsonPosition>();
			}
			_stack.Add(_currentPosition);
			_currentPosition = new JsonPosition(value);
			if (!_maxDepth.HasValue || !(Depth + 1 > _maxDepth) || _hasExceededMaxDepth)
			{
				return;
			}
			_hasExceededMaxDepth = true;
			throw JsonReaderException.Create(this, "The reader's MaxDepth of {0} has been exceeded.".FormatWith(CultureInfo.InvariantCulture, _maxDepth));
		}

		private JsonContainerType Pop()
		{
			JsonPosition currentPosition;
			if (_stack != null && _stack.Count > 0)
			{
				currentPosition = _currentPosition;
				_currentPosition = _stack[_stack.Count - 1];
				_stack.RemoveAt(_stack.Count - 1);
			}
			else
			{
				currentPosition = _currentPosition;
				_currentPosition = default(JsonPosition);
			}
			if (_maxDepth.HasValue && Depth <= _maxDepth)
			{
				_hasExceededMaxDepth = false;
			}
			return currentPosition.Type;
		}

		private JsonContainerType Peek()
		{
			return _currentPosition.Type;
		}

		public abstract bool Read();

		public virtual int? ReadAsInt32()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is int)
				{
					return (int)value;
				}
				int num;
				if (value is BigInteger bigInteger)
				{
					num = (int)bigInteger;
				}
				else
				{
					try
					{
						num = Convert.ToInt32(value, CultureInfo.InvariantCulture);
					}
					catch (Exception ex)
					{
						throw JsonReaderException.Create(this, "Could not convert to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex);
					}
				}
				SetToken(JsonToken.Integer, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
			{
				string s = (string)Value;
				return ReadInt32String(s);
			}
			default:
				throw JsonReaderException.Create(this, "Error reading integer. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal int? ReadInt32String(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (int.TryParse(s, NumberStyles.Integer, Culture, out var result))
			{
				SetToken(JsonToken.Integer, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual string? ReadAsString()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.String:
				return (string)Value;
			default:
				if (JsonTokenUtils.IsPrimitiveToken(contentToken))
				{
					object value = Value;
					if (value != null)
					{
						string text = ((!(value is IFormattable formattable)) ? ((value is Uri uri) ? uri.OriginalString : value.ToString()) : formattable.ToString(null, Culture));
						SetToken(JsonToken.String, text, updateIndex: false);
						return text;
					}
				}
				throw JsonReaderException.Create(this, "Error reading string. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		public virtual byte[]? ReadAsBytes()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.StartObject:
			{
				ReadIntoWrappedTypeObject();
				byte[] array2 = ReadAsBytes();
				ReaderReadAndAssert();
				if (TokenType != JsonToken.EndObject)
				{
					throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
				}
				SetToken(JsonToken.Bytes, array2, updateIndex: false);
				return array2;
			}
			case JsonToken.String:
			{
				string text = (string)Value;
				Guid g;
				byte[] array3 = ((text.Length == 0) ? CollectionUtils.ArrayEmpty<byte>() : ((!ConvertUtils.TryConvertGuid(text, out g)) ? Convert.FromBase64String(text) : g.ToByteArray()));
				SetToken(JsonToken.Bytes, array3, updateIndex: false);
				return array3;
			}
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Bytes:
				if (Value is Guid guid)
				{
					byte[] array = guid.ToByteArray();
					SetToken(JsonToken.Bytes, array, updateIndex: false);
					return array;
				}
				return (byte[])Value;
			case JsonToken.StartArray:
				return ReadArrayIntoByteArray();
			default:
				throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal byte[] ReadArrayIntoByteArray()
		{
			List<byte> list = new List<byte>();
			do
			{
				if (!Read())
				{
					SetToken(JsonToken.None);
				}
			}
			while (!ReadArrayElementIntoByteArrayReportDone(list));
			byte[] array = list.ToArray();
			SetToken(JsonToken.Bytes, array, updateIndex: false);
			return array;
		}

		private bool ReadArrayElementIntoByteArrayReportDone(List<byte> buffer)
		{
			switch (TokenType)
			{
			case JsonToken.None:
				throw JsonReaderException.Create(this, "Unexpected end when reading bytes.");
			case JsonToken.Integer:
				buffer.Add(Convert.ToByte(Value, CultureInfo.InvariantCulture));
				return false;
			case JsonToken.EndArray:
				return true;
			case JsonToken.Comment:
				return false;
			default:
				throw JsonReaderException.Create(this, "Unexpected token when reading bytes: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
			}
		}

		public virtual double? ReadAsDouble()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is double)
				{
					return (double)value;
				}
				double num = ((!(value is BigInteger bigInteger)) ? Convert.ToDouble(value, CultureInfo.InvariantCulture) : ((double)bigInteger));
				SetToken(JsonToken.Float, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
				return ReadDoubleString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading double. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal double? ReadDoubleString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (double.TryParse(s, NumberStyles.Float | NumberStyles.AllowThousands, Culture, out var result))
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to double: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual bool? ReadAsBoolean()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				bool flag = ((!(Value is BigInteger bigInteger)) ? Convert.ToBoolean(Value, CultureInfo.InvariantCulture) : (bigInteger != 0L));
				SetToken(JsonToken.Boolean, flag, updateIndex: false);
				return flag;
			}
			case JsonToken.String:
				return ReadBooleanString((string)Value);
			case JsonToken.Boolean:
				return (bool)Value;
			default:
				throw JsonReaderException.Create(this, "Error reading boolean. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal bool? ReadBooleanString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (bool.TryParse(s, out var result))
			{
				SetToken(JsonToken.Boolean, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to boolean: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual decimal? ReadAsDecimal()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is decimal)
				{
					return (decimal)value;
				}
				decimal num;
				if (value is BigInteger bigInteger)
				{
					num = (decimal)bigInteger;
				}
				else
				{
					try
					{
						num = Convert.ToDecimal(value, CultureInfo.InvariantCulture);
					}
					catch (Exception ex)
					{
						throw JsonReaderException.Create(this, "Could not convert to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex);
					}
				}
				SetToken(JsonToken.Float, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
				return ReadDecimalString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading decimal. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal decimal? ReadDecimalString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (decimal.TryParse(s, NumberStyles.Number, Culture, out var result))
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			if (ConvertUtils.DecimalTryParse(s.ToCharArray(), 0, s.Length, out result) == ParseResult.Success)
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual DateTime? ReadAsDateTime()
		{
			switch (GetContentToken())
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Date:
				if (Value is DateTimeOffset dateTimeOffset)
				{
					SetToken(JsonToken.Date, dateTimeOffset.DateTime, updateIndex: false);
				}
				return (DateTime)Value;
			case JsonToken.String:
				return ReadDateTimeString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
			}
		}

		internal DateTime? ReadDateTimeString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (DateTimeUtils.TryParseDateTime(s, DateTimeZoneHandling, _dateFormatString, Culture, out var dt))
			{
				dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling);
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			if (DateTime.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt))
			{
				dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling);
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			throw JsonReaderException.Create(this, "Could not convert string to DateTime: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual DateTimeOffset? ReadAsDateTimeOffset()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Date:
				if (Value is DateTime dateTime)
				{
					SetToken(JsonToken.Date, new DateTimeOffset(dateTime), updateIndex: false);
				}
				return (DateTimeOffset)Value;
			case JsonToken.String:
			{
				string s = (string)Value;
				return ReadDateTimeOffsetString(s);
			}
			default:
				throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal DateTimeOffset? ReadDateTimeOffsetString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (DateTimeUtils.TryParseDateTimeOffset(s, _dateFormatString, Culture, out var dt))
			{
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			if (DateTimeOffset.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt))
			{
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to DateTimeOffset: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		internal void ReaderReadAndAssert()
		{
			if (!Read())
			{
				throw CreateUnexpectedEndException();
			}
		}

		internal JsonReaderException CreateUnexpectedEndException()
		{
			return JsonReaderException.Create(this, "Unexpected end when reading JSON.");
		}

		internal void ReadIntoWrappedTypeObject()
		{
			ReaderReadAndAssert();
			if (Value != null && Value.ToString() == "$type")
			{
				ReaderReadAndAssert();
				if (Value != null && Value.ToString().StartsWith("System.Byte[]", StringComparison.Ordinal))
				{
					ReaderReadAndAssert();
					if (Value.ToString() == "$value")
					{
						return;
					}
				}
			}
			throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, JsonToken.StartObject));
		}

		public void Skip()
		{
			if (TokenType == JsonToken.PropertyName)
			{
				Read();
			}
			if (JsonTokenUtils.IsStartToken(TokenType))
			{
				int depth = Depth;
				while (Read() && depth < Depth)
				{
				}
			}
		}

		protected void SetToken(JsonToken newToken)
		{
			SetToken(newToken, null, updateIndex: true);
		}

		protected void SetToken(JsonToken newToken, object? value)
		{
			SetToken(newToken, value, updateIndex: true);
		}

		protected void SetToken(JsonToken newToken, object? value, bool updateIndex)
		{
			_tokenType = newToken;
			_value = value;
			switch (newToken)
			{
			case JsonToken.StartObject:
				_currentState = State.ObjectStart;
				Push(JsonContainerType.Object);
				break;
			case JsonToken.StartArray:
				_currentState = State.ArrayStart;
				Push(JsonContainerType.Array);
				break;
			case JsonToken.StartConstructor:
				_currentState = State.ConstructorStart;
				Push(JsonContainerType.Constructor);
				break;
			case JsonToken.EndObject:
				ValidateEnd(JsonToken.EndObject);
				break;
			case JsonToken.EndArray:
				ValidateEnd(JsonToken.EndArray);
				break;
			case JsonToken.EndConstructor:
				ValidateEnd(JsonToken.EndConstructor);
				break;
			case JsonToken.PropertyName:
				_currentState = State.Property;
				_currentPosition.PropertyName = (string)value;
				break;
			case JsonToken.Raw:
			case JsonToken.Integer:
			case JsonToken.Float:
			case JsonToken.String:
			case JsonToken.Boolean:
			case JsonToken.Null:
			case JsonToken.Undefined:
			case JsonToken.Date:
			case JsonToken.Bytes:
				SetPostValueState(updateIndex);
				break;
			case JsonToken.Comment:
				break;
			}
		}

		internal void SetPostValueState(bool updateIndex)
		{
			if (Peek() != 0 || SupportMultipleContent)
			{
				_currentState = State.PostValue;
			}
			else
			{
				SetFinished();
			}
			if (updateIndex)
			{
				UpdateScopeWithFinishedValue();
			}
		}

		private void UpdateScopeWithFinishedValue()
		{
			if (_currentPosition.HasIndex)
			{
				_currentPosition.Position++;
			}
		}

		private void ValidateEnd(JsonToken endToken)
		{
			JsonContainerType jsonContainerType = Pop();
			if (GetTypeForCloseToken(endToken) != jsonContainerType)
			{
				throw JsonReaderException.Create(this, "JsonToken {0} is not valid for closing JsonType {1}.".FormatWith(CultureInfo.InvariantCulture, endToken, jsonContainerType));
			}
			if (Peek() != 0 || SupportMultipleContent)
			{
				_currentState = State.PostValue;
			}
			else
			{
				SetFinished();
			}
		}

		protected void SetStateBasedOnCurrent()
		{
			JsonContainerType jsonContainerType = Peek();
			switch (jsonContainerType)
			{
			case JsonContainerType.Object:
				_currentState = State.Object;
				break;
			case JsonContainerType.Array:
				_currentState = State.Array;
				break;
			case JsonContainerType.Constructor:
				_currentState = State.Constructor;
				break;
			case JsonContainerType.None:
				SetFinished();
				break;
			default:
				throw JsonReaderException.Create(this, "While setting the reader state back to current object an unexpected JsonType was encountered: {0}".FormatWith(CultureInfo.InvariantCulture, jsonContainerType));
			}
		}

		private void SetFinished()
		{
			_currentState = ((!SupportMultipleContent) ? State.Finished : State.Start);
		}

		private JsonContainerType GetTypeForCloseToken(JsonToken token)
		{
			return token switch
			{
				JsonToken.EndObject => JsonContainerType.Object, 
				JsonToken.EndArray => JsonContainerType.Array, 
				JsonToken.EndConstructor => JsonContainerType.Constructor, 
				_ => throw JsonReaderException.Create(this, "Not a valid close JsonToken: {0}".FormatWith(CultureInfo.InvariantCulture, token)), 
			};
		}

		void IDisposable.Dispose()
		{
			Dispose(disposing: true);
			GC.SuppressFinalize(this);
		}

		protected virtual void Dispose(bool disposing)
		{
			if (_currentState != State.Closed && disposing)
			{
				Close();
			}
		}

		public virtual void Close()
		{
			_currentState = State.Closed;
			_tokenType = JsonToken.None;
			_value = null;
		}

		internal void ReadAndAssert()
		{
			if (!Read())
			{
				throw JsonSerializationException.Create(this, "Unexpected end when reading JSON.");
			}
		}

		internal void ReadForTypeAndAssert(JsonContract? contract, bool hasConverter)
		{
			if (!ReadForType(contract, hasConverter))
			{
				throw JsonSerializationException.Create(this, "Unexpected end when reading JSON.");
			}
		}

		internal bool ReadForType(JsonContract? contract, bool hasConverter)
		{
			if (hasConverter)
			{
				return Read();
			}
			switch (contract?.InternalReadType ?? ReadType.Read)
			{
			case ReadType.Read:
				return ReadAndMoveToContent();
			case ReadType.ReadAsInt32:
				ReadAsInt32();
				break;
			case ReadType.ReadAsInt64:
			{
				bool result = ReadAndMoveToContent();
				if (TokenType == JsonToken.Undefined)
				{
					throw JsonReaderException.Create(this, "An undefined token is not a valid {0}.".FormatWith(CultureInfo.InvariantCulture, contract?.UnderlyingType ?? typeof(long)));
				}
				return result;
			}
			case ReadType.ReadAsDecimal:
				ReadAsDecimal();
				break;
			case ReadType.ReadAsDouble:
				ReadAsDouble();
				break;
			case ReadType.ReadAsBytes:
				ReadAsBytes();
				break;
			case ReadType.ReadAsBoolean:
				ReadAsBoolean();
				break;
			case ReadType.ReadAsString:
				ReadAsString();
				break;
			case ReadType.ReadAsDateTime:
				ReadAsDateTime();
				break;
			case ReadType.ReadAsDateTimeOffset:
				ReadAsDateTimeOffset();
				break;
			default:
				throw new ArgumentOutOfRangeException();
			}
			return TokenType != JsonToken.None;
		}

		internal bool ReadAndMoveToContent()
		{
			if (Read())
			{
				return MoveToContent();
			}
			return false;
		}

		internal bool MoveToContent()
		{
			JsonToken tokenType = TokenType;
			while (tokenType == JsonToken.None || tokenType == JsonToken.Comment)
			{
				if (!Read())
				{
					return false;
				}
				tokenType = TokenType;
			}
			return true;
		}

		private JsonToken GetContentToken()
		{
			JsonToken tokenType;
			do
			{
				if (!Read())
				{
					SetToken(JsonToken.None);
					return JsonToken.None;
				}
				tokenType = TokenType;
			}
			while (tokenType == JsonToken.Comment);
			return tokenType;
		}
	}
	[Serializable]
	public class JsonReaderException : JsonException
	{
		public int LineNumber { get; }

		public int LinePosition { get; }

		public string? Path { get; }

		public JsonReaderException()
		{
		}

		public JsonReaderException(string message)
			: base(message)
		{
		}

		public JsonReaderException(string message, Exception innerException)
			: base(message, innerException)
		{
		}

		public JsonReaderException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		public JsonReaderException(string message, string path, int lineNumber, int linePosition, Exception? innerException)
			: base(message, innerException)
		{
			Path = path;
			LineNumber = lineNumber;
			LinePosition = linePosition;
		}

		internal static JsonReaderException Create(JsonReader reader, string message)
		{
			return Create(reader, message, null);
		}

		internal static JsonReaderException Create(JsonReader reader, string message, Exception? ex)
		{
			return Create(reader as IJsonLineInfo, reader.Path, message, ex);
		}

		internal static JsonReaderException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			int lineNumber;
			int linePosition;
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				lineNumber = lineInfo.LineNumber;
				linePosition = lineInfo.LinePosition;
			}
			else
			{
				lineNumber = 0;
				linePosition = 0;
			}
			return new JsonReaderException(message, path, lineNumber, linePosition, ex);
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public sealed class JsonRequiredAttribute : Attribute
	{
	}
	[Serializable]
	public class JsonSerializationException : JsonException
	{
		public int LineNumber { get; }

		public int LinePosition { get; }

		public string? Path { get; }

		public JsonSerializationException()
		{
		}

		public JsonSerializationException(string message)
			: base(message)
		{
		}

		public JsonSerializationException(string message, Exception innerException)
			: base(message, innerException)
		{
		}

		public JsonSerializationException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		public JsonSerializationException(string message, string path, int lineNumber, int linePosition, Exception? innerException)
			: base(message, innerException)
		{
			Path = path;
			LineNumber = lineNumber;
			LinePosition = linePosition;
		}

		internal static JsonSerializationException Create(JsonReader reader, string message)
		{
			return Create(reader, message, null);
		}

		internal static JsonSerializationException Create(JsonReader reader, string message, Exception? ex)
		{
			return Create(reader as IJsonLineInfo, reader.Path, message, ex);
		}

		internal static JsonSerializationException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			int lineNumber;
			int linePosition;
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				lineNumber = lineInfo.LineNumber;
				linePosition = lineInfo.LinePosition;
			}
			else
			{
				lineNumber = 0;
				linePosition = 0;
			}
			return new JsonSerializationException(message, path, lineNumber, linePosition, ex);
		}
	}
	public class JsonSerializer
	{
		internal TypeNameHandling _typeNameHandling;

		internal TypeNameAssemblyFormatHandling _typeNameAssemblyFormatHandling;

		internal PreserveReferencesHandling _preserveReferencesHandling;

		internal ReferenceLoopHandling _referenceLoopHandling;

		internal MissingMemberHandling _missingMemberHandling;

		internal ObjectCreationHandling _objectCreationHandling;

		internal NullValueHandling _nullValueHandling;

		internal DefaultValueHandling _defaultValueHandling;

		internal ConstructorHandling _constructorHandling;

		internal MetadataPropertyHandling _metadataPropertyHandling;

		internal JsonConverterCollection? _converters;

		internal IContractResolver _contractResolver;

		internal ITraceWriter? _traceWriter;

		internal IEqualityComparer? _equalityComparer;

		internal ISerializationBinder _serializationBinder;

		internal StreamingContext _context;

		private IReferenceResolver? _referenceResolver;

		private Formatting? _formatting;

		private DateFormatHandling? _dateFormatHandling;

		private DateTimeZoneHandling? _dateTimeZoneHandling;

		private DateParseHandling? _dateParseHandling;

		private FloatFormatHandling? _floatFormatHandling;

		private FloatParseHandling? _floatParseHandling;

		private StringEscapeHandling? _stringEscapeHandling;

		private CultureInfo _culture;

		private int? _maxDepth;

		private bool _maxDepthSet;

		private bool? _checkAdditionalContent;

		private string? _dateFormatString;

		private bool _dateFormatStringSet;

		public virtual IReferenceResolver? ReferenceResolver
		{
			get
			{
				return GetReferenceResolver();
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Reference resolver cannot be null.");
				}
				_referenceResolver = value;
			}
		}

		[Obsolete("Binder is obsolete. Use SerializationBinder instead.")]
		public virtual SerializationBinder Binder
		{
			get
			{
				if (_serializationBinder is SerializationBinder result)
				{
					return result;
				}
				if (_serializationBinder is SerializationBinderAdapter serializationBinderAdapter)
				{
					return serializationBinderAdapter.SerializationBinder;
				}
				throw new InvalidOperationException("Cannot get SerializationBinder because an ISerializationBinder was previously set.");
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Serialization binder cannot be null.");
				}
				_serializationBinder = (value as ISerializationBinder) ?? new SerializationBinderAdapter(value);
			}
		}

		public virtual ISerializationBinder SerializationBinder
		{
			get
			{
				return _serializationBinder;
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Serialization binder cannot be null.");
				}
				_serializationBinder = value;
			}
		}

		public virtual ITraceWriter? TraceWriter
		{
			get
			{
				return _traceWriter;
			}
			set
			{
				_traceWriter = value;
			}
		}

		public virtual IEqualityComparer? EqualityComparer
		{
			get
			{
				return _equalityComparer;
			}
			set
			{
				_equalityComparer = value;
			}
		}

		public virtual TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling;
			}
			set
			{
				if (value < TypeNameHandling.None || value > TypeNameHandling.Auto)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameHandling = value;
			}
		}

		[Obsolete("TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.")]
		public virtual FormatterAssemblyStyle TypeNameAssemblyFormat
		{
			get
			{
				return (FormatterAssemblyStyle)_typeNameAssemblyFormatHandling;
			}
			set
			{
				if (value < FormatterAssemblyStyle.Simple || value > FormatterAssemblyStyle.Full)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameAssemblyFormatHandling = (TypeNameAssemblyFormatHandling)value;
			}
		}

		public virtual TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling
		{
			get
			{
				return _typeNameAssemblyFormatHandling;
			}
			set
			{
				if (value < TypeNameAssemblyFormatHandling.Simple || value > TypeNameAssemblyFormatHandling.Full)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameAssemblyFormatHandling = value;
			}
		}

		public virtual PreserveReferencesHandling PreserveReferencesHandling
		{
			get
			{
				return _preserveReferencesHandling;
			}
			set
			{
				if (value < PreserveReferencesHandling.None || value > PreserveReferencesHandling.All)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_preserveReferencesHandling = value;
			}
		}

		public virtual ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling;
			}
			set
			{
				if (value < ReferenceLoopHandling.Error || value > ReferenceLoopHandling.Serialize)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_referenceLoopHandling = value;
			}
		}

		public virtual MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling;
			}
			set
			{
				if (value < MissingMemberHandling.Ignore || value > MissingMemberHandling.Error)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_missingMemberHandling = value;
			}
		}

		public virtual NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling;
			}
			set
			{
				if (value < NullValueHandling.Include || value > NullValueHandling.Ignore)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_nullValueHandling = value;
			}
		}

		public virtual DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling;
			}
			set
			{
				if (value < DefaultValueHandling.Include || value > DefaultValueHandling.IgnoreAndPopulate)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_defaultValueHandling = value;
			}
		}

		public virtual ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling;
			}
			set
			{
				if (value < ObjectCreationHandling.Auto || value > ObjectCreationHandling.Replace)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_objectCreationHandling = value;
			}
		}

		public virtual ConstructorHandling ConstructorHandling
		{
			get
			{
				return _constructorHandling;
			}
			set
			{
				if (value < ConstructorHandling.Default || value > ConstructorHandling.AllowNonPublicDefaultConstructor)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_constructorHandling = value;
			}
		}

		public virtual MetadataPropertyHandling MetadataPropertyHandling
		{
			get
			{
				return _metadataPropertyHandling;
			}
			set
			{
				if (value < MetadataPropertyHandling.Default || value > MetadataPropertyHandling.Ignore)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_metadataPropertyHandling = value;
			}
		}

		public virtual JsonConverterCollection Converters
		{
			get
			{
				if (_converters == null)
				{
					_converters = new JsonConverterCollection();
				}
				return _converters;
			}
		}

		public virtual IContractResolver ContractResolver
		{
			get
			{
				return _contractResolver;
			}
			set
			{
				_contractResolver = value ?? DefaultContractResolver.Instance;
			}
		}

		public virtual StreamingContext Context
		{
			get
			{
				return _context;
			}
			set
			{
				_context = value;
			}
		}

		public virtual Formatting Formatting
		{
			get
			{
				return _formatting.GetValueOrDefault();
			}
			set
			{
				_formatting = value;
			}
		}

		public virtual DateFormatHandling DateFormatHandling
		{
			get
			{
				return _dateFormatHandling.GetValueOrDefault();
			}
			set
			{
				_dateFormatHandling = value;
			}
		}

		public virtual DateTimeZoneHandling DateTimeZoneHandling
		{
			get
			{
				return _dateTimeZoneHandling ?? DateTimeZoneHandling.RoundtripKind;
			}
			set
			{
				_dateTimeZoneHandling = value;
			}
		}

		public virtual DateParseHandling DateParseHandling
		{
			get
			{
				return _dateParseHandling ?? DateParseHandling.DateTime;
			}
			set
			{
				_dateParseHandling = value;
			}
		}

		public virtual FloatParseHandling FloatParseHandling
		{
			get
			{
				return _floatParseHandling.GetValueOrDefault();
			}
			set
			{
				_floatParseHandling = value;
			}
		}

		public virtual FloatFormatHandling FloatFormatHandling
		{
			get
			{
				return _floatFormatHandling.GetValueOrDefault();
			}
			set
			{
				_floatFormatHandling = value;
			}
		}

		public virtual StringEscapeHandling StringEscapeHandling
		{
			get
			{
				return _stringEscapeHandling.GetValueOrDefault();
			}
			set
			{
				_stringEscapeHandling = value;
			}
		}

		public virtual string DateFormatString
		{
			get
			{
				return _dateFormatString ?? "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK";
			}
			set
			{
				_dateFormatString = value;
				_dateFormatStringSet = true;
			}
		}

		public virtual CultureInfo Culture
		{
			get
			{
				return _culture ?? JsonSerializerSettings.DefaultCulture;
			}
			set
			{
				_culture = value;
			}
		}

		public virtual int? MaxDepth
		{
			get
			{
				return _maxDepth;
			}
			set
			{
				if (value <= 0)
				{
					throw new ArgumentException("Value must be positive.", "value");
				}
				_maxDepth = value;
				_maxDepthSet = true;
			}
		}

		public virtual bool CheckAdditionalContent
		{
			get
			{
				return _checkAdditionalContent.GetValueOrDefault();
			}
			set
			{
				_checkAdditionalContent = value;
			}
		}

		public virtual event EventHandler<Newtonsoft.Json.Serialization.ErrorEventArgs>? Error;

		internal bool IsCheckAdditionalContentSet()
		{
			return _checkAdditionalContent.HasValue;
		}

		public JsonSerializer()
		{
			_referenceLoopHandling = ReferenceLoopHandling.Error;
			_missingMemberHandling = MissingMemberHandling.Ignore;
			_nullValueHandling = NullValueHandling.Include;
			_defaultValueHandling = DefaultValueHandling.Include;
			_objectCreationHandling = ObjectCreationHandling.Auto;
			_preserveReferencesHandling = PreserveReferencesHandling.None;
			_constructorHandling = ConstructorHandling.Default;
			_typeNameHandling = TypeNameHandling.None;
			_metadataPropertyHandling = MetadataPropertyHandling.Default;
			_context = JsonSerializerSettings.DefaultContext;
			_serializationBinder = DefaultSerializationBinder.Instance;
			_culture = JsonSerializerSettings.DefaultCulture;
			_contractResolver = DefaultContractResolver.Instance;
		}

		public static JsonSerializer Create()
		{
			return new JsonSerializer();
		}

		public static JsonSerializer Create(JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = Create();
			if (settings != null)
			{
				ApplySerializerSettings(jsonSerializer, settings);
			}
			return jsonSerializer;
		}

		public static JsonSerializer CreateDefault()
		{
			return Create(JsonConvert.DefaultSettings?.Invoke());
		}

		public static JsonSerializer CreateDefault(JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = CreateDefault();
			if (settings != null)
			{
				ApplySerializerSettings(jsonSerializer, settings);
			}
			return jsonSerializer;
		}

		private static void ApplySerializerSettings(JsonSerializer serializer, JsonSerializerSettings settings)
		{
			if (!CollectionUtils.IsNullOrEmpty(settings.Converters))
			{
				for (int i = 0; i < settings.Converters.Count; i++)
				{
					serializer.Converters.Insert(i, settings.Converters[i]);
				}
			}
			if (settings._typeNameHandling.HasValue)
			{
				serializer.TypeNameHandling = settings.TypeNameHandling;
			}
			if (settings._metadataPropertyHandling.HasValue)
			{
				serializer.MetadataPropertyHandling = settings.MetadataPropertyHandling;
			}
			if (settings._typeNameAssemblyFormatHandling.HasValue)
			{
				serializer.TypeNameAssemblyFormatHandling = settings.TypeNameAssemblyFormatHandling;
			}
			if (settings._preserveReferencesHandling.HasValue)
			{
				serializer.PreserveReferencesHandling = settings.PreserveReferencesHandling;
			}
			if (settings._referenceLoopHandling.HasValue)
			{
				serializer.ReferenceLoopHandling = settings.ReferenceLoopHandling;
			}
			if (settings._missingMemberHandling.HasValue)
			{
				serializer.MissingMemberHandling = settings.MissingMemberHandling;
			}
			if (settings._objectCreationHandling.HasValue)
			{
				serializer.ObjectCreationHandling = settings.ObjectCreationHandling;
			}
			if (settings._nullValueHandling.HasValue)
			{
				serializer.NullValueHandling = settings.NullValueHandling;
			}
			if (settings._defaultValueHandling.HasValue)
			{
				serializer.DefaultValueHandling = settings.DefaultValueHandling;
			}
			if (settings._constructorHandling.HasValue)
			{
				serializer.ConstructorHandling = settings.ConstructorHandling;
			}
			if (settings._context.HasValue)
			{
				serializer.Context = settings.Context;
			}
			if (settings._checkAdditionalContent.HasValue)
			{
				serializer._checkAdditionalContent = settings._checkAdditionalContent;
			}
			if (settings.Error != null)
			{
				serializer.Error += settings.Error;
			}
			if (settings.ContractResolver != null)
			{
				serializer.ContractResolver = settings.ContractResolver;
			}
			if (settings.ReferenceResolverProvider != null)
			{
				serializer.ReferenceResolver = settings.ReferenceResolverProvider();
			}
			if (settings.TraceWriter != null)
			{
				serializer.TraceWriter = settings.TraceWriter;
			}
			if (settings.EqualityComparer != null)
			{
				serializer.EqualityComparer = settings.EqualityComparer;
			}
			if (settings.SerializationBinder != null)
			{
				serializer.SerializationBinder = settings.SerializationBinder;
			}
			if (settings._formatting.HasValue)
			{
				serializer._formatting = settings._formatting;
			}
			if (settings._dateFormatHandling.HasValue)
			{
				serializer._dateFormatHandling = settings._dateFormatHandling;
			}
			if (settings._dateTimeZoneHandling.HasValue)
			{
				serializer._dateTimeZoneHandling = settings._dateTimeZoneHandling;
			}
			if (settings._dateParseHandling.HasValue)
			{
				serializer._dateParseHandling = settings._dateParseHandling;
			}
			if (settings._dateFormatStringSet)
			{
				serializer._dateFormatString = settings._dateFormatString;
				serializer._dateFormatStringSet = settings._dateFormatStringSet;
			}
			if (settings._floatFormatHandling.HasValue)
			{
				serializer._floatFormatHandling = settings._floatFormatHandling;
			}
			if (settings._floatParseHandling.HasValue)
			{
				serializer._floatParseHandling = settings._floatParseHandling;
			}
			if (settings._stringEscapeHandling.HasValue)
			{
				serializer._stringEscapeHandling = settings._stringEscapeHandling;
			}
			if (settings._culture != null)
			{
				serializer._culture = settings._culture;
			}
			if (settings._maxDepthSet)
			{
				serializer._maxDepth = settings._maxDepth;
				serializer._maxDepthSet = settings._maxDepthSet;
			}
		}

		[DebuggerStepThrough]
		public void Populate(TextReader reader, object target)
		{
			Populate(new JsonTextReader(reader), target);
		}

		[DebuggerStepThrough]
		public void Populate(JsonReader reader, object target)
		{
			PopulateInternal(reader, target);
		}

		internal virtual void PopulateInternal(JsonReader reader, object target)
		{
			ValidationUtils.ArgumentNotNull(reader, "reader");
			ValidationUtils.ArgumentNotNull(target, "target");
			SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString);
			TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null);
			new JsonSerializerInternalReader(this).Populate(traceJsonReader ?? reader, target);
			if (traceJsonReader != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null);
			}
			ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString);
		}

		[DebuggerStepThrough]
		public object? Deserialize(JsonReader reader)
		{
			return Deserialize(reader, null);
		}

		[DebuggerStepThrough]
		public object? Deserialize(TextReader reader, Type objectType)
		{
			return Deserialize(new JsonTextReader(reader), objectType);
		}

		[DebuggerStepThrough]
		public T? Deserialize<T>(JsonReader reader)
		{
			return (T)Deserialize(reader, typeof(T));
		}

		[DebuggerStepThrough]
		public object? Deserialize(JsonReader reader, Type? objectType)
		{
			return DeserializeInternal(reader, objectType);
		}

		internal virtual object? DeserializeInternal(JsonReader reader, Type? objectType)
		{
			ValidationUtils.ArgumentNotNull(reader, "reader");
			SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString);
			TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null);
			object? result = new JsonSerializerInternalReader(this).Deserialize(traceJsonReader ?? reader, objectType, CheckAdditionalContent);
			if (traceJsonReader != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null);
			}
			ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString);
			return result;
		}

		internal void SetupReader(JsonReader reader, out CultureInfo? previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string? previousDateFormatString)
		{
			if (_culture != null && !_culture.Equals(reader.Culture))
			{
				previousCulture = reader.Culture;
				reader.Culture = _culture;
			}
			else
			{
				previousCulture = null;
			}
			if (_dateTimeZoneHandling.HasValue && reader.DateTimeZoneHandling != _dateTimeZoneHandling)
			{
				previousDateTimeZoneHandling = reader.DateTimeZoneHandling;
				reader.DateTimeZoneHandling = _dateTimeZoneHandling.GetValueOrDefault();
			}
			else
			{
				previousDateTimeZoneHandling = null;
			}
			if (_dateParseHandling.HasValue && reader.DateParseHandling != _dateParseHandling)
			{
				previousDateParseHandling = reader.DateParseHandling;
				reader.DateParseHandling = _dateParseHandling.GetValueOrDefault();
			}
			else
			{
				previousDateParseHandling = null;
			}
			if (_floatParseHandling.HasValue && reader.FloatParseHandling != _floatParseHandling)
			{
				previousFloatParseHandling = reader.FloatParseHandling;
				reader.FloatParseHandling = _floatParseHandling.GetValueOrDefault();
			}
			else
			{
				previousFloatParseHandling = null;
			}
			if (_maxDepthSet && reader.MaxDepth != _maxDepth)
			{
				previousMaxDepth = reader.MaxDepth;
				reader.MaxDepth = _maxDepth;
			}
			else
			{
				previousMaxDepth = null;
			}
			if (_dateFormatStringSet && reader.DateFormatString != _dateFormatString)
			{
				previousDateFormatString = reader.DateFormatString;
				reader.DateFormatString = _dateFormatString;
			}
			else
			{
				previousDateFormatString = null;
			}
			if (reader is JsonTextReader jsonTextReader && jsonTextReader.PropertyNameTable == null && _contractResolver is DefaultContractResolver defaultContractResolver)
			{
				jsonTextReader.PropertyNameTable = defaultContractResolver.GetNameTable();
			}
		}

		private void ResetReader(JsonReader reader, CultureInfo? previousCulture, DateTimeZoneHandling? previousDateTimeZoneHandling, DateParseHandling? previousDateParseHandling, FloatParseHandling? previousFloatParseHandling, int? previousMaxDepth, string? previousDateFormatString)
		{
			if (previousCulture != null)
			{
				reader.Culture = previousCulture;
			}
			if (previousDateTimeZoneHandling.HasValue)
			{
				reader.DateTimeZoneHandling = previousDateTimeZoneHandling.GetValueOrDefault();
			}
			if (previousDateParseHandling.HasValue)
			{
				reader.DateParseHandling = previousDateParseHandling.GetValueOrDefault();
			}
			if (previousFloatParseHandling.HasValue)
			{
				reader.FloatParseHandling = previousFloatParseHandling.GetValueOrDefault();
			}
			if (_maxDepthSet)
			{
				reader.MaxDepth = previousMaxDepth;
			}
			if (_dateFormatStringSet)
			{
				reader.DateFormatString = previousDateFormatString;
			}
			if (reader is JsonTextReader jsonTextReader && jsonTextReader.PropertyNameTable != null && _contractResolver is DefaultContractResolver defaultContractResolver && jsonTextReader.PropertyNameTable == defaultContractResolver.GetNameTable())
			{
				jsonTextReader.PropertyNameTable = null;
			}
		}

		public void Serialize(TextWriter textWriter, object? value)
		{
			Serialize(new JsonTextWriter(textWriter), value);
		}

		public void Serialize(JsonWriter jsonWriter, object? value, Type? objectType)
		{
			SerializeInternal(jsonWriter, value, objectType);
		}

		public void Serialize(TextWriter textWriter, object? value, Type objectType)
		{
			Serialize(new JsonTextWriter(textWriter), value, objectType);
		}

		public void Serialize(JsonWriter jsonWriter, object? value)
		{
			SerializeInternal(jsonWriter, value, null);
		}

		private TraceJsonReader CreateTraceJsonReader(JsonReader reader)
		{
			TraceJsonReader traceJsonReader = new TraceJsonReader(reader);
			if (reader.TokenType != 0)
			{
				traceJsonReader.WriteCurrentToken();
			}
			return traceJsonReader;
		}

		internal virtual void SerializeInternal(JsonWriter jsonWriter, object? value, Type? objectType)
		{
			ValidationUtils.ArgumentNotNull(jsonWriter, "jsonWriter");
			Formatting? formatting = null;
			if (_formatting.HasValue && jsonWriter.Formatting != _formatting)
			{
				formatting = jsonWriter.Formatting;
				jsonWriter.Formatting = _formatting.GetValueOrDefault();
			}
			DateFormatHandling? dateFormatHandling = null;
			if (_dateFormatHandling.HasValue && jsonWriter.DateFormatHandling != _dateFormatHandling)
			{
				dateFormatHandling = jsonWriter.DateFormatHandling;
				jsonWriter.DateFormatHandling = _dateFormatHandling.GetValueOrDefault();
			}
			DateTimeZoneHandling? dateTimeZoneHandling = null;
			if (_dateTimeZoneHandling.HasValue && jsonWriter.DateTimeZoneHandling != _dateTimeZoneHandling)
			{
				dateTimeZoneHandling = jsonWriter.DateTimeZoneHandling;
				jsonWriter.DateTimeZoneHandling = _dateTimeZoneHandling.GetValueOrDefault();
			}
			FloatFormatHandling? floatFormatHandling = null;
			if (_floatFormatHandling.HasValue && jsonWriter.FloatFormatHandling != _floatFormatHandling)
			{
				floatFormatHandling = jsonWriter.FloatFormatHandling;
				jsonWriter.FloatFormatHandling = _floatFormatHandling.GetValueOrDefault();
			}
			StringEscapeHandling? stringEscapeHandling = null;
			if (_stringEscapeHandling.HasValue && jsonWriter.StringEscapeHandling != _stringEscapeHandling)
			{
				stringEscapeHandling = jsonWriter.StringEscapeHandling;
				jsonWriter.StringEscapeHandling = _stringEscapeHandling.GetValueOrDefault();
			}
			CultureInfo cultureInfo = null;
			if (_culture != null && !_culture.Equals(jsonWriter.Culture))
			{
				cultureInfo = jsonWriter.Culture;
				jsonWriter.Culture = _culture;
			}
			string dateFormatString = null;
			if (_dateFormatStringSet && jsonWriter.DateFormatString != _dateFormatString)
			{
				dateFormatString = jsonWriter.DateFormatString;
				jsonWriter.DateFormatString = _dateFormatString;
			}
			TraceJsonWriter traceJsonWriter = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? new TraceJsonWriter(jsonWriter) : null);
			new JsonSerializerInternalWriter(this).Serialize(traceJsonWriter ?? jsonWriter, value, objectType);
			if (traceJsonWriter != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonWriter.GetSerializedJsonMessage(), null);
			}
			if (formatting.HasValue)
			{
				jsonWriter.Formatting = formatting.GetValueOrDefault();
			}
			if (dateFormatHandling.HasValue)
			{
				jsonWriter.DateFormatHandling = dateFormatHandling.GetValueOrDefault();
			}
			if (dateTimeZoneHandling.HasValue)
			{
				jsonWriter.DateTimeZoneHandling = dateTimeZoneHandling.GetValueOrDefault();
			}
			if (floatFormatHandling.HasValue)
			{
				jsonWriter.FloatFormatHandling = floatFormatHandling.GetValueOrDefault();
			}
			if (stringEscapeHandling.HasValue)
			{
				jsonWriter.StringEscapeHandling = stringEscapeHandling.GetValueOrDefault();
			}
			if (_dateFormatStringSet)
			{
				jsonWriter.DateFormatString = dateFormatString;
			}
			if (cultureInfo != null)
			{
				jsonWriter.Culture = cultureInfo;
			}
		}

		internal IReferenceResolver GetReferenceResolver()
		{
			if (_referenceResolver == null)
			{
				_referenceResolver = new DefaultReferenceResolver();
			}
			return _referenceResolver;
		}

		internal JsonConverter? GetMatchingConverter(Type type)
		{
			return GetMatchingConverter(_converters, type);
		}

		internal static JsonConverter? GetMatchingConverter(IList<JsonConverter>? converters, Type objectType)
		{
			if (converters != null)
			{
				for (int i = 0; i < converters.Count; i++)
				{
					JsonConverter jsonConverter = converters[i];
					if (jsonConverter.CanConvert(objectType))
					{
						return jsonConverter;
					}
				}
			}
			return null;
		}

		internal void OnError(Newtonsoft.Json.Serialization.ErrorEventArgs e)
		{
			this.Error?.Invoke(this, e);
		}
	}
	public class JsonSerializerSettings
	{
		internal const ReferenceLoopHandling DefaultReferenceLoopHandling = ReferenceLoopHandling.Error;

		internal const MissingMemberHandling DefaultMissingMemberHandling = MissingMemberHandling.Ignore;

		internal const NullValueHandling DefaultNullValueHandling = NullValueHandling.Include;

		internal const DefaultValueHandling DefaultDefaultValueHandling = DefaultValueHandling.Include;

		internal const ObjectCreationHandling DefaultObjectCreationHandling = ObjectCreationHandling.Auto;

		internal const PreserveReferencesHandling DefaultPreserveReferencesHandling = PreserveReferencesHandling.None;

		internal const ConstructorHandling DefaultConstructorHandling = ConstructorHandling.Default;

		internal const TypeNameHandling DefaultTypeNameHandling = TypeNameHandling.None;

		internal const MetadataPropertyHandling DefaultMetadataPropertyHandling = MetadataPropertyHandling.Default;

		internal static readonly StreamingContext DefaultContext;

		internal const Formatting DefaultFormatting = Formatting.None;

		internal const DateFormatHandling DefaultDateFormatHandling = DateFormatHandling.IsoDateFormat;

		internal const DateTimeZoneHandling DefaultDateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;

		internal const DateParseHandling DefaultDateParseHandling = DateParseHandling.DateTime;

		internal const FloatParseHandling DefaultFloatParseHandling = FloatParseHandling.Double;

		internal const FloatFormatHandling DefaultFloatFormatHandling = FloatFormatHandling.String;

		internal const StringEscapeHandling DefaultStringEscapeHandling = StringEscapeHandling.Default;

		internal const TypeNameAssemblyFormatHandling DefaultTypeNameAssemblyFormatHandling = TypeNameAssemblyFormatHandling.Simple;

		internal static readonly CultureInfo DefaultCulture;

		internal const bool DefaultCheckAdditionalContent = false;

		internal const string DefaultDateFormatString = "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK";

		internal const int DefaultMaxDepth = 64;

		internal Formatting? _formatting;

		internal DateFormatHandling? _dateFormatHandling;

		internal DateTimeZoneHandling? _dateTimeZoneHandling;

		internal DateParseHandling? _dateParseHandling;

		internal FloatFormatHandling? _floatFormatHandling;

		internal FloatParseHandling? _floatParseHandling;

		internal StringEscapeHandling? _stringEscapeHandling;

		internal CultureInfo? _culture;

		internal bool? _checkAdditionalContent;

		internal int? _maxDepth;

		internal bool _maxDepthSet;

		internal string? _dateFormatString;

		internal bool _dateFormatStringSet;

		internal TypeNameAssemblyFormatHandling? _typeNameAssemblyFormatHandling;

		internal DefaultValueHandling? _defaultValueHandling;

		internal PreserveReferencesHandling? _preserveReferencesHandling;

		internal NullValueHandling? _nullValueHandling;

		internal ObjectCreationHandling? _objectCreationHandling;

		internal MissingMemberHandling? _missingMemberHandling;

		internal ReferenceLoopHandling? _referenceLoopHandling;

		internal StreamingContext? _context;

		internal ConstructorHandling? _constructorHandling;

		internal TypeNameHandling? _typeNameHandling;

		internal MetadataPropertyHandling? _metadataPropertyHandling;

		public ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_referenceLoopHandling = value;
			}
		}

		public MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling.GetValueOrDefault();
			}
			set
			{
				_missingMemberHandling = value;
			}
		}

		public ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling.GetValueOrDefault();
			}
			set
			{
				_objectCreationHandling = value;
			}
		}

		public NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling.GetValueOrDefault();
			}
			set
			{
				_nullValueHandling = value;
			}
		}

		public DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling.GetValueOrDefault();
			}
			set
			{
				_defaultValueHandling = value;
			}
		}

		public IList<JsonConverter> Converters { get; set; }

		public PreserveReferencesHandling PreserveReferencesHandling
		{
			get
			{
				return _preserveReferencesHandling.GetValueOrDefault();
			}
			set
			{
				_preserveReferencesHandling = value;
			}
		}

		public TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling.GetValueOrDefault();
			}
			set
			{