Decompiled source of RuleSet5EPlugin v3.0.0

plugins/BeyondLinkServerLinkData/DnD5eLinkData.dll

Decompiled 2 months ago
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using Newtonsoft.Json;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("DnD5eLinkData")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DnD5eLinkData")]
[assembly: AssemblyCopyright("Copyright ©  2021")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("e0a45160-5b7b-4173-87a3-aeba669a4c09")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace LordAshes;

public class DnD5eLinkData : ILinkData
{
	private static class Templates
	{
		public static Dictionary<string, List<string>> sections = new Dictionary<string, List<string>>();

		public static string skillRoll = "\t\t{\r\n\t\t\t\"name\": \"{Name}\",\r\n\t\t\t\"type\": \"{Type}\",\r\n\t\t\t\"roll\": \"{Roll}\"\r\n\t\t}\r\n";

		public static string attackRoll = "\t\t{\r\n\t\t\t\"name\": \"{Name}\",\r\n\t\t\t\"type\": \"{Type}\",\r\n\t\t\t\"roll\": \"{Roll}\",\r\n\t\t\t\"range\": \"{Range}\",\r\n\t\t\t\"link\":\r\n\t\t\t{\r\n\t\t\t\t\"name\": \"{DmgName}\",\r\n\t\t\t\t\"type\": \"{DmgType}\",\r\n\t\t\t\t\"roll\": \"{DmgRoll}\"\r\n\t\t\t}\r\n\t\t}\r\n";
	}

	private Dictionary<string, object> stats = new Dictionary<string, object>();

	private string dataFolder = "";

	private string name = "";

	private bool changed = false;

	public void ProcessData(Dictionary<string, dynamic> data, string rootDataFolder)
	{
		dataFolder = rootDataFolder;
		changed = false;
		name = (data.ContainsKey("Name") ? data["Name"] : "Unknown");
		Console.WriteLine("[ " + name + " -> Dnd5eLinkData ]");
		foreach (KeyValuePair<string, object> datum in data)
		{
			ProcessElement(data["Name"], datum);
		}
		if (!changed)
		{
			return;
		}
		Console.WriteLine("Updating Rule Set 5e Character File '" + data["Name"] + ".DnD5e" + "'");
		File.WriteAllText(dataFolder + data["Name"] + ".DnD5e", "");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "{\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"NPC\": false,\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"reach\": 5,\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"ac\":" + data["AC"] + ",\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"attacks\":\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t[\r\n");
		for (int i = 0; i < Templates.sections["attacks"].Count; i++)
		{
			File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", Templates.sections["attacks"].ElementAt(i));
			if (i < Templates.sections["attacks"].Count - 1)
			{
				File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\t,\r\n");
			}
		}
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t],\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"saves\":\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t[\r\n");
		for (int j = 0; j < Templates.sections["saves"].Count; j++)
		{
			File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", Templates.sections["saves"].ElementAt(j));
			if (j < Templates.sections["saves"].Count - 1)
			{
				File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\t,\r\n");
			}
		}
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t],\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"skills\":\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t[\r\n");
		for (int k = 0; k < Templates.sections["skills"].Count; k++)
		{
			File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", Templates.sections["skills"].ElementAt(k));
			if (k < Templates.sections["skills"].Count - 1)
			{
				File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\t,\r\n");
			}
		}
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t],\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"immunity\": [],\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "\t\"resistance\": []\r\n");
		File.AppendAllText(dataFolder + data["Name"] + ".DnD5e", "}\r\n");
	}

	public void ProcessElement(string name, KeyValuePair<string, dynamic> element, string root = "")
	{
		if (element.Value.GetType().ToString().EndsWith("JObject"))
		{
			foreach (object item in JsonConvert.DeserializeObject<Dictionary<string, object>>(element.Value.ToString()))
			{
				KeyValuePair<string, object> element2 = (KeyValuePair<string, object>)(dynamic)item;
				ProcessElement(name, element2, (root == "") ? element.Key : (root + "." + element.Key));
			}
			return;
		}
		bool flag = true;
		if (!((element.Value.ToString() != "") ? true : false))
		{
			return;
		}
		string text = name + "." + ((root == "") ? element.Key : (root + "." + element.Key));
		if (!stats.ContainsKey(text))
		{
			Console.WriteLine(text + " : New With " + element.Value.ToString());
		}
		else if (stats[text].ToString() == element.Value.ToString())
		{
			flag = false;
		}
		else
		{
			Console.WriteLine(text + " : Changed To " + element.Value.ToString());
			stats.Remove(text);
		}
		if (!flag)
		{
			return;
		}
		changed = true;
		stats.Add(text, element.Value);
		if (text.StartsWith(name + ".Saves.") || text.StartsWith(name + ".Init") || text.StartsWith(name + ".Attacks.") || text.StartsWith(name + ".Skills.") || text.StartsWith(name + ".Abilities.") || text.StartsWith(name + ".Prof"))
		{
			Templates.sections.Clear();
			Templates.sections.Add("attacks", new List<string>());
			Templates.sections.Add("saves", new List<string>());
			Templates.sections.Add("skills", new List<string>());
			foreach (KeyValuePair<string, object> stat in stats)
			{
				if (stat.Key.StartsWith(name + ".Init"))
				{
					Templates.sections["attacks"].Add(MakeSkillRoll("Initiative", "Public", "1D20" + stat.Value.ToString()));
				}
			}
			foreach (KeyValuePair<string, object> stat2 in stats)
			{
				if (stat2.Key.StartsWith(name + ".Attacks.") && stat2.Key.Contains("damage.amount"))
				{
					string text2 = stat2.Key.Replace(".damage.amount", "");
					Templates.sections["attacks"].Add(MakeAttackRoll(text2.Substring(text2.LastIndexOf(".") + 1), stats[text2 + ".type"].ToString(), "1D20" + stats[text2], stats[text2 + ".range"].ToString(), stats[text2 + ".type"].ToString(), stats[text2 + ".damage.type"].ToString(), stats[text2 + ".damage.amount"].ToString()));
				}
			}
			foreach (KeyValuePair<string, object> stat3 in stats)
			{
				if (stat3.Key.StartsWith(name + ".Saves."))
				{
					Templates.sections["saves"].Add(MakeSkillRoll(stat3.Key.Substring(stat3.Key.LastIndexOf(".") + 1), "Public", "1D20" + stat3.Value.ToString()));
				}
			}
			foreach (KeyValuePair<string, object> stat4 in stats)
			{
				if (stat4.Key.StartsWith(name + ".Skills."))
				{
					Templates.sections["skills"].Add(MakeSkillRoll(stat4.Key.Substring(stat4.Key.LastIndexOf(".") + 1), "Private", "1D20" + stat4.Value.ToString()));
				}
			}
			foreach (KeyValuePair<string, object> stat5 in stats)
			{
				if (stat5.Key.StartsWith(name + ".Abilities."))
				{
					Templates.sections["skills"].Add(MakeSkillRoll(stat5.Key.Substring(stat5.Key.LastIndexOf(".") + 1), "Private", "1D20" + stat5.Value.ToString()));
				}
			}
			{
				foreach (KeyValuePair<string, object> stat6 in stats)
				{
					if (stat6.Key.StartsWith(name + ".Prof"))
					{
						Templates.sections["skills"].Add(MakeSkillRoll(stat6.Key.Substring(stat6.Key.LastIndexOf(".") + 1), "Private", "1D20" + stat6.Value.ToString()));
					}
				}
				return;
			}
		}
		File.WriteAllText(dataFolder + text, element.Value.ToString());
	}

	public static string MakeAttackRoll(string name, string type, string roll, string range, string dmgName, string dmgType, string dmgRoll)
	{
		string attackRoll = Templates.attackRoll;
		attackRoll = attackRoll.Replace("{Name}", name);
		attackRoll = attackRoll.Replace("{Type}", type);
		attackRoll = attackRoll.Replace("{Roll}", roll);
		attackRoll = attackRoll.Replace("{Range}", range);
		attackRoll = attackRoll.Replace("{DmgName}", dmgName);
		attackRoll = attackRoll.Replace("{DmgType}", dmgType);
		return attackRoll.Replace("{DmgRoll}", dmgRoll);
	}

	public static string MakeSkillRoll(string name, string type, string roll, string note = "")
	{
		string skillRoll = Templates.skillRoll;
		if (note != "")
		{
			skillRoll.Replace("{Roll}\"", "{Roll}\"\r\n\t\t\t\t\"link\":\r\n\t\t\t\t{\r\n\t\t\t\t\t\"name\": \"" + note + "\"\r\n\t\t\t\t}");
		}
		skillRoll = skillRoll.Replace("{Name}", name);
		skillRoll = skillRoll.Replace("{Type}", type);
		return skillRoll.Replace("{Roll}", roll);
	}
}

plugins/BeyondLinkServerLinkData/IDataLink.dll

Decompiled 2 months ago
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("IDataLink")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("IDataLink")]
[assembly: AssemblyCopyright("Copyright ©  2021")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("de2a2953-4be7-4929-885c-08d10bd1a853")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace LordAshes;

public interface ILinkData
{
	void ProcessData(Dictionary<string, dynamic> data, string rootDataFolder);
}

plugins/BeyondLinkServerLinkData/Newtonsoft.Json.dll

Decompiled 2 months 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.Reflection.Emit;
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.Security.Permissions;
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(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")]
[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.1.25517")]
[assembly: AssemblyInformationalVersion("13.0.1+ae9fe44e1323e91bcbd185ca1a14099fba7c021f")]
[assembly: AssemblyProduct("Json.NET")]
[assembly: AssemblyTitle("Json.NET")]
[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 = num & _mask;
			for (Entry entry = _entries[num3]; 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;
			_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) || text.IndexOf('.') != -1 || text.IndexOf('E') != -1 || text.IndexOf('e') != -1)
			{
				return text;
			}
			return text + ".0";
		}

		private static string EnsureDecimalPlace(string text)
		{
			if (text.IndexOf('.') != -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)
		{
			//IL_0035: Unknown result type (might be due to invalid IL or missing references)
			//IL_003b: Expected O, but got Unknown
			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;
		}

		private 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
	

RuleSet5EPlugin.dll

Decompiled 2 months ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Text.RegularExpressions;
using System.Threading;
using BepInEx;
using BepInEx.Configuration;
using Bounce;
using Bounce.ManagedCollections;
using Bounce.Singletons;
using Bounce.Unmanaged;
using GameChat.UI;
using HarmonyLib;
using Newtonsoft.Json;
using RadialUI;
using TMPro;
using Unity.Mathematics;
using UnityEngine;
using UnityEngine.Device;
using UnityEngine.Rendering.PostProcessing;
using UnityEngine.SceneManagement;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("TaleSpireRuleSet5EPlugin")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TaleSpireRuleSet5EPlugin")]
[assembly: AssemblyCopyright("Copyright ©  2023")]
[assembly: AssemblyTrademark("TaleSpireRuleSet5EPlugin")]
[assembly: ComVisible(false)]
[assembly: Guid("c303405d-e66c-4316-9cdb-4e3ca15c6360")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("3.0.0.0")]
namespace LordAshes;

[BepInPlugin("org.lordashes.plugins.ruleset5e", "RuleSet 5E Plug-In", "3.0.0.0")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class RuleSet5EPlugin : BaseUnityPlugin
{
	public static class CacheLoader
	{
		public static IEnumerator LoadCache(float loadSeperationDelay)
		{
			List<string> iconsList = File.Find("/org.lordashes.plugins.ruleset5e/", (CacheType)999).ToList();
			if (diagnostics >= DiagnosticMode.high)
			{
				Debug.Log((object)("RuleSet 5E Plugin: Found " + iconsList.Count + " Icons"));
			}
			while (iconsList.Count > 0)
			{
				if (!iconsCache.ContainsKey(Path.GetFileNameWithoutExtension(iconsList.ElementAt(0))))
				{
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)("RuleSet 5E Plugin: Caching '" + iconsList.ElementAt(0) + "'"));
					}
					iconsCache.Add(Path.GetFileNameWithoutExtension(iconsList.ElementAt(0)), Image.LoadSprite(iconsList.ElementAt(0), (CacheType)999));
					yield return (object)new WaitForSeconds(loadSeperationDelay);
				}
				iconsList.RemoveAt(0);
			}
		}

		public static Sprite GetSprite(string iconName)
		{
			if (!iconsCache.ContainsKey(Path.GetFileNameWithoutExtension(iconName)))
			{
				string text = "";
				switch (pluginMode.Value)
				{
				case OperationMode.localAlways:
					text = "/org.lordashes.plugins.ruleset5e/" + Path.GetFileNameWithoutExtension(iconName);
					break;
				case OperationMode.remoteAlways:
					text = locationPrefixFiles + "/org.lordashes.plugins.ruleset5e/" + Path.GetFileNameWithoutExtension(iconName) + defaultIconExtension.Value;
					break;
				case OperationMode.localFirstRemoteFallback:
					text = "/org.lordashes.plugins.ruleset5e/" + Path.GetFileNameWithoutExtension(iconName);
					if (!File.Exists(text))
					{
						text = locationPrefixFiles + "/org.lordashes.plugins.ruleset5e/" + Path.GetFileNameWithoutExtension(iconName) + defaultIconExtension.Value;
					}
					break;
				}
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("RuleSet 5E Plugin: Icon Not Cached. Caching '" + Path.GetFileNameWithoutExtension(iconName) + "' From '" + text + "'"));
				}
				iconsCache.Add(Path.GetFileNameWithoutExtension(iconName), Image.LoadSprite(text, (CacheType)999));
			}
			return iconsCache[Path.GetFileNameWithoutExtension(iconName)];
		}
	}

	public class Character
	{
		public bool NPC { get; set; } = false;


		public int reach { get; set; } = 5;


		public List<Roll> attacks { get; set; } = new List<Roll>();


		public List<Roll> attacksDC { get; set; } = new List<Roll>();


		public List<Roll> saves { get; set; } = new List<Roll>();


		public List<Roll> skills { get; set; } = new List<Roll>();


		public List<Roll> healing { get; set; } = new List<Roll>();


		public List<string> resistance { get; set; } = new List<string>();


		public List<string> vulnerability { get; set; } = new List<string>();


		public List<string> immunity { get; set; } = new List<string>();


		public string ac { get; set; } = "8";


		public string hp { get; set; } = "10";


		public string str { get; set; } = "10";


		public string dex { get; set; } = "10";


		public string con { get; set; } = "10";


		public string Int { get; set; } = "10";


		public string wis { get; set; } = "10";


		public string cha { get; set; } = "10";


		public string speed { get; set; } = "30";


		public string lv { get; set; } = "1";


		public string var1 { get; set; } = "";


		public string var2 { get; set; } = "";


		public string var3 { get; set; } = "";

	}

	public class Roll
	{
		public string name { get; set; } = "";


		public string type { get; set; } = "";


		public string roll { get; set; } = "100";


		public string critrangemin { get; set; } = "20";


		public string critmultip { get; set; } = "2";


		public string range { get; set; } = "0/0";


		public string info { get; set; } = "";


		public bool aoo { get; set; } = false;


		public string futureUse_icon { get; set; } = "Melee";


		public string menuUI { get; set; } = "";


		public Roll link { get; set; } = null;


		public Roll()
		{
		}

		public Roll(Roll source)
		{
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"Copying Roll Stats To New Roll Object");
			}
			name = source.name;
			type = source.type;
			roll = source.roll;
			critrangemin = source.critrangemin;
			critmultip = source.critmultip;
			range = source.range;
			info = source.info;
			futureUse_icon = source.futureUse_icon;
			if (source.link == null)
			{
				link = null;
			}
			else
			{
				link = new Roll(source.link);
			}
		}
	}

	public class IdBonus
	{
		public string name { get; set; } = "";


		public bool _useAttackBonusDie { get; set; } = false;


		public bool _useDamageBonusDie { get; set; } = false;


		public bool _useSkillBonusDie { get; set; } = false;


		public bool _useACBonusDie { get; set; } = false;


		public bool _useHPBonus { get; set; } = false;


		public string _amountAttackBonusDie { get; set; } = "";


		public string _amountDamageBonusDie { get; set; } = "";


		public string _amountSkillBonusDie { get; set; } = "";


		public string _amountACBonusDie { get; set; } = "";


		public string _amountHPBonus { get; set; } = "";


		public bool _useAdv { get; set; } = false;


		public bool _useDis { get; set; } = false;

	}

	public class Damage
	{
		public string name { get; set; } = "Undefined";


		public string type { get; set; } = "Undefined";


		public string roll { get; set; } = "";


		public int total { get; set; } = 0;


		public string expansion { get; set; } = "";


		public Damage()
		{
		}

		public Damage(string name, string type, string roll, string expansion, int total)
		{
			this.name = name;
			this.type = type;
			this.roll = roll;
			this.expansion = expansion;
			this.total = total;
		}
	}

	public class Existence
	{
		public Vector3 position { get; set; } = Vector3.zero;


		public Vector3 rotation { get; set; } = Vector3.zero;


		public Existence()
		{
		}//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_000c: Unknown result type (might be due to invalid IL or missing references)
		//IL_0011: Unknown result type (might be due to invalid IL or missing references)


		public Existence(Vector3 pos, Vector3 rot)
		{
			//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_000c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0011: Unknown result type (might be due to invalid IL or missing references)
			//IL_001f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0027: Unknown result type (might be due to invalid IL or missing references)
			position = pos;
			rotation = rot;
		}

		public void Apply(Transform transform)
		{
			//IL_0003: Unknown result type (might be due to invalid IL or missing references)
			//IL_0010: Unknown result type (might be due to invalid IL or missing references)
			//IL_0015: Unknown result type (might be due to invalid IL or missing references)
			transform.position = position;
			transform.rotation = Quaternion.Euler(rotation);
		}
	}

	[HarmonyPatch(typeof(UIChatMessageManager), "AddChatMessage")]
	public static class PatchAddChatMessage
	{
		public static bool Prefix(ref string creatureName, Texture2D icon, ref string chatMessage, IChatFocusable focus = null)
		{
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"RuleSet 5E Plugin: Patch: Checking Message Content");
			}
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)("RuleSet 5E Plugin: Creature Name" + creatureName + " | ChatMessage: " + chatMessage));
			}
			if (chatMessage != null)
			{
				chatMessage = chatMessage.Replace("(Whisper)", "").Trim();
				if (chatMessage.StartsWith("[") && chatMessage.Contains("]"))
				{
					creatureName = chatMessage.Substring(0, chatMessage.IndexOf("]"));
					creatureName = creatureName.Substring(1);
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)("RuleSet 5E Plugin: Patch: Speaker Changed To '" + creatureName + "'"));
					}
					chatMessage = chatMessage.Substring(chatMessage.IndexOf("]") + 1);
				}
			}
			return true;
		}
	}

	[HarmonyPatch(typeof(CreaturePresenter), "OnCreatureDataChanged")]
	public static class PatchCreaturePresenterOnCreatureDataChanged
	{
		public static void Postfix(in CreatureDataV3 creatureData, bool teleport)
		{
			//IL_004e: Unknown result type (might be due to invalid IL or missing references)
			if (!selectRuleMode && processCallback)
			{
				((MonoBehaviour)Instance).StartCoroutine(SupressionSystem);
				if (diagnostics >= DiagnosticMode.high)
				{
					Debug.Log((object)"Ruleset5E Plugin: Patch: OnCreatureDataChanged");
				}
				processCallback = false;
				((MonoBehaviour)Instance).StartCoroutine(waitimestandard(creatureData));
			}
		}
	}

	[HarmonyPatch(typeof(CreatureBoardAsset), "Pickup")]
	public static class PatchCreatureBoardAssetPickup
	{
		public static bool Prefix()
		{
			return !selectRuleMode;
		}

		public static void Postfix()
		{
			//IL_002d: Unknown result type (might be due to invalid IL or missing references)
			if (!selectRuleMode)
			{
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)"Ruleset5E Plugin: PatchCreatureBoardAssetPickup");
				}
				Instance.LoadBonus(LocalClient.SelectedCreatureId);
			}
		}
	}

	[HarmonyPatch(typeof(UIDiceTray), "SetDiceUrl")]
	public static class Patches
	{
		public static bool Prefix(ref DiceRollDescriptor rollDescriptor, ref bool showResult)
		{
			if (rollDescriptor.DiceGroupDescriptors != null && !rollDescriptor.DiceGroupDescriptors[0].Name.Contains("XRuleset5e"))
			{
				Debug.Log((object)"RuleSet 5E Plugin: SetDiceUrl with [XRuleset5e]");
				return true;
			}
			return true;
		}

		public static void Postfix(DiceRollDescriptor rollDescriptor)
		{
			//IL_0001: 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_005b: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0074: Unknown result type (might be due to invalid IL or missing references)
			//IL_0077: Unknown result type (might be due to invalid IL or missing references)
			//IL_0088: Unknown result type (might be due to invalid IL or missing references)
			if (rollDescriptor.DiceGroupDescriptors != null && !rollDescriptor.DiceGroupDescriptors[0].Name.Contains("XRuleset5e"))
			{
				return;
			}
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"RuleSet 5E Plugin: Patch: Spawning Dice Set");
			}
			DiceManager val = Object.FindObjectOfType<DiceManager>();
			DiceGroupDescriptor[] diceGroupDescriptors = rollDescriptor.DiceGroupDescriptors;
			foreach (DiceGroupDescriptor val2 in diceGroupDescriptors)
			{
				if (val2.Name != null && val2.Name != "")
				{
					UIDiceTray val3 = Object.FindObjectOfType<UIDiceTray>();
					bool flag = (bool)PatchAssistant.GetField(val3, "_buttonHeld");
					PatchAssistant.SetField(val3, "_buttonHeld", true);
					val3.SpawnDice();
					PatchAssistant.SetField(val3, "_buttonHeld", flag);
				}
			}
		}
	}

	[HarmonyPatch(typeof(DiceManager), "CreateLocalRoll")]
	public static class PatchCreateLocalRoll
	{
		public static bool Prefix(DiceRollDescriptor rollDescriptor, bool isGmRoll, bool showResult, RollId rollId)
		{
			return true;
		}

		public static void Postfix(DiceRollDescriptor rollDescriptor, bool isGmRoll, bool showResult, RollId rollId)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_001a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0079: Unknown result type (might be due to invalid IL or missing references)
			if (rollDescriptor.DiceGroupDescriptors[0].Name != null && !rollDescriptor.DiceGroupDescriptors[0].Name.Contains("XRuleset5e"))
			{
				Debug.Log((object)"RuleSet 5E Plugin have XRuleset5e");
				return;
			}
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"RuleSet 5E Plugin: Patch: Dice Set Ready");
			}
			if (callbackRollResult != null)
			{
				callbackRollReady(rollId.AsLong);
			}
		}
	}

	[HarmonyPatch(typeof(DiceManager), "RPC_DiceResult")]
	public static class PatchDiceResults
	{
		public static bool Prefix(bool isGmOnly, byte[] diceListData, PhotonMessageInfo msgInfo)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_001a: Expected O, but got Unknown
			//IL_0022: Unknown result type (might be due to invalid IL or missing references)
			//IL_0035: Unknown result type (might be due to invalid IL or missing references)
			RollResults val = default(RollResults);
			BrSerializeHelpers.DeserializeFromByteArray<RollResults>(new Reader(), diceListData, (BrDeserializer<RollResults>)RollResults.Deserialize, ref val);
			if (val.ResultsGroups[0].Name == null || !val.ResultsGroups[0].Name.Contains("XRuleset5e"))
			{
				return true;
			}
			return false;
		}

		public static void Postfix(bool isGmOnly, byte[] diceListData, PhotonMessageInfo msgInfo)
		{
			//IL_0039: Unknown result type (might be due to invalid IL or missing references)
			//IL_0052: Expected O, but got Unknown
			//IL_005b: Unknown result type (might be due to invalid IL or missing references)
			//IL_006f: Unknown result type (might be due to invalid IL or missing references)
			//IL_009e: Unknown result type (might be due to invalid IL or missing references)
			//IL_00bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c9: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_011b: Unknown result type (might be due to invalid IL or missing references)
			//IL_011d: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ee: Unknown result type (might be due to invalid IL or missing references)
			//IL_0158: Unknown result type (might be due to invalid IL or missing references)
			//IL_015d: Unknown result type (might be due to invalid IL or missing references)
			//IL_016e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0174: Unknown result type (might be due to invalid IL or missing references)
			//IL_0186: Unknown result type (might be due to invalid IL or missing references)
			//IL_018d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0192: Unknown result type (might be due to invalid IL or missing references)
			//IL_04ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_02cd: Unknown result type (might be due to invalid IL or missing references)
			//IL_0324: Unknown result type (might be due to invalid IL or missing references)
			//IL_0233: Unknown result type (might be due to invalid IL or missing references)
			//IL_0198: Unknown result type (might be due to invalid IL or missing references)
			//IL_019d: Unknown result type (might be due to invalid IL or missing references)
			//IL_01a2: Unknown result type (might be due to invalid IL or missing references)
			//IL_0247: Unknown result type (might be due to invalid IL or missing references)
			//IL_0260: Unknown result type (might be due to invalid IL or missing references)
			//IL_01c7: Unknown result type (might be due to invalid IL or missing references)
			//IL_01c9: Unknown result type (might be due to invalid IL or missing references)
			//IL_0290: Unknown result type (might be due to invalid IL or missing references)
			//IL_0285: Unknown result type (might be due to invalid IL or missing references)
			//IL_0367: Unknown result type (might be due to invalid IL or missing references)
			//IL_036e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0373: Unknown result type (might be due to invalid IL or missing references)
			//IL_0426: Unknown result type (might be due to invalid IL or missing references)
			//IL_0433: Unknown result type (might be due to invalid IL or missing references)
			//IL_0405: Unknown result type (might be due to invalid IL or missing references)
			//IL_0412: Unknown result type (might be due to invalid IL or missing references)
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"RuleSet 5E Patch :  PatchDiceResults Postfix ");
			}
			string text = "";
			string text2 = "";
			short num = 0;
			bool flag = true;
			bool flag2 = true;
			Dictionary<string, object> dictionary = new Dictionary<string, object>();
			RollResults val = default(RollResults);
			BrSerializeHelpers.DeserializeFromByteArray<RollResults>(new Reader(), diceListData, (BrDeserializer<RollResults>)RollResults.Deserialize, ref val);
			if (val.ResultsGroups[0].Name == null || !val.ResultsGroups[0].Name.Contains("XRuleset5e"))
			{
				return;
			}
			dictionary.Add("Identifier", val.RollId.AsLong);
			Enumerator<RollResultsGroup> enumerator = val.ResultsGroups.GetEnumerator();
			try
			{
				RollResultsOperation val2 = default(RollResultsOperation);
				RollResult val3 = default(RollResult);
				RollValue val4 = default(RollValue);
				while (enumerator.MoveNext())
				{
					RollResultsGroup current = enumerator.Current;
					if (!dictionary.ContainsKey("Name"))
					{
						dictionary.Add("Name", current.Name.Replace("XRuleset5e", ""));
					}
					Collection<RollOperand> collection = new Collection<RollOperand>();
					Collection<RollOperand> collection2 = new Collection<RollOperand>();
					collection.Add(current.Result);
					int num2 = 0;
					bool flag3 = false;
					int num3 = 0;
					Collection<string> collection3 = new Collection<string>();
					while (collection.Count > 0)
					{
						num2++;
						num3 = 0;
						foreach (RollOperand item in collection)
						{
							RollOperand current2 = item;
							num3++;
							((RollOperand)(ref current2)).Get(ref val2, ref val3, ref val4);
							if (val2.Operands != null)
							{
								Enumerator<RollOperand> enumerator3 = val2.Operands.GetEnumerator();
								try
								{
									while (enumerator3.MoveNext())
									{
										RollOperand current3 = enumerator3.Current;
										collection2.Add(current3);
									}
								}
								finally
								{
									((IDisposable)enumerator3).Dispose();
								}
								collection3.Add(((int)val2.Operator == 0) ? "+" : "-");
								continue;
							}
							string text3 = ((num3 != 1) ? collection3[num2 - 2] : (flag3 ? collection3[num2 - 3] : "+"));
							if (((DieKind)(ref val3.Kind)).RegisteredName == "<unknown>")
							{
								if (val4.Value != 0)
								{
									string text4 = text;
									short value = val4.Value;
									text = text4 + text3 + value;
									string text5 = text2;
									value = val4.Value;
									text2 = text5 + text3 + value;
									num = (short)((text3 == "+") ? (num + val4.Value) : (num - val4.Value));
									if (flag3 && num3 == 2)
									{
										flag3 = false;
									}
								}
								else
								{
									flag3 = true;
								}
								continue;
							}
							text = text + text3 + val3.Results.Length + "D" + ((DieKind)(ref val3.Kind)).RegisteredName.Substring(1);
							text2 = text2 + text3 + "[" + string.Join(",", (IEnumerable<short>)val3.Results) + "]";
							if (Instance.lastRollRequestTotal == RollTotal.normal || !text.StartsWith("+2D20"))
							{
								Enumerator<short> enumerator4 = val3.Results.GetEnumerator();
								try
								{
									while (enumerator4.MoveNext())
									{
										short current4 = enumerator4.Current;
										num = (short)((text3 == "+") ? (num + current4) : (num - current4));
										if (current4 != 1)
										{
											flag2 = false;
										}
										if (current4 != int.Parse(((DieKind)(ref val3.Kind)).RegisteredName.Substring(1)))
										{
											flag = false;
										}
									}
								}
								finally
								{
									((IDisposable)enumerator4).Dispose();
								}
							}
							else
							{
								int num4 = ((Instance.lastRollRequestTotal == RollTotal.advantage) ? Math.Max(val3.Results[0], val3.Results[1]) : Math.Min(val3.Results[0], val3.Results[1]));
								num = (short)(num + num4);
								if (num4 != 1)
								{
									flag2 = false;
								}
								if (num4 != int.Parse(((DieKind)(ref val3.Kind)).RegisteredName.Substring(1)))
								{
									flag = false;
								}
							}
							if (flag3 && num3 == 2)
							{
								flag3 = false;
							}
						}
						collection.Clear();
						for (int i = 0; i < collection2.Count; i++)
						{
							collection.Add(collection2[i]);
						}
						collection2.Clear();
					}
					if (text.Substring(0, 1) == "+")
					{
						text = text.Substring(1, text.Length - 1);
					}
					if (text2.Substring(0, 1) == "+")
					{
						text2 = text2.Substring(1, text2.Length - 1);
					}
					dictionary.Add("Roll", ((Instance.lastRollRequestTotal == RollTotal.normal) ? text : text.Replace("2D20", "1D20")).Replace("D", "d"));
					dictionary.Add("Total", (int)num);
					dictionary.Add("Expanded", text2);
					dictionary.Add("IsMin", flag2);
					dictionary.Add("IsMax", flag);
					if (diagnostics >= DiagnosticMode.high)
					{
						Debug.Log((object)("RuleSet 5E Patch: Rolled " + dictionary["Name"]?.ToString() + " (" + dictionary["Roll"]?.ToString() + ") = " + dictionary["Expanded"]?.ToString() + " = " + dictionary["Total"]?.ToString() + " (Min:" + flag2 + "/Max:" + flag + ")"));
					}
					if (callbackRollResult != null)
					{
						callbackRollResult(dictionary);
					}
				}
			}
			finally
			{
				((IDisposable)enumerator).Dispose();
			}
		}
	}

	[HarmonyPatch(typeof(Die), "Spawn")]
	public static class PatchSpawn
	{
		public static bool Prefix(DieKind kind, float3 pos, quaternion rot, RollId rollId, byte groupId, bool gmOnlyDie, bool showResult)
		{
			if (stateMachineState == StateMachineState.idle)
			{
				return true;
			}
			return false;
		}

		public static void Postfix(DieKind kind, float3 pos, quaternion rot, RollId rollId, byte groupId, bool gmOnlyDie, bool showResult, ref Die __result)
		{
			//IL_0015: 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_00e2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e3: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e8: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e9: Unknown result type (might be due to invalid IL or missing references)
			//IL_00ba: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c4: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c9: 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_007e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0109: Unknown result type (might be due to invalid IL or missing references)
			//IL_0112: Unknown result type (might be due to invalid IL or missing references)
			//IL_011f: Unknown result type (might be due to invalid IL or missing references)
			//IL_01bf: Unknown result type (might be due to invalid IL or missing references)
			//IL_01c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_0209: Unknown result type (might be due to invalid IL or missing references)
			if (stateMachineState == StateMachineState.idle)
			{
				return;
			}
			RegisteredDieResources val = default(RegisteredDieResources);
			BDebug.AssertHard(DiceManager.TryGetDieResources(kind, ref val));
			object[] array = new object[4] { rollId.AsLong, groupId, gmOnlyDie, showResult };
			if (diagnostics >= DiagnosticMode.ultra)
			{
				string? text;
				if (forceExistence != null)
				{
					Vector3 position = forceExistence.position;
					text = ((object)(Vector3)(ref position)).ToString();
				}
				else
				{
					text = ((object)(float3)(ref pos)).ToString();
				}
				Debug.Log((object)("RuleSet 5E Patch: Spawning Dice At " + text));
			}
			Die val2 = ((forceExistence == null) ? PhotonNetwork.Instantiate(val.ResourcePath, float3.op_Implicit(pos), quaternion.op_Implicit(rot), (byte)0, array).GetComponent<Die>() : PhotonNetwork.Instantiate(val.ResourcePath, forceExistence.position, Quaternion.Euler(forceExistence.rotation), (byte)0, array).GetComponent<Die>());
			PatchAssistant.UseMethod(val2, "Init", new object[6]
			{
				kind,
				LocalClient.Id,
				rollId,
				groupId,
				gmOnlyDie,
				showResult
			});
			Vector3 val3 = default(Vector3);
			((Vector3)(ref val3))..ctor((float)random.Next(0, 180), (float)random.Next(0, 180), (float)random.Next(0, 180));
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)("RuleSet 5E Patch: Randomizing Die Starting Orientation (" + ((object)(Vector3)(ref val3)).ToString() + ")"));
			}
			((Component)val2).transform.rotation = Quaternion.Euler(val3);
			foreach (Transform item in ExtensionMethods.Children(((Component)val2).transform))
			{
				TextMeshPro component = ((Component)item).gameObject.GetComponent<TextMeshPro>();
				if ((Object)(object)component != (Object)null)
				{
					((TMP_Text)component).faceColor = diceHighlightColor;
				}
			}
			__result = val2;
		}
	}

	[HarmonyPatch(typeof(Die), "SetMaterial")]
	public static class PatchSetMaterial
	{
		private static bool Prefix(bool gmDie)
		{
			return false;
		}

		private static void Postfix(ref Renderer ___dieRenderer, ref bool gmDie, Material ___normalMaterial, Material ___gmMaterial)
		{
			//IL_0050: Unknown result type (might be due to invalid IL or missing references)
			if (gmDie)
			{
				if ((Object)(object)___dieRenderer.sharedMaterial != (Object)(object)___gmMaterial)
				{
					___dieRenderer.sharedMaterial = ___gmMaterial;
					return;
				}
			}
			else if ((Object)(object)___dieRenderer.sharedMaterial != (Object)(object)___normalMaterial)
			{
				___dieRenderer.sharedMaterial = ___normalMaterial;
			}
			___dieRenderer.material.SetColor("_Color", diceColor);
		}
	}

	public static class PatchAssistant
	{
		public static object GetProperty(object instance, string propertyName)
		{
			Type type = instance.GetType();
			foreach (PropertyInfo runtimeProperty in type.GetRuntimeProperties())
			{
				if (runtimeProperty.Name.Contains(propertyName))
				{
					return runtimeProperty.GetValue(instance);
				}
			}
			PropertyInfo[] properties = type.GetProperties();
			foreach (PropertyInfo propertyInfo in properties)
			{
				if (propertyInfo.Name.Contains(propertyName))
				{
					return propertyInfo.GetValue(instance);
				}
			}
			return null;
		}

		public static void SetProperty(object instance, string propertyName, object value)
		{
			Type type = instance.GetType();
			foreach (PropertyInfo runtimeProperty in type.GetRuntimeProperties())
			{
				if (runtimeProperty.Name.Contains(propertyName))
				{
					runtimeProperty.SetValue(instance, value);
					return;
				}
			}
			PropertyInfo[] properties = type.GetProperties();
			foreach (PropertyInfo propertyInfo in properties)
			{
				if (propertyInfo.Name.Contains(propertyName))
				{
					propertyInfo.SetValue(instance, value);
					break;
				}
			}
		}

		public static object GetField(object instance, string fieldName)
		{
			Type type = instance.GetType();
			foreach (FieldInfo runtimeField in type.GetRuntimeFields())
			{
				if (runtimeField.Name.Contains(fieldName))
				{
					try
					{
						return runtimeField.GetValue(instance);
					}
					catch (Exception ex)
					{
						Debug.LogWarning((object)("Patch Assistant: Unable To GetValue Of '" + fieldName + "' From '" + instance?.ToString() + "'\r\n" + ex));
						return null;
					}
				}
			}
			FieldInfo[] fields = type.GetFields();
			foreach (FieldInfo fieldInfo in fields)
			{
				if (fieldInfo.Name.Contains(fieldName))
				{
					try
					{
						return fieldInfo.GetValue(instance);
					}
					catch (Exception ex2)
					{
						Debug.LogWarning((object)("Patch Assistant: Unable To GetValue Of '" + fieldName + "' From '" + instance?.ToString() + "'\r\n" + ex2));
						return null;
					}
				}
			}
			return null;
		}

		public static void SetField(object instance, string fieldName, object value)
		{
			Type type = instance.GetType();
			foreach (FieldInfo runtimeField in type.GetRuntimeFields())
			{
				if (runtimeField.Name.Contains(fieldName))
				{
					runtimeField.SetValue(instance, value);
					return;
				}
			}
			FieldInfo[] fields = type.GetFields();
			foreach (FieldInfo fieldInfo in fields)
			{
				if (fieldInfo.Name.Contains(fieldName))
				{
					fieldInfo.SetValue(instance, value);
					break;
				}
			}
		}

		public static object UseMethod(object instance, string methodName, object[] parameters)
		{
			Type type = instance.GetType();
			foreach (MethodInfo runtimeMethod in type.GetRuntimeMethods())
			{
				if (runtimeMethod.Name.Contains(methodName))
				{
					return runtimeMethod.Invoke(instance, parameters);
				}
			}
			MethodInfo[] methods = type.GetMethods();
			foreach (MethodInfo methodInfo in methods)
			{
				if (methodInfo.Name.Contains(methodName))
				{
					return methodInfo.Invoke(instance, parameters);
				}
			}
			return null;
		}
	}

	public enum DiagnosticMode
	{
		none,
		low,
		high,
		ultra
	}

	public enum RollTotal
	{
		normal,
		advantage,
		disadvantage
	}

	public enum RollMode
	{
		manual,
		manual_side,
		automaticDice,
		automaticGenerator
	}

	public enum StateMachineState
	{
		idle,
		attackAttackRangeCheck,
		attackAttackIntention,
		attackRollSetup,
		attackAttackDieCreate,
		attackAttackDieWaitCreate,
		attackAttackDieRollExecute,
		attackAttackDieWaitRoll,
		attackAttackBonusDieCreate,
		attackAttackBonusDieWaitCreate,
		attackAttackBonusDieRollExecute,
		attackAttackBonusDieWaitRoll,
		attackAttackBonusDieReaction,
		attackAttackBonusDieReactionWait,
		attackAttackDieRollReport,
		attackAttackDefenceCheck,
		attackAttackMissReport,
		attackAttackHitReport,
		attackDamageDieCreate,
		attackDamageDieWaitCreate,
		attackDamageDieRollExecute,
		attackDamageDieWaitRoll,
		attackDamageDieRollReport,
		attackDamageDieDamageReport,
		attackDamageDieDamageTake,
		attackRollCleanup,
		skillRollSetup,
		skillRollDieCreate,
		skillRollDieWaitCreate,
		skillRollDieRollExecute,
		skillRollDieWaitRoll,
		skillBonusRollDieCreate,
		skillBonusRollDieWaitCreate,
		skillBonusRollDieRollExecute,
		skillBonusRollDieWaitRoll,
		skillRollDieRollReport,
		skillRollCleanup,
		skillRollMore,
		healingRollStart,
		healingRollDieCreate,
		healingRollDieWaitCreate,
		healingRollDieRollExecute,
		healingRollDieWaitRoll,
		healingRollDieRollReport,
		healingRollDieValueReport,
		healingRollDieValueTake,
		healingRollCleanup
	}

	public static class Utility
	{
		private static bool postProcessingOn = true;

		public static void PostOnMainPage(MemberInfo plugin)
		{
			SceneManager.sceneLoaded += delegate(Scene scene, LoadSceneMode mode)
			{
				//IL_0072: Unknown result type (might be due to invalid IL or missing references)
				//IL_0079: Expected O, but got Unknown
				try
				{
					if (((Scene)(ref scene)).name == "UI")
					{
						TextMeshProUGUI uITextByName = GetUITextByName("BETA");
						if (Object.op_Implicit((Object)(object)uITextByName))
						{
							((TMP_Text)uITextByName).text = "INJECTED BUILD - unstable mods";
						}
					}
					else
					{
						TextMeshProUGUI uITextByName2 = GetUITextByName("TextMeshPro Text");
						if (Object.op_Implicit((Object)(object)uITextByName2))
						{
							BepInPlugin val = (BepInPlugin)Attribute.GetCustomAttribute(plugin, typeof(BepInPlugin));
							if (((TMP_Text)uITextByName2).text.EndsWith("</size>"))
							{
								((TMP_Text)uITextByName2).text = ((TMP_Text)uITextByName2).text + "\n\nMods Currently Installed:\n";
							}
							TextMeshProUGUI val2 = uITextByName2;
							((TMP_Text)val2).text = ((TMP_Text)val2).text + "\nXJ_Nekomancer's " + val.Name + " - " + val.Version;
						}
					}
				}
				catch (Exception ex)
				{
					Debug.LogWarning((object)ex);
				}
			};
		}

		public static bool isBoardLoaded()
		{
			return SimpleSingletonBehaviour<CameraController>.HasInstance && SingletonStateMBehaviour<BoardSessionManager, State<BoardSessionManager>>.HasInstance && !BoardSessionManager.IsLoading;
		}

		public static bool StrictKeyCheck(KeyboardShortcut check)
		{
			//IL_002e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0031: Unknown result type (might be due to invalid IL or missing references)
			//IL_003f: Unknown result type (might be due to invalid IL or missing references)
			if (!((KeyboardShortcut)(ref check)).IsUp())
			{
				return false;
			}
			KeyCode[] array = new KeyCode[6];
			RuntimeHelpers.InitializeArray(array, (RuntimeFieldHandle)/*OpCode not supported: LdMemberToken*/);
			KeyCode[] array2 = (KeyCode[])(object)array;
			foreach (KeyCode val in array2)
			{
				if (Input.GetKey(val) != ((KeyboardShortcut)(ref check)).Modifiers.Contains(val))
				{
					return false;
				}
			}
			return true;
		}

		public static bool CharacterCheck(string characterName, string rollName)
		{
			//IL_0003: Unknown result type (might be due to invalid IL or missing references)
			CreatureBoardAsset val = null;
			CreaturePresenter.TryGetAsset(LocalClient.SelectedCreatureId, ref val);
			if ((Object)(object)val == (Object)null)
			{
				return false;
			}
			return GetCharacterName(val) == characterName;
		}

		public static List<PlayerGuid> FindGMs()
		{
			//IL_001c: 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_002e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0053: Unknown result type (might be due to invalid IL or missing references)
			//IL_0061: Unknown result type (might be due to invalid IL or missing references)
			//IL_0064: Invalid comparison between Unknown and I4
			//IL_0071: Unknown result type (might be due to invalid IL or missing references)
			List<PlayerGuid> list = new List<PlayerGuid>();
			ClientMode val = default(ClientMode);
			foreach (PlayerGuid key in CampaignSessionManager.PlayersInfo.Keys)
			{
				List<ClientGuid> list2 = new List<ClientGuid>();
				if (!BoardSessionManager.PlayersClientsGuids.TryGetValue(key, ref list2))
				{
					continue;
				}
				int count = list2.Count;
				for (int i = 0; i < count; i++)
				{
					if (BoardSessionManager.ClientsModes.TryGetValue(list2[i], ref val) && (int)val == 2)
					{
						list.Add(key);
					}
				}
			}
			return (list.Count > 0) ? list : new List<PlayerGuid>();
		}

		public static List<PlayerGuid> FindOwners(CreatureGuid cid)
		{
			//IL_001c: 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_0024: Unknown result type (might be due to invalid IL or missing references)
			//IL_0030: Unknown result type (might be due to invalid IL or missing references)
			List<PlayerGuid> list = new List<PlayerGuid>();
			foreach (PlayerGuid key in CampaignSessionManager.PlayersInfo.Keys)
			{
				if (CreatureManager.PlayerCanControlCreature(key, cid))
				{
					list.Add(key);
				}
			}
			return list;
		}

		private static TextMeshProUGUI GetUITextByName(string name)
		{
			TextMeshProUGUI[] array = Object.FindObjectsOfType<TextMeshProUGUI>();
			for (int i = 0; i < array.Length; i++)
			{
				if (((Object)array[i]).name == name)
				{
					return array[i];
				}
			}
			return null;
		}

		public static string GetCharacterName(CreatureBoardAsset creature)
		{
			return GetCharacterName(creature.Name).Trim();
		}

		public static string GetCharacterName(string creatureName)
		{
			if (creatureName == null)
			{
				return "";
			}
			string text = creatureName;
			if (text.IndexOf("<") >= 0)
			{
				text = text.Substring(0, text.IndexOf("<")).Trim();
			}
			return text;
		}

		public static void DisableProcessing(bool setting)
		{
			PostProcessLayer component = ((Component)Camera.main).GetComponent<PostProcessLayer>();
			if (setting)
			{
				postProcessingOn = GetPostProcessing();
				((Behaviour)component).enabled = false;
			}
			else
			{
				((Behaviour)component).enabled = postProcessingOn;
			}
		}

		private static bool GetPostProcessing()
		{
			PostProcessLayer component = ((Component)Camera.main).GetComponent<PostProcessLayer>();
			return ((Behaviour)component).enabled;
		}

		public static bool IsNumeric(string value)
		{
			return value.All(char.IsNumber);
		}
	}

	public enum OperationMode
	{
		localAlways,
		remoteAlways,
		localFirstRemoteFallback
	}

	public static bool selectRuleMode = false;

	public static bool processCallback = true;

	public static Action<long> callbackRollReady = null;

	public static Action<Dictionary<string, object>> callbackRollResult = null;

	public static Existence forceExistence = null;

	public static Random random = new Random();

	private static Color diceColor = Color.black;

	private static Color32 diceHighlightColor = new Color32(byte.MaxValue, byte.MaxValue, (byte)0, byte.MaxValue);

	public static DiagnosticMode diagnostics;

	public const float scale = 5f;

	public static RollMode rollingSystem = RollMode.automaticDice;

	public static StateMachineState stateMachineState = StateMachineState.idle;

	public static StateMachineState stateMachineLastState = StateMachineState.idle;

	private Roll lastRollRequest = null;

	private RollTotal lastRollRequestTotal = RollTotal.normal;

	private Roll loadedRollRequest = null;

	private long lastRollId = -2L;

	private Dictionary<string, object> lastResult = null;

	private float damageDieMultiplier = 1f;

	private CreatureBoardAsset instigator = null;

	private CreatureBoardAsset victim = null;

	private string missAnimation = "TLA_Wiggle";

	private string deadAnimation = "TLA_Action_Knockdown";

	private bool changeBaseColors = true;

	private string[] npcColors = new string[3] { "6", "7", "8" };

	private string[] pcColors = new string[3] { "2", "13", "1" };

	private Existence saveCamera = null;

	private string messageContent = "";

	private ChatManager chatManager = null;

	private bool totalAdv = false;

	private bool totalDis = false;

	private bool victim_totalAdv = false;

	private bool victim_totalDis = false;

	private bool useAttackBonusDie = false;

	private string amountAttackBonusDie = "";

	private bool useDamageBonusDie = false;

	private string amountDamageBonusDie = "";

	private bool useSkillBonusDie = false;

	private string amountSkillBonusDie = "";

	private bool victim_useSkillBonusDie = false;

	private string amountACBonusDie = "";

	private bool useACBonusDie = false;

	private string amountHPBonus = "";

	private bool useHPBonus = false;

	private string victim_amountSkillBonusDie = "";

	private string victim_amountACBonusDie = "";

	private string victim_amountHPBonus = "";

	private bool reactionStop = false;

	public static float processSpeed = 1f;

	private Existence diceSideExistance = null;

	private bool secureSuccess = false;

	private bool halfDamage = false;

	private bool criticalImmunity = false;

	private bool firstWithDamageBonus = false;

	private GameObject dolly = null;

	private Camera camera = null;

	private RenderTexture auxCameraTexture = new RenderTexture(Screen.width, Screen.height, 32);

	private List<MultiDCAttackData> multiDCAttackDataList = new List<MultiDCAttackData>();

	public const string Name = "RuleSet 5E Plug-In";

	public const string Guid = "org.lordashes.plugins.ruleset5e";

	public const string Version = "3.0.0.0";

	public const string Author = "XJ_Nekomancer";

	public static RuleSet5EPlugin Instance = null;

	private string iconSelector = "type";

	private Dictionary<string, Character> characters = new Dictionary<string, Character>();

	private Dictionary<string, string> idMinis = new Dictionary<string, string>();

	private Dictionary<CreatureGuid, IdBonus> IdBonusList = new Dictionary<CreatureGuid, IdBonus>();

	private Texture reactionStopIcon = null;

	private bool reactionStopContinue = false;

	private string reactionRollTotal = "NoInfo";

	private bool reactionHalve = false;

	private bool dcAttack = false;

	private bool healSequence = false;

	private bool oppositeRoll = false;

	private Roll oppositeRollvalue;

	private Vector2 smallScreenConversion = new Vector2(-1200f, 40f);

	private bool pauseRender = false;

	private int numberOfSelectedTargets = 0;

	public List<CreatureBoardAsset> multiTargetAssets = new List<CreatureBoardAsset>();

	private int MultitargetAssetsIndex;

	public static Texture2D backgroundTexture;

	public static string multiAttackType = "";

	public static Roll multiRoll;

	private GameInput gameInputInstance = null;

	private MethodInfo gameInputDisable = null;

	private MethodInfo gameInputEnable = null;

	public bool globalKeyboardDisabled = false;

	public int uiLocX;

	public int uiLocY;

	public bool fadeText = false;

	public bool useGeneralIcons = false;

	public static bool useJsonExtension = false;

	public static string locationPrefixFiles = "";

	public static string locationPrefixIcons = "";

	public static Dictionary<string, Sprite> iconsCache = new Dictionary<string, Sprite>();

	private static ConfigEntry<string> defaultIconExtension;

	private ConfigEntry<KeyboardShortcut> reloadAssetTrigger;

	private static ConfigEntry<OperationMode> pluginMode;

	private Dictionary<string, List<string>> radiaMainMenuList = new Dictionary<string, List<string>>();

	public static IEnumerator SupressionSystem
	{
		get
		{
			processCallback = false;
			yield return (object)new WaitForSeconds(0.5f);
			processCallback = true;
		}
	}

	public static IEnumerator waitimestandard(CreatureDataV3 creatureData)
	{
		//IL_0007: Unknown result type (might be due to invalid IL or missing references)
		//IL_0008: Unknown result type (might be due to invalid IL or missing references)
		CreatureBoardAsset asset2 = null;
		CreaturePresenter.TryGetAsset(creatureData.CreatureId, ref asset2);
		AssetDataPlugin.ReadInfo(((object)(CreatureDataV3)(ref creatureData)).ToString(), "org.lordashes.plugins.ruleset5e.BonusData");
		yield return 0.1f;
		Instance.LoadDnd5eJson(asset2);
		yield return 0.1f;
		if ((Object)(object)asset2 != (Object)null)
		{
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"Ruleset5E Plugin: Patch: Triggering LoadDnd5eJson");
			}
			Instance.CustomBColor(asset2, (int)asset2.Hp.Value, (int)asset2.Hp.Max);
		}
	}

	private IEnumerator Executor()
	{
		DiceManager dm = Object.FindObjectOfType<DiceManager>();
		UIDiceTray dt = Object.FindObjectOfType<UIDiceTray>();
		List<Damage> damages = new List<Damage>();
		Roll tmp = null;
		Dictionary<string, object> hold = null;
		RollId idLastroll2 = default(RollId);
		RollId idLastroll = default(RollId);
		RollId idLastroll3 = default(RollId);
		while (true)
		{
			if (stateMachineState != stateMachineLastState && diagnostics >= DiagnosticMode.high)
			{
				Debug.Log((object)("RuleSet 5E Plugin: State = " + stateMachineState));
				stateMachineLastState = stateMachineState;
			}
			float stepDelay = 0.1f;
			switch (stateMachineState)
			{
			case StateMachineState.attackAttackRangeCheck:
			{
				stateMachineState = StateMachineState.attackAttackIntention;
				if (healSequence)
				{
					stateMachineState = StateMachineState.healingRollStart;
				}
				secureSuccess = false;
				halfDamage = false;
				float reachAdjust = 0.5f;
				float dist4;
				if (CreatureManager.SnapToGrid)
				{
					Vector3 vecresult = ((Component)instigator).transform.position - ((Component)victim).transform.position;
					dist4 = 5f * Math.Max(Math.Abs(((Vector3)(ref vecresult))[0]), Math.Max(Math.Abs(((Vector3)(ref vecresult))[1]), Math.Abs(((Vector3)(ref vecresult))[2])));
					dist4 = dist4 - (((((MovableBoardAsset)instigator).Scale >= 1f) ? ((MovableBoardAsset)instigator).Scale : 1f) - 1f) * 2.5f - (((((MovableBoardAsset)victim).Scale >= 1f) ? ((MovableBoardAsset)victim).Scale : 1f) - 1f) * 2.5f;
					dist4 = float.Parse(Math.Round(dist4).ToString());
					vecresult = default(Vector3);
				}
				else
				{
					dist4 = 5f * Vector3.Distance(((Component)instigator).transform.position, ((Component)victim).transform.position);
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)("RuleSet 5E Plugin: Attack:" + dist4 + "|" + instigator.ScaledBaseRadius + "|" + victim.ScaledBaseRadius + "|" + 5f));
					}
					dist4 -= (instigator.ScaledBaseRadius + victim.ScaledBaseRadius) * 5f - 5f;
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)("RuleSet 5E Plugin: Attack: dist : " + dist4));
					}
				}
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("RuleSet 5E Plugin: Attack: Ran-+ge=" + dist4));
				}
				int attackRange2 = (((lastRollRequest.type.ToUpper() == "MELEE") & (lastRollRequest.range == "0/0")) ? characters[Utility.GetCharacterName(instigator)].reach : int.Parse(lastRollRequest.range.Split(new char[1] { '/' })[1]));
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("distancia:" + dist4 + "attackrange + adjust:" + ((float)attackRange2 + reachAdjust) + "atacck range:" + attackRange2 + "adjust:" + reachAdjust));
				}
				if ((dist4 > (float)attackRange2 + reachAdjust) & !(dcAttack & (multiTargetAssets.Count != 0)))
				{
					((MonoBehaviour)this).StartCoroutine(DisplayMessage(Utility.GetCharacterName(instigator) + " cannot reach " + Utility.GetCharacterName(victim) + " at " + dist4 + "' with " + lastRollRequest.name + " (Range: " + attackRange2 + "')", 1f));
					if ((Object)(object)victim != (Object)null)
					{
						victim.SetGlow(false, Color.red);
					}
					stateMachineState = StateMachineState.idle;
					if (multiTargetAssets.Count != 0)
					{
						if (diagnostics >= DiagnosticMode.ultra)
						{
							Debug.Log((object)"RuleSet 5E Plugin: Cannot reach Multi");
						}
						StartSequencePre(multiAttackType, multiRoll, instigator.CreatureId, null, null);
					}
				}
				else
				{
					if (!((lastRollRequest.type.ToUpper() == "RANGE" || lastRollRequest.type.ToUpper() == "RANGED" || lastRollRequest.type.ToUpper() == "MAGIC") & !dcAttack))
					{
						break;
					}
					attackRange2 = int.Parse(lastRollRequest.range.Split(new char[1] { '/' })[0]);
					if (dist4 <= (float)attackRange2 + reachAdjust)
					{
						foreach (CreatureBoardAsset asset in (IEnumerable<CreatureBoardAsset>)CreaturePresenter.GetTempReadOnlyViewOfAllCreatureAssets())
						{
							int reach = 5;
							bool npc = true;
							if (characters.ContainsKey(Utility.GetCharacterName(asset)))
							{
								npc = characters[Utility.GetCharacterName(asset)].NPC;
								reach = characters[Utility.GetCharacterName(asset)].reach;
							}
							if (diagnostics >= DiagnosticMode.ultra)
							{
								Debug.Log((object)("RuleSet 5E Plugin: " + (npc ? "Foe" : "Ally") + " " + Utility.GetCharacterName(asset) + " at " + dist4 + "' with reach " + reach));
							}
							if (npc && dist4 < (float)reach + reachAdjust && instigator.CreatureId != asset.CreatureId)
							{
								((MonoBehaviour)this).StartCoroutine(DisplayMessage(Utility.GetCharacterName(instigator) + " is with " + reach + "' reach of " + Utility.GetCharacterName(asset) + ". Disadvantage on ranged attacks.", 1f));
							}
						}
					}
					else
					{
						((MonoBehaviour)this).StartCoroutine(DisplayMessage(Utility.GetCharacterName(instigator) + " requires a long range shot (" + attackRange2 + "'+) to reach of " + Utility.GetCharacterName(victim) + " at " + dist4 + "'. Disadvantage on ranged attacks.", 1f));
					}
				}
				break;
			}
			case StateMachineState.attackAttackIntention:
			{
				stateMachineState = StateMachineState.attackRollSetup;
				string players;
				if (oppositeRoll)
				{
					instigator.SpeakEx("Check!");
					players = "[" + Utility.GetCharacterName(instigator) + "] <size=28>Check VS " + Utility.GetCharacterName(victim);
				}
				else
				{
					instigator.SpeakEx("Attack!");
					players = "[" + Utility.GetCharacterName(instigator) + "] <size=28>Attacks " + Utility.GetCharacterName(victim);
				}
				string owner = players;
				string gm = players;
				chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				for (int r = 0; r < 10; r++)
				{
					((MovableBoardAsset)instigator).RotateTowards(((Component)victim).transform.position);
					((MovableBoardAsset)victim).RotateTowards(((Component)instigator).transform.position);
					yield return (object)new WaitForSeconds(0.01f * processSpeed);
				}
				break;
			}
			case StateMachineState.attackRollSetup:
				stateMachineState = StateMachineState.attackAttackDieCreate;
				RollSetup(dm, ref stepDelay);
				if (rollingSystem == RollMode.automaticDice)
				{
					dolly.transform.position = new Vector3(-100f, 2f, -1.5f);
				}
				damageDieMultiplier = 1f;
				break;
			case StateMachineState.attackAttackDieCreate:
				stateMachineState = StateMachineState.attackAttackDieWaitCreate;
				if (dcAttack)
				{
					if (lastRollRequest.roll.Contains("/"))
					{
						bool havedata = false;
						foreach (Roll roll in characters[Utility.GetCharacterName(victim)].saves)
						{
							if (roll.name.ToUpper() == lastRollRequest.roll.Split(new char[1] { '/' })[1].ToUpper())
							{
								RollCreate(dt, "talespire://dice/" + SafeForProtocolName(lastRollRequest.name) + ":" + roll.roll, ref stepDelay);
								havedata = true;
								break;
							}
						}
						if (!havedata)
						{
							foreach (Roll roll2 in characters[Utility.GetCharacterName(victim)].skills)
							{
								if (roll2.name.ToUpper().Contains(lastRollRequest.roll.Split(new char[1] { '/' })[1].ToUpper()))
								{
									RollCreate(dt, "talespire://dice/" + SafeForProtocolName(lastRollRequest.name) + ":" + roll2.roll, ref stepDelay);
									havedata = true;
									break;
								}
							}
						}
						if (!havedata)
						{
							RollCreate(dt, "talespire://dice/" + SafeForProtocolName(lastRollRequest.name) + ":1d20" + checkToMod(lastRollRequest.roll.Split(new char[1] { '/' })[1]), ref stepDelay);
							SystemMessage.DisplayInfoText("Victim dont have:" + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString(), 4f);
							if (diagnostics >= DiagnosticMode.high)
							{
								Debug.Log((object)("RuleSet 5E Plugin: Victim dont have: " + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString()));
							}
						}
					}
					else
					{
						secureSuccess = true;
						stateMachineState = StateMachineState.attackAttackBonusDieReaction;
						if (diagnostics >= DiagnosticMode.high)
						{
							Debug.Log((object)"RuleSet 5E Plugin: Secure Success (DC Attack)");
						}
					}
				}
				else if (lastRollRequest.roll.ToUpper().Contains("D"))
				{
					RollCreate(dt, "talespire://dice/" + SafeForProtocolName(lastRollRequest.name) + ":" + lastRollRequest.roll, ref stepDelay);
				}
				else
				{
					secureSuccess = true;
					stateMachineState = StateMachineState.attackAttackBonusDieReaction;
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)"RuleSet 5E Plugin: Secure Success (Attack)");
					}
				}
				if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
				{
					((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
				}
				break;
			case StateMachineState.attackAttackDieRollExecute:
				stateMachineState = StateMachineState.attackAttackDieWaitRoll;
				RollExecute(dm, ref stepDelay);
				break;
			case StateMachineState.attackAttackBonusDieCreate:
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("Critical Check Stage 1 = " + lastResult["IsMax"]));
				}
				stateMachineState = StateMachineState.attackAttackBonusDieReaction;
				if (dcAttack)
				{
					useAttackBonusDie = victim_useSkillBonusDie;
					amountAttackBonusDie = victim_amountSkillBonusDie;
				}
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("RuleSet 5E Plugin: UseAttackBonusDie: " + useAttackBonusDie + " mountAttackBonusDie: " + amountAttackBonusDie.ToString()));
				}
				if (!(useAttackBonusDie & (amountAttackBonusDie != "")))
				{
					break;
				}
				hold = lastResult;
				if (amountAttackBonusDie.ToUpper().Contains("D"))
				{
					RollId.TryParse(lastRollId.ToString(), ref idLastroll2);
					dm.ClearDiceRoll(idLastroll2);
					stateMachineState = StateMachineState.attackAttackBonusDieWaitCreate;
					RollCreate(dt, "talespire://dice/" + SafeForProtocolName("Bonus Die") + ":" + amountAttackBonusDie, ref stepDelay);
					if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
					{
						((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
					}
					idLastroll2 = default(RollId);
				}
				else
				{
					lastResult = ResolveRoll(amountAttackBonusDie);
				}
				break;
			case StateMachineState.attackAttackBonusDieRollExecute:
				stateMachineState = StateMachineState.attackAttackBonusDieWaitRoll;
				RollExecute(dm, ref stepDelay);
				break;
			case StateMachineState.attackAttackBonusDieReaction:
				stateMachineState = StateMachineState.attackAttackDieRollReport;
				if (secureSuccess)
				{
					stateMachineState = StateMachineState.attackAttackHitReport;
				}
				RollId.TryParse(lastRollId.ToString(), ref idLastroll);
				dm.ClearDiceRoll(idLastroll);
				if (useAttackBonusDie & (amountAttackBonusDie != "") & !secureSuccess)
				{
					if (diagnostics >= DiagnosticMode.high)
					{
						Debug.Log((object)"Adding Bonus Die");
					}
					hold["Total"] = (int)hold["Total"] + (int)lastResult["Total"];
					if ("-".Contains(lastResult["Expanded"].ToString().Substring(0, 1)))
					{
						hold["Expanded"] = hold["Expanded"]?.ToString() + lastResult["Expanded"].ToString();
					}
					else
					{
						hold["Expanded"] = hold["Expanded"]?.ToString() + "+" + lastResult["Expanded"].ToString();
					}
					hold["Roll"] = hold["Roll"]?.ToString() + ("+-".Contains(lastResult["Roll"].ToString().Substring(0, 1)) ? lastResult["Roll"].ToString() : ("+" + lastResult["Roll"].ToString()));
					lastResult = hold;
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)"Bonus Die Added");
					}
				}
				criticalImmunity = false;
				if (!secureSuccess && ((bool)lastResult["IsMax"] & characters[Utility.GetCharacterName(victim)].immunity.Contains("critical")))
				{
					if (diagnostics >= DiagnosticMode.ultra)
					{
						Debug.Log((object)"RuleSet 5E Plugin: Critical immunity ");
					}
					criticalImmunity = true;
					lastResult["IsMax"] = false;
				}
				if (reactionStop)
				{
					stateMachineState = StateMachineState.attackAttackBonusDieReactionWait;
					reactionStopContinue = true;
					if (secureSuccess)
					{
						reactionRollTotal = "Automatic Success";
					}
					else if (dcAttack)
					{
						reactionRollTotal = lastResult["Expanded"].ToString() + " = " + lastResult["Total"].ToString() + " VS DC:" + lastRollRequest.roll.Split(new char[1] { '/' })[0];
					}
					else
					{
						reactionRollTotal = lastResult["Expanded"].ToString() + " = " + lastResult["Total"].ToString() + " VS AC";
					}
				}
				break;
			case StateMachineState.attackAttackDieRollReport:
			{
				stateMachineState = StateMachineState.attackAttackDefenceCheck;
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("Critical Check State 2 = " + lastResult["IsMax"]));
				}
				if (!dcAttack)
				{
					int dieresult = int.Parse(lastResult["Expanded"].ToString().Substring(lastResult["Expanded"].ToString().IndexOf("[") + 1, lastResult["Expanded"].ToString().IndexOf("]") - 1).Split(new char[1] { ',' })[0]);
					if (totalAdv || totalDis)
					{
						if (totalAdv & (int.Parse(lastResult["Expanded"].ToString().Substring(lastResult["Expanded"].ToString().IndexOf("[") + 1, lastResult["Expanded"].ToString().IndexOf("]") - 1).Split(new char[1] { ',' })[1]) > dieresult))
						{
							dieresult = int.Parse(lastResult["Expanded"].ToString().Substring(lastResult["Expanded"].ToString().IndexOf("[") + 1, lastResult["Expanded"].ToString().IndexOf("]") - 1).Split(new char[1] { ',' })[1]);
						}
						if (totalDis & (int.Parse(lastResult["Expanded"].ToString().Substring(lastResult["Expanded"].ToString().IndexOf("[") + 1, lastResult["Expanded"].ToString().IndexOf("]") - 1).Split(new char[1] { ',' })[1]) < dieresult))
						{
							dieresult = int.Parse(lastResult["Expanded"].ToString().Substring(lastResult["Expanded"].ToString().IndexOf("[") + 1, lastResult["Expanded"].ToString().IndexOf("]") - 1).Split(new char[1] { ',' })[1]);
						}
					}
					if (dieresult >= int.Parse(lastRollRequest.critrangemin))
					{
						lastResult["IsMax"] = true;
						if (characters[Utility.GetCharacterName(victim)].immunity.Contains("critical"))
						{
							criticalImmunity = true;
							lastResult["IsMax"] = false;
						}
					}
				}
				else
				{
					lastResult["IsMax"] = false;
					lastResult["IsMin"] = false;
				}
				if ((bool)lastResult["IsMax"])
				{
					if (criticalImmunity)
					{
						instigator.SpeakEx(lastRollRequest.name + " " + lastResult["Total"]?.ToString() + " (Critical Immunity)");
					}
					else
					{
						instigator.SpeakEx(lastRollRequest.name + " " + lastResult["Total"]?.ToString() + " (Critical Hit)");
					}
				}
				else if ((bool)lastResult["IsMin"])
				{
					instigator.SpeakEx(lastRollRequest.name + " " + lastResult["Total"]?.ToString() + " (Critical Miss)");
				}
				else if (dcAttack)
				{
					if (oppositeRoll)
					{
						victim.SpeakEx("Check (" + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString() + "): " + lastResult["Total"]);
					}
					else
					{
						victim.SpeakEx("Save (" + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString() + "): " + lastResult["Total"]);
					}
				}
				else
				{
					instigator.SpeakEx(lastRollRequest.name + " " + lastResult["Total"]);
				}
				string players;
				if (dcAttack)
				{
					players = "[" + Utility.GetCharacterName(victim) + "]";
					players = ((!oppositeRoll) ? (players + "<size=28>Save (" + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString() + "): " + lastResult["Total"]?.ToString() + " VS DC (" + lastRollRequest.name + ")\r\n") : (players + "<size=28>Check (" + lastRollRequest.roll.Split(new char[1] { '/' })[1].ToString() + "): " + lastResult["Total"]?.ToString() + " VS " + oppositeRollvalue.roll.Split(new char[1] { '/' })[0] + " (" + lastRollRequest.name + ")\r\n"));
				}
				else
				{
					players = "[" + Utility.GetCharacterName(instigator) + "]";
					players = players + "<size=28>Attack: " + lastResult["Total"]?.ToString() + " VS AC (" + lastRollRequest.name + ")\r\n";
				}
				string owner = players;
				owner = owner + "<size=16>" + lastResult["Roll"]?.ToString() + " = ";
				owner = owner + "<size=16>" + lastResult["Expanded"];
				if ((bool)lastResult["IsMax"])
				{
					owner += " (Critical Hit)";
				}
				else if (criticalImmunity)
				{
					owner += " (Critical Hit) [Critical Immunity]";
				}
				else if ((bool)lastResult["IsMin"])
				{
					owner += " (Critical Miss)";
				}
				string gm = owner;
				if (dcAttack)
				{
					chatManager.SendChatMessageEx(players, owner, gm, victim.CreatureId, LocalClient.Id.Value);
				}
				else
				{
					chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				}
				stepDelay = 1f;
				break;
			}
			case StateMachineState.attackAttackDefenceCheck:
			{
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("Getting Total from '" + lastResult["Total"]?.ToString() + "'"));
				}
				int attack = (int)lastResult["Total"];
				int ac = int.Parse(characters[Utility.GetCharacterName(victim)].ac) + ((victim_amountACBonusDie != "") ? int.Parse(victim_amountACBonusDie) : 0);
				if (dcAttack)
				{
					ac = int.Parse(lastRollRequest.roll.Split(new char[1] { '/' })[0]);
				}
				if (diagnostics >= DiagnosticMode.ultra)
				{
					Debug.Log((object)("Getting Min from '" + lastResult["IsMin"]?.ToString() + "'"));
				}
				if (((attack < ac) & !(bool)lastResult["IsMax"] & !dcAttack) || (bool)lastResult["IsMin"] || (dcAttack && attack >= ac))
				{
					stateMachineState = StateMachineState.attackAttackMissReport;
					if ((dcAttack & lastRollRequest.roll.Contains("/")) && lastRollRequest.roll.Split(new char[1] { '/' })[2].ToUpper() == "HALF")
					{
						halfDamage = true;
						stateMachineState = StateMachineState.attackAttackHitReport;
					}
				}
				else
				{
					stateMachineState = StateMachineState.attackAttackHitReport;
				}
				stepDelay = 0f;
				break;
			}
			case StateMachineState.attackAttackMissReport:
				stateMachineState = StateMachineState.attackRollCleanup;
				victim.StartTargetEmote(instigator, missAnimation);
				if (dcAttack)
				{
					victim.Speak("Save!");
				}
				else
				{
					victim.SpeakEx("Miss!");
				}
				if (secureSuccess)
				{
					string players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Evades attack<size=4>\r\n";
					string gm = players;
					string owner = players;
					chatManager.SendChatMessageEx(players, owner, gm, victim.CreatureId, LocalClient.Id.Value);
				}
				else if (dcAttack)
				{
					string players;
					string gm;
					if (oppositeRoll)
					{
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Successfull check<size=4>\r\n";
						gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " (" + lastRollRequest.roll.Split(new char[1] { '/' })[1] + ") vs " + lastRollRequest.roll.Split(new char[1] { '/' })[0] + " (" + oppositeRollvalue.roll.Split(new char[1] { '/' })[0] + ")";
					}
					else
					{
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Successfull saving throw<size=4>\r\n";
						gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " (" + lastRollRequest.roll.Split(new char[1] { '/' })[1] + ") vs DC " + lastRollRequest.roll.Split(new char[1] { '/' })[0];
					}
					string owner = gm;
					chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				}
				else
				{
					string players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Evades attack<size=4>\r\n";
					string gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " vs AC " + (int.Parse(characters[Utility.GetCharacterName(victim)].ac) + ((victim_amountACBonusDie != "") ? int.Parse(victim_amountACBonusDie) : 0));
					string owner = gm;
					chatManager.SendChatMessageEx(players, owner, gm, victim.CreatureId, LocalClient.Id.Value);
				}
				if (!secureSuccess & dcAttack & (multiTargetAssets.Count != 0))
				{
					if (multiTargetAssets.Count != MultitargetAssetsIndex)
					{
						stateMachineState = StateMachineState.idle;
						victim.SetGlow(false, Color.red);
						RollCleanup(dm, ref stepDelay);
						StartSequencePre(multiAttackType, multiRoll, instigator.CreatureId, null, null);
					}
					else
					{
						stateMachineState = StateMachineState.attackDamageDieCreate;
					}
				}
				break;
			case StateMachineState.attackAttackHitReport:
				stateMachineState = StateMachineState.attackDamageDieCreate;
				if (lastRollRequest.info != "")
				{
					instigator.StartTargetEmote(victim, lastRollRequest.info);
				}
				else
				{
					switch (lastRollRequest.type.ToUpper())
					{
					case "MAGIC":
						instigator.StartTargetEmote(victim, "TLA_MagicMissileAttack");
						break;
					case "RANGE":
					case "RANGED":
						instigator.StartTargetEmote(victim, "TLA_LaserRed");
						break;
					default:
						instigator.StartTargetEmote(victim, "TLA_MeleeAttack");
						break;
					}
				}
				if (dcAttack)
				{
					if (oppositeRoll)
					{
						if (halfDamage)
						{
							victim.Speak("Success!");
						}
						else
						{
							victim.Speak("Fail!");
						}
					}
					else if (halfDamage)
					{
						victim.Speak("Save!");
					}
					else
					{
						victim.Speak("Fail!");
					}
				}
				else
				{
					victim.SpeakEx("Hit!");
				}
				if (secureSuccess)
				{
					string players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>Hits " + Utility.GetCharacterName(victim) + "<size=4>\r\n";
					string gm = players + "<size=16>Automatic Success";
					string owner = gm;
					chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				}
				else if (dcAttack)
				{
					string players;
					string gm;
					if (oppositeRoll)
					{
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Failed check<size=4>\r\n";
						if (halfDamage)
						{
							players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Successfull check<size=4>\r\n";
						}
						gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " (" + lastRollRequest.roll.Split(new char[1] { '/' })[1] + ") vs " + lastRollRequest.roll.Split(new char[1] { '/' })[0] + " (" + oppositeRollvalue.roll.Split(new char[1] { '/' })[0] + ")";
					}
					else
					{
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Failed saving throw<size=4>\r\n";
						if (halfDamage)
						{
							players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Successfull saving throw<size=4>\r\n";
						}
						gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " (" + lastRollRequest.roll.Split(new char[1] { '/' })[1] + ") vs DC " + lastRollRequest.roll.Split(new char[1] { '/' })[0];
					}
					if (halfDamage)
					{
						gm = ((!oppositeRoll) ? (gm + " (On save: half damage)") : (gm + " (On success: half damage)"));
					}
					string owner = gm;
					chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				}
				else
				{
					string players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>Hits " + Utility.GetCharacterName(victim) + "<size=4>\r\n";
					string gm = players + "<size=16>" + lastResult["Total"]?.ToString() + " vs AC " + (int.Parse(characters[Utility.GetCharacterName(victim)].ac) + ((victim_amountACBonusDie != "") ? int.Parse(victim_amountACBonusDie) : 0));
					string owner = gm;
					chatManager.SendChatMessageEx(players, owner, gm, victim.CreatureId, LocalClient.Id.Value);
				}
				firstWithDamageBonus = true;
				tmp = lastRollRequest.link;
				damages.Clear();
				if (!secureSuccess)
				{
					if ((bool)lastResult["IsMax"])
					{
						damageDieMultiplier = float.Parse(lastRollRequest.critmultip);
					}
					else
					{
						damageDieMultiplier = 1f;
					}
				}
				if (!secureSuccess & dcAttack & (multiTargetAssets.Count != 0))
				{
					MultiDCAttackData multiDCAttackData2 = new MultiDCAttackData
					{
						mVcitim = victim,
						mHalfDamage = halfDamage,
						mReactionHalve = reactionHalve
					};
					multiDCAttackDataList.Add(multiDCAttackData2);
					if (multiTargetAssets.Count != MultitargetAssetsIndex)
					{
						stateMachineState = StateMachineState.idle;
						victim.SetGlow(false, Color.red);
						RollCleanup(dm, ref stepDelay);
						StartSequencePre(multiAttackType, multiRoll, instigator.CreatureId, null, null);
					}
				}
				stepDelay = 1f;
				break;
			case StateMachineState.attackDamageDieCreate:
				try
				{
					if (tmp != null)
					{
						lastRollRequest = tmp;
						if (rollingSystem == RollMode.automaticDice && tmp.roll.ToUpper().Contains("D"))
						{
							if (int.Parse(tmp.roll.Substring(0, tmp.roll.ToUpper().IndexOf("D"))) > 3)
							{
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)"RuleSet 5E Plugin: Adjusting Dolly And Camera For Large Dice Count");
								}
								dolly.transform.position = new Vector3(-100f, 4f, -3f);
							}
							else
							{
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)"RuleSet 5E Plugin: Adjusting Dolly And Camera For Small Dice Count");
								}
								dolly.transform.position = new Vector3(-100f, 2f, -1.5f);
							}
						}
						stateMachineState = StateMachineState.attackDamageDieWaitCreate;
						int posIni = 0;
						while (tmp.roll.Substring(posIni, tmp.roll.Length - posIni).ToUpper().Contains("D"))
						{
							int Pos = posIni + tmp.roll.Substring(posIni, tmp.roll.Length - posIni).ToUpper().IndexOf("D");
							int sPos = Pos;
							while ("0123456789".Contains(tmp.roll.Substring(sPos - 1, 1)))
							{
								sPos--;
								if (sPos == 0)
								{
									break;
								}
							}
							if (sPos > 0)
							{
								tmp.roll = tmp.roll.Substring(0, sPos) + (float)int.Parse(tmp.roll.Substring(sPos, Pos - sPos)) * damageDieMultiplier + tmp.roll.Substring(Pos, tmp.roll.Length - Pos);
							}
							else
							{
								tmp.roll = (float)int.Parse(tmp.roll.Substring(sPos, Pos - sPos)) * damageDieMultiplier + tmp.roll.Substring(Pos, tmp.roll.Length - Pos);
							}
							posIni = posIni + tmp.roll.Substring(posIni, tmp.roll.Length - posIni).ToUpper().IndexOf("D") + 1;
						}
						if (useDamageBonusDie & firstWithDamageBonus & (tmp.roll != "0"))
						{
							RollCreate(dt, "talespire://dice/" + SafeForProtocolName(tmp.name) + ":" + tmp.roll + ("+-".Contains(amountDamageBonusDie.Substring(0, 1)) ? amountDamageBonusDie : ("+" + amountDamageBonusDie)), ref stepDelay);
							firstWithDamageBonus = false;
						}
						else
						{
							RollCreate(dt, "talespire://dice/" + SafeForProtocolName(tmp.name) + ":" + tmp.roll, ref stepDelay);
						}
					}
					else
					{
						stateMachineState = StateMachineState.attackDamageDieDamageReport;
					}
				}
				catch (Exception ex)
				{
					Exception e = ex;
					stateMachineState = StateMachineState.attackRollCleanup;
					Debug.LogWarning((object)("RuleSet 5E Plugin:!Critical error:[ " + e.Message + " ]!"));
				}
				break;
			case StateMachineState.attackDamageDieRollExecute:
				stateMachineState = StateMachineState.attackDamageDieWaitRoll;
				dt.SpawnAt(Vector3.zero, Vector3.zero);
				RollExecute(dm, ref stepDelay);
				if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
				{
					((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
				}
				break;
			case StateMachineState.attackDamageDieRollReport:
				RollId.TryParse(lastRollId.ToString(), ref idLastroll);
				dm.ClearDiceRoll(idLastroll);
				stateMachineState = StateMachineState.attackDamageDieCreate;
				if ((int)lastResult["Total"] < 0)
				{
					lastResult["Total"] = 0;
				}
				if (int.Parse(lastResult["Total"].ToString()) == 0)
				{
					instigator.SpeakEx(lastRollRequest.name + ":\r\nNo damage");
					damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
				}
				else if (lastRollRequest.roll != "")
				{
					instigator.SpeakEx(lastRollRequest.name + ":\r\n" + lastResult["Total"]?.ToString() + " " + lastRollRequest.type);
					if (useDamageBonusDie & (damages.Count == 0))
					{
						damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
					}
					else
					{
						damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
					}
				}
				else
				{
					instigator.SpeakEx(lastRollRequest.name + ":\r\n" + lastRollRequest.type);
					damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
				}
				stepDelay = 1f;
				tmp = tmp.link;
				break;
			case StateMachineState.attackDamageDieDamageReport:
			{
				stateMachineState = StateMachineState.attackDamageDieDamageTake;
				int total = 0;
				string info = "";
				foreach (Damage dmg4 in damages)
				{
					total += dmg4.total;
					if (dmg4.roll != "0")
					{
						info = info + dmg4.total + " " + dmg4.type + " (" + dmg4.name + ") " + dmg4.roll + " = " + dmg4.expansion + "\r\n";
					}
				}
				string players;
				string owner;
				string gm;
				if (total == 0)
				{
					players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>No damage <size=16>";
					owner = players + "\r\n" + info;
					gm = owner;
					chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
					stateMachineState = StateMachineState.attackRollCleanup;
					break;
				}
				if (damages.Count > 1)
				{
					yield return (object)new WaitForSeconds(0.5f * processSpeed);
					instigator.SpeakEx("Total Damage: " + total);
				}
				players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>Attack damage: " + total + "<size=16>";
				owner = players + "\r\n" + info;
				gm = owner;
				chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				break;
			}
			case StateMachineState.attackDamageDieDamageTake:
				stateMachineState = StateMachineState.attackRollCleanup;
				if (secureSuccess || !dcAttack || multiTargetAssets.Count == 0)
				{
					MultiDCAttackData multiDCAttackData = new MultiDCAttackData
					{
						mVcitim = victim,
						mHalfDamage = halfDamage,
						mReactionHalve = reactionHalve
					};
					multiDCAttackDataList.Add(multiDCAttackData);
				}
				foreach (MultiDCAttackData tempmultiDcattackData in multiDCAttackDataList)
				{
					victim = tempmultiDcattackData.mVcitim;
					halfDamage = tempmultiDcattackData.mHalfDamage;
					reactionHalve = tempmultiDcattackData.mReactionHalve;
					bool fullDamage = true;
					int adjustedDamage = 0;
					string damageList = "";
					string damageListVictim = "";
					foreach (Damage dmg3 in damages)
					{
						int tempTotal = dmg3.total;
						string tempType = dmg3.type;
						string tempExpansion = dmg3.expansion;
						if (halfDamage)
						{
							tempTotal /= 2;
							tempExpansion += " (Miss: Half Damage)";
						}
						if (reactionHalve)
						{
							tempTotal /= 2;
							fullDamage = false;
						}
						if (characters.ContainsKey(Utility.GetCharacterName(victim)))
						{
							foreach (string immunity in characters[Utility.GetCharacterName(victim)].immunity)
							{
								if (tempType == immunity)
								{
									tempTotal = 0;
									tempType += ":Immunity";
									fullDamage = false;
								}
							}
							foreach (string resisitance in characters[Utility.GetCharacterName(victim)].resistance)
							{
								if (tempType == resisitance)
								{
									tempTotal /= 2;
									tempType += ":Resistance";
									fullDamage = false;
								}
							}
							foreach (string vulnerability in characters[Utility.GetCharacterName(victim)].vulnerability)
							{
								if (tempType == vulnerability)
								{
									tempTotal *= 2;
									tempType += ":Vulnerability";
									fullDamage = true;
								}
							}
						}
						adjustedDamage += tempTotal;
						if (reactionHalve)
						{
							tempType += " [Halve]";
						}
						damageList = damageList + tempTotal + " " + tempType + " (" + dmg3.name + ") " + dmg3.roll + " = " + tempExpansion + "\r\n";
						damageListVictim = damageListVictim + tempTotal + " " + tempType + " (" + dmg3.name + ") \r\n";
					}
					reactionHalve = false;
					int adjustHPBonus = adjustedDamage;
					pauseRender = true;
					CreatureGuid creatureId = victim.CreatureId;
					string json = AssetDataPlugin.ReadInfo(((object)(CreatureGuid)(ref creatureId)).ToString(), "org.lordashes.plugins.ruleset5e.BonusData");
					IdBonus idbonus = new IdBonus();
					if (json != null)
					{
						idbonus = JsonConvert.DeserializeObject<IdBonus>(json);
					}
					if (idbonus._amountHPBonus != "")
					{
						adjustHPBonus = Math.Max(adjustHPBonus - int.Parse(idbonus._amountHPBonus), 0);
						string returnHPBonus = Math.Max(int.Parse(idbonus._amountHPBonus) - adjustedDamage, 0).ToString();
						idbonus._amountHPBonus = returnHPBonus.ToString();
						creatureId = victim.CreatureId;
						AssetDataPlugin.SetInfo(((object)(CreatureGuid)(ref creatureId)).ToString(), "org.lordashes.plugins.ruleset5e.BonusData", (object)idbonus, false);
					}
					pauseRender = false;
					int hp = Math.Max((int)(victim.Hp.Value - (float)adjustHPBonus), 0);
					int hpMax = (int)victim.Hp.Max;
					CreatureManager.SetCreatureStatByIndex(victim.CreatureId, new CreatureStat((float)hp, (float)hpMax), -1);
					damageList = "<size=24>Damage: " + adjustedDamage + "<size=16>\r\n" + damageList;
					string players;
					string gm;
					string owner;
					if (adjustedDamage == 0 && fullDamage)
					{
						victim.SpeakEx("Your attempts are futile!");
						_ = "<size=16>\r\n" + damageList;
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Takes no damage<size=4>\r\n";
						owner = players + "<size=16>";
						gm = players + "<size=16>";
					}
					else if (!fullDamage)
					{
						if (hp > 0)
						{
							victim.SpeakEx("I resist your efforts!");
						}
						else
						{
							victim.SpeakEx("I resist your efforts\r\nbut I am slain!");
							if (deadAnimation.ToUpper() != "REMOVE")
							{
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)("RuleSet 5E Plugin: Playing Death Animation '" + deadAnimation + "'"));
								}
								victim.StartTargetEmote(instigator, deadAnimation);
							}
							else
							{
								yield return (object)new WaitForSeconds(1f);
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)"RuleSet 5E Plugin: Requesting Mini Remove");
								}
								victim.RequestDelete();
							}
						}
						players = ((adjustedDamage != 0) ? ("[" + Utility.GetCharacterName(victim) + "]<size=28>Takes some damage<size=4>\r\n") : ("[" + Utility.GetCharacterName(victim) + "]<size=28>Takes no damage<size=4>\r\n"));
						owner = players + "<size=16>" + damageListVictim;
						gm = players + "<size=16>" + damageList;
					}
					else
					{
						if (hp > 0)
						{
							victim.SpeakEx("Ouch!");
						}
						else
						{
							victim.SpeakEx("I am slain!");
							if (deadAnimation.ToUpper() != "REMOVE")
							{
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)("RuleSet 5E Plugin: Playing Death Animation '" + deadAnimation + "'"));
								}
								victim.StartTargetEmote(instigator, deadAnimation);
							}
							else
							{
								yield return (object)new WaitForSeconds(1f);
								if (diagnostics >= DiagnosticMode.ultra)
								{
									Debug.Log((object)"RuleSet 5E Plugin: Requesting Mini Remove");
								}
								victim.RequestDelete();
							}
						}
						players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Takes the damage<size=4>\r\n";
						owner = players + "<size=16>" + damageListVictim;
						gm = players + "<size=16>" + damageList;
					}
					gm = gm + "\r\nRemaining HP: " + hp + " of " + hpMax;
					owner = owner + "\r\nRemaining HP: " + hp + " of " + hpMax;
					if (adjustHPBonus != adjustedDamage)
					{
						gm = gm + " (" + (adjustedDamage - adjustHPBonus) + " temp. HP less)";
						owner = owner + " (" + (adjustedDamage - adjustHPBonus) + " temp. HP less)";
					}
					CreatureManager.SetCreatureStatByIndex(victim.CreatureId, new CreatureStat((float)hp, (float)hpMax), -1);
					chatManager.SendChatMessageEx(players, owner, gm, victim.CreatureId, LocalClient.Id.Value);
					if (halfDamage)
					{
						halfDamage = false;
					}
				}
				break;
			case StateMachineState.attackRollCleanup:
				stateMachineState = StateMachineState.idle;
				RollCleanup(dm, ref stepDelay);
				multiDCAttackDataList.Clear();
				if ((Object)(object)victim != (Object)null)
				{
					victim.SetGlow(false, Color.red);
				}
				if (multiTargetAssets.Count != 0)
				{
					StartSequencePre(multiAttackType, multiRoll, instigator.CreatureId, null, null);
				}
				oppositeRoll = false;
				break;
			case StateMachineState.skillRollSetup:
				stateMachineState = StateMachineState.skillRollDieCreate;
				RollSetup(dm, ref stepDelay);
				if (rollingSystem == RollMode.automaticDice)
				{
					dolly.transform.position = new Vector3(-100f, 2f, -1.5f);
				}
				damageDieMultiplier = 1f;
				break;
			case StateMachineState.skillRollDieCreate:
				stateMachineState = StateMachineState.skillRollDieWaitCreate;
				RollCreate(dt, "talespire://dice/" + SafeForProtocolName(lastRollRequest.name) + ":" + lastRollRequest.roll, ref stepDelay);
				if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
				{
					((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
				}
				break;
			case StateMachineState.skillRollDieRollExecute:
				stateMachineState = StateMachineState.skillRollDieWaitRoll;
				RollExecute(dm, ref stepDelay);
				break;
			case StateMachineState.skillBonusRollDieCreate:
				stateMachineState = StateMachineState.skillRollDieRollReport;
				if (useSkillBonusDie & (amountSkillBonusDie != ""))
				{
					stateMachineState = StateMachineState.skillBonusRollDieWaitCreate;
					hold = lastResult;
					RollId.TryParse(lastRollId.ToString(), ref idLastroll);
					dm.ClearDiceRoll(idLastroll);
					RollCreate(dt, "talespire://dice/" + SafeForProtocolName("Bonus Die") + ":" + amountSkillBonusDie, ref stepDelay);
					if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
					{
						((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
					}
				}
				break;
			case StateMachineState.skillBonusRollDieRollExecute:
				stateMachineState = StateMachineState.skillBonusRollDieWaitRoll;
				RollExecute(dm, ref stepDelay);
				break;
			case StateMachineState.skillRollDieRollReport:
			{
				stateMachineState = StateMachineState.skillRollCleanup;
				RollId.TryParse(lastRollId.ToString(), ref idLastroll3);
				dm.ClearDiceRoll(idLastroll3);
				if (useSkillBonusDie & (amountSkillBonusDie != ""))
				{
					hold["Total"] = (int)hold["Total"] + (int)lastResult["Total"];
					if ("-".Contains(lastResult["Expanded"].ToString().Substring(0, 1)))
					{
						hold["Expanded"] = hold["Expanded"]?.ToString() + lastResult["Expanded"].ToString();
					}
					else
					{
						hold["Expanded"] = hold["Expanded"]?.ToString() + "+" + lastResult["Expanded"].ToString();
					}
					hold["Roll"] = hold["Roll"]?.ToString() + ("+-".Contains(lastResult["Roll"].ToString().Substring(0, 1)) ? lastResult["Roll"].ToString() : ("+" + lastResult["Roll"].ToString()));
					lastResult = hold;
				}
				string players = ((!(lastRollRequest.roll != "")) ? ("[" + Utility.GetCharacterName(instigator) + "]<size=28>" + lastRollRequest.name + "\r\n") : ("[" + Utility.GetCharacterName(instigator) + "]<size=28>" + lastRollRequest.name + ": " + lastResult["Total"]?.ToString() + "\r\n"));
				string owner = players;
				owner = owner + "<size=16>" + lastResult["Roll"]?.ToString() + " = ";
				owner = owner + "<size=16>" + lastResult["Expanded"];
				if (lastRollRequest.roll != "")
				{
					if ((bool)lastResult["IsMax"])
					{
						owner += " (Max)";
					}
					else if ((bool)lastResult["IsMin"])
					{
						owner += " (Min)";
					}
				}
				string gm = owner;
				if (lastRollRequest.type.ToUpper().Contains("SECRET"))
				{
					players = null;
				}
				else if (lastRollRequest.type.ToUpper().Contains("PRIVATE"))
				{
					instigator.SpeakEx(lastRollRequest.name);
					players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>" + lastRollRequest.name + "\r\n";
				}
				else
				{
					instigator.SpeakEx(lastRollRequest.name + " " + lastResult["Total"]);
				}
				if (lastRollRequest.type.ToUpper().Contains("GM"))
				{
					players = null;
					owner = null;
				}
				chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				stepDelay = 1f;
				break;
			}
			case StateMachineState.skillRollCleanup:
				stateMachineState = StateMachineState.skillRollMore;
				RollCleanup(dm, ref stepDelay);
				break;
			case StateMachineState.skillRollMore:
				stateMachineState = StateMachineState.idle;
				victim.SetGlow(false, Color.green);
				if (oppositeRoll)
				{
					Roll tempSendRoll = new Roll(oppositeRollvalue);
					tempSendRoll.roll = lastResult["Total"].ToString() + "/" + tempSendRoll.roll.Split(new char[1] { '/' })[1] + "/" + tempSendRoll.roll.Split(new char[1] { '/' })[2];
					if (multiTargetAssets.Count > 0)
					{
						multiRoll = tempSendRoll;
					}
					AttackDC(tempSendRoll, instigator.CreatureId, null, null);
				}
				else if (lastRollRequest.link != null)
				{
					lastRollRequest = lastRollRequest.link;
					stateMachineState = StateMachineState.skillRollSetup;
				}
				break;
			case StateMachineState.healingRollStart:
				RollSetup(dm, ref stepDelay);
				if (rollingSystem == RollMode.automaticDice)
				{
					dolly.transform.position = new Vector3(-100f, 2f, -1.5f);
				}
				damageDieMultiplier = 1f;
				tmp = lastRollRequest;
				firstWithDamageBonus = true;
				damages.Clear();
				stepDelay = 1f;
				stateMachineState = StateMachineState.healingRollDieCreate;
				break;
			case StateMachineState.healingRollDieCreate:
				if (tmp != null)
				{
					lastRollRequest = tmp;
					if (rollingSystem == RollMode.automaticDice && tmp.roll.ToUpper().Contains("D"))
					{
						if (int.Parse(tmp.roll.Substring(0, tmp.roll.ToUpper().IndexOf("D"))) > 3)
						{
							if (diagnostics >= DiagnosticMode.ultra)
							{
								Debug.Log((object)"RuleSet 5E Plugin: Adjusting Dolly And Camera For Large Dice Count");
							}
							dolly.transform.position = new Vector3(-100f, 4f, -3f);
						}
						else
						{
							if (diagnostics >= DiagnosticMode.ultra)
							{
								Debug.Log((object)"RuleSet 5E Plugin: Adjusting Dolly And Camera For Small Dice Count");
							}
							dolly.transform.position = new Vector3(-100f, 2f, -1.5f);
						}
					}
					stateMachineState = StateMachineState.healingRollDieWaitCreate;
					if (useDamageBonusDie & firstWithDamageBonus)
					{
						if (diagnostics >= DiagnosticMode.ultra)
						{
							Debug.Log((object)"RuleSet 5E Plugin: First Heal Link");
						}
						RollCreate(dt, "talespire://dice/" + SafeForProtocolName(tmp.name) + ":" + tmp.roll + ("+-".Contains(amountDamageBonusDie.Substring(0, 1)) ? amountDamageBonusDie : ("+" + amountDamageBonusDie)), ref stepDelay);
						firstWithDamageBonus = false;
					}
					else
					{
						RollCreate(dt, "talespire://dice/" + SafeForProtocolName(tmp.name) + ":" + tmp.roll, ref stepDelay);
					}
				}
				else
				{
					stateMachineState = StateMachineState.healingRollDieValueReport;
				}
				break;
			case StateMachineState.healingRollDieRollExecute:
				stateMachineState = StateMachineState.healingRollDieWaitRoll;
				dt.SpawnAt(Vector3.zero, Vector3.zero);
				RollExecute(dm, ref stepDelay);
				if (rollingSystem.ToString().ToUpper().Contains("MANUAL"))
				{
					((MonoBehaviour)this).StartCoroutine(DisplayMessage("Please Roll Provided Die Or Dice To Continue...", 3f));
				}
				break;
			case StateMachineState.healingRollDieRollReport:
				RollId.TryParse(lastRollId.ToString(), ref idLastroll);
				dm.ClearDiceRoll(idLastroll);
				stateMachineState = StateMachineState.healingRollDieCreate;
				if (lastRollRequest.roll != "")
				{
					instigator.SpeakEx(lastRollRequest.name + ":\r\n" + lastResult["Total"]);
					if (useDamageBonusDie & (damages.Count == 0))
					{
						damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastRollRequest.roll + ("+-".Contains(amountDamageBonusDie.Substring(0, 1)) ? amountDamageBonusDie : ("+" + amountDamageBonusDie)), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
					}
					else
					{
						damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
					}
				}
				else
				{
					instigator.SpeakEx(lastRollRequest.name + ":\r\n" + lastRollRequest.type);
					damages.Add(new Damage(lastRollRequest.name, lastRollRequest.type, lastResult["Roll"].ToString(), lastResult["Expanded"].ToString(), (int)lastResult["Total"]));
				}
				stepDelay = 1f;
				tmp = tmp.link;
				break;
			case StateMachineState.healingRollDieValueReport:
			{
				stateMachineState = StateMachineState.healingRollDieValueTake;
				int total = 0;
				string info = "";
				foreach (Damage dmg2 in damages)
				{
					total += dmg2.total;
					info = info + dmg2.total + " " + dmg2.type + " (" + dmg2.name + ") " + dmg2.roll + " = " + dmg2.expansion + "\r\n";
				}
				string players = "[" + Utility.GetCharacterName(instigator) + "]<size=28>Heal " + Utility.GetCharacterName(victim) + " " + total + " hp<size=16>";
				string owner = players + "\r\n" + info;
				string gm = owner;
				if (damages.Count > 1)
				{
					instigator.SpeakEx("Total Healing " + total);
				}
				chatManager.SendChatMessageEx(players, owner, gm, instigator.CreatureId, LocalClient.Id.Value);
				break;
			}
			case StateMachineState.healingRollDieValueTake:
			{
				stateMachineState = StateMachineState.attackRollCleanup;
				int adjustedHealing = 0;
				string healingList = "";
				if (characters.ContainsKey(Utility.GetCharacterName(victim)))
				{
					foreach (Damage dmg in damages)
					{
						adjustedHealing += dmg.total;
						healingList = healingList + dmg.total + " " + dmg.type + " (" + dmg.name + ") " + dmg.roll + " = " + dmg.expansion + "\r\n";
					}
				}
				int hp = Math.Min((int)(victim.Hp.Value + (float)adjustedHealing), (int)victim.Hp.Max);
				int hpMax = (int)victim.Hp.Max;
				CreatureManager.SetCreatureStatByIndex(victim.CreatureId, new CreatureStat((float)hp, (float)hpMax), -1);
				_ = "<size=28>Healing: " + adjustedHealing + "<size=16>\r\n" + healingList;
				string players = "[" + Utility.GetCharacterName(victim) + "]<size=28>Regain " + adjustedHealing + " hp<size=16>";
				string owner = players + "\r\nCurrent HP: " + hp + " of " + hpMax;
				string gm = players;
				SpeakExtensions.SendChatMessageEx(gmMessage: gm + "\r\nCurrent HP: " + hp + " of " + hpMax, chatManager: chatManager, playersMessage: null, ownerMessage: owner, subject: victim.CreatureId, speaker: LocalClient.Id.Value);
				break;
			}
			case StateMachineState.healingRollCleanup:
				stateMachineState = StateMachineState.idle;
				victim.SetGlow(false, Color.green);
				RollCleanup(dm, ref stepDelay);
				if (multiTargetAssets.Count != 0)
				{
					StartSequencePre(multiAttackType, multiRoll, instigator.CreatureId, null, null);
				}
				break;
			}
			idLastroll = default(RollId);
			idLastroll3 = default(RollId);
			yield return (object)new WaitForSeconds(stepDelay * processSpeed);
		}
	}

	public void CustomBColor(CreatureBoardAsset sujeto, int hp, int hpMax)
	{
		//IL_014d: Unknown result type (might be due to invalid IL or missing references)
		//IL_015f: Unknown result type (might be due to invalid IL or missing references)
		//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
		//IL_00de: Unknown result type (might be due to invalid IL or missing references)
		//IL_019b: Unknown result type (might be due to invalid IL or missing references)
		//IL_01ad: Unknown result type (might be due to invalid IL or missing references)
		//IL_0179: Unknown result type (might be due to invalid IL or missing references)
		//IL_018b: Unknown result type (might be due to invalid IL or missing references)
		//IL_011a: Unknown result type (might be due to invalid IL or missing references)
		//IL_012c: Unknown result type (might be due to invalid IL or missing references)
		//IL_00f8: Unknown result type (might be due to invalid IL or missing references)
		//IL_010a: Unknown result type (might be due to invalid IL or missing references)
		try
		{
			if (!changeBaseColors || !(changeBaseColors & characters.ContainsKey(Utility.GetCharacterName(sujeto))))
			{
				return;
			}
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)("RuleSet 5E Plugin: CustomBColor: " + sujeto.Name.ToString()));
			}
			if (!((npcColors.Length == 3) & (pcColors.Length == 3)) || !characters.ContainsKey(Utility.GetCharacterName(sujeto.Name)))
			{
				return;
			}
			if (characters[Utility.GetCharacterName(sujeto)].NPC)
			{
				if (hp <= hpMax / 2)
				{
					CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(npcColors[2])));
				}
				else if (hp < hpMax)
				{
					CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(npcColors[1])));
				}
				else
				{
					CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(npcColors[0])));
				}
			}
			else if (hp <= hpMax / 2)
			{
				CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(pcColors[2])));
			}
			else if (hp < hpMax)
			{
				CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(pcColors[1])));
			}
			else
			{
				CreatureManager.SetBaseColorIndex(sujeto.CreatureId, new CreatureColorIndex(ushort.Parse(pcColors[0])));
			}
		}
		catch (Exception ex)
		{
			Debug.LogWarning((object)("RuleSet 5E Plugin:!Error CustomBColor: " + ex.ToString()));
		}
	}

	public void RollSetup(DiceManager dm, ref float stepDelay)
	{
		//IL_003b: Unknown result type (might be due to invalid IL or missing references)
		//IL_004a: Unknown result type (might be due to invalid IL or missing references)
		//IL_004f: Unknown result type (might be due to invalid IL or missing references)
		//IL_0052: Unknown result type (might be due to invalid IL or missing references)
		//IL_0083: Unknown result type (might be due to invalid IL or missing references)
		//IL_008d: Expected O, but got Unknown
		//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
		//IL_00dc: Unknown result type (might be due to invalid IL or missing references)
		//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
		switch (rollingSystem)
		{
		case RollMode.manual:
			break;
		case RollMode.manual_side:
		{
			Utility.DisableProcessing(setting: true);
			Vector3 position = ((Component)Camera.main).transform.position;
			Quaternion rotation = ((Component)Camera.main).transform.rotation;
			saveCamera = new Existence(position, ((Quaternion)(ref rotation)).eulerAngles);
			break;
		}
		case RollMode.automaticDice:
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)"RuleSet 5E Plugin: Creating Dolly And Camera");
			}
			dolly = new GameObject();
			((Object)dolly).name = "dolly";
			camera = dolly.AddComponent<Camera>();
			dolly.transform.position = diceSideExistance.position;
			((Component)camera).transform.rotation = Quaternion.Euler(diceSideExistance.rotation);
			camera.targetTexture = auxCameraTexture;
			stepDelay = 0.1f;
			break;
		case RollMode.automaticGenerator:
			stepDelay = 0f;
			break;
		}
	}

	public void RollCreate(UIDiceTray dt, string old_formula, ref float stepDelay)
	{
		//IL_0304: Unknown result type (might be due to invalid IL or missing references)
		//IL_031f: Unknown result type (might be due to invalid IL or missing references)
		//IL_033a: Unknown result type (might be due to invalid IL or missing references)
		//IL_034a: Unknown result type (might be due to invalid IL or missing references)
		//IL_034f: Unknown result type (might be due to invalid IL or missing references)
		//IL_035b: Unknown result type (might be due to invalid IL or missing references)
		//IL_036e: Unknown result type (might be due to invalid IL or missing references)
		//IL_037e: Unknown result type (might be due to invalid IL or missing references)
		//IL_039c: Unknown result type (might be due to invalid IL or missing references)
		//IL_03ac: Unknown result type (might be due to invalid IL or missing references)
		//IL_03ae: Unknown result type (might be due to invalid IL or missing references)
		//IL_03dd: Unknown result type (might be due to invalid IL or missing references)
		//IL_03c8: Unknown result type (might be due to invalid IL or missing references)
		//IL_03d3: Unknown result type (might be due to invalid IL or missing references)
		if (diagnostics >= DiagnosticMode.ultra)
		{
			Debug.Log((object)("formula before " + old_formula));
		}
		old_formula = old_formula.Replace("talespire://dice/", "talespire://dice/XRuleset5e");
		string text = old_formula.Substring(0, old_formula.LastIndexOf(":") + 1);
		int num = 0;
		old_formula = old_formula.Replace("+", "|+").Replace("-", "|-");
		string text2 = string.Empty;
		string[] array = old_formula.Substring(old_formula.LastIndexOf(":") + 1).Replace(" ", "").Split(new char[1] { '|' });
		foreach (string text3 in array)
		{
			if (text3.ToUpper().Contains("D"))
			{
				if (text3.Substring(0, 1) == "-")
				{
					text2 += text3;
				}
				else
				{
					text = ((!((rollingSystem != RollMode.automaticGenerator) & text3.ToUpper().Contains("1D20") & ((dcAttack & (victim_totalAdv | victim_totalDis)) | (!dcAttack & (totalAdv | totalDis))))) ? (text + text3) : (text + text3.ToUpper().Replace("1D20", "2D20")));
				}
			}
			else if (text3 != "")
			{
				num = ("-".Contains(text3.Substring(0, 1)) ? (num - int.Parse(text3.Substring(1))) : (num + int.Parse(text3.Replace("+", ""))));
			}
		}
		text = ((!(text == old_formula.Substring(0, old_formula.LastIndexOf(":") + 1))) ? (text + ((num < 0) ? num.ToString() : ("+" + num)) + text2) : (text + text2 + ((num < 0) ? num.ToString() : ("+" + num))));
		if (diagnostics >= DiagnosticMode.ultra)
		{
			Debug.Log((object)("formula after " + text));
		}
		RollMode rollMode = rollingSystem;
		if (!text.ToUpper().Substring(text.LastIndexOf(":") + 1).Contains("D"))
		{
			if (diagnostics >= DiagnosticMode.ultra)
			{
				Debug.Log((object)("Roll Create Diversion Due To Lack Of Dice In Formula: " + text.ToUpper()));
			}
			rollMode = RollMode.automaticGenerator;
		}
		switch (rollMode)
		{
		case RollMode.manual:
			dt.SpawnAt(new Vector3(((Component)instigator).transform.position.x + 1f, ((Component)instigator).transform.position.y + 2f, ((Component)instigator).transform.position.z + 1f), Vector3.zero);
			LocalConnectionManager.ProcessTaleSpireUrl(text);
			break;
		case RollMode.manual_side:
		case RollMode.automaticDice:
		{
			Vector3 val = default(Vector3);
			((Vector3)(ref val))..ctor(diceSideExistance.position.x, diceSideExistance.position.y + (float)((rollingSystem != RollMode.automaticDice) ? 1 : 5), diceSideExistance.position.z);
			dt.SpawnAt(val, Vector3.zero);
			if (rollingSystem == RollMode.manual_side)
			{
				CameraController.MoveToPosition(val, false, false, false);
				CameraController.LookAtTarget(val);
			}
			LocalConnectionManager.ProcessTaleSpireUrl(text);
			break;
		}
		case RollMode.automaticGenerator:
			text = text.Substring("talespire://dice/XRuleset5e".Length);
			loadedRollRequest = new Roll
			{
				name = text.Substring(0, text.LastIndexOf(":")),
				roll = text.Substring(text.LastIndexOf(":") + 1)
			};
			NewDiceSet(-2L);
			break;
		}
	}

	public void RollExecute(DiceManager dm, ref float stepDelay)
	{
		//IL_007e: Unknown result type (might be due to invalid IL or missing references)
		//IL_008e: Unknown result type (might be due to invalid IL or missing references)
		//IL_00ac: Unknown result type (might b