优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

32046 行
1.6 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Action`2<System.Object,System.Object>
struct Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>>
struct CacheDict_2_t3592A9BE3B1E812BCE8A13D901156E74C707DBB7;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo>
struct CacheDict_2_tB695739D50653F4D4C3DA03BCF07CC868196FB15;
// System.Collections.Concurrent.ConcurrentDictionary`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>
struct ConcurrentDictionary_2_t72691F75B6C45685845A39BBFE01D1B70992B54E;
// System.Collections.Concurrent.ConcurrentDictionary`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>
struct ConcurrentDictionary_2_t0A6BCCBCD2F7139BB7805897FF13E3E6AF27F6C3;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo>
struct ConditionalWeakTable_2_t0F3FDA57EE333DF8B8C1F3FB944E4E19C5DDCFC7;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>
struct Dictionary_2_t2A9A7F3ECFC3483F89253F3C4BB5BE98A37F6EF3;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
// System.Collections.Generic.Dictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>
struct Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2;
// System.Collections.Generic.Dictionary`2<System.Type,System.Object>
struct Dictionary_2_t954AEC357FE7190582B8255D4ACEF81F5E94A6A5;
// System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>
struct Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5;
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1;
// System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>
struct Func_2_tE378E613DF59ED24E2B05848263C326986F5BB56;
// System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>
struct Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C;
// System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>
struct Func_2_t890667DD511E31012095396A8BF9C888E2284437;
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>
struct Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C;
// System.Func`2<System.Runtime.Serialization.EnumMemberAttribute,System.String>
struct Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08;
// System.Func`2<System.Reflection.FieldInfo,System.Boolean>
struct Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630;
// System.Func`2<System.Reflection.MemberInfo,System.Boolean>
struct Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D;
// System.Func`2<System.Reflection.MemberInfo,System.String>
struct Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335;
// System.Func`2<System.Reflection.MethodInfo,System.Boolean>
struct Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
// System.Func`2<System.Object,System.Object>
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
// System.Func`2<System.Reflection.ParameterInfo,System.Type>
struct Func_2_t083860B929985EC8DF79C99B5157C38632F84196;
// System.Func`2<System.Reflection.PropertyInfo,System.Boolean>
struct Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74;
// System.Func`2<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo,System.Boolean>
struct Func_2_t43CC133C289457C636A18BA4D471FC2B56544421;
// Newtonsoft.Json.IArrayPool`1<System.Char>
struct IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6;
// System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>
struct IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC;
// System.Collections.Generic.IEnumerable`1<System.Linq.IGrouping`2<System.Object,System.Object>>
struct IEnumerable_1_t6D567E0DEED199BD9CE1CD6D0CD7AA16F2A36274;
// System.Collections.Generic.IEnumerable`1<System.Linq.IGrouping`2<System.String,System.Reflection.MemberInfo>>
struct IEnumerable_1_tB115F5F790744426D29118098864CADBAFD6E7C9;
// System.Collections.Generic.IEnumerable`1<System.Attribute>
struct IEnumerable_1_tF5487DDC9BFE72D77C0A279762BD5851F02B4F03;
// System.Collections.Generic.IEnumerable`1<System.Char>
struct IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05;
// System.Collections.Generic.IEnumerable`1<System.Reflection.ConstructorInfo>
struct IEnumerable_1_t62CCC8C17677893BE99939DD1210D67697098FFC;
// System.Collections.Generic.IEnumerable`1<System.Runtime.Serialization.EnumMemberAttribute>
struct IEnumerable_1_t12FC555E5CFF3E3FB1900657DA9B62D9AE3AA060;
// System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo>
struct IEnumerable_1_tB708E9C2FA823B01C747E05E9A94F71093AAE6F1;
// System.Collections.Generic.IEnumerable`1<System.Int32>
struct IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2;
// System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>
struct IEnumerable_1_t9BFC4EA32B04B96A5BB13A056B7E299ADC431143;
// System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>
struct IEnumerable_1_tE0A67F3FB4C800B39F37C976E22371A7DF4DDB1C;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
// System.Collections.Generic.IEnumerable`1<System.Reflection.ParameterInfo>
struct IEnumerable_1_t8E50A30565DC033F3BDF1627DA5A9C930C1E0DB9;
// System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo>
struct IEnumerable_1_t4F5FCDEAC3CEC5489B3CEE5871FC5F9D22C281EE;
// System.Collections.Generic.IEnumerable`1<System.String>
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
// System.Collections.Generic.IEnumerable`1<System.Type>
struct IEnumerable_1_t6686595E4CB7AC210F0EF075F7B1DD4A21D3902B;
// System.Collections.Generic.IEnumerable`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>
struct IEnumerable_1_t8BB8DBC368DDF76EBAD63F319A22CBB204DD7F97;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t0C79004BFE79D9DBCE6C2250109D31D468A9A68E;
// System.Collections.Generic.IList`1<System.Int32>
struct IList_1_tFB8BE2ED9A601C1259EAB8D73D1B3E96EA321FA1;
// System.Collections.Generic.IList`1<System.Reflection.MemberInfo>
struct IList_1_t7A435ADE2CFF0B5E61FE0F18231D7FECE59814F0;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF;
// System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>
struct IList_1_tB15DAEB90BDCB6EC5FB36C426C9B01479C29D325;
// System.Collections.Generic.IList`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>
struct IList_1_t41B700AA42A1779B29D644B2E6DAC0CFEB517141;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Newtonsoft.Json.Utilities.ReflectionMember>
struct KeyCollection_tC1CFB404B6EFFA0BA33C98E5B1ED9785ED563E62;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>
struct KeyCollection_tD6AF16813F7D84241401374A39A2F8B5705C1EB2;
// System.Collections.Generic.List`1<System.Char>
struct List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<System.Int64>
struct List_1_tF9D88C946600C782EE786A252258C0AA97BD019A;
// System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition>
struct List_1_t53E7DEFF45EC8B1D5AE04D4FC6284E617F0D79CB;
// System.Collections.Generic.List`1<System.Reflection.MemberInfo>
struct List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.Reflection.PropertyInfo>
struct List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E;
// System.Collections.Generic.List`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>
struct List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>
struct MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270;
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901;
// System.Predicate`1<System.Object>
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED;
// System.Threading.Tasks.TaskFactory`1<System.Boolean>
struct TaskFactory_1_tFAEAC22A1E986463E6956C344A78A7C7197288E0;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3;
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17;
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>
struct ThreadSafeStore_2_tE8A4308D2D6297CCAAB09DEA5BE10886A8C1A6C1;
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>
struct ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2;
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>
struct ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Newtonsoft.Json.Utilities.ReflectionMember>
struct ValueCollection_tFD8ED2F783CF40FD378DF09D8E6EDB74202234F3;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>
struct ValueCollection_t2CE2F877DFF07E0C3BD525EA53A808D651F68FD2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Newtonsoft.Json.Utilities.ReflectionMember>[]
struct EntryU5BU5D_t554BCB12206FA7690CF387E40B583AC496870E40;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>[]
struct EntryU5BU5D_tAF1AF89B14D009C2A5A641A946C668297C4355D6;
// Newtonsoft.Json.JsonWriter/State[][]
struct StateU5BU5DU5BU5D_tA12046738DA5F6289ABA74ED1C079ED07EE202ED;
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
// System.Boolean[]
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Dynamic.DynamicMetaObject[]
struct DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.Int64[]
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364;
// System.Reflection.PropertyInfo[]
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// Newtonsoft.Json.Utilities.TypeInformation[]
struct TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339;
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// System.UInt64[]
struct UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299;
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo[]
struct ImmutableCollectionTypeInfoU5BU5D_t9317816DEBB98642322057EDEAA807FA393F4425;
// System.TimeZoneInfo/AdjustmentRule[]
struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA;
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Reflection.Assembly
struct Assembly_t;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// Newtonsoft.Json.Utilities.Base64Encoder
struct Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Dynamic.BindingRestrictions
struct BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Runtime.CompilerServices.CallSiteBinder
struct CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F;
// Newtonsoft.Json.Serialization.CamelCaseNamingStrategy
struct CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// System.Linq.Expressions.ConditionalExpression
struct ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913;
// System.Linq.Expressions.ConstantExpression
struct ConstantExpression_t4BE6B7DFD889CC0EA42B45C32BD511F2764E1547;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB;
// System.Threading.ContextCallback
struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Dynamic.DynamicMetaObject
struct DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// Newtonsoft.Json.Utilities.EnumInfo
struct EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571;
// System.Runtime.Serialization.EnumMemberAttribute
struct EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F;
// System.Exception
struct Exception_t;
// System.Linq.Expressions.Expression
struct Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785;
// System.Linq.Expressions.ExpressionVisitor
struct ExpressionVisitor_tD26583FF464068F23017BC372C81133A62C5A590;
// Newtonsoft.Json.Utilities.FSharpFunction
struct FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF;
// Newtonsoft.Json.Utilities.FSharpUtils
struct FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD;
// System.Reflection.FieldInfo
struct FieldInfo_t;
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
// System.Dynamic.GetMemberBinder
struct GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_t0680C7F905C553076B552D5A1A6E39E2F0F36AA2;
// System.IConvertible
struct IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Dynamic.IDynamicMetaObjectProvider
struct IDynamicMetaObjectProvider_t4593D4AE2D3360E67AF686D7D889F51FF9BEDC9D;
// System.Collections.IEnumerable
struct IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
// Newtonsoft.Json.IJsonLineInfo
struct IJsonLineInfo_t0D0AE8B876EA3C837134934E5A1A3DF9FB72A32C;
// System.Collections.IList
struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D;
// Newtonsoft.Json.Serialization.ISerializationBinder
struct ISerializationBinder_t3C8B850335FB40001C9201981439AE77B430031F;
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// Newtonsoft.Json.JsonException
struct JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD;
// Newtonsoft.Json.JsonReader
struct JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765;
// Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4;
// Newtonsoft.Json.JsonWriter
struct JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3;
// Newtonsoft.Json.JsonWriterException
struct JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA;
// System.Linq.Expressions.LabelTarget
struct LabelTarget_t8082D0D35E4D9BE77C683DCDF2AB10DA5C0EB9C5;
// Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory
struct LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0;
// Newtonsoft.Json.Serialization.NamingStrategy
struct NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50;
// Newtonsoft.Json.Utilities.NoThrowExpressionVisitor
struct NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A;
// Newtonsoft.Json.Utilities.NoThrowGetBinderMember
struct NoThrowGetBinderMember_t9AB4335A1986006E9CE9EA2F76B26037E412E90D;
// Newtonsoft.Json.Utilities.NoThrowSetBinderMember
struct NoThrowSetBinderMember_t2A08A7A6DC7581F640C7AECC9A15D4AC8F9197E2;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// Newtonsoft.Json.Utilities.ReflectionDelegateFactory
struct ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574;
// Newtonsoft.Json.Utilities.ReflectionMember
struct ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E;
// Newtonsoft.Json.Utilities.ReflectionObject
struct ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
// System.Dynamic.SetMemberBinder
struct SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F;
// System.Threading.Tasks.StackGuard
struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D;
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
// System.TimeZoneInfo
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8;
// System.Type
struct Type_t;
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C;
// System.Reflection.TypeFilter
struct TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA;
// Newtonsoft.Json.Utilities.TypeInformation
struct TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// System.Version
struct Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// Newtonsoft.Json.Utilities.AsyncUtils/<>c
struct U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653;
// Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0
struct U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3;
// Newtonsoft.Json.Utilities.EnumUtils/<>c
struct U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A;
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_tE0DE36700D110F4D267B26686541ABCF9588A6DD;
// Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0
struct U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1;
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c
struct U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F;
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0
struct U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C;
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0
struct U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0;
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo
struct ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685;
// Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0
struct U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC;
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0
struct U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905;
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1
struct U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1;
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2
struct U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937;
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass31_0
struct U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35;
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_0
struct U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185;
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_1
struct U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037;
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass45_0
struct U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540;
// System.TimeZoneInfo/CachedData
struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
IL2CPP_EXTERN_C RuntimeClass* Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Assembly_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeKind_t3AD6DA06BEF8955A740777163FFB481C19089BBC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t083860B929985EC8DF79C99B5157C38632F84196_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t43CC133C289457C636A18BA4D471FC2B56544421_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t890667DD511E31012095396A8BF9C888E2284437_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tACBF5A1656250800CE861707354491F0611F6624_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tAE3782A30E2C5880223F5DBCAB3CBC888034E16A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tC9B15468F509008C580ED71459A502B60CE0346B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tDECCB0903E13D406837BA6674FDAF7B6B1EDF44B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDynamicMetaObjectProvider_t4593D4AE2D3360E67AF686D7D889F51FF9BEDC9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t9BFC4EA32B04B96A5BB13A056B7E299ADC431143_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tB115F5F790744426D29118098864CADBAFD6E7C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t17A98E9C91AD59AC8DCA7D9C70E659E9F6583901_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t9DFF5CCD2F9C4E5CAEEB028E6189933EE4E77294_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tA9E92116BDDEB68A8527F08BF8D2B70B7A00CA95_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_1_tB15DAEB90BDCB6EC5FB36C426C9B01479C29D325_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISerializationBinder_t3C8B850335FB40001C9201981439AE77B430031F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonPosition_t7788656A280615072710710E8C15D23285850E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonToken_t00B2B3F98FB3E9A8DE72409901BED1C7F1670BD5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tF9D88C946600C782EE786A252258C0AA97BD019A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemberInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemberTypes_t26BAB0893BEC9328F2F64E8BACDA967C445632E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptor_tC36C76617F823DE4F887E1D17846077CE7B0C3D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____9E31F24F64765FCAA589F589324D17C9FCF6A06D_8_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____D40004AB0E92BF6C8DFE481B56BE3D04ABDA76EB_15_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____DD3AEFEADB1CD615F3017763F1568179FEE640B0_17_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____E92B39D8233061927D9ACDE54665E68E7535635A_19_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral01385C410406BC5C6E613A5C7CEFFAADC5A9E11D;
IL2CPP_EXTERN_C String_t* _stringLiteral03240CCFCA588F834F0D4346FC80A8CB5E79695D;
IL2CPP_EXTERN_C String_t* _stringLiteral0704E287A634839C36EEB4FAE5B1B02EF867D720;
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
IL2CPP_EXTERN_C String_t* _stringLiteral0970355F339FE6FF1C222547CF241398A1C378A9;
IL2CPP_EXTERN_C String_t* _stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5;
IL2CPP_EXTERN_C String_t* _stringLiteral1071603CBA2BD3C11874C92C7C0DB97BF5899046;
IL2CPP_EXTERN_C String_t* _stringLiteral136926B654432552F29A067979EE9E9D569C7895;
IL2CPP_EXTERN_C String_t* _stringLiteral148D879740EE71DEE70EA413F9D574F5B36E9578;
IL2CPP_EXTERN_C String_t* _stringLiteral15196F05B117690F3E12E56AA0C43803EA0D2A46;
IL2CPP_EXTERN_C String_t* _stringLiteral1706A972A45E7E0E7BC14717526F35BAE9546192;
IL2CPP_EXTERN_C String_t* _stringLiteral18758AA8E5FA243D1B2431D03A55ED42516F8AF3;
IL2CPP_EXTERN_C String_t* _stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60;
IL2CPP_EXTERN_C String_t* _stringLiteral191622F509097F2FCB595D5FC78BA99C9F397DDE;
IL2CPP_EXTERN_C String_t* _stringLiteral1B98E8F57C9C64CD195937A838BC03FCA6DF6A71;
IL2CPP_EXTERN_C String_t* _stringLiteral1F4D219C936F7DB413B4CEB44F4A08C41F37F504;
IL2CPP_EXTERN_C String_t* _stringLiteral22FE8CF0CFDCCDB13208BCC31E8BD10F478125DC;
IL2CPP_EXTERN_C String_t* _stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral2FA35785030417D7D0231C7D255A20E8C43DAFD6;
IL2CPP_EXTERN_C String_t* _stringLiteral31782CD9A6A47475536890B41BD5A172BFBA9D7C;
IL2CPP_EXTERN_C String_t* _stringLiteral31A818CB76EAE1A4A09297F7BFAD5D4AE41446DD;
IL2CPP_EXTERN_C String_t* _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018;
IL2CPP_EXTERN_C String_t* _stringLiteral3438D17A546896844C14420AF9F02B18607937D8;
IL2CPP_EXTERN_C String_t* _stringLiteral35DE67C929967618347FCE340E2E87102A932FEB;
IL2CPP_EXTERN_C String_t* _stringLiteral38D3180E9C0FF991B68A4FB4936D05239A551CBD;
IL2CPP_EXTERN_C String_t* _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0;
IL2CPP_EXTERN_C String_t* _stringLiteral414EEEFF5F961B9740DE01D5EC1AC2F0F745095E;
IL2CPP_EXTERN_C String_t* _stringLiteral42559C2140EDFAB50DB6AE7DCF62B93B4DA42968;
IL2CPP_EXTERN_C String_t* _stringLiteral430C3C837CDA74A5A4A5D54034073F1C15382393;
IL2CPP_EXTERN_C String_t* _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral47464D6F4499EB8E220AD741CB115980E89554E2;
IL2CPP_EXTERN_C String_t* _stringLiteral4784CA4E159D86F8767CCC55143536AF34801074;
IL2CPP_EXTERN_C String_t* _stringLiteral49AA63440730594CB862C148C034957D190DBB80;
IL2CPP_EXTERN_C String_t* _stringLiteral4B301D8494B36842D7B3D50DCBFE8B45FF4A545F;
IL2CPP_EXTERN_C String_t* _stringLiteral513340C13770DA3BCCC1E8CBDCD957EAAB92BD90;
IL2CPP_EXTERN_C String_t* _stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B;
IL2CPP_EXTERN_C String_t* _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9;
IL2CPP_EXTERN_C String_t* _stringLiteral59E5E11BFC1B758617E7403A28E45E8E18562B95;
IL2CPP_EXTERN_C String_t* _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B;
IL2CPP_EXTERN_C String_t* _stringLiteral5F86FD91A59C8D1EE50BC1FAE93198709F71ADFD;
IL2CPP_EXTERN_C String_t* _stringLiteral60E054398E9A44564C17311CB5271848DD97B127;
IL2CPP_EXTERN_C String_t* _stringLiteral61792A94CAAE6F418C961B460FC78E84493C1A53;
IL2CPP_EXTERN_C String_t* _stringLiteral61C85293E5A099C3EF346E1AADA08CBCA89DA3C6;
IL2CPP_EXTERN_C String_t* _stringLiteral620393CAA7436A70D33A45431FDCF0685865506A;
IL2CPP_EXTERN_C String_t* _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0;
IL2CPP_EXTERN_C String_t* _stringLiteral64CC8687188AD60D21B4B3FCE3779CED9FA4BCF9;
IL2CPP_EXTERN_C String_t* _stringLiteral678C8068977C934D424C4D57A19F629825D2A4BB;
IL2CPP_EXTERN_C String_t* _stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242;
IL2CPP_EXTERN_C String_t* _stringLiteral6933B3473F816EDB2EEF7A7CEF6EFA018D17C6B3;
IL2CPP_EXTERN_C String_t* _stringLiteral6A0B34AAFB24E098ABCB1BE882BD0878913C3D28;
IL2CPP_EXTERN_C String_t* _stringLiteral6B32DCC9DD9FF2ED15F20D20FBEEE7EB511CC73C;
IL2CPP_EXTERN_C String_t* _stringLiteral6B678D52DFE1E770472694B755712C0213F5B1E1;
IL2CPP_EXTERN_C String_t* _stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2;
IL2CPP_EXTERN_C String_t* _stringLiteral6CC89AE92D5E497F1202B3C349634C66958E8423;
IL2CPP_EXTERN_C String_t* _stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A;
IL2CPP_EXTERN_C String_t* _stringLiteral70A44463260654A02F64C384069FD48D9C0271C4;
IL2CPP_EXTERN_C String_t* _stringLiteral72D121639A07E322A737215D5BD5E08E4194BC92;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteral75A5AEBF062DA407173D89C0450A43389571E01F;
IL2CPP_EXTERN_C String_t* _stringLiteral76EE5B8D032C95BE563A920FDFAD51C49E21E8AA;
IL2CPP_EXTERN_C String_t* _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51;
IL2CPP_EXTERN_C String_t* _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E;
IL2CPP_EXTERN_C String_t* _stringLiteral7EB1862B8007FB96FDB5E7E0F2669BF5F89537DC;
IL2CPP_EXTERN_C String_t* _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462;
IL2CPP_EXTERN_C String_t* _stringLiteral82654850C7DC175C6EB41DBCE0F83FCD0ACFC651;
IL2CPP_EXTERN_C String_t* _stringLiteral82E99A9943FE83BB6FF531D461478CFD6B1EB4BD;
IL2CPP_EXTERN_C String_t* _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF;
IL2CPP_EXTERN_C String_t* _stringLiteral847BDE321BACE58C20EACA226ABC5487CBF50A05;
IL2CPP_EXTERN_C String_t* _stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD;
IL2CPP_EXTERN_C String_t* _stringLiteral878AE10D03D16A069554617545B8533ED09E594F;
IL2CPP_EXTERN_C String_t* _stringLiteral87B9EC17BC187A319013ECB41F98E776B6D3C055;
IL2CPP_EXTERN_C String_t* _stringLiteral87C02C6ED924DBDF9E706ECBA4CF02938714E608;
IL2CPP_EXTERN_C String_t* _stringLiteral88795AB13DE909B0C1686FB8EF79E69E5C7468DD;
IL2CPP_EXTERN_C String_t* _stringLiteral8B1F87BF4C64319A8AA1DA5423C987A720C3CFF0;
IL2CPP_EXTERN_C String_t* _stringLiteral8B4B3F4658F5299CF25AA8C483513A423A6C1E5D;
IL2CPP_EXTERN_C String_t* _stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99;
IL2CPP_EXTERN_C String_t* _stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE;
IL2CPP_EXTERN_C String_t* _stringLiteral9BA8E3033D469A47C12379E4233623AFE1AED303;
IL2CPP_EXTERN_C String_t* _stringLiteral9BF3B27ED4B30446D57C1D67F48C33F813074AB2;
IL2CPP_EXTERN_C String_t* _stringLiteral9C7B0A231B92371DBD368FFCAD12A986962E0D02;
IL2CPP_EXTERN_C String_t* _stringLiteral9F5D597C1F916FE878F01CF7090052DBF4EE07E1;
IL2CPP_EXTERN_C String_t* _stringLiteral9F6437DFCF367019BCABE14E230D6D210AF41505;
IL2CPP_EXTERN_C String_t* _stringLiteral9F8D72E59DAFDA9FEDE3FA132F4A524660A67F46;
IL2CPP_EXTERN_C String_t* _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158;
IL2CPP_EXTERN_C String_t* _stringLiteralA37E350E730B9C7E6ACED476C06361A729F5D9F2;
IL2CPP_EXTERN_C String_t* _stringLiteralA39757A73A79D79EBCD4B77A227F5DE53C1068B7;
IL2CPP_EXTERN_C String_t* _stringLiteralA52838C9E06400FD794AE6DF33C5AE83BE60D878;
IL2CPP_EXTERN_C String_t* _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122;
IL2CPP_EXTERN_C String_t* _stringLiteralAAEAF54173166405B926BB5574839DE67CA541AB;
IL2CPP_EXTERN_C String_t* _stringLiteralAD0928C03BDC2C023E2CF3BC347393F87144F9F8;
IL2CPP_EXTERN_C String_t* _stringLiteralAD5BAE51140F5FF32C4A4D46B53FB6E0AA6B4FD6;
IL2CPP_EXTERN_C String_t* _stringLiteralAF09A6BC0279473D57B36A82CF658E854D58181E;
IL2CPP_EXTERN_C String_t* _stringLiteralAFBD6003EB35087D8063200EFEE0344815A6DA10;
IL2CPP_EXTERN_C String_t* _stringLiteralB1BADF651F72DA9740CFF018B33A84A8FE0940FC;
IL2CPP_EXTERN_C String_t* _stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC;
IL2CPP_EXTERN_C String_t* _stringLiteralB6E90C09E43FB002DA629508AC300A0750320118;
IL2CPP_EXTERN_C String_t* _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58;
IL2CPP_EXTERN_C String_t* _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F;
IL2CPP_EXTERN_C String_t* _stringLiteralC17346629BDD1E4B02DEDA10A4D5C04D452E3078;
IL2CPP_EXTERN_C String_t* _stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581;
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
IL2CPP_EXTERN_C String_t* _stringLiteralC39D82415A21DB974A9227D1080814A472716CD9;
IL2CPP_EXTERN_C String_t* _stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5;
IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
IL2CPP_EXTERN_C String_t* _stringLiteralC89ED2A5E7C138031837DF70004D15D0B608F982;
IL2CPP_EXTERN_C String_t* _stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A;
IL2CPP_EXTERN_C String_t* _stringLiteralC9FEEC3BAA682D77E77837073F55B25B8BC10BA4;
IL2CPP_EXTERN_C String_t* _stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79;
IL2CPP_EXTERN_C String_t* _stringLiteralCD26DE29642C27888155DD7EC5F53F6D1A55BA2D;
IL2CPP_EXTERN_C String_t* _stringLiteralD1A212DEDA96849ABCCDF1D53E590A0248230435;
IL2CPP_EXTERN_C String_t* _stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6;
IL2CPP_EXTERN_C String_t* _stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894;
IL2CPP_EXTERN_C String_t* _stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1;
IL2CPP_EXTERN_C String_t* _stringLiteralD7A66F857F6E3FCCC482964755DB79017BF35DD2;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA5C73BCDDD96ECFB9C5FA4C7D8C74319CD3B418;
IL2CPP_EXTERN_C String_t* _stringLiteralDC831E4287EDA3A3A9B5B37A3194AA566D49E6CF;
IL2CPP_EXTERN_C String_t* _stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67;
IL2CPP_EXTERN_C String_t* _stringLiteralDD57D1C5935A294D52FBA3188055CCFAB409389F;
IL2CPP_EXTERN_C String_t* _stringLiteralDDB0068F06DC4CE0D4EC2AC5016BF557B2BA6EE7;
IL2CPP_EXTERN_C String_t* _stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9;
IL2CPP_EXTERN_C String_t* _stringLiteralDF5EC9F3FBEC4F37FF4D501E053433EDF958A566;
IL2CPP_EXTERN_C String_t* _stringLiteralE086D2006B6AA983B2956137EB1F59EE455C2B86;
IL2CPP_EXTERN_C String_t* _stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE;
IL2CPP_EXTERN_C String_t* _stringLiteralE358F823C39A638A3134E442FF53D303271291F3;
IL2CPP_EXTERN_C String_t* _stringLiteralEE3B7AB722A7F6C702B293A2D07B91E051ECD568;
IL2CPP_EXTERN_C String_t* _stringLiteralF0E616973F967C7FC677A64CF4080530C0989A71;
IL2CPP_EXTERN_C String_t* _stringLiteralF125FE9766275C94D708AE1B19214A966542F343;
IL2CPP_EXTERN_C String_t* _stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE;
IL2CPP_EXTERN_C String_t* _stringLiteralF3B6BB5E3798289880FD394AEC70B6ABE7FD1033;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF4755C417A8BAD97BCCC04B580B977A4D1964112;
IL2CPP_EXTERN_C String_t* _stringLiteralFBC35FFDE20578F35F7D80AA15EBCB02F42463C4;
IL2CPP_EXTERN_C String_t* _stringLiteralFC517DF70D3D15D7959A6EE05667F9A868C1B438;
IL2CPP_EXTERN_C String_t* _stringLiteralFDF0BD6CCC5C35804BFE83E90FFF2E92AC4FE4B5;
IL2CPP_EXTERN_C const RuntimeMethod* AotHelper_Ensure_m5F78BB3FBBDEAF52A651C63492E857B36DF156E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisString_t_m93EC6BFDB1B64AB4C48C7329B99C061D2F350EA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_AddRange_TisMemberInfo_t_m2244102F15CA8B14A3269A8E8001A30E32E88049_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_ArrayEmpty_TisDynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_m8DFC5CFD1B0AFBAD1118857F2FDF2B99B40EA0ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_CreateCastConverter_mACDED39C8FBC039BFA8BF16C117137B5EFDF8D91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_FromBigInteger_mF53687CC3D0ABCF2D027381F42E00F158E70283C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_ToBigInteger_mAC51C13F851033B34F2FB9612FB9E26F4242CAC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DateTimeUtils_ToSerializationMode_m15A9BD3C2566B79A88A915187DE6BB7CE0FAEDA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mEC72D6EF420C656529099C9CBDA497904A1B8ADC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m4438CC0F2FC3FBD7CDF900B58B9726DAB7734F29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m96B447EB5EF440757CFDA218BB8344D89762CE2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumUtils_InitializeValuesAndNames_m847EC3AB49A276D98633E6B487B67449500BBC00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Any_TisMemberInfo_t_mCD6D656C7D701A05B9B39CFD962AD3520F1FB490_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Cast_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m15F338502F06EB3AFD250C4139A865AE3214A35A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Cast_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_m2B55B1DE3CF4EA5A87FE61C7480A7AADDCF53288_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Cast_TisFieldInfo_t_mAD6B4A40666C7952F692C3815439C6A9BD758E77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Count_TisMemberInfo_t_m29621F32121724ACF63D8E402ED67CA5E4F8EFC0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_First_TisMemberInfo_t_m01BAA12175FEE2329291832C52FAEB103CD37397_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_GroupBy_TisMemberInfo_t_TisString_t_m851AA14DB80DE7AF5D282E5D08CA6ECD04BF9D1D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_TisString_t_m493F02D888EF35B0C6658E01CD9B62FE4B38BE9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_TisType_t_m275E353BA1242C1B0AF4B73B7BEE3994E4DF6A84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_mFEA96B2B9A1EDE1ED75AD2FEDD232F5CCE8596FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisMemberInfo_t_mA18F069F81CC9297AE5C6D9A7C0B28D4711667F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_SingleOrDefault_TisString_t_mB6F747A3C3592CB658649586468A3371D267EBA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Single_TisMemberInfo_t_mB6594B8029304236D3761A7E89953F0836DBABD4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m8CBAA4BADFBB32C06C6CB9209549C8406D79A5F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisType_t_m28C7A2C8A923EDB686746CE65C1C0BD2BCF93A00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Where_TisFieldInfo_t_m3822895513BBCC2708F1B3A231E52A5ADBAEC44B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mBA5D755463D755BE7FDA512D25353813E0C8EB3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4C102B22A268A681BB63B27829B493E15936FA26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6A67D9D691261F2556B731A8AE6B4929B8A94E31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF2EB4E16CD63260F4A40B2CB9D25CAE969F1EA79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m355CEE6943458AA8FD801E55B91417D3872474EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m42DD116FCC6A980B9B1DACDA2168961AAFA656A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mEB3D88999B573EBB88F1A7D86721429006820CF8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_m97F48FA3BBEA455B8C2E41A4B298832D91AABA02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m32BD6DDB95C1A7C8375054C51A260ACACF14F021_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetCollectionItemType_m0447C32FB43702A2762B23AC204776A236FA0F2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetDictionaryKeyValueTypes_mB6A24051AD3488EAE3DFF6B2C9645AB086E29191_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetMemberValue_m8ACCC6234EA3FA6A96DB8A89E555BFAED6381283_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_GetTypeName_mA48F1F0BD7B29AEE62ED0E0F65705B58AC377548_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_InheritsGenericDefinition_mDAE5879664FA8FC7298CA6888E06ADAF71098A6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ReflectionUtils_SetMemberValue_m2FD1F5AECF556297EDA6DC6F1C7BCB6F5E06CDA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StructMultiKey_2__ctor_m268A22933F6F2600333CB40527C6BEB24842D789_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StructMultiKey_2__ctor_m86731997DA776682D68E49D641713A373FCB9844_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2_Get_m2D1CF0F41B583FA3F614780910FF1155219D70C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2__ctor_m268D655240D6A1AA432C1156AC2C3927E86DD8B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThreadSafeStore_2__ctor_mF589737F54B40E91045E1203531A2FFFDDCFB386_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CFromCanceledU3Eb__5_0_mC491F58F4C79E13A10314420560BDD725DA31BCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetChildPrivateFieldsU3Eb__41_0_mBB078BF564DD56F47E41357373E5240589CDD834_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetDefaultConstructorU3Eb__11_0_m3FCCBCCB5BCA9281E1FBEC57599BE49657572B8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetFieldsAndPropertiesU3Eb__31_0_mA7D173FAF9D7D5581A1CBCB17B30CB8065E6A102_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CGetMemberInfoFromTypeU3Eb__39_0_m93ECCDE074C7CACCA0696323587FDB748EF30032_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CInitializeValuesAndNamesU3Eb__3_0_m094403C76746F0AD39E77D84EAC601B7373FCEF4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTryBuildImmutableForArrayContractU3Eb__24_1_m88FDE7068D7B6A2BBAF169D2574228AF6E7E79E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTryBuildImmutableForDictionaryContractU3Eb__25_1_m0F4967ED757066E35638957B1A5E543DAEA6838B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_0_U3CCreateU3Eb__0_m165CCA9929F1E05297BD67D26940CD560A6C2B50_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_1_U3CCreateU3Eb__1_m43E4ED9B8F7BD25B22AA33A41820B0D7C70236F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_2_U3CCreateU3Eb__2_mE683DC668B67B2C51DE440313E8E813F472E2F0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass24_0_U3CTryBuildImmutableForArrayContractU3Eb__0_mEC530CF3F21F1F546A1B73254999DC322BC95469_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass25_0_U3CTryBuildImmutableForDictionaryContractU3Eb__0_m412979D45F5113B92ABF38A419D3800331C9437D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass31_0_U3CGetFieldsAndPropertiesU3Eb__1_m2BDDF6D8B65C4A7704AC3E983E1145FB5A188006_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m4F59643C7CFE3C66AC0076F949501A04920F7FF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m14BA5C3056EE694ECC9A796EC7E3F298DCA685A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__0_m316341F1F6DA72A17788F05336C856DAC0E4DE48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__1_m21CBBD37F1D18EFF517A3FF644CB9B195D884696_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass44_1_U3CGetChildPrivatePropertiesU3Eb__2_mCC43F9E7E690F1F7A092C53E27B6AE49D38EFD08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass45_0_U3CIsMethodOverriddenU3Eb__0_m5319FBEAE5E9480949FDFC7F82EEAFC722F71945_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass52_0_U3CCreateFSharpFuncCallU3Eb__0_m06C44C8B966AF2E0B02A18152C20071D4E87EFF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass8_0_U3CCreateCastConverterU3Eb__0_mDC84E827B3BA216BAECEDDCB26FCA5EFCEF550EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionary_2_t4F866F723F9E0A522C362494DC799D065D96C726_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IReadOnlyDictionary_2_t7AC36CF348C533A7F72C38A31C1FD6CE48B49ADC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t0ECB838EB0C9A81655750B26970F21CF9A83A5F7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t3D746CBB6123D4569FF4DEA60BC4240F32C6FE75_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t4926B6730CE7D5D65A9903F48CFD632867A41E72_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t5127ABE6809BA32727C69CB2E076B28D676EB15B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t70F850DEE49B62D1B877D3C32F9E0EC724ADC4D9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tD043F01310E483091D0E9A5526C3425F13EF2099_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_tF8BFF19FF240C9F0A45168187CD7106BAA146A99_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A;
struct DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50;
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053;
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364;
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
struct TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339;
struct UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>
struct Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t554BCB12206FA7690CF387E40B583AC496870E40* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tC1CFB404B6EFFA0BA33C98E5B1ED9785ED563E62* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tFD8ED2F783CF40FD378DF09D8E6EDB74202234F3* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>
struct Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tAF1AF89B14D009C2A5A641A946C668297C4355D6* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tD6AF16813F7D84241401374A39A2F8B5705C1EB2* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t2CE2F877DFF07E0C3BD525EA53A808D651F68FD2* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// Newtonsoft.Json.Utilities.CollectionUtils/EmptyArrayContainer`1<System.Int32>
struct EmptyArrayContainer_1_t45B0A7C4ACB68CC945B605D96658E27CE1A6B5AC : public RuntimeObject
{
};
struct EmptyArrayContainer_1_t45B0A7C4ACB68CC945B605D96658E27CE1A6B5AC_StaticFields
{
// T[] Newtonsoft.Json.Utilities.CollectionUtils/EmptyArrayContainer`1::Empty
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Empty_0;
};
// Newtonsoft.Json.Utilities.CollectionUtils/EmptyArrayContainer`1<System.Object>
struct EmptyArrayContainer_1_tA8B33185667C5F8828299F30AE93A6BF24C94412 : public RuntimeObject
{
};
struct EmptyArrayContainer_1_tA8B33185667C5F8828299F30AE93A6BF24C94412_StaticFields
{
// T[] Newtonsoft.Json.Utilities.CollectionUtils/EmptyArrayContainer`1::Empty
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Empty_0;
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject
{
};
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields
{
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0;
};
// System.Collections.Generic.List`1<System.Char>
struct List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Int64>
struct List_1_tF9D88C946600C782EE786A252258C0AA97BD019A : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tF9D88C946600C782EE786A252258C0AA97BD019A_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Reflection.MemberInfo>
struct List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Reflection.PropertyInfo>
struct List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>
struct List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ImmutableCollectionTypeInfoU5BU5D_t9317816DEBB98642322057EDEAA807FA393F4425* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ImmutableCollectionTypeInfoU5BU5D_t9317816DEBB98642322057EDEAA807FA393F4425* ___s_emptyArray_5;
};
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>
struct ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2 : public RuntimeObject
{
// System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_concurrentStore
ConcurrentDictionary_2_t72691F75B6C45685845A39BBFE01D1B70992B54E* ____concurrentStore_0;
// System.Func`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_creator
Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C* ____creator_1;
};
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>
struct ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E : public RuntimeObject
{
// System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_concurrentStore
ConcurrentDictionary_2_t0A6BCCBCD2F7139BB7805897FF13E3E6AF27F6C3* ____concurrentStore_0;
// System.Func`2<TKey,TValue> Newtonsoft.Json.Utilities.ThreadSafeStore`2::_creator
Func_2_t890667DD511E31012095396A8BF9C888E2284437* ____creator_1;
};
// Newtonsoft.Json.Utilities.AotHelper
struct AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674 : public RuntimeObject
{
};
struct AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_StaticFields
{
// System.Boolean Newtonsoft.Json.Utilities.AotHelper::s_alwaysFalse
bool ___s_alwaysFalse_0;
};
struct Il2CppArrayBounds;
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
};
// Newtonsoft.Json.Utilities.AsyncUtils
struct AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC : public RuntimeObject
{
};
struct AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields
{
// System.Threading.Tasks.Task`1<System.Boolean> Newtonsoft.Json.Utilities.AsyncUtils::False
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___False_0;
// System.Threading.Tasks.Task`1<System.Boolean> Newtonsoft.Json.Utilities.AsyncUtils::True
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___True_1;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::CompletedTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___CompletedTask_2;
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.Base64Encoder
struct Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57 : public RuntimeObject
{
// System.Char[] Newtonsoft.Json.Utilities.Base64Encoder::_charsLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____charsLine_2;
// System.IO.TextWriter Newtonsoft.Json.Utilities.Base64Encoder::_writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ____writer_3;
// System.Byte[] Newtonsoft.Json.Utilities.Base64Encoder::_leftOverBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____leftOverBytes_4;
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder::_leftOverBytesCount
int32_t ____leftOverBytesCount_5;
};
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235 : public RuntimeObject
{
};
// System.Dynamic.BindingRestrictions
struct BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424 : public RuntimeObject
{
};
struct BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424_StaticFields
{
// System.Dynamic.BindingRestrictions System.Dynamic.BindingRestrictions::Empty
BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* ___Empty_0;
};
// Newtonsoft.Json.Utilities.BufferUtils
struct BufferUtils_t6D54F39754B69EF5CFF595C04CEA7B7FAA09319B : public RuntimeObject
{
};
// System.Runtime.CompilerServices.CallSiteBinder
struct CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<System.Type,System.Object> System.Runtime.CompilerServices.CallSiteBinder::Cache
Dictionary_2_t954AEC357FE7190582B8255D4ACEF81F5E94A6A5* ___Cache_0;
};
struct CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_StaticFields
{
// System.Linq.Expressions.LabelTarget System.Runtime.CompilerServices.CallSiteBinder::<UpdateLabel>k__BackingField
LabelTarget_t8082D0D35E4D9BE77C683DCDF2AB10DA5C0EB9C5* ___U3CUpdateLabelU3Ek__BackingField_1;
};
// Newtonsoft.Json.Utilities.CollectionUtils
struct CollectionUtils_t2D4224E4C5084D97A05C6C532AABAAA64820B0AC : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.ConvertUtils
struct ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797 : public RuntimeObject
{
};
struct ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields
{
// System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode> Newtonsoft.Json.Utilities.ConvertUtils::TypeCodeMap
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* ___TypeCodeMap_0;
// Newtonsoft.Json.Utilities.TypeInformation[] Newtonsoft.Json.Utilities.ConvertUtils::PrimitiveTypeCodes
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* ___PrimitiveTypeCodes_1;
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>> Newtonsoft.Json.Utilities.ConvertUtils::CastConverters
ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E* ___CastConverters_2;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject
{
};
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields
{
// System.DBNull System.DBNull::Value
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0;
};
// Newtonsoft.Json.Utilities.DateTimeUtils
struct DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121 : public RuntimeObject
{
};
struct DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields
{
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::InitialJavaScriptDateTicks
int64_t ___InitialJavaScriptDateTicks_0;
// System.Int32[] Newtonsoft.Json.Utilities.DateTimeUtils::DaysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth365_7;
// System.Int32[] Newtonsoft.Json.Utilities.DateTimeUtils::DaysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth366_8;
};
// System.Dynamic.DynamicMetaObject
struct DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825 : public RuntimeObject
{
// System.Object System.Dynamic.DynamicMetaObject::_value
RuntimeObject* ____value_2;
// System.Linq.Expressions.Expression System.Dynamic.DynamicMetaObject::<Expression>k__BackingField
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___U3CExpressionU3Ek__BackingField_3;
// System.Dynamic.BindingRestrictions System.Dynamic.DynamicMetaObject::<Restrictions>k__BackingField
BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* ___U3CRestrictionsU3Ek__BackingField_4;
};
struct DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_StaticFields
{
// System.Dynamic.DynamicMetaObject[] System.Dynamic.DynamicMetaObject::EmptyMetaObjects
DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* ___EmptyMetaObjects_0;
// System.Object System.Dynamic.DynamicMetaObject::s_noValueSentinel
RuntimeObject* ___s_noValueSentinel_1;
};
// Newtonsoft.Json.Utilities.DynamicUtils
struct DynamicUtils_t365438E6FD10BC3028F2361E5B4E20F9C0ABCC6A : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.EnumInfo
struct EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571 : public RuntimeObject
{
// System.Boolean Newtonsoft.Json.Utilities.EnumInfo::IsFlags
bool ___IsFlags_0;
// System.UInt64[] Newtonsoft.Json.Utilities.EnumInfo::Values
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* ___Values_1;
// System.String[] Newtonsoft.Json.Utilities.EnumInfo::Names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___Names_2;
// System.String[] Newtonsoft.Json.Utilities.EnumInfo::ResolvedNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___ResolvedNames_3;
};
// Newtonsoft.Json.Utilities.EnumUtils
struct EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2 : public RuntimeObject
{
};
struct EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields
{
// Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo> Newtonsoft.Json.Utilities.EnumUtils::ValuesAndNamesPerEnum
ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* ___ValuesAndNamesPerEnum_2;
// Newtonsoft.Json.Serialization.CamelCaseNamingStrategy Newtonsoft.Json.Utilities.EnumUtils::_camelCaseNamingStrategy
CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8* ____camelCaseNamingStrategy_3;
};
// System.Linq.Expressions.Expression
struct Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785 : public RuntimeObject
{
};
struct Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_StaticFields
{
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Reflection.MethodInfo> System.Linq.Expressions.Expression::s_lambdaDelegateCache
CacheDict_2_tB695739D50653F4D4C3DA03BCF07CC868196FB15* ___s_lambdaDelegateCache_0;
// System.Dynamic.Utils.CacheDict`2<System.Type,System.Func`5<System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Linq.Expressions.ParameterExpression>,System.Linq.Expressions.LambdaExpression>> modreq(System.Runtime.CompilerServices.IsVolatile) System.Linq.Expressions.Expression::s_lambdaFactories
CacheDict_2_t3592A9BE3B1E812BCE8A13D901156E74C707DBB7* ___s_lambdaFactories_1;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression/ExtensionInfo> System.Linq.Expressions.Expression::s_legacyCtorSupportTable
ConditionalWeakTable_2_t0F3FDA57EE333DF8B8C1F3FB944E4E19C5DDCFC7* ___s_legacyCtorSupportTable_2;
};
// System.Linq.Expressions.ExpressionVisitor
struct ExpressionVisitor_tD26583FF464068F23017BC372C81133A62C5A590 : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.FSharpFunction
struct FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF : public RuntimeObject
{
// System.Object Newtonsoft.Json.Utilities.FSharpFunction::_instance
RuntimeObject* ____instance_0;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpFunction::_invoker
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ____invoker_1;
};
// Newtonsoft.Json.Utilities.FSharpUtils
struct FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD : public RuntimeObject
{
// System.Reflection.MethodInfo Newtonsoft.Json.Utilities.FSharpUtils::_ofSeq
MethodInfo_t* ____ofSeq_2;
// System.Type Newtonsoft.Json.Utilities.FSharpUtils::_mapType
Type_t* ____mapType_3;
// System.Reflection.Assembly Newtonsoft.Json.Utilities.FSharpUtils::<FSharpCoreAssembly>k__BackingField
Assembly_t* ___U3CFSharpCoreAssemblyU3Ek__BackingField_4;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<IsUnion>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CIsUnionU3Ek__BackingField_5;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<GetUnionCases>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CGetUnionCasesU3Ek__BackingField_6;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<PreComputeUnionTagReader>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CPreComputeUnionTagReaderU3Ek__BackingField_7;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<PreComputeUnionReader>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CPreComputeUnionReaderU3Ek__BackingField_8;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<PreComputeUnionConstructor>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CPreComputeUnionConstructorU3Ek__BackingField_9;
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<GetUnionCaseInfoDeclaringType>k__BackingField
Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10;
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<GetUnionCaseInfoName>k__BackingField
Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___U3CGetUnionCaseInfoNameU3Ek__BackingField_11;
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<GetUnionCaseInfoTag>k__BackingField
Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___U3CGetUnionCaseInfoTagU3Ek__BackingField_12;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::<GetUnionCaseInfoFields>k__BackingField
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13;
};
struct FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields
{
// System.Object Newtonsoft.Json.Utilities.FSharpUtils::Lock
RuntimeObject* ___Lock_0;
// Newtonsoft.Json.Utilities.FSharpUtils Newtonsoft.Json.Utilities.FSharpUtils::_instance
FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* ____instance_1;
};
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils
struct ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D : public RuntimeObject
{
};
struct ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields
{
// System.Collections.Generic.IList`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo> Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::ArrayContractImmutableCollectionDefinitions
RuntimeObject* ___ArrayContractImmutableCollectionDefinitions_16;
// System.Collections.Generic.IList`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo> Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::DictionaryContractImmutableCollectionDefinitions
RuntimeObject* ___DictionaryContractImmutableCollectionDefinitions_22;
};
// Newtonsoft.Json.Utilities.JavaScriptUtils
struct JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF : public RuntimeObject
{
};
struct JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields
{
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::SingleQuoteCharEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___SingleQuoteCharEscapeFlags_0;
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::DoubleQuoteCharEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___DoubleQuoteCharEscapeFlags_1;
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::HtmlCharEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___HtmlCharEscapeFlags_2;
};
// Newtonsoft.Json.Utilities.JsonTokenUtils
struct JsonTokenUtils_tF9120BA75548788599755DE4B823407C7CBDA8D8 : public RuntimeObject
{
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// Newtonsoft.Json.Utilities.MathUtils
struct MathUtils_t051A038E4B609BBEBD88C2A467EA4E742EBF54BB : public RuntimeObject
{
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.MiscellaneousUtils
struct MiscellaneousUtils_tE53FD9690F96ECEEAC016FABC0BF4AC54308FC4B : public RuntimeObject
{
};
// Newtonsoft.Json.Serialization.NamingStrategy
struct NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50 : public RuntimeObject
{
// System.Boolean Newtonsoft.Json.Serialization.NamingStrategy::<ProcessDictionaryKeys>k__BackingField
bool ___U3CProcessDictionaryKeysU3Ek__BackingField_0;
// System.Boolean Newtonsoft.Json.Serialization.NamingStrategy::<ProcessExtensionDataNames>k__BackingField
bool ___U3CProcessExtensionDataNamesU3Ek__BackingField_1;
// System.Boolean Newtonsoft.Json.Serialization.NamingStrategy::<OverrideSpecifiedNames>k__BackingField
bool ___U3COverrideSpecifiedNamesU3Ek__BackingField_2;
};
// Newtonsoft.Json.Utilities.ReflectionDelegateFactory
struct ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574 : public RuntimeObject
{
};
// Newtonsoft.Json.Utilities.ReflectionMember
struct ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E : public RuntimeObject
{
// System.Type Newtonsoft.Json.Utilities.ReflectionMember::<MemberType>k__BackingField
Type_t* ___U3CMemberTypeU3Ek__BackingField_0;
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::<Getter>k__BackingField
Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___U3CGetterU3Ek__BackingField_1;
// System.Action`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::<Setter>k__BackingField
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ___U3CSetterU3Ek__BackingField_2;
};
// Newtonsoft.Json.Utilities.ReflectionObject
struct ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7 : public RuntimeObject
{
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionObject::<Creator>k__BackingField
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* ___U3CCreatorU3Ek__BackingField_0;
// System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember> Newtonsoft.Json.Utilities.ReflectionObject::<Members>k__BackingField
RuntimeObject* ___U3CMembersU3Ek__BackingField_1;
};
// Newtonsoft.Json.Utilities.ReflectionUtils
struct ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02 : public RuntimeObject
{
};
struct ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_StaticFields
{
// System.Type[] Newtonsoft.Json.Utilities.ReflectionUtils::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_0;
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
{
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t* ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// System.Version
struct Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7 : public RuntimeObject
{
// System.Int32 System.Version::_Major
int32_t ____Major_0;
// System.Int32 System.Version::_Minor
int32_t ____Minor_1;
// System.Int32 System.Version::_Build
int32_t ____Build_2;
// System.Int32 System.Version::_Revision
int32_t ____Revision_3;
};
// Newtonsoft.Json.Utilities.AsyncUtils/<>c
struct U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653 : public RuntimeObject
{
};
struct U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields
{
// Newtonsoft.Json.Utilities.AsyncUtils/<>c Newtonsoft.Json.Utilities.AsyncUtils/<>c::<>9
U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* ___U3CU3E9_0;
// System.Action Newtonsoft.Json.Utilities.AsyncUtils/<>c::<>9__5_0
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CU3E9__5_0_1;
};
// Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0
struct U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3 : public RuntimeObject
{
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0::call
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___call_0;
};
// Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper
struct BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261 : public RuntimeObject
{
};
struct BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields
{
// System.Object Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::_getCSharpArgumentInfoArray
RuntimeObject* ____getCSharpArgumentInfoArray_5;
// System.Object Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::_setCSharpArgumentInfoArray
RuntimeObject* ____setCSharpArgumentInfoArray_6;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::_getMemberCall
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ____getMemberCall_7;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::_setMemberCall
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ____setMemberCall_8;
// System.Boolean Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::_init
bool ____init_9;
};
// Newtonsoft.Json.Utilities.EnumUtils/<>c
struct U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A : public RuntimeObject
{
};
struct U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields
{
// Newtonsoft.Json.Utilities.EnumUtils/<>c Newtonsoft.Json.Utilities.EnumUtils/<>c::<>9
U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* ___U3CU3E9_0;
// System.Func`2<System.Runtime.Serialization.EnumMemberAttribute,System.String> Newtonsoft.Json.Utilities.EnumUtils/<>c::<>9__3_0
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* ___U3CU3E9__3_0_1;
};
// Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0
struct U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1 : public RuntimeObject
{
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0::call
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___call_0;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0::invoke
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___invoke_1;
};
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c
struct U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F : public RuntimeObject
{
};
struct U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields
{
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::<>9
U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* ___U3CU3E9_0;
// System.Func`2<System.Reflection.MethodInfo,System.Boolean> Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::<>9__24_1
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* ___U3CU3E9__24_1_1;
// System.Func`2<System.Reflection.MethodInfo,System.Boolean> Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::<>9__25_1
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* ___U3CU3E9__25_1_2;
};
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0
struct U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C : public RuntimeObject
{
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0::name
String_t* ___name_0;
};
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0
struct U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0 : public RuntimeObject
{
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0::name
String_t* ___name_0;
};
// Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo
struct ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685 : public RuntimeObject
{
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::<ContractTypeName>k__BackingField
String_t* ___U3CContractTypeNameU3Ek__BackingField_0;
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::<CreatedTypeName>k__BackingField
String_t* ___U3CCreatedTypeNameU3Ek__BackingField_1;
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::<BuilderTypeName>k__BackingField
String_t* ___U3CBuilderTypeNameU3Ek__BackingField_2;
};
// Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0
struct U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC : public RuntimeObject
{
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::c
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___c_0;
// System.Reflection.MethodBase Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::method
MethodBase_t* ___method_1;
};
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0
struct U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905 : public RuntimeObject
{
// System.Func`1<System.Object> Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0::ctor
Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___ctor_0;
};
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1
struct U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1 : public RuntimeObject
{
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1::call
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___call_0;
};
// Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2
struct U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937 : public RuntimeObject
{
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2::call
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___call_0;
};
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c
struct U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2 : public RuntimeObject
{
};
struct U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields
{
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<>9
U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2* ___U3CU3E9_0;
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean> Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<>9__11_0
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* ___U3CU3E9__11_0_1;
// System.Func`2<System.Reflection.MemberInfo,System.String> Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<>9__31_0
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* ___U3CU3E9__31_0_2;
// System.Func`2<System.Reflection.ParameterInfo,System.Type> Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<>9__39_0
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* ___U3CU3E9__39_0_3;
// System.Func`2<System.Reflection.FieldInfo,System.Boolean> Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<>9__41_0
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* ___U3CU3E9__41_0_4;
};
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass31_0
struct U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35 : public RuntimeObject
{
// System.Reflection.MemberInfo Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass31_0::memberInfo
MemberInfo_t* ___memberInfo_0;
};
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_0
struct U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185 : public RuntimeObject
{
// System.Reflection.PropertyInfo Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_0::subTypeProperty
PropertyInfo_t* ___subTypeProperty_0;
};
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_1
struct U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037 : public RuntimeObject
{
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_1::subTypePropertyDeclaringType
Type_t* ___subTypePropertyDeclaringType_0;
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_0 Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_1::CS$<>8__locals1
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* ___CSU24U3CU3E8__locals1_1;
};
// Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass45_0
struct U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341 : public RuntimeObject
{
// System.String Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass45_0::method
String_t* ___method_0;
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass45_0::methodDeclaringType
Type_t* ___methodDeclaringType_1;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Nullable`1<System.Char>
struct Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
Il2CppChar ___value_1;
};
// System.Nullable`1<System.Double>
struct Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
double ___value_1;
};
// System.Nullable`1<System.Int32>
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Nullable`1<System.Int64>
struct Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int64_t ___value_1;
};
// Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>
struct StructMultiKey_2_tBE8AC1F77387A29245D48FBA8C8C8E1763344DD5
{
// T1 Newtonsoft.Json.Utilities.StructMultiKey`2::Value1
RuntimeObject* ___Value1_0;
// T2 Newtonsoft.Json.Utilities.StructMultiKey`2::Value2
RuntimeObject* ___Value2_1;
};
// Newtonsoft.Json.Utilities.StructMultiKey`2<System.String,System.String>
struct StructMultiKey_2_t6E68BC5B4E82B577ED926DDD328474297A4F65C3
{
// T1 Newtonsoft.Json.Utilities.StructMultiKey`2::Value1
String_t* ___Value1_0;
// T2 Newtonsoft.Json.Utilities.StructMultiKey`2::Value2
String_t* ___Value2_1;
};
// Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>
struct StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D
{
// T1 Newtonsoft.Json.Utilities.StructMultiKey`2::Value1
Type_t* ___Value1_0;
// T2 Newtonsoft.Json.Utilities.StructMultiKey`2::Value2
NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* ___Value2_1;
};
// Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>
struct StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5
{
// T1 Newtonsoft.Json.Utilities.StructMultiKey`2::Value1
Type_t* ___Value1_0;
// T2 Newtonsoft.Json.Utilities.StructMultiKey`2::Value2
Type_t* ___Value2_1;
};
// System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF
{
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine
RuntimeObject* ___m_stateMachine_0;
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_defaultContextAction_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_pinvoke
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_com
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// System.Numerics.BigInteger
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F
{
// System.Int32 System.Numerics.BigInteger::_sign
int32_t ____sign_0;
// System.UInt32[] System.Numerics.BigInteger::_bits
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ____bits_1;
};
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_StaticFields
{
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinInt
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnMinInt_2;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnOneInt
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnOneInt_3;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnZeroInt
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnZeroInt_4;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinusOneInt
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___s_bnMinusOneInt_5;
// System.Byte[] System.Numerics.BigInteger::s_success
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_success_6;
};
// Native definition for P/Invoke marshalling of System.Numerics.BigInteger
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_marshaled_pinvoke
{
int32_t ____sign_0;
Il2CppSafeArray/*NONE*/* ____bits_1;
};
// Native definition for COM marshalling of System.Numerics.BigInteger
struct BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_marshaled_com
{
int32_t ____sign_0;
Il2CppSafeArray/*NONE*/* ____bits_1;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// Newtonsoft.Json.Serialization.CamelCaseNamingStrategy
struct CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8 : public NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50
{
};
// System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED
{
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::_source
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_StaticFields
{
// System.Action`1<System.Object> System.Threading.CancellationToken::s_actionToActionObjShunt
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_actionToActionObjShunt_1;
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.Linq.Expressions.ConditionalExpression
struct ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913 : public Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785
{
// System.Linq.Expressions.Expression System.Linq.Expressions.ConditionalExpression::<Test>k__BackingField
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___U3CTestU3Ek__BackingField_3;
// System.Linq.Expressions.Expression System.Linq.Expressions.ConditionalExpression::<IfTrue>k__BackingField
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___U3CIfTrueU3Ek__BackingField_4;
};
// System.Linq.Expressions.ConstantExpression
struct ConstantExpression_t4BE6B7DFD889CC0EA42B45C32BD511F2764E1547 : public Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785
{
// System.Object System.Linq.Expressions.ConstantExpression::<Value>k__BackingField
RuntimeObject* ___U3CValueU3Ek__BackingField_3;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Dynamic.DynamicMetaObjectBinder
struct DynamicMetaObjectBinder_tB890C4A527623C1A79882F0343D043461A6207FF : public CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F
{
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// System.Runtime.Serialization.EnumMemberAttribute
struct EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
// System.String System.Runtime.Serialization.EnumMemberAttribute::value
String_t* ___value_0;
};
// System.Reflection.EventInfo
struct EventInfo_t : public MemberInfo_t
{
// System.Reflection.EventInfo/AddEventAdapter System.Reflection.EventInfo::cached_add_event
AddEventAdapter_tE0DE36700D110F4D267B26686541ABCF9588A6DD* ___cached_add_event_0;
};
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
};
// System.Guid
struct Guid_t
{
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
};
struct Guid_t_StaticFields
{
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory
struct LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64 : public ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574
{
};
struct LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_StaticFields
{
// Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::_instance
LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* ____instance_0;
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
};
// Newtonsoft.Json.Utilities.NoThrowExpressionVisitor
struct NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A : public ExpressionVisitor_tD26583FF464068F23017BC372C81133A62C5A590
{
};
struct NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_StaticFields
{
// System.Object Newtonsoft.Json.Utilities.NoThrowExpressionVisitor::ErrorResult
RuntimeObject* ___ErrorResult_0;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510
{
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ____byRef_0;
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// Newtonsoft.Json.Utilities.StringReference
struct StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C
{
// System.Char[] Newtonsoft.Json.Utilities.StringReference::_chars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____chars_0;
// System.Int32 Newtonsoft.Json.Utilities.StringReference::_startIndex
int32_t ____startIndex_1;
// System.Int32 Newtonsoft.Json.Utilities.StringReference::_length
int32_t ____length_2;
};
// Native definition for P/Invoke marshalling of Newtonsoft.Json.Utilities.StringReference
struct StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C_marshaled_pinvoke
{
uint8_t* ____chars_0;
int32_t ____startIndex_1;
int32_t ____length_2;
};
// Native definition for COM marshalling of Newtonsoft.Json.Utilities.StringReference
struct StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C_marshaled_com
{
uint8_t* ____chars_0;
int32_t ____startIndex_1;
int32_t ____length_2;
};
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
};
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields
{
// System.IO.TextReader System.IO.TextReader::Null
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1;
};
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3;
// System.String System.IO.TextWriter::CoreNewLineStr
String_t* ___CoreNewLineStr_4;
// System.IFormatProvider System.IO.TextWriter::_internalFormatProvider
RuntimeObject* ____internalFormatProvider_5;
};
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields
{
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1;
// System.Char[] System.IO.TextWriter::s_coreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2;
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618
{
// System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>
struct AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___s_defaultResultTask_0;
};
// System.Nullable`1<System.TimeSpan>
struct Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value_1;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___m_configuredTaskAwaiter_0;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_pinvoke
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke ___m_configuredTaskAwaiter_0;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_com
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com ___m_configuredTaskAwaiter_0;
};
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB : public MethodBase_t
{
};
struct ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_StaticFields
{
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
};
// Newtonsoft.Json.DateFormatHandling
struct DateFormatHandling_t572F7AE07F2480341B7A6A66E2B76630B513F797
{
// System.Int32 Newtonsoft.Json.DateFormatHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.DateParseHandling
struct DateParseHandling_t9C3D12600E1C83D014F016D8B1F88411FF41263C
{
// System.Int32 Newtonsoft.Json.DateParseHandling::value__
int32_t ___value___2;
};
// System.DateTimeKind
struct DateTimeKind_t3AD6DA06BEF8955A740777163FFB481C19089BBC
{
// System.Int32 System.DateTimeKind::value__
int32_t ___value___2;
};
// System.DateTimeOffset
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4
{
// System.DateTime System.DateTimeOffset::_dateTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3;
// System.Int16 System.DateTimeOffset::_offsetMinutes
int16_t ____offsetMinutes_4;
};
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields
{
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue_1;
// System.DateTimeOffset System.DateTimeOffset::UnixEpoch
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch_2;
};
// System.Globalization.DateTimeStyles
struct DateTimeStyles_t68D2C41B347837759F064D04F256AC268AF50465
{
// System.Int32 System.Globalization.DateTimeStyles::value__
int32_t ___value___2;
};
// Newtonsoft.Json.DateTimeZoneHandling
struct DateTimeZoneHandling_tC6052391FA7B95E92AFFABA381532EEFA193FB9F
{
// System.Int32 Newtonsoft.Json.DateTimeZoneHandling::value__
int32_t ___value___2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.Linq.Expressions.ExpressionType
struct ExpressionType_tAA03F259DBEAA7B62E085C620D7B879FAA696B25
{
// System.Int32 System.Linq.Expressions.ExpressionType::value__
int32_t ___value___2;
};
// Newtonsoft.Json.FloatFormatHandling
struct FloatFormatHandling_t6D69CDEC3FBD6B43B168CFE1033506CE3F50EE8C
{
// System.Int32 Newtonsoft.Json.FloatFormatHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.FloatParseHandling
struct FloatParseHandling_tB923F780A6087CF142D4D00486E840D870ECDA5D
{
// System.Int32 Newtonsoft.Json.FloatParseHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Formatting
struct Formatting_t38B3D1A17CE6825AA2C906374AD2434FD10ED7EC
{
// System.Int32 Newtonsoft.Json.Formatting::value__
int32_t ___value___2;
};
// System.Dynamic.GetMemberBinder
struct GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3 : public DynamicMetaObjectBinder_tB890C4A527623C1A79882F0343D043461A6207FF
{
// System.String System.Dynamic.GetMemberBinder::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_2;
// System.Boolean System.Dynamic.GetMemberBinder::<IgnoreCase>k__BackingField
bool ___U3CIgnoreCaseU3Ek__BackingField_3;
};
// System.Int32Enum
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
{
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
};
// Newtonsoft.Json.JsonContainerType
struct JsonContainerType_t4F8244AEE40CAB63CA2C1E281038F4E2B3E3887E
{
// System.Int32 Newtonsoft.Json.JsonContainerType::value__
int32_t ___value___2;
};
// Newtonsoft.Json.JsonToken
struct JsonToken_t00B2B3F98FB3E9A8DE72409901BED1C7F1670BD5
{
// System.Int32 Newtonsoft.Json.JsonToken::value__
int32_t ___value___2;
};
// Newtonsoft.Json.MemberSerialization
struct MemberSerialization_t257FAC6CFDCFB591C71BFA910013E4CEFB7491DA
{
// System.Int32 Newtonsoft.Json.MemberSerialization::value__
int32_t ___value___2;
};
// System.Reflection.MemberTypes
struct MemberTypes_t26BAB0893BEC9328F2F64E8BACDA967C445632E5
{
// System.Int32 System.Reflection.MemberTypes::value__
int32_t ___value___2;
};
// Newtonsoft.Json.MetadataPropertyHandling
struct MetadataPropertyHandling_tA3EC6C7A5429A693E0370D712C7850854F60B6B2
{
// System.Int32 Newtonsoft.Json.MetadataPropertyHandling::value__
int32_t ___value___2;
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
};
// Newtonsoft.Json.MissingMemberHandling
struct MissingMemberHandling_tD1037A7561C66E2015BA288AF16A9F2DC9307FA5
{
// System.Int32 Newtonsoft.Json.MissingMemberHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.NullValueHandling
struct NullValueHandling_t4BDE6EFA837EAE85524EDF0FE21D0B9668F4FD6A
{
// System.Int32 Newtonsoft.Json.NullValueHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.ObjectCreationHandling
struct ObjectCreationHandling_tA895C8A4A1D7444BBEDD0E29D7490C625BF93131
{
// System.Int32 Newtonsoft.Json.ObjectCreationHandling::value__
int32_t ___value___2;
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_tDAEC8B3C5986B042F8F9B0845505D0FC15F92E68
{
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Utilities.ParseResult
struct ParseResult_t4C0931224069A9D603A36C1F6F1100A9C422948D
{
// System.Int32 Newtonsoft.Json.Utilities.ParseResult::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Utilities.ParserTimeZone
struct ParserTimeZone_t72EA9D750958501966EBD4C79488A8A270D4F108
{
// System.Int32 Newtonsoft.Json.Utilities.ParserTimeZone::value__
int32_t ___value___2;
};
// Newtonsoft.Json.PreserveReferencesHandling
struct PreserveReferencesHandling_t435BCAA15E433D8D2F5DB0D05A41E7E564671737
{
// System.Int32 Newtonsoft.Json.PreserveReferencesHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Utilities.PrimitiveTypeCode
struct PrimitiveTypeCode_t63C3D4F39DC3B6C82690A769515BAA5A0361A573
{
// System.Int32 Newtonsoft.Json.Utilities.PrimitiveTypeCode::value__
int32_t ___value___2;
};
// Newtonsoft.Json.ReferenceLoopHandling
struct ReferenceLoopHandling_t7D243173DF188E0478CF37E7C940CDDCAC1E0D20
{
// System.Int32 Newtonsoft.Json.ReferenceLoopHandling::value__
int32_t ___value___2;
};
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
{
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Required
struct Required_tE2BADA700C1076BDCC25AAF912F3C76B8BD842A7
{
// System.Int32 Newtonsoft.Json.Required::value__
int32_t ___value___2;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.Dynamic.SetMemberBinder
struct SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F : public DynamicMetaObjectBinder_tB890C4A527623C1A79882F0343D043461A6207FF
{
// System.String System.Dynamic.SetMemberBinder::<Name>k__BackingField
String_t* ___U3CNameU3Ek__BackingField_2;
// System.Boolean System.Dynamic.SetMemberBinder::<IgnoreCase>k__BackingField
bool ___U3CIgnoreCaseU3Ek__BackingField_3;
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
{
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// Newtonsoft.Json.StringEscapeHandling
struct StringEscapeHandling_t6C5E715C7EA7676CB7369DBE8EB487724B07F354
{
// System.Int32 Newtonsoft.Json.StringEscapeHandling::value__
int32_t ___value___2;
};
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.Text.StringBuilder System.IO.StringWriter::_sb
StringBuilder_t* ____sb_7;
// System.Boolean System.IO.StringWriter::_isOpen
bool ____isOpen_8;
};
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_StaticFields
{
// System.Text.UnicodeEncoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StringWriter::m_encoding
UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___m_encoding_6;
};
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject
{
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_1;
// System.Delegate System.Threading.Tasks.Task::m_action
Delegate_t* ___m_action_2;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject* ___m_stateObject_3;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler_4;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent_5;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_6;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject* ___m_continuationObject_7;
// System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties_10;
};
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields
{
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_0;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject* ___s_taskCompletionSentinel_8;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_9;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_taskCancelCallback_11;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1* ___s_createContingentProperties_14;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::<Factory>k__BackingField
TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0* ___U3CFactoryU3Ek__BackingField_15;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::<CompletedTask>k__BackingField
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___U3CCompletedTaskU3Ek__BackingField_16;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED* ___s_IsExceptionObservedByParentPredicate_17;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007* ___s_ecCallback_18;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___s_IsTaskContinuationNullPredicate_19;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55* ___s_currentActiveTasks_20;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject* ___s_activeTasksLock_21;
};
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_ThreadStaticFields
{
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___t_currentTask_12;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352* ___t_stackGuard_13;
};
// System.Threading.Tasks.TaskStatus
struct TaskStatus_tDF62ACF297808A2BF8B7465A4A8E9FF161C9AB79
{
// System.Int32 System.Threading.Tasks.TaskStatus::value__
int32_t ___value___2;
};
// System.TimeZoneInfo
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8 : public RuntimeObject
{
// System.String System.TimeZoneInfo::_id
String_t* ____id_0;
// System.String System.TimeZoneInfo::_displayName
String_t* ____displayName_1;
// System.String System.TimeZoneInfo::_standardDisplayName
String_t* ____standardDisplayName_2;
// System.String System.TimeZoneInfo::_daylightDisplayName
String_t* ____daylightDisplayName_3;
// System.TimeSpan System.TimeZoneInfo::_baseUtcOffset
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____baseUtcOffset_4;
// System.Boolean System.TimeZoneInfo::_supportsDaylightSavingTime
bool ____supportsDaylightSavingTime_5;
// System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::_adjustmentRules
AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ____adjustmentRules_6;
};
struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields
{
// System.TimeZoneInfo System.TimeZoneInfo::s_utcTimeZone
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___s_utcTimeZone_7;
// System.TimeZoneInfo/CachedData System.TimeZoneInfo::s_cachedData
CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___s_cachedData_8;
// System.DateTime System.TimeZoneInfo::s_maxDateOnly
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_maxDateOnly_9;
// System.DateTime System.TimeZoneInfo::s_minDateOnly
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_minDateOnly_10;
// System.TimeSpan System.TimeZoneInfo::MaxOffset
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxOffset_11;
// System.TimeSpan System.TimeZoneInfo::MinOffset
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinOffset_12;
};
// System.TypeCode
struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79
{
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
};
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C : public RuntimeObject
{
};
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C_StaticFields
{
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
};
// Newtonsoft.Json.TypeNameAssemblyFormatHandling
struct TypeNameAssemblyFormatHandling_t9FB27147BC97FE6AB2CC242DA377B594D900491E
{
// System.Int32 Newtonsoft.Json.TypeNameAssemblyFormatHandling::value__
int32_t ___value___2;
};
// Newtonsoft.Json.TypeNameHandling
struct TypeNameHandling_t4D77402771E5E38DE1AE390B60542985276D9D69
{
// System.Int32 Newtonsoft.Json.TypeNameHandling::value__
int32_t ___value___2;
};
// System.UriIdnScope
struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
{
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
};
// System.UriKind
struct UriKind_t6597BD6BF48C695D63244DF8541B5EA48FF7F9E7
{
// System.Int32 System.UriKind::value__
int32_t ___value___2;
};
// Newtonsoft.Json.WriteState
struct WriteState_tDC5DB5B03C0907C06F85AAEF32E0A1A0BF1FBC48
{
// System.Int32 Newtonsoft.Json.WriteState::value__
int32_t ___value___2;
};
// System.Xml.XmlDateTimeSerializationMode
struct XmlDateTimeSerializationMode_tF35C42BE60C28E33BBEFAC710B67C376A7A33375
{
// System.Int32 System.Xml.XmlDateTimeSerializationMode::value__
int32_t ___value___2;
};
// Newtonsoft.Json.Utilities.ConvertUtils/ConvertResult
struct ConvertResult_tD03B70B9DA84341894B50D766A18FC34C5CAF4AB
{
// System.Int32 Newtonsoft.Json.Utilities.ConvertUtils/ConvertResult::value__
int32_t ___value___2;
};
// Newtonsoft.Json.JsonReader/State
struct State_tFC19CCEAFF8F4E6C73914F3B8850C622CE3490A4
{
// System.Int32 Newtonsoft.Json.JsonReader/State::value__
int32_t ___value___2;
};
// Newtonsoft.Json.JsonWriter/State
struct State_tAE23C0C2937491FB5A76EBB46CC416A10DB1667D
{
// System.Int32 Newtonsoft.Json.JsonWriter/State::value__
int32_t ___value___2;
};
// System.Uri/Flags
struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
{
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
};
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
bool ___m_result_22;
};
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_tFAEAC22A1E986463E6956C344A78A7C7197288E0* ___s_defaultFactory_23;
};
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
};
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3* ___s_defaultFactory_23;
};
// System.ApplicationException
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t
{
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06
{
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::m_builder
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_StaticFields
{
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::s_cachedCompleted
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___s_cachedCompleted_0;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_marshaled_pinvoke
{
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_marshaled_com
{
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
// Newtonsoft.Json.Utilities.DateTimeParser
struct DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246
{
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Year
int32_t ___Year_0;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Month
int32_t ___Month_1;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Day
int32_t ___Day_2;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Hour
int32_t ___Hour_3;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Minute
int32_t ___Minute_4;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Second
int32_t ___Second_5;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Fraction
int32_t ___Fraction_6;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::ZoneHour
int32_t ___ZoneHour_7;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::ZoneMinute
int32_t ___ZoneMinute_8;
// Newtonsoft.Json.Utilities.ParserTimeZone Newtonsoft.Json.Utilities.DateTimeParser::Zone
int32_t ___Zone_9;
// System.Char[] Newtonsoft.Json.Utilities.DateTimeParser::_text
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____text_10;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::_end
int32_t ____end_11;
};
struct DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields
{
// System.Int32[] Newtonsoft.Json.Utilities.DateTimeParser::Power10
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Power10_12;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy
int32_t ___Lzyyyy_13;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy_
int32_t ___Lzyyyy__14;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy_MM
int32_t ___Lzyyyy_MM_15;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy_MM_
int32_t ___Lzyyyy_MM__16;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy_MM_dd
int32_t ___Lzyyyy_MM_dd_17;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lzyyyy_MM_ddT
int32_t ___Lzyyyy_MM_ddT_18;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::LzHH
int32_t ___LzHH_19;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::LzHH_
int32_t ___LzHH__20;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::LzHH_mm
int32_t ___LzHH_mm_21;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::LzHH_mm_
int32_t ___LzHH_mm__22;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::LzHH_mm_ss
int32_t ___LzHH_mm_ss_23;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lz_
int32_t ___Lz__24;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeParser::Lz_zz
int32_t ___Lz_zz_25;
};
// Native definition for P/Invoke marshalling of Newtonsoft.Json.Utilities.DateTimeParser
struct DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_pinvoke
{
int32_t ___Year_0;
int32_t ___Month_1;
int32_t ___Day_2;
int32_t ___Hour_3;
int32_t ___Minute_4;
int32_t ___Second_5;
int32_t ___Fraction_6;
int32_t ___ZoneHour_7;
int32_t ___ZoneMinute_8;
int32_t ___Zone_9;
uint8_t* ____text_10;
int32_t ____end_11;
};
// Native definition for COM marshalling of Newtonsoft.Json.Utilities.DateTimeParser
struct DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_com
{
int32_t ___Year_0;
int32_t ___Month_1;
int32_t ___Day_2;
int32_t ___Hour_3;
int32_t ___Minute_4;
int32_t ___Second_5;
int32_t ___Fraction_6;
int32_t ___ZoneHour_7;
int32_t ___ZoneMinute_8;
int32_t ___Zone_9;
uint8_t* ____text_10;
int32_t ____end_11;
};
// Newtonsoft.Json.JsonException
struct JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD : public Exception_t
{
};
// Newtonsoft.Json.JsonPosition
struct JsonPosition_t7788656A280615072710710E8C15D23285850E8E
{
// Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonPosition::Type
int32_t ___Type_1;
// System.Int32 Newtonsoft.Json.JsonPosition::Position
int32_t ___Position_2;
// System.String Newtonsoft.Json.JsonPosition::PropertyName
String_t* ___PropertyName_3;
// System.Boolean Newtonsoft.Json.JsonPosition::HasIndex
bool ___HasIndex_4;
};
struct JsonPosition_t7788656A280615072710710E8C15D23285850E8E_StaticFields
{
// System.Char[] Newtonsoft.Json.JsonPosition::SpecialCharacters
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___SpecialCharacters_0;
};
// Native definition for P/Invoke marshalling of Newtonsoft.Json.JsonPosition
struct JsonPosition_t7788656A280615072710710E8C15D23285850E8E_marshaled_pinvoke
{
int32_t ___Type_1;
int32_t ___Position_2;
char* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Native definition for COM marshalling of Newtonsoft.Json.JsonPosition
struct JsonPosition_t7788656A280615072710710E8C15D23285850E8E_marshaled_com
{
int32_t ___Type_1;
int32_t ___Position_2;
Il2CppChar* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0 : public RuntimeObject
{
};
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_StaticFields
{
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName
TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA* ___FilterTypeName_0;
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase
TypeFilter_tD8F0A4CFBE6E8F8FA8D673113A73026EDA4640BA* ___FilterTypeNameIgnoreCase_1;
};
// Native definition for P/Invoke marshalling of System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Reflection.Module
struct Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_marshaled_com
{
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// Newtonsoft.Json.Utilities.NoThrowGetBinderMember
struct NoThrowGetBinderMember_t9AB4335A1986006E9CE9EA2F76B26037E412E90D : public GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3
{
// System.Dynamic.GetMemberBinder Newtonsoft.Json.Utilities.NoThrowGetBinderMember::_innerBinder
GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* ____innerBinder_4;
};
// Newtonsoft.Json.Utilities.NoThrowSetBinderMember
struct NoThrowSetBinderMember_t2A08A7A6DC7581F640C7AECC9A15D4AC8F9197E2 : public SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F
{
// System.Dynamic.SetMemberBinder Newtonsoft.Json.Utilities.NoThrowSetBinderMember::_innerBinder
SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* ____innerBinder_4;
};
// System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F : public RuntimeObject
{
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_0;
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t* ___ClassImpl_1;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject* ___DefaultValueImpl_2;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t* ___MemberImpl_3;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_4;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_5;
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_pinvoke
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
char* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_com
{
int32_t ___AttrsImpl_0;
Type_t* ___ClassImpl_1;
Il2CppIUnknown* ___DefaultValueImpl_2;
MemberInfo_t* ___MemberImpl_3;
Il2CppChar* ___NameImpl_4;
int32_t ___PositionImpl_5;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
{
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject* ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// Newtonsoft.Json.Utilities.TypeInformation
struct TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15 : public RuntimeObject
{
// System.Type Newtonsoft.Json.Utilities.TypeInformation::<Type>k__BackingField
Type_t* ___U3CTypeU3Ek__BackingField_0;
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.TypeInformation::<TypeCode>k__BackingField
int32_t ___U3CTypeCodeU3Ek__BackingField_1;
};
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
{
// System.String System.Uri::m_String
String_t* ___m_String_13;
// System.String System.Uri::m_originalUnicodeString
String_t* ___m_originalUnicodeString_14;
// System.UriParser System.Uri::m_Syntax
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15;
// System.String System.Uri::m_DnsSafeHost
String_t* ___m_DnsSafeHost_16;
// System.Uri/Flags System.Uri::m_Flags
uint64_t ___m_Flags_17;
// System.Uri/UriInfo System.Uri::m_Info
UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18;
// System.Boolean System.Uri::m_iriParsing
bool ___m_iriParsing_19;
};
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
{
// System.String System.Uri::UriSchemeFile
String_t* ___UriSchemeFile_0;
// System.String System.Uri::UriSchemeFtp
String_t* ___UriSchemeFtp_1;
// System.String System.Uri::UriSchemeGopher
String_t* ___UriSchemeGopher_2;
// System.String System.Uri::UriSchemeHttp
String_t* ___UriSchemeHttp_3;
// System.String System.Uri::UriSchemeHttps
String_t* ___UriSchemeHttps_4;
// System.String System.Uri::UriSchemeWs
String_t* ___UriSchemeWs_5;
// System.String System.Uri::UriSchemeWss
String_t* ___UriSchemeWss_6;
// System.String System.Uri::UriSchemeMailto
String_t* ___UriSchemeMailto_7;
// System.String System.Uri::UriSchemeNews
String_t* ___UriSchemeNews_8;
// System.String System.Uri::UriSchemeNntp
String_t* ___UriSchemeNntp_9;
// System.String System.Uri::UriSchemeNetTcp
String_t* ___UriSchemeNetTcp_10;
// System.String System.Uri::UriSchemeNetPipe
String_t* ___UriSchemeNetPipe_11;
// System.String System.Uri::SchemeDelimiter
String_t* ___SchemeDelimiter_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
bool ___s_ConfigInitialized_20;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
bool ___s_ConfigInitializing_21;
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
int32_t ___s_IdnScope_22;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
bool ___s_IriParsing_23;
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
bool ___useDotNetRelativeOrAbsolute_24;
// System.Boolean System.Uri::IsWindowsFileSystem
bool ___IsWindowsFileSystem_25;
// System.Object System.Uri::s_initLock
RuntimeObject* ___s_initLock_26;
// System.Char[] System.Uri::HexLowerChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27;
// System.Char[] System.Uri::_WSchars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28;
};
// System.Action`2<System.Object,System.Object>
struct Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C : public MulticastDelegate_t
{
};
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4 : public MulticastDelegate_t
{
};
// System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>
struct Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C : public MulticastDelegate_t
{
};
// System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>
struct Func_2_t890667DD511E31012095396A8BF9C888E2284437 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>
struct Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C : public MulticastDelegate_t
{
};
// System.Func`2<System.Runtime.Serialization.EnumMemberAttribute,System.String>
struct Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.FieldInfo,System.Boolean>
struct Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.MemberInfo,System.Boolean>
struct Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.MemberInfo,System.String>
struct Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.MethodInfo,System.Boolean>
struct Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164 : public MulticastDelegate_t
{
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.ParameterInfo,System.Type>
struct Func_2_t083860B929985EC8DF79C99B5157C38632F84196 : public MulticastDelegate_t
{
};
// System.Func`2<System.Reflection.PropertyInfo,System.Boolean>
struct Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74 : public MulticastDelegate_t
{
};
// System.Func`2<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo,System.Boolean>
struct Func_2_t43CC133C289457C636A18BA4D471FC2B56544421 : public MulticastDelegate_t
{
};
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>
struct MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270 : public MulticastDelegate_t
{
};
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>
struct ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901 : public MulticastDelegate_t
{
};
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// Newtonsoft.Json.JsonReader
struct JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765 : public RuntimeObject
{
// Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::_tokenType
int32_t ____tokenType_0;
// System.Object Newtonsoft.Json.JsonReader::_value
RuntimeObject* ____value_1;
// System.Char Newtonsoft.Json.JsonReader::_quoteChar
Il2CppChar ____quoteChar_2;
// Newtonsoft.Json.JsonReader/State Newtonsoft.Json.JsonReader::_currentState
int32_t ____currentState_3;
// Newtonsoft.Json.JsonPosition Newtonsoft.Json.JsonReader::_currentPosition
JsonPosition_t7788656A280615072710710E8C15D23285850E8E ____currentPosition_4;
// System.Globalization.CultureInfo Newtonsoft.Json.JsonReader::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_5;
// Newtonsoft.Json.DateTimeZoneHandling Newtonsoft.Json.JsonReader::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_6;
// System.Nullable`1<System.Int32> Newtonsoft.Json.JsonReader::_maxDepth
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ____maxDepth_7;
// System.Boolean Newtonsoft.Json.JsonReader::_hasExceededMaxDepth
bool ____hasExceededMaxDepth_8;
// Newtonsoft.Json.DateParseHandling Newtonsoft.Json.JsonReader::_dateParseHandling
int32_t ____dateParseHandling_9;
// Newtonsoft.Json.FloatParseHandling Newtonsoft.Json.JsonReader::_floatParseHandling
int32_t ____floatParseHandling_10;
// System.String Newtonsoft.Json.JsonReader::_dateFormatString
String_t* ____dateFormatString_11;
// System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition> Newtonsoft.Json.JsonReader::_stack
List_1_t53E7DEFF45EC8B1D5AE04D4FC6284E617F0D79CB* ____stack_12;
// System.Boolean Newtonsoft.Json.JsonReader::<CloseInput>k__BackingField
bool ___U3CCloseInputU3Ek__BackingField_13;
// System.Boolean Newtonsoft.Json.JsonReader::<SupportMultipleContent>k__BackingField
bool ___U3CSupportMultipleContentU3Ek__BackingField_14;
};
// Newtonsoft.Json.JsonWriter
struct JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3 : public RuntimeObject
{
// System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition> Newtonsoft.Json.JsonWriter::_stack
List_1_t53E7DEFF45EC8B1D5AE04D4FC6284E617F0D79CB* ____stack_2;
// Newtonsoft.Json.JsonPosition Newtonsoft.Json.JsonWriter::_currentPosition
JsonPosition_t7788656A280615072710710E8C15D23285850E8E ____currentPosition_3;
// Newtonsoft.Json.JsonWriter/State Newtonsoft.Json.JsonWriter::_currentState
int32_t ____currentState_4;
// Newtonsoft.Json.Formatting Newtonsoft.Json.JsonWriter::_formatting
int32_t ____formatting_5;
// System.Boolean Newtonsoft.Json.JsonWriter::<CloseOutput>k__BackingField
bool ___U3CCloseOutputU3Ek__BackingField_6;
// System.Boolean Newtonsoft.Json.JsonWriter::<AutoCompleteOnClose>k__BackingField
bool ___U3CAutoCompleteOnCloseU3Ek__BackingField_7;
// Newtonsoft.Json.DateFormatHandling Newtonsoft.Json.JsonWriter::_dateFormatHandling
int32_t ____dateFormatHandling_8;
// Newtonsoft.Json.DateTimeZoneHandling Newtonsoft.Json.JsonWriter::_dateTimeZoneHandling
int32_t ____dateTimeZoneHandling_9;
// Newtonsoft.Json.StringEscapeHandling Newtonsoft.Json.JsonWriter::_stringEscapeHandling
int32_t ____stringEscapeHandling_10;
// Newtonsoft.Json.FloatFormatHandling Newtonsoft.Json.JsonWriter::_floatFormatHandling
int32_t ____floatFormatHandling_11;
// System.String Newtonsoft.Json.JsonWriter::_dateFormatString
String_t* ____dateFormatString_12;
// System.Globalization.CultureInfo Newtonsoft.Json.JsonWriter::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_13;
};
struct JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3_StaticFields
{
// Newtonsoft.Json.JsonWriter/State[][] Newtonsoft.Json.JsonWriter::StateArray
StateU5BU5DU5BU5D_tA12046738DA5F6289ABA74ED1C079ED07EE202ED* ___StateArray_0;
// Newtonsoft.Json.JsonWriter/State[][] Newtonsoft.Json.JsonWriter::StateArrayTempate
StateU5BU5DU5BU5D_tA12046738DA5F6289ABA74ED1C079ED07EE202ED* ___StateArrayTempate_1;
};
// Newtonsoft.Json.JsonWriterException
struct JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA : public JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD
{
// System.String Newtonsoft.Json.JsonWriterException::<Path>k__BackingField
String_t* ___U3CPathU3Ek__BackingField_18;
};
// System.Reflection.TargetParameterCountException
struct TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859 : public ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A
{
};
// Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13
struct U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3
{
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// Newtonsoft.Json.Utilities.Base64Encoder Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<>4__this
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* ___U3CU3E4__this_2;
// System.Byte[] Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer_3;
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::index
int32_t ___index_4;
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::count
int32_t ___count_5;
// System.Threading.CancellationToken Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_6;
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<num4>5__2
int32_t ___U3Cnum4U3E5__2_7;
// System.Int32 Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<length>5__3
int32_t ___U3ClengthU3E5__3_8;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_9;
};
// Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14
struct U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620
{
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task_2;
// System.IO.TextWriter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_3;
// System.Char Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::c
Il2CppChar ___c_4;
// System.Threading.CancellationToken Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_6;
};
// Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16
struct U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833
{
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Char[] Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::writeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer_2;
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::lastWritePosition
int32_t ___lastWritePosition_3;
// Newtonsoft.Json.JsonTextWriter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::client
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client_4;
// System.String Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::s
String_t* ___s_5;
// System.IO.TextWriter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_6;
// System.Threading.CancellationToken Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_7;
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::charEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags_8;
// Newtonsoft.Json.StringEscapeHandling Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::stringEscapeHandling
int32_t ___stringEscapeHandling_9;
// System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<isEscapedUnicodeText>5__2
bool ___U3CisEscapedUnicodeTextU3E5__2_10;
// System.String Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<escapedValue>5__3
String_t* ___U3CescapedValueU3E5__3_11;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_12;
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::<i>5__4
int32_t ___U3CiU3E5__4_13;
};
// Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13
struct U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C
{
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task_2;
// System.String Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::s
String_t* ___s_3;
// System.IO.TextWriter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_4;
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::charEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags_5;
// Newtonsoft.Json.StringEscapeHandling Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::stringEscapeHandling
int32_t ___stringEscapeHandling_6;
// Newtonsoft.Json.JsonTextWriter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::client
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client_7;
// System.Char[] Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::writeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer_8;
// System.Threading.CancellationToken Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_9;
// System.Char Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::delimiter
Il2CppChar ___delimiter_10;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_11;
};
// Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d
struct U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099
{
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task_2;
// Newtonsoft.Json.JsonWriter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::<>4__this
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* ___U3CU3E4__this_3;
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::LevelsToComplete
int32_t ___LevelsToComplete_4;
// System.Threading.CancellationToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::CancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___CancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_6;
};
// Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d
struct U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228
{
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task_2;
// Newtonsoft.Json.JsonWriter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::<>4__this
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* ___U3CU3E4__this_3;
// Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::token
int32_t ___token_4;
// System.Threading.CancellationToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::CancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___CancellationToken_5;
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::LevelsToComplete
int32_t ___LevelsToComplete_6;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_7;
};
// Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d
struct U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738
{
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task_2;
// Newtonsoft.Json.JsonWriter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::<>4__this
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* ___U3CU3E4__this_3;
// System.Threading.CancellationToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::CancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___CancellationToken_4;
// Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::token
int32_t ___token_5;
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::LevelsToComplete
int32_t ___LevelsToComplete_6;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_7;
};
// Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d
struct U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52
{
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// Newtonsoft.Json.JsonWriter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::<>4__this
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* ___U3CU3E4__this_2;
// System.Threading.CancellationToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::CancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___CancellationToken_3;
// System.Int32 Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::LevelsToComplete
int32_t ___LevelsToComplete_4;
// Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::<token>5__2
int32_t ___U3CtokenU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_6;
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// Newtonsoft.Json.JsonTextWriter
struct JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4 : public JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3
{
// System.Boolean Newtonsoft.Json.JsonTextWriter::_safeAsync
bool ____safeAsync_14;
// System.IO.TextWriter Newtonsoft.Json.JsonTextWriter::_writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ____writer_16;
// Newtonsoft.Json.Utilities.Base64Encoder Newtonsoft.Json.JsonTextWriter::_base64Encoder
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* ____base64Encoder_17;
// System.Char Newtonsoft.Json.JsonTextWriter::_indentChar
Il2CppChar ____indentChar_18;
// System.Int32 Newtonsoft.Json.JsonTextWriter::_indentation
int32_t ____indentation_19;
// System.Char Newtonsoft.Json.JsonTextWriter::_quoteChar
Il2CppChar ____quoteChar_20;
// System.Boolean Newtonsoft.Json.JsonTextWriter::_quoteName
bool ____quoteName_21;
// System.Boolean[] Newtonsoft.Json.JsonTextWriter::_charEscapeFlags
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ____charEscapeFlags_22;
// System.Char[] Newtonsoft.Json.JsonTextWriter::_writeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____writeBuffer_23;
// Newtonsoft.Json.IArrayPool`1<System.Char> Newtonsoft.Json.JsonTextWriter::_arrayPool
RuntimeObject* ____arrayPool_24;
// System.Char[] Newtonsoft.Json.JsonTextWriter::_indentChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____indentChars_25;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
{
ALIGN_FIELD (8) Type_t* m_Items[1];
inline Type_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A : public RuntimeArray
{
ALIGN_FIELD (8) ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* m_Items[1];
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C : public RuntimeArray
{
ALIGN_FIELD (8) ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* m_Items[1];
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// Newtonsoft.Json.Utilities.TypeInformation[]
struct TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339 : public RuntimeArray
{
ALIGN_FIELD (8) TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* m_Items[1];
inline TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Dynamic.DynamicMetaObject[]
struct DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50 : public RuntimeArray
{
ALIGN_FIELD (8) DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* m_Items[1];
inline DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.UInt64[]
struct UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299 : public RuntimeArray
{
ALIGN_FIELD (8) uint64_t m_Items[1];
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265 : public RuntimeArray
{
ALIGN_FIELD (8) MethodInfo_t* m_Items[1];
inline MethodInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MethodInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MethodInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Boolean[]
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
{
ALIGN_FIELD (8) bool m_Items[1];
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Reflection.MemberInfo[]
struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053 : public RuntimeArray
{
ALIGN_FIELD (8) MemberInfo_t* m_Items[1];
inline MemberInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MemberInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MemberInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MemberInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MemberInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1 : public RuntimeArray
{
ALIGN_FIELD (8) Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* m_Items[1];
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364 : public RuntimeArray
{
ALIGN_FIELD (8) ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 m_Items[1];
inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Reflection.FieldInfo[]
struct FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8 : public RuntimeArray
{
ALIGN_FIELD (8) FieldInfo_t* m_Items[1];
inline FieldInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FieldInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, FieldInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FieldInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FieldInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.PropertyInfo[]
struct PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7 : public RuntimeArray
{
ALIGN_FIELD (8) PropertyInfo_t* m_Items[1];
inline PropertyInfo_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyInfo_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int64[]
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D : public RuntimeArray
{
ALIGN_FIELD (8) int64_t m_Items[1];
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* ___stateMachine1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<T> Newtonsoft.Json.Utilities.AsyncUtils::FromCanceled<System.Int32>(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725_gshared (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Boolean>(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t824317F4B958F7512E8F7300511752937A6C6043* Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_gshared (bool ___result0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// TSource[] System.Linq.Enumerable::ToArray<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// T[] Newtonsoft.Json.Utilities.CollectionUtils::ArrayEmpty<System.Int32>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_gshared_inline (const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m0786A6332E06581557A6E9D4DA5000AF5BC8A373_gshared (Dictionary_2_t2A9A7F3ECFC3483F89253F3C4BB5BE98A37F6EF3* __this, RuntimeObject* ___key0, int32_t* ___value1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StructMultiKey_2__ctor_mE9355E0A5E026A1DB579A95CEC49CDB5C82197DF_gshared (StructMultiKey_2_tBE8AC1F77387A29245D48FBA8C8C8E1763344DD5* __this, RuntimeObject* ___v10, RuntimeObject* ___v21, const RuntimeMethod* method) ;
// TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>::Get(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ThreadSafeStore_2_Get_mE9CE5B1666C8910F7604F053C67B725BEFABE6B1_gshared (ThreadSafeStore_2_tE8A4308D2D6297CCAAB09DEA5BE10886A8C1A6C1* __this, StructMultiKey_2_tBE8AC1F77387A29245D48FBA8C8C8E1763344DD5 ___key0, const RuntimeMethod* method) ;
// TResult System.Func`2<System.Object,System.Object>::Invoke(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___value0, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Char>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_gshared_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Char>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE_gshared (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Char>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_gshared_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE0470880427DED948EF413AD5E9525F41CAF7D1D_gshared (Dictionary_2_t2A9A7F3ECFC3483F89253F3C4BB5BE98A37F6EF3* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m53A4E919CB3AE7CC74379031E14C1AEA9DB7A933_gshared (Dictionary_2_t2A9A7F3ECFC3483F89253F3C4BB5BE98A37F6EF3* __this, RuntimeObject* ___key0, int32_t ___value1, const RuntimeMethod* method) ;
// System.Void System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m12F10CCB1ECA982B21F6E0BD358C8EE5BA647905_gshared (Func_2_tE378E613DF59ED24E2B05848263C326986F5BB56* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Object,System.Object>,System.Object>::.ctor(System.Func`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadSafeStore_2__ctor_mAFFCD9C430503AB2468B7CA3F07C25196B49D494_gshared (ThreadSafeStore_2_tE8A4308D2D6297CCAAB09DEA5BE10886A8C1A6C1* __this, Func_2_tE378E613DF59ED24E2B05848263C326986F5BB56* ___creator0, const RuntimeMethod* method) ;
// TResult Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::Invoke(T,System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_gshared_inline (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___target0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.TimeSpan>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.TimeSpan>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.TimeSpan>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method) ;
// T[] Newtonsoft.Json.Utilities.CollectionUtils::ArrayEmpty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* CollectionUtils_ArrayEmpty_TisRuntimeObject_m39E8CA17BC3CDD914B63FC8BECB0EB1D430FC60E_gshared_inline (const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Object>(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Cast_TisRuntimeObject_m2A5A4081E63E9C54E004DDD58B93C44866FE1330_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m960CFE6ABFCB6C2399B69DEDFB27765D1FCE57A6_gshared (RuntimeObject* ___source0, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___selector1, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_SingleOrDefault_TisRuntimeObject_m3B8BD7166B8DD26E05C0A3C8127047580A54FDC0_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m586C24F8E6C6C072C85103BCCD409E9E880BA630_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
// System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1_gshared (UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* ___array0, uint64_t ___value1, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_2__ctor_m57E69722197F6AF8DF4EC46673E3A867CFC312A1_gshared (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_FirstOrDefault_TisRuntimeObject_m89A7FC9E77581DB0D6C05F91BD328EDCA61A19BA_gshared (RuntimeObject* ___source0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82_gshared (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Char>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_gshared_inline (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* __this, Il2CppChar ___item0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Union<System.Char>(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_gshared (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* ___stateMachine0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int64>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_gshared_inline (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75_gshared (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int64>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_gshared (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int64>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_gshared_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, int64_t ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Int64>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_gshared_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Int64>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_gshared (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int64>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1_gshared (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, int64_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D_gshared (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Double>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_gshared_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Double>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_gshared_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Double>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF_gshared (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, double ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::Single<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Single_TisRuntimeObject_m5AA34C00130EAA359B0501E3D62D81193287663E_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet<System.Object>(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1_gshared (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, MemberInfo_t* ___memberInfo0, const RuntimeMethod* method) ;
// System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet<System.Object>(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B_gshared (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, MemberInfo_t* ___memberInfo0, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m6A0E7FE9DF9AE6C4BEE58611CB55F64FC3D79052_gshared (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// TResult System.Func`1<System.Object>::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_1_Invoke_m1412272198DFA4066C83206E5B43353AF10A2EEE_gshared_inline (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_SingleOrDefault_TisRuntimeObject_m79F141F20F85C2AC7A37F39B332426E4021F65D4_gshared (RuntimeObject* ___source0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<System.Linq.IGrouping`2<TKey,TSource>> System.Linq.Enumerable::GroupBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_GroupBy_TisRuntimeObject_TisRuntimeObject_m928678DD0BA06FA493AB806172807728CF37B04B_gshared (RuntimeObject* ___source0, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___keySelector1, const RuntimeMethod* method) ;
// System.Int32 System.Linq.Enumerable::Count<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Count_TisRuntimeObject_mFE2578389AAD1579F88DF0952810FE9CC535D2DE_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::First<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_First_TisRuntimeObject_mC0E9A81793F65BF8BEDFAAAD5B2401ADB054DD5A_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Any_TisRuntimeObject_mDCE2755EF33EFD51A60E9238A1537E3B41351058_gshared (RuntimeObject* ___source0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// TSource[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Enumerable_ToArray_TisRuntimeObject_m6B1F26FB2B3EA7B18B82FC81035440AAAEFCE924_gshared (RuntimeObject* ___source0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Where_TisRuntimeObject_m046DED489E38F15407F5825AD753C4090F103893_gshared (RuntimeObject* ___source0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.CollectionUtils::AddRange<System.Object>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionUtils_AddRange_TisRuntimeObject_m184CF3BF9C099CBB44E096B113C486C013167CF2_gshared (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.CollectionUtils::IndexOf<System.Object>(System.Collections.Generic.IEnumerable`1<T>,System.Func`2<T,System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionUtils_IndexOf_TisRuntimeObject_mB5B189DF6E2B10CEDC9451B4370EF3E428041313_gshared (RuntimeObject* ___collection0, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate1, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable System.Threading.Tasks.Task::ConfigureAwait(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::GetAwaiter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter::UpdateCurrentState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriter_UpdateCurrentState_m0CC4C4BBCF85021B1AE0A72659C5A91050CE9278 (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::<InternalWriteEndAsync>g__AwaitRemaining|11_3(System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JsonWriter_U3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3_m9EA2ACE88C9FE286A0833D33835BD73B02F379E8 (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* __this, int32_t ___LevelsToComplete0, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___CancellationToken1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_MoveNext_mC69ECC163AA17C93589D91B7C90A3B52CF496967 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_SetStateMachine_m69528EFF6576202DB38A30E412337F9377209669 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_MoveNext_mC2D308AAECF5204B8E72DB83877E7827E9D65940 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_SetStateMachine_m54D15C554860844183B4D733D2E6F95B80051E19 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_MoveNext_m609DEBA65CB7571354A81222C9563958170A8F0A (U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_SetStateMachine_m764B184333ED4128C6BE30B38E33A027EA4C060F (U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonWriter::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonWriter_Pop_mE6F01AEE8B02F6D4F6E6871A084F437B7AD5DC41 (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* __this, const RuntimeMethod* method) ;
// Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonWriter::GetCloseTokenForType(Newtonsoft.Json.JsonContainerType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JsonWriter_GetCloseTokenForType_mC47C8D67ECD8D5A166A53B79EAC723C6FF89E07E (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* __this, int32_t ___type0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_MoveNext_m994BF8D80C9DABB8E1A740B36CE5BFE2949A664A (U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_SetStateMachine_m5CAA6CF2876CED89D2958DA408A6AB898C069356 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m133E4DB19926E9CB835F6BDCF47EA910A92252A1 (JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_m29A7A39A820BD2EFF57EC051CB305B86C4B81FA9 (JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mF25D98C588CF67F15BECFB01FEA535FEC0117CB4 (JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonException__ctor_mF4EA9CF06D3471F221C86E1CF375030528D0090F (JsonException_tFFE4BB54605E1573CD957C3A40BEC5571CC386BD* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.JsonWriter::get_ContainerPath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonWriter_get_ContainerPath_mEEB68127DE05B60631203B908206E58C653E459C (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* __this, const RuntimeMethod* method) ;
// Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriterException::Create(System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* JsonWriterException_Create_m6C3D3BEE044830CEF3CB8039FDCE0688E50A947A (String_t* ___path0, String_t* ___message1, Exception_t* ___ex2, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.JsonPosition::FormatMessage(Newtonsoft.Json.IJsonLineInfo,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonPosition_FormatMessage_m75AF225DE2E1664B976DAA52E080571CC36E51E5 (RuntimeObject* ___lineInfo0, String_t* ___path1, String_t* ___message2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_m9DBE14E1D9FEA8877CB2528A2A0A0464F76E79C8 (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, String_t* ___message0, String_t* ___path1, Exception_t* ___innerException2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.AotHelper::IsFalse()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AotHelper_IsFalse_m0E45B362E86CEEBA6F8F14F9B861B999912E0568_inline (const RuntimeMethod* method) ;
// System.Void System.Action::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::get_UtcNow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD (const RuntimeMethod* method) ;
// System.Int32 System.DateTime::get_Year()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350 (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::FromCanceled(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method) ;
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Threading.Tasks.Task::.ctor(System.Action,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_mF543A040124A47EDA7AE6712F2B34265D3F42361 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___action0, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<T> Newtonsoft.Json.Utilities.AsyncUtils::FromCanceled<System.Int32>(System.Threading.CancellationToken)
inline Task_1_t4C228DE57804012969575431CFF12D57C875552D* AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725 (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
return (( Task_1_t4C228DE57804012969575431CFF12D57C875552D* (*) (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, const RuntimeMethod*))AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725_gshared)(___cancellationToken0, method);
}
// System.Threading.Tasks.TaskStatus System.Threading.Tasks.Task::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Status_m9707FD4B44416BA03FA2FDBEB3D0F0F281D90AD8 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Boolean>(TResult)
inline Task_1_t824317F4B958F7512E8F7300511752937A6C6043* Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD (bool ___result0, const RuntimeMethod* method)
{
return (( Task_1_t824317F4B958F7512E8F7300511752937A6C6043* (*) (bool, const RuntimeMethod*))Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_gshared)(___result0, method);
}
// System.Threading.Tasks.Task System.Threading.Tasks.Task::Delay(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Task_Delay_m49549664B58973EEEF1B479B21FB30D0DF3C7EFA (int32_t ___millisecondsDelay0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.AsyncUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m1143584A255BED8D14F32ED652C51D8E6DB09DE5 (U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* __this, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587 (RuntimeObject* ___value0, String_t* ___parameterName1, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::ValidateEncode(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.Base64Encoder::FulfillFromLeftover(System.Byte[],System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Base64Encoder_FulfillFromLeftover_m0FC68C1E5413E57DF204AA71B0B07C4D80E03442 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t* ___count2, const RuntimeMethod* method) ;
// System.Int32 System.Convert::ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offsetIn1, int32_t ___length2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___outArray3, int32_t ___offsetOut4, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_WriteChars_m2402CA2720FAFFF4529F80B591E2B701877C6EE9 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::StoreLeftOverBytes(System.Byte[],System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_StoreLeftOverBytes_m3B84B2B5BB5FDDA907E57387F515B6E662966AB9 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t* ___count2, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncTaskMethodBuilder::get_Task()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value1, int32_t ___start2, int32_t ___count3, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken4, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.Base64Encoder::WriteCharsAsync(System.Char[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Base64Encoder_WriteCharsAsync_m144AB562BAC2A09E4E03EACD94BED517D5FB42FD (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___index1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEncodeAsyncU3Ed__13_MoveNext_m08B0EE21B4F58EE65D7771073CBEA715263EDF36 (U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEncodeAsyncU3Ed__13_SetStateMachine_m969885F93B44F072CA61F028E51310515738805F (U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_ImplementsGenericDefinition_m489A8822028619645D53225726EAC777F42572FC (Type_t* ___type0, Type_t* ___genericInterfaceDefinition1, const RuntimeMethod* method) ;
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* CollectionUtils_ResolveEnumerableCollectionConstructor_mD88FC90C434024188F88254B22CCB8671F294D8B (Type_t* ___collectionType0, Type_t* ___collectionItemType1, Type_t* ___constructorArgumentType2, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.ConstructorInfo::op_Equality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Equality_mED386D917BF45C301A559A624731E9E57F1C064A (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___left0, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___right1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
}
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Object Newtonsoft.Json.Utilities.CollectionUtils::JaggedArrayGetValue(System.Collections.IList,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionUtils_JaggedArrayGetValue_mBA79916F1A61FB55361DFB1A7F0B691592F4676F (RuntimeObject* ___values0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices1, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m71595F7B1BD3262D3BE2D03B3F8A7A0F51482917 (RuntimeArray* __this, RuntimeObject* ___value0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices1, const RuntimeMethod* method) ;
// System.Int32 System.Array::GetLength(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935 (RuntimeArray* __this, int32_t ___dimension0, const RuntimeMethod* method) ;
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.CollectionUtils::CopyFromJaggedToMultidimensionalArray(System.Collections.IList,System.Array,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0 (RuntimeObject* ___values0, RuntimeArray* ___multidimensionalArray1, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices2, const RuntimeMethod* method) ;
// System.Collections.Generic.IList`1<System.Int32> Newtonsoft.Json.Utilities.CollectionUtils::GetDimensions(System.Collections.IList,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionUtils_GetDimensions_mF3D5F233089033C3DE9A6AAC64C53DE2D295D511 (RuntimeObject* ___values0, int32_t ___dimensionsCount1, const RuntimeMethod* method) ;
// TSource[] System.Linq.Enumerable::ToArray<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E_gshared)(___source0, method);
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m2947AE405EE1AC72C52E81E6DC6C0D4A77AF1B05 (Type_t* ___elementType0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___lengths1, const RuntimeMethod* method) ;
// T[] Newtonsoft.Json.Utilities.CollectionUtils::ArrayEmpty<System.Int32>()
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_inline (const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (const RuntimeMethod*))CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_gshared_inline)(method);
}
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_m81D45C5E7E6FDEA8B00CE19B5CC8BE488ADC1474 (Type_t* ___t0, bool* ___isEnum1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mEC72D6EF420C656529099C9CBDA497904A1B8ADC (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* __this, Type_t* ___key0, int32_t* ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5*, Type_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m0786A6332E06581557A6E9D4DA5000AF5BC8A373_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsEnum(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsEnum_m8FA65C0E930492403B47210901174D660CB274A4 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Type System.Enum::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Enum_GetUnderlyingType_m82EA340BC4D4652783F7D2408BF02A945F0F90DE (Type_t* ___enumType0, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8 (Type_t* ___t0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A (Type_t* ___t0, const RuntimeMethod* method) ;
// System.Type System.Nullable::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Nullable_GetUnderlyingType_m3162A4F48AE683C74A9419644E40C05595BA41E7 (Type_t* ___nullableType0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Parse_m49D0C9E15F6B481544498E6F64101FFF7EC88918 (String_t* ___input0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m7DB75E6B20C696DD77ED6EE409C002FC85E401BB (U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* __this, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA (Type_t* __this, String_t* ___name0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___types1, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m3F6B020142F59A9A1549CEB6C7A43798FBA18BEB (MethodInfo_t* ___left0, MethodInfo_t* ___right1, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.ReflectionDelegateFactory Newtonsoft.Json.Serialization.JsonTypeReflector::get_ReflectionDelegateFactory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D (const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398 (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___object0, ___method1, method);
}
// System.Numerics.BigInteger System.Numerics.BigInteger::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F BigInteger_Parse_mDED5D552139B603F31989B5D5A5D8F08EB9032A6 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m9F274FB1B4EC1E507374A65D16F8D1A6D23D54AC (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, float ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m48BEDD707B2B28BDB94A838395590DFFE775015A (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, double ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m9544C18A3217F10163645D4A62264DE37CA49821 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mFEDEDA4A6AFC2BA534FEEF4EB3431B9C5AC3F9D9 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mA87DC2182BB2F6AA0209BD98E81C30BCE5B8BBAA (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, int64_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_mE9288D5C617F6BF5B8E44F8B73D9198F30B90D84 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, uint32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m4685E4C69B49F9470E056A761DCEB8DB9FA7D01C (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, uint64_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Numerics.BigInteger::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m25FA3F3C832BC621CD91ABFAC3535A2F4EE7B371 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject* ___arg02, const RuntimeMethod* method) ;
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Decimal System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F BigInteger_op_Explicit_m7BBDC9C9467637F386A05AE96B834877ECC4ED02 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___value0, const RuntimeMethod* method) ;
// System.Double System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BigInteger_op_Explicit_m2AE1E0AC2AD93E0A02F65831DA8643B9DEEB99CA (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___value0, const RuntimeMethod* method) ;
// System.Single System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BigInteger_op_Explicit_mCF63D476FE84A5610A522C6B0D63FC679FD5036F (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___value0, const RuntimeMethod* method) ;
// System.UInt64 System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BigInteger_op_Explicit_m1BEEBEB5BD018A3C24694779C8F65D689740EE55 (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Numerics.BigInteger::op_Inequality(System.Numerics.BigInteger,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_op_Inequality_m7E1224F9A051BF8F0DBD1001E931EC3C7F4174BC (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___left0, int64_t ___right1, const RuntimeMethod* method) ;
// System.Int64 System.Numerics.BigInteger::op_Explicit(System.Numerics.BigInteger)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BigInteger_op_Explicit_mAA8F7C38164909FDEC9E39A29A454F6A56F2232B (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___value0, const RuntimeMethod* method) ;
// System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.ConvertUtils/ConvertResult Newtonsoft.Json.Utilities.ConvertUtils::TryConvertInternal(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, RuntimeObject** ___value3, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501 (String_t* ___format0, RuntimeObject* ___provider1, RuntimeObject* ___arg02, RuntimeObject* ___arg13, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsConvertible(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsConvertible_mEF2D516F9B97EBC8D75F45191567A381A42AB593 (Type_t* ___t0, const RuntimeMethod* method) ;
// System.Object System.Enum::Parse(System.Type,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_Parse_m1ABE53499F05D295104BDE57EE12376CF4513585 (Type_t* ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsInteger(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsInteger_m0647676958090E61BC6031DE800DC1BEC9C8063D (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Object System.Enum::ToObject(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_m6AC36749AA2CE7BCC5416CA230C0E5B4BDCFF4DB (Type_t* ___enumType0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.DateTimeOffset::.ctor(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method) ;
// System.Void System.Guid::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C (Guid_t* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___b0, const RuntimeMethod* method) ;
// System.Byte[] System.Guid::ToByteArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Guid_ToByteArray_m6EBFB2F42D3760D9143050A3A8ED03F085F3AFE9 (Guid_t* __this, const RuntimeMethod* method) ;
// System.Void System.Guid::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830 (Guid_t* __this, String_t* ___g0, const RuntimeMethod* method) ;
// System.Void System.Uri::.ctor(System.String,System.UriKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method) ;
// System.TimeSpan Newtonsoft.Json.Utilities.ConvertUtils::ParseTimeSpan(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ConvertUtils_ParseTimeSpan_m57269DE3ABCC7D347293DF51A06DED6D4BE25FD4 (String_t* ___input0, const RuntimeMethod* method) ;
// System.Byte[] System.Convert::FromBase64String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::VersionTryParse(System.String,System.Version&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_VersionTryParse_m54C210096FC4105F420D6604EBC7E3DF87B6BD5B (String_t* ___input0, Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7** ___result1, const RuntimeMethod* method) ;
// System.Numerics.BigInteger Newtonsoft.Json.Utilities.ConvertUtils::ToBigInteger(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ConvertUtils_ToBigInteger_mAC51C13F851033B34F2FB9612FB9E26F4242CAC6 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::FromBigInteger(System.Numerics.BigInteger,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_FromBigInteger_mF53687CC3D0ABCF2D027381F42E00F158E70283C (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___i0, Type_t* ___targetType1, const RuntimeMethod* method) ;
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* TypeDescriptor_GetConverter_mBF37D89915F76D19765E81387D62B0B407432EC6 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_m05803F15F053E4DA3CF290D52FC379BB9D8C396A (TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* __this, Type_t* ___destinationType0, const RuntimeMethod* method) ;
// System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_mE41048372E94CADCD46A0E450385F4E13011D19B (TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* __this, Type_t* ___sourceType0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0 (Type_t* ___t0, const RuntimeMethod* method) ;
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::EnsureTypeAssignable(System.Object,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027 (RuntimeObject* ___value0, Type_t* ___initialType1, Type_t* ___targetType2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsInterface(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsInterface_m4D973DDF986A880468989BCF6074CF83014FC4FC (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsGenericTypeDefinition(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsAbstract(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsAbstract_mAD6BAB4469EAD167D3D61F7DFA7013BA36914671 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_TryConvert_m098BBAFB2A31A6F3D4987226819FB086A1872603 (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, RuntimeObject** ___value3, const RuntimeMethod* method) ;
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_GetObjectType_m509A727ACFEDF3DE4EF246185EC5C69314F3020B (RuntimeObject* ___v0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>::.ctor(T1,T2)
inline void StructMultiKey_2__ctor_m268A22933F6F2600333CB40527C6BEB24842D789 (StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5* __this, Type_t* ___v10, Type_t* ___v21, const RuntimeMethod* method)
{
(( void (*) (StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5*, Type_t*, Type_t*, const RuntimeMethod*))StructMultiKey_2__ctor_mE9355E0A5E026A1DB579A95CEC49CDB5C82197DF_gshared)(__this, ___v10, ___v21, method);
}
// TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>::Get(TKey)
inline Func_2_tACBF5A1656250800CE861707354491F0611F6624* ThreadSafeStore_2_Get_m2D1CF0F41B583FA3F614780910FF1155219D70C4 (ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E* __this, StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5 ___key0, const RuntimeMethod* method)
{
return (( Func_2_tACBF5A1656250800CE861707354491F0611F6624* (*) (ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E*, StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5, const RuntimeMethod*))ThreadSafeStore_2_Get_mE9CE5B1666C8910F7604F053C67B725BEFABE6B1_gshared)(__this, ___key0, method);
}
// TResult System.Func`2<System.Object,System.Object>::Invoke(T)
inline RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___arg0, method);
}
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean System.Version::TryParse(System.String,System.Version&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_TryParse_m0F9193568E5911063EA9B477E8783DE9519E3D8D (String_t* ___input0, Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7** ___result1, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, bool, const RuntimeMethod*))Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared)(__this, ___value0, method);
}
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
inline bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<System.Char>::get_HasValue()
inline bool Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1*, const RuntimeMethod*))Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<System.Char>::.ctor(T)
inline void Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1*, Il2CppChar, const RuntimeMethod*))Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE_gshared)(__this, ___value0, method);
}
// System.Decimal System.Decimal::op_Implicit(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F (uint64_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Decimal::.ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, int32_t ___lo0, int32_t ___mid1, int32_t ___hi2, bool ___isNegative3, uint8_t ___scale4, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Division(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Addition(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Addition_m79AD1C3ED1E6345D50110EA4D20DAE724724B9DA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::op_GreaterThan(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_GreaterThan_m2C5A01FFBCF3858E8EF62C569D993EDC1CBC60FA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Equality_m48AE8B579CA29541C36D456B707AF9D8015C3558 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Char>::GetValueOrDefault()
inline Il2CppChar Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_gshared_inline)(__this, method);
}
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___value0, method);
}
// T System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline)(__this, method);
}
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
}
// System.Void System.Decimal::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decimal__ctor_m6DDFD6E3A7A8CDEB1BADF8E09A8D8E1BDA9497A9 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Multiply(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Increment(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Increment_m1864BCEBD01454E05A1A273FC0FD43BBDED10892 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_UnaryNegation(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_UnaryNegation_m6D15E0F16CF3D8B4B89AA6993EE09F935D98C2A8 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ;
// System.Boolean System.Guid::TryParseExact(System.String,System.String,System.Guid&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_TryParseExact_m64BD373DE1BE946EB243FDD168B21BAFFFDE5F3E (String_t* ___input0, String_t* ___format1, Guid_t* ___result2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::.ctor()
inline void Dictionary_2__ctor_m96B447EB5EF440757CFDA218BB8344D89762CE2C (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5*, const RuntimeMethod*))Dictionary_2__ctor_mE0470880427DED948EF413AD5E9525F41CAF7D1D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode>::Add(TKey,TValue)
inline void Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* __this, Type_t* ___key0, int32_t ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5*, Type_t*, int32_t, const RuntimeMethod*))Dictionary_2_Add_m53A4E919CB3AE7CC74379031E14C1AEA9DB7A933_gshared)(__this, ___key0, ___value1, method);
}
// System.Void Newtonsoft.Json.Utilities.TypeInformation::.ctor(System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69 (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* __this, Type_t* ___type0, int32_t ___typeCode1, const RuntimeMethod* method) ;
// System.Void System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mDDEAD298E1A5A006441585942908F6BD7CE7699E (Func_2_t890667DD511E31012095396A8BF9C888E2284437* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t890667DD511E31012095396A8BF9C888E2284437*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m12F10CCB1ECA982B21F6E0BD358C8EE5BA647905_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>,System.Func`2<System.Object,System.Object>>::.ctor(System.Func`2<TKey,TValue>)
inline void ThreadSafeStore_2__ctor_mF589737F54B40E91045E1203531A2FFFDDCFB386 (ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E* __this, Func_2_t890667DD511E31012095396A8BF9C888E2284437* ___creator0, const RuntimeMethod* method)
{
(( void (*) (ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E*, Func_2_t890667DD511E31012095396A8BF9C888E2284437*, const RuntimeMethod*))ThreadSafeStore_2__ctor_mAFFCD9C430503AB2468B7CA3F07C25196B49D494_gshared)(__this, ___creator0, method);
}
// TResult Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::Invoke(T,System.Object[])
inline RuntimeObject* MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___target0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, const RuntimeMethod*))MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_gshared_inline)(__this, ___target0, ___args1, method);
}
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseDate(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseDate_mCF43EAF9D60C2DF52038EAA7C5653D59C83F9C8F (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseChar(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTimeAndZoneAndWhitespace(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseTimeAndZoneAndWhitespace_m36C0C76A6548E07654C45414059FBD5BC95F5BBD (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse4Digit(System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse4Digit_mC5F981E6CD7CD915FEA858DE77A04AEC04AF4D86 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse2Digit(System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) ;
// System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTime(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseTime_m9717B1406E4705AB36B56F41A8F0CAA14B1815DD (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t* ___start0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseZone(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseZone_m4CEBD1A881CB114B6EB7D8050F44EA265A260642 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method) ;
// System.TimeZoneInfo System.TimeZoneInfo::get_Local()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0 (const RuntimeMethod* method) ;
// System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method) ;
// System.ArgumentOutOfRangeException Newtonsoft.Json.Utilities.MiscellaneousUtils::CreateArgumentOutOfRangeException(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* MiscellaneousUtils_CreateArgumentOutOfRangeException_m79874B152C4F585038C18860400FB99D5809C61A (String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method) ;
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToLocalTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_SwitchToLocalTime_m190062F7FACC2955702CC88018916D6C03209FCA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToUtcTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_SwitchToUtcTime_m29D75B8F26FEE0075979761574DDBC2F21F8A821 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ;
// System.Int64 System.DateTime::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method) ;
// System.DateTimeKind System.DateTime::get_Kind()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::ToLocalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::ToUniversalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.TimeSpan Newtonsoft.Json.Utilities.DateTimeUtils::GetUtcOffset(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, const RuntimeMethod* method) ;
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ToUniversalTicks_mAF9B56F55FBBE8D2416CD3D65E41FC2D4C3A9A0E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.Int64 System.TimeSpan::get_Ticks()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::UniversialTicksToJavaScriptTicks(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_UniversialTicksToJavaScriptTicks_mA15CDCA6BE0EDC76C741CD0389326DBEA6949796 (int64_t ___universialTicks0, const RuntimeMethod* method) ;
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m8B6566AC54130989488A438E1145011B92E1F0D3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, bool ___convertToUtc1, const RuntimeMethod* method) ;
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ToUniversalTicks_m056F64EA26410C886596EADBD1CC2AD59A6B9D0C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method) ;
// System.Char[] Newtonsoft.Json.Utilities.StringReference::get_Chars()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.StringReference::get_StartIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.StringReference::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method) ;
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::CreateDateTime(Newtonsoft.Json.Utilities.DateTimeParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_CreateDateTime_m4231C3E5B128BDA26A6E2D792B4C16280DE9DB44 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 ___dateTimeParser0, const RuntimeMethod* method) ;
// System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method) ;
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::EnsureDateTime(System.DateTime,Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, int32_t ___timeZone1, const RuntimeMethod* method) ;
// System.Void System.TimeSpan::.ctor(System.Int64)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___ticks0, const RuntimeMethod* method) ;
// System.Void System.DateTimeOffset::.ctor(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method) ;
// System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::AddTicks(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___value0, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::AddDays(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___value0, const RuntimeMethod* method) ;
// System.Char Newtonsoft.Json.Utilities.StringReference::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.StringReferenceExtensions::StartsWith(Newtonsoft.Json.Utilities.StringReference,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringReferenceExtensions_StartsWith_mDD8F61D9394049D6AF09C454C0D06C08C857ADE2 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___s0, String_t* ___text1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.StringReferenceExtensions::EndsWith(Newtonsoft.Json.Utilities.StringReference,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringReferenceExtensions_EndsWith_mF4622B786A7EADB04011C8B8A37A60F915DC1DA4 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___s0, String_t* ___text1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeMicrosoft(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeMicrosoft_mEE89A737A22D755CDD42EC91192143824FDA0839 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int32_t ___dateTimeZoneHandling1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt2, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeIso(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeIso_m1297115F8CC0DDFCAE526C838783117C3E2D6903 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int32_t ___dateTimeZoneHandling1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.StringUtils::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B (String_t* ___value0, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.StringReference::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringReference_ToString_m14E995A62CEC0B0C1313E51D01878B015EB38EF6 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeExact(System.String,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeExact_m738712576F6A272BF0D26F9E695743104438AB10 (String_t* ___text0, int32_t ___dateTimeZoneHandling1, String_t* ___dateFormatString2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt4, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
// System.Char[] System.String::ToCharArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* String_ToCharArray_m0699A92AA3E744229EF29CB9D943C47DF4FE5B46 (String_t* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StringReference::.ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReference__ctor_mCAEF5A34A8FD029BA4399BDEAD6B9AB67515A5B2 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_TryParseExact_m524A3BFC07243B2BE4BF406CCE59595878F78CCE (String_t* ___s0, String_t* ___format1, RuntimeObject* ___provider2, int32_t ___style3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___result4, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetMicrosoft(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC14977B7915B5B1EEE1B3D95EE1A4DE4634084A4 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetIso(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetIso_mBB92BE406C120E1766360B5CA9677255B02579F7 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetExact(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetExact_m7D043249C3C5C47267FC1B188B2A3A868D3E7290 (String_t* ___text0, String_t* ___dateFormatString1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt3, const RuntimeMethod* method) ;
// System.Boolean System.DateTimeOffset::TryParseExact(System.String,System.String,System.IFormatProvider,System.Globalization.DateTimeStyles,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_TryParseExact_m7ED35991FAE98C6A0BD626D627AA043B80A340C4 (String_t* ___input0, String_t* ___format1, RuntimeObject* ___formatProvider2, int32_t ___styles3, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___result4, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.StringReferenceExtensions::IndexOf(Newtonsoft.Json.Utilities.StringReference,System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringReferenceExtensions_IndexOf_mA49ED79D062900147DE734CC6631F8397E7EE89C (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___s0, Il2CppChar ___c1, int32_t ___startIndex2, int32_t ___length3, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryReadOffset(Newtonsoft.Json.Utilities.StringReference,System.Int32,System.TimeSpan&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryReadOffset_mB619571E3240ADC0685D53C4D8166350C13B7AA8 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___offsetText0, int32_t ___startIndex1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___offset2, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int64TryParse(System.Char[],System.Int32,System.Int32,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_Int64TryParse_m1EA37290CAB28B9BDD22888990F8E0E9850E8438 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___length2, int64_t* ___value3, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseMicrosoftDate(Newtonsoft.Json.Utilities.StringReference,System.Int64&,System.TimeSpan&,System.DateTimeKind&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseMicrosoftDate_m45B19AD0487A8CD8B3BF73002442C8143F404120 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int64_t* ___ticks1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___offset2, int32_t* ___kind3, const RuntimeMethod* method) ;
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::ConvertJavaScriptTicksToDateTime(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_ConvertJavaScriptTicksToDateTime_m06106AA819E24221772E74B545C218B6B4270E60 (int64_t ___javaScriptTicks0, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_SpecifyKind_mDDC07FD5DC16F2EC56ECBDB8F58E1C5FBDF426B4 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, int32_t ___kind1, const RuntimeMethod* method) ;
// System.DateTimeOffset System.DateTimeOffset::op_Implicit(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_op_Implicit_m54F09DA78E92FAF940CA62C888F12553ABD9968F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::Add(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method) ;
// System.Void System.DateTimeOffset::.ctor(System.Int64,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, int64_t ___ticks0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int32TryParse(System.Char[],System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_Int32TryParse_m27D6FEF87EDF6A5A835E12774A5CE9BAA952D266 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___length2, int32_t* ___value3, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::FromHours(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromHours_mE752300A91D97AB8CCC53CB38547BBEFF601E2C6 (double ___value0, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::FromMinutes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromMinutes_m6A205525E41E41D13637359BA49AC7F3B23F714E (double ___value0, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::Negate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(System.Char[],System.Int32,System.DateTime,System.Nullable`1<System.TimeSpan>,System.DateTimeKind,Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDateTimeString_m19D81D01AA0A6AA38AF2EB7CCA304B2ED67E18F5 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value2, Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 ___offset3, int32_t ___kind4, int32_t ___format5, const RuntimeMethod* method) ;
// System.String System.DateTime::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.TimeSpan>::get_HasValue()
inline bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, const RuntimeMethod*))Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.TimeSpan>::GetValueOrDefault()
inline TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method)
{
return (( TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_gshared_inline)(__this, method);
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m1A78A1FC9604E80121288A6985CEF352038067C2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method) ;
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method) ;
// System.String System.Int64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m5250B67D3E89B8EB829FB26136E744F1F141B7FD (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffset(System.Char[],System.Int32,System.TimeSpan,Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDateTimeOffset_m529B0BE3016F8BAACDCAEF49D2EE9E9114D6B142 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset2, int32_t ___format3, const RuntimeMethod* method) ;
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDefaultIsoDate(System.Char[],System.Int32,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDefaultIsoDate_m5F11454A171878E50CB08D39AA7843D72FB8FD48 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dt2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::GetDateValues(System.DateTime,System.Int32&,System.Int32&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_GetDateValues_m337852D54E4FE48840796024EB475AC69EC9A24B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___td0, int32_t* ___year1, int32_t* ___month2, int32_t* ___day3, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::CopyIntToCharArray(System.Char[],System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___value2, int32_t ___digits3, const RuntimeMethod* method) ;
// System.Int32 System.DateTime::get_Hour()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Int32 System.DateTime::get_Minute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Int32 System.DateTime::get_Second()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Int32 System.TimeSpan::get_Hours()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Int32 System.TimeSpan::get_Minutes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.DateTime System.DateTimeOffset::get_UtcDateTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
// System.DateTime System.DateTimeOffset::get_DateTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_DateTime_mDF6DC57E7A5647D8B964D3FD5B6855E7D66EF324 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
// System.TimeSpan System.DateTimeOffset::get_Offset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.TimeSpan>::.ctor(T)
inline void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A, const RuntimeMethod*))Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared)(__this, ___value0, method);
}
// System.String System.DateTimeOffset::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method) ;
// System.Linq.Expressions.ConstantExpression System.Linq.Expressions.Expression::Constant(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstantExpression_t4BE6B7DFD889CC0EA42B45C32BD511F2764E1547* Expression_Constant_m5D3728BC22F16A217945079B390E6E622BA5904D (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Object Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::CreateSharpArgumentInfoArray(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___values0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::CreateMemberCalls()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25 (const RuntimeMethod* method) ;
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C (Type_t* ___elementType0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___obj0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters1, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08 (const RuntimeMethod* method) ;
// System.String System.Dynamic.GetMemberBinder::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* GetMemberBinder_get_Name_mCE0671772897ED1E0575E3BE2C06CAB8D52019C4_inline (GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* __this, const RuntimeMethod* method) ;
// System.Boolean System.Dynamic.GetMemberBinder::get_IgnoreCase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GetMemberBinder_get_IgnoreCase_mB2924A5209BB108C50B5DDB5C8B2C781F34631CD_inline (GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* __this, const RuntimeMethod* method) ;
// System.Void System.Dynamic.GetMemberBinder::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GetMemberBinder__ctor_m3CB795552FE62FB770DE0F3926E152CB4BFAC298 (GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* __this, String_t* ___name0, bool ___ignoreCase1, const RuntimeMethod* method) ;
// T[] Newtonsoft.Json.Utilities.CollectionUtils::ArrayEmpty<System.Dynamic.DynamicMetaObject>()
inline DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* CollectionUtils_ArrayEmpty_TisDynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_m8DFC5CFD1B0AFBAD1118857F2FDF2B99B40EA0ED_inline (const RuntimeMethod* method)
{
return (( DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* (*) (const RuntimeMethod*))CollectionUtils_ArrayEmpty_TisRuntimeObject_m39E8CA17BC3CDD914B63FC8BECB0EB1D430FC60E_gshared_inline)(method);
}
// System.Void Newtonsoft.Json.Utilities.NoThrowExpressionVisitor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoThrowExpressionVisitor__ctor_mE60E1F560B471945B1BC836FFBFE1CF736BF7A2C (NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A* __this, const RuntimeMethod* method) ;
// System.Linq.Expressions.Expression System.Dynamic.DynamicMetaObject::get_Expression()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* DynamicMetaObject_get_Expression_mC74F5FF9AC58E0F938C2C15CA0B32CE999EEA7F4_inline (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* __this, const RuntimeMethod* method) ;
// System.Dynamic.BindingRestrictions System.Dynamic.DynamicMetaObject::get_Restrictions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* DynamicMetaObject_get_Restrictions_mC56A7B16011CB2E190394A71B37293BDAC8CBF68_inline (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* __this, const RuntimeMethod* method) ;
// System.Void System.Dynamic.DynamicMetaObject::.ctor(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicMetaObject__ctor_m3A410E35A61623019D223D58673E0A38550EF12A (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* __this, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___expression0, BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* ___restrictions1, const RuntimeMethod* method) ;
// System.String System.Dynamic.SetMemberBinder::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SetMemberBinder_get_Name_mE683668DE73BFB110F155E377E26B506960A7B42_inline (SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* __this, const RuntimeMethod* method) ;
// System.Boolean System.Dynamic.SetMemberBinder::get_IgnoreCase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SetMemberBinder_get_IgnoreCase_m41897B494A2B432A9D7C437C9C54AC51853E33AB_inline (SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* __this, const RuntimeMethod* method) ;
// System.Void System.Dynamic.SetMemberBinder::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetMemberBinder__ctor_m57A59B263345A045AC30EECAE7D683B535FDCF56 (SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* __this, String_t* ___name0, bool ___ignoreCase1, const RuntimeMethod* method) ;
// System.Linq.Expressions.Expression System.Linq.Expressions.ConditionalExpression::get_IfFalse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ConditionalExpression_get_IfFalse_mEA6C2752B55A2D84A53DF36CD8C1E43244C99CA9 (ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* __this, const RuntimeMethod* method) ;
// System.Linq.Expressions.Expression System.Linq.Expressions.ConditionalExpression::get_Test()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ConditionalExpression_get_Test_mFEB910B9D8397F9B9C54950355860E948E47A144_inline (ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* __this, const RuntimeMethod* method) ;
// System.Linq.Expressions.Expression System.Linq.Expressions.ConditionalExpression::get_IfTrue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ConditionalExpression_get_IfTrue_mEE0343EC7D38FD9712A72428B32B873CE10A140E_inline (ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* __this, const RuntimeMethod* method) ;
// System.Linq.Expressions.ConditionalExpression System.Linq.Expressions.Expression::Condition(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* Expression_Condition_m0835FE3C5B514D2EA9588F1147E0BB365ACD6996 (Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___test0, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___ifTrue1, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ___ifFalse2, const RuntimeMethod* method) ;
// System.Linq.Expressions.Expression System.Linq.Expressions.ExpressionVisitor::VisitConditional(System.Linq.Expressions.ConditionalExpression)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ExpressionVisitor_VisitConditional_m2BB93A86981B731959195912EB5891D7BD1BD0DA (ExpressionVisitor_tD26583FF464068F23017BC372C81133A62C5A590* __this, ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* ___node0, const RuntimeMethod* method) ;
// System.Void System.Linq.Expressions.ExpressionVisitor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionVisitor__ctor_m2974B344C35DD823BDA6D6313DAE4C7F64541393 (ExpressionVisitor_tD26583FF464068F23017BC372C81133A62C5A590* __this, const RuntimeMethod* method) ;
// System.String[] System.Enum::GetNames(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94 (Type_t* ___enumType0, const RuntimeMethod* method) ;
// System.UInt64 Newtonsoft.Json.Utilities.EnumUtils::ToUInt64(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Runtime.Serialization.EnumMemberAttribute>(System.Collections.IEnumerable)
inline RuntimeObject* Enumerable_Cast_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_m2B55B1DE3CF4EA5A87FE61C7480A7AADDCF53288 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Cast_TisRuntimeObject_m2A5A4081E63E9C54E004DDD58B93C44866FE1330_gshared)(___source0, method);
}
// System.Void System.Func`2<System.Runtime.Serialization.EnumMemberAttribute,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m25D7CCCB2BC4A2036F633BA4E85C313162806D89 (Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Runtime.Serialization.EnumMemberAttribute,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
inline RuntimeObject* Enumerable_Select_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_TisString_t_m493F02D888EF35B0C6658E01CD9B62FE4B38BE9F (RuntimeObject* ___source0, Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08*, const RuntimeMethod*))Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m960CFE6ABFCB6C2399B69DEDFB27765D1FCE57A6_gshared)(___source0, ___selector1, method);
}
// TSource System.Linq.Enumerable::SingleOrDefault<System.String>(System.Collections.Generic.IEnumerable`1<TSource>)
inline String_t* Enumerable_SingleOrDefault_TisString_t_mB6F747A3C3592CB658649586468A3371D267EBA7 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( String_t* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_SingleOrDefault_TisRuntimeObject_m3B8BD7166B8DD26E05C0A3C8127047580A54FDC0_gshared)(___source0, method);
}
// System.Int32 System.Array::IndexOf<System.String>(T[],T,System.Int32,System.Int32)
inline int32_t Array_IndexOf_TisString_t_m93EC6BFDB1B64AB4C48C7329B99C061D2F350EA2 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___array0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
return (( int32_t (*) (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*, String_t*, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m586C24F8E6C6C072C85103BCCD409E9E880BA630_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
}
// System.Void Newtonsoft.Json.Utilities.EnumInfo::.ctor(System.Boolean,System.UInt64[],System.String[],System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumInfo__ctor_m81F36D62F4703ECB5C7DDD56A03097764285078A (EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* __this, bool ___isFlags0, UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* ___values1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___names2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___resolvedNames3, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.EnumUtils::TryToString(System.Type,System.Object,Newtonsoft.Json.Serialization.NamingStrategy,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumUtils_TryToString_m454C0BD5EA39A454B73BF95A2C8FFB5833021DBB (Type_t* ___enumType0, RuntimeObject* ___value1, NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* ___namingStrategy2, String_t** ___name3, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>::.ctor(T1,T2)
inline void StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2 (StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D* __this, Type_t* ___v10, NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* ___v21, const RuntimeMethod* method)
{
(( void (*) (StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D*, Type_t*, NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50*, const RuntimeMethod*))StructMultiKey_2__ctor_mE9355E0A5E026A1DB579A95CEC49CDB5C82197DF_gshared)(__this, ___v10, ___v21, method);
}
// TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>::Get(TKey)
inline EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33 (ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* __this, StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D ___key0, const RuntimeMethod* method)
{
return (( EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* (*) (ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2*, StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D, const RuntimeMethod*))ThreadSafeStore_2_Get_mE9CE5B1666C8910F7604F053C67B725BEFABE6B1_gshared)(__this, ___key0, method);
}
// System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T)
inline int32_t Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1 (UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* ___array0, uint64_t ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299*, uint64_t, const RuntimeMethod*))Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1_gshared)(___array0, ___value1, method);
}
// System.String Newtonsoft.Json.Utilities.EnumUtils::InternalFlagsFormat(Newtonsoft.Json.Utilities.EnumInfo,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumUtils_InternalFlagsFormat_m10EF3FA6B5A3AA6F61EF0A686AAAF041F28C9827 (EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* ___entry0, uint64_t ___result1, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Insert_mEA426100381DD65FB6A891BA28B5F1208BEDDD29 (StringBuilder_t* __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method) ;
// System.Byte System.Convert::ToByte(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF977257DBAD4FAD9FF78232B33DF37121800834D (bool ___value0, const RuntimeMethod* method) ;
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.EnumUtils::FindIndexByName(System.String[],System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___enumNames0, String_t* ___value1, int32_t ___valueIndex2, int32_t ___valueSubstringLength3, int32_t ___comparison4, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::get_Value()
inline int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared)(__this, method);
}
// System.Object System.Enum::ToObject(System.Type,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_m5F3E7A43003C9B3CD35925F8F659A6EDABD79DC8 (Type_t* ___enumType0, uint64_t ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ;
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.EnumUtils::MatchName(System.String,System.String[],System.String[],System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 EnumUtils_MatchName_m6A0E35FEF84B5013903F0CDD1E086174E64D6DE1 (String_t* ___value0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___enumNames1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___resolvedNames2, int32_t ___valueIndex3, int32_t ___valueSubstringLength4, int32_t ___comparison5, const RuntimeMethod* method) ;
// System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, int32_t ___comparisonType5, const RuntimeMethod* method) ;
// System.Void System.Func`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mBF572B6F62CA735C7C45DEDFC75F0839A6247612 (Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m12F10CCB1ECA982B21F6E0BD358C8EE5BA647905_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Newtonsoft.Json.Utilities.ThreadSafeStore`2<Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>,Newtonsoft.Json.Utilities.EnumInfo>::.ctor(System.Func`2<TKey,TValue>)
inline void ThreadSafeStore_2__ctor_m268D655240D6A1AA432C1156AC2C3927E86DD8B8 (ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* __this, Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C* ___creator0, const RuntimeMethod* method)
{
(( void (*) (ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2*, Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C*, const RuntimeMethod*))ThreadSafeStore_2__ctor_mAFFCD9C430503AB2468B7CA3F07C25196B49D494_gshared)(__this, ___creator0, method);
}
// System.Void Newtonsoft.Json.Serialization.CamelCaseNamingStrategy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CamelCaseNamingStrategy__ctor_mF8654DDF11007C1CA79C1152B59BD07B3EF088E1 (CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mB8204CC34DACDED611AAD8DB38DBFE4D17601831 (U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* __this, const RuntimeMethod* method) ;
// System.String System.Runtime.Serialization.EnumMemberAttribute::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMemberAttribute_get_Value_mB41126B613B9FD1CD8A05D08FCEC4B6663864BE9_inline (EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_FSharpCoreAssembly(System.Reflection.Assembly)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_FSharpCoreAssembly_m32C9B6A87994E00C34378B4B7C39B2E26C0C6506_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Assembly_t* ___value0, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo Newtonsoft.Json.Utilities.FSharpUtils::GetMethodWithNonPublicFallback(System.Type,System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* FSharpUtils_GetMethodWithNonPublicFallback_m2487A2B48B9588492F576FC401765638D1AD7B20 (Type_t* ___type0, String_t* ___methodName1, int32_t ___bindingFlags2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_IsUnion(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_IsUnion_m8FCC8731B64FE062A4E1D311940B5F5B599A0A3A_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCases(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCases_m6149ED7891791ABDC0D92F829F7089FD24BD9700_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::CreateFSharpFuncCall(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_CreateFSharpFuncCall_m89DB18871762C3640D3900F009AE2E66361229DB (Type_t* ___type0, String_t* ___methodName1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionTagReader(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionTagReader_m847B8584BDDE2A8A3CF3C3F67E256D86FC3E5EBC_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionReader(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionReader_m9DB56755B6E02862BC06346DE42EFB80F20BE07D_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionConstructor(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionConstructor_mA9DBD858EA7027535AA2B08A9BA72A051FBA517D_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoName(System.Func`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoName_mFA1AF36D4D226B197D5A30F741FA99D340053863_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoTag(System.Func`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoTag_m03CFCF109DAE145593C6DAAF4E0415C4F12F389B_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoDeclaringType(System.Func`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoDeclaringType_mDBBCAAB7E10D51DF946D4D7D6FFF052DC1640AA5_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231 (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoFields(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoFields_m0A5E55FD9DFC698AD9FF477B2BE107CE0ECF3BDD_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::.ctor(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils__ctor_m9824778422EAFFB89C8FC8176D0EF2A0A68A7047 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Assembly_t* ___fsharpCoreAssembly0, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass52_0__ctor_m73649FD95CB401FD15A813F7D11B75B6E3B85913 (U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
inline void MethodCall_2__ctor_m57E69722197F6AF8DF4EC46673E3A867CFC312A1 (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, RuntimeObject*, intptr_t, const RuntimeMethod*))MethodCall_2__ctor_m57E69722197F6AF8DF4EC46673E3A867CFC312A1_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Newtonsoft.Json.Utilities.FSharpFunction::.ctor(System.Object,Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpFunction__ctor_m3F5A2832EC500F2DD4CD1B50F05BCCFE9DFB3AC0 (FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF* __this, RuntimeObject* ___instance0, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___invoker1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsGenericType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass24_0__ctor_mE93486FA25CF4BBE9D2A622047ED6A25D581DEAE (U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* __this, const RuntimeMethod* method) ;
// System.Void System.Func`2<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m3029E36C9D6AEF0C92CBFDB1E370E8C107A25E0C (Func_2_t43CC133C289457C636A18BA4D471FC2B56544421* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t43CC133C289457C636A18BA4D471FC2B56544421*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// TSource System.Linq.Enumerable::FirstOrDefault<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2 (RuntimeObject* ___source0, Func_2_t43CC133C289457C636A18BA4D471FC2B56544421* ___predicate1, const RuntimeMethod* method)
{
return (( ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* (*) (RuntimeObject*, Func_2_t43CC133C289457C636A18BA4D471FC2B56544421*, const RuntimeMethod*))Enumerable_FirstOrDefault_TisRuntimeObject_m89A7FC9E77581DB0D6C05F91BD328EDCA61A19BA_gshared)(___source0, ___predicate1, method);
}
// System.Reflection.Assembly Newtonsoft.Json.Utilities.TypeExtensions::Assembly(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t* TypeExtensions_Assembly_m901B83746B4750709ADEA60C943F38FFAF68ECE9 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_CreatedTypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_CreatedTypeName_mB6C5E4C0083F30B8A3E973B27B1743BA72E01688_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_BuilderTypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_BuilderTypeName_m45D8747B2EECD911E9B60C009A1E6A5FA2CC0416_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo[] System.Type::GetMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* Type_GetMethods_m5D4A53D1E667CF33173EEA37D0111FE92A572559 (Type_t* __this, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Reflection.MethodInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0 (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// TSource System.Linq.Enumerable::FirstOrDefault<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline MethodInfo_t* Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2 (RuntimeObject* ___source0, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* ___predicate1, const RuntimeMethod* method)
{
return (( MethodInfo_t* (*) (RuntimeObject*, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*, const RuntimeMethod*))Enumerable_FirstOrDefault_TisRuntimeObject_m89A7FC9E77581DB0D6C05F91BD328EDCA61A19BA_gshared)(___source0, ___predicate1, method);
}
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC (MethodInfo_t* ___left0, MethodInfo_t* ___right1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass25_0__ctor_m812DC34DD88D28C881C83A50505ACA112EC48285 (U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>::.ctor()
inline void List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___contractTypeName0, String_t* ___createdTypeName1, String_t* ___builderTypeName2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo>::Add(T)
inline void List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* __this, ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158*, ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_ContractTypeName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_ContractTypeName_m47BA9C385AB128EE5E9738349A9E03A8EEAF3031_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_CreatedTypeName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_CreatedTypeName_mDD7FC89BF73B105C1D0B1E3636015595A61BFF28_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_BuilderTypeName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_BuilderTypeName_mF5E3F9EC7F19DC62CC67FC65D15E5FE7E0B6390E_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_ContractTypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_ContractTypeName_m8D183787036FB024B123860C9BBC82DB9567E1FE_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m791091B0F758FEF9EABB77C82005842468057948 (U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Char>::.ctor()
inline void List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82 (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7*, const RuntimeMethod*))List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Char>::Add(T)
inline void List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* __this, Il2CppChar ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7*, Il2CppChar, const RuntimeMethod*))List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_gshared_inline)(__this, ___item0, method);
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Union<System.Char>(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEnumerable`1<TSource>)
inline RuntimeObject* Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1 (RuntimeObject* ___first0, RuntimeObject* ___second1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_gshared)(___first0, ___second1, method);
}
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils::FirstCharToEscape(System.String,System.Boolean[],Newtonsoft.Json.StringEscapeHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JavaScriptUtils_FirstCharToEscape_mB7CFDEC6E9E0C4493019F89D3A81EDCD7A3E1252 (String_t* ___s0, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags1, int32_t ___stringEscapeHandling2, const RuntimeMethod* method) ;
// System.Char[] Newtonsoft.Json.Utilities.BufferUtils::EnsureBufferSize(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* BufferUtils_EnsureBufferSize_m5FEFC50FA57014231E3AADA7BB534A0B8FC62A42 (RuntimeObject* ___bufferPool0, int32_t ___size1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StringUtils::ToCharAsUnicode(System.Char,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringUtils_ToCharAsUnicode_mBA860BE84C473B842533B2CE9C41261B1DE71220 (Il2CppChar ___c0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method) ;
// System.Char[] Newtonsoft.Json.Utilities.BufferUtils::RentBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* BufferUtils_RentBuffer_m70AF45505A9D28EA1A35B54194A366F69112DB9D (RuntimeObject* ___bufferPool0, int32_t ___minSize1, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F (RuntimeArray* ___sourceArray0, RuntimeArray* ___destinationArray1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.BufferUtils::ReturnBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferUtils_ReturnBuffer_m4E16405935FE4EAAC437FDA5221F38E9E89CD797 (RuntimeObject* ___bufferPool0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, const RuntimeMethod* method) ;
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::GetCharEscapeFlags(Newtonsoft.Json.StringEscapeHandling,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* JavaScriptUtils_GetCharEscapeFlags_mA0157C8EFFFF7C9A981C976B017D9D81947BD54A (int32_t ___stringEscapeHandling0, Il2CppChar ___quoteChar1, const RuntimeMethod* method) ;
// System.IO.StringWriter Newtonsoft.Json.Utilities.StringUtils::CreateStringWriter(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* StringUtils_CreateStringWriter_m330EDE0346AA3FE3FAB24D6F8C475226C2BA60DF (int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptString(System.IO.TextWriter,System.String,System.Char,System.Boolean,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JavaScriptUtils_WriteEscapedJavaScriptString_m9338E7B75DEE50EF9042E3B8D83B6BAE947F264C (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, Il2CppChar ___delimiter2, bool ___appendDelimiters3, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags4, int32_t ___stringEscapeHandling5, RuntimeObject* ___bufferPool6, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** ___writeBuffer7, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithDelimitersAsync(System.IO.TextWriter,System.String,System.Char,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_m3FC5E2AFECA835F8CEC47ADC20810630F59DC8D2 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, Il2CppChar ___delimiter2, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags3, int32_t ___stringEscapeHandling4, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client5, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer6, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken7, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::CancelIfRequestedAsync(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_CancelIfRequestedAsync_mB9A37A491FB2ACA89CBD016AE01943177F960BAC (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithoutDelimitersAsync(System.IO.TextWriter,System.String,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithoutDelimitersAsync_mD4A1A0202BAAD748B9979B30B24A526A0F7AD3F3 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags2, int32_t ___stringEscapeHandling3, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client4, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer5, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken6, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.Char,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_m5AAF72F0AFB81C71CAD40D2A02BFE861DCFA8E98 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, Il2CppChar ___value1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.AsyncUtils::IsCompletedSucessfully(System.Threading.Tasks.Task)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncUtils_IsCompletedSucessfully_m97657301273FA0A88B58B195D01F780211F97FEA (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithDelimitersAsync(System.Threading.Tasks.Task,System.IO.TextWriter,System.String,System.Char,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_mD37D01A8978247A7AA39338A5F0036C286C00BF8 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer1, String_t* ___s2, Il2CppChar ___delimiter3, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags4, int32_t ___stringEscapeHandling5, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client6, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer7, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken8, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteCharAsync(System.Threading.Tasks.Task,System.IO.TextWriter,System.Char,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteCharAsync_mF4073AFB49BDB105FC18F70AA07CC83D47E45BC6 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer1, Il2CppChar ___c2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync(System.IO.TextWriter,System.String,System.Int32,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync_m610721C42EFF218016EB7BFEAD199843E142DF18 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, int32_t ___lastWritePosition2, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags3, int32_t ___stringEscapeHandling4, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client5, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer6, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken7, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.String,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_mD9EEB8C0D7E532FCCF17707C702A61DB60030F2D (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___value1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B_gshared)(__this, ___stateMachine0, method);
}
// System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils::TryGetDateConstructorValue(Newtonsoft.Json.JsonReader,System.Nullable`1<System.Int64>&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JavaScriptUtils_TryGetDateConstructorValue_m575CC5ED6E8509AE22E21ACDB3F436E3F058A8D8 (JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* ___reader0, Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* ___integer1, String_t** ___errorMessage2, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int64>::get_HasValue()
inline bool Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_inline (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*, const RuntimeMethod*))Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int64>::.ctor()
inline void List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75 (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*, const RuntimeMethod*))List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75_gshared)(__this, method);
}
// T System.Nullable`1<System.Int64>::get_Value()
inline int64_t Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, const RuntimeMethod* method)
{
return (( int64_t (*) (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*, const RuntimeMethod*))Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int64>::Add(T)
inline void List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, int64_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*, int64_t, const RuntimeMethod*))List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Int64>::get_Count()
inline int32_t List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*, const RuntimeMethod*))List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Int64>::get_Item(System.Int32)
inline int64_t List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( int64_t (*) (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*, int32_t, const RuntimeMethod*))List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_gshared)(__this, ___index0, method);
}
// System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method) ;
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int64>::.ctor(T)
inline void Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1 (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, int64_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*, int64_t, const RuntimeMethod*))Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1_gshared)(__this, ___value0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_MoveNext_m1F0023CC8038B6BFCFE9D6A4832749C676F1B287 (U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_SetStateMachine_mB623CD0E2849F843B39C92F351AC22766698299F (U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteCharAsyncU3Ed__14_MoveNext_m24DBE91A18E8765D61C74B90F8A644E4B9CF5B9C (U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteCharAsyncU3Ed__14_SetStateMachine_mDE0204B52F4E8966CCA96B7B0F64A469AAA7672F (U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Char[] Newtonsoft.Json.JsonTextWriter::EnsureWriteBuffer(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* JsonTextWriter_EnsureWriteBuffer_mE8C7CC5551A901519F380130617EC2B9CB9DEF1E (JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* __this, int32_t ___length0, int32_t ___copyTo1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_MoveNext_m2357A9EB077FAFB2B9056ECDC02B336FA5434EE6 (U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_SetStateMachine_m184438C5CBD3B40B165B630E5118283CD854C06B (U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m312F08F4C3CEBC38A926FB5F2A0C119D462FEB6F (U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*, RuntimeObject*, intptr_t, const RuntimeMethod*))ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D_gshared)(__this, ___object0, ___method1, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionDelegateFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionDelegateFactory__ctor_mE9385422DDFE3B3AED392895D925ABF922D1048F (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LateBoundReflectionDelegateFactory__ctor_m98CE81BFFF3C34914C11A9167881DBD651793C5F (LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* __this, const RuntimeMethod* method) ;
// System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstructorInfo_Invoke_m15FDF2B682BD01CC934BE4D314EF2193103CECFE (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Double>::get_HasValue()
inline bool Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165*, const RuntimeMethod*))Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Double>::GetValueOrDefault()
inline double Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method)
{
return (( double (*) (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_gshared_inline)(__this, method);
}
// System.Double System.Math::Max(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Max_mD1AD971AB9981B8A59BC5B5BEB7DD6A5A5E82AD6 (double ___val10, double ___val21, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Double>::.ctor(T)
inline void Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, double ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165*, double, const RuntimeMethod*))Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF_gshared)(__this, ___value0, method);
}
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ;
// System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::Equals(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.MathUtils::ApproxEquals(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MathUtils_ApproxEquals_m5BB082BFDF0563E620BC47ECF1D73C6EC32FBA71 (double ___d10, double ___d21, const RuntimeMethod* method) ;
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0 (const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Byte::CompareTo(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.MiscellaneousUtils::GetQualifiedNameParts(System.String,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MiscellaneousUtils_GetQualifiedNameParts_m8E9F6FFFCF8FEBDE012CB76946FE7257F2A3E05B (String_t* ___qualifiedName0, String_t** ___prefix1, String_t** ___localName2, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>::.ctor()
inline void Dictionary_2__ctor_m4438CC0F2FC3FBD7CDF900B58B9726DAB7734F29 (Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember> Newtonsoft.Json.Utilities.ReflectionObject::get_Members()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, const RuntimeMethod* method) ;
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::get_Getter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* ReflectionMember_get_Getter_mED1E4624E99FB9D6DDF293693EFFBF3DA290DE83_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method) ;
// System.Action`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::get_Setter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ReflectionMember_get_Setter_mBBFE1CEC2ABEB9C80FA03A3C36D1978B3EE0B02E_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2)
inline void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
(( void (*) (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___arg10, ___arg21, method);
}
// System.Type Newtonsoft.Json.Utilities.ReflectionMember::get_MemberType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* ReflectionMember_get_MemberType_m434D9AB83992981B6F6E5E0641CEA721A590F664_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method) ;
// Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Utilities.ReflectionObject::Create(System.Type,System.Reflection.MethodBase,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B (Type_t* ___t0, MethodBase_t* ___creator1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___memberNames2, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::op_Inequality(System.Reflection.MethodBase,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Inequality_m867339DE9EBA4C07B538DEA80722A9B9EB95349C (MethodBase_t* ___left0, MethodBase_t* ___right1, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::HasDefaultConstructor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_HasDefaultConstructor_mD7D5EBDA81654EC3F035F696815D061A2D1DCD41 (Type_t* ___t0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_mDE0EA2D27D595C07B7821DA386BDC55E9A54BD41 (U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionObject::.ctor(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionObject__ctor_mEE5253686B45684A82239A32221C61B597A544CF (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* ___creator0, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::Single<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<TSource>)
inline MemberInfo_t* Enumerable_Single_TisMemberInfo_t_mB6594B8029304236D3761A7E89953F0836DBABD4 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( MemberInfo_t* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Single_TisRuntimeObject_m5AA34C00130EAA359B0501E3D62D81193287663E_gshared)(___source0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionMember__ctor_m8ACC777354B64FC9082AAA4783F0C89B885CC62F (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method) ;
// System.Reflection.MemberTypes Newtonsoft.Json.Utilities.TypeExtensions::MemberType(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7 (MemberInfo_t* ___memberInfo0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanReadMemberValue_m3845F94C24ACD72B57E9492DEDE21A9EE6FEDD3F (MemberInfo_t* ___member0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet<System.Object>(System.Reflection.MemberInfo)
inline Func_2_tACBF5A1656250800CE861707354491F0611F6624* ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1 (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, MemberInfo_t* ___memberInfo0, const RuntimeMethod* method)
{
return (( Func_2_tACBF5A1656250800CE861707354491F0611F6624* (*) (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574*, MemberInfo_t*, const RuntimeMethod*))ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1_gshared)(__this, ___memberInfo0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Getter(System.Func`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_Getter_m75ECB835C1A8B2DD3E802D1631B32D3B6CA75187_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanSetMemberValue_m251A666D561999D6F4DDDB2DC2EA06A2CB99379C (MemberInfo_t* ___member0, bool ___nonPublic1, bool ___canSetReadOnly2, const RuntimeMethod* method) ;
// System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet<System.Object>(System.Reflection.MemberInfo)
inline Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, MemberInfo_t* ___memberInfo0, const RuntimeMethod* method)
{
return (( Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* (*) (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574*, MemberInfo_t*, const RuntimeMethod*))ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B_gshared)(__this, ___memberInfo0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Setter(System.Action`2<System.Object,System.Object>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_Setter_m7B146640EE159DD3226E47E5383DFD8AD5A1E715_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4 (MethodBase_t* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_1__ctor_m6169E0434849D9ED136D6141B73F4ABEE4E4BCDD (U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* __this, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_2__ctor_m5A85F1706E4407709DEA499BA30BD02E67C83FAA (U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* __this, const RuntimeMethod* method) ;
// System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
inline void Action_2__ctor_m6A0E7FE9DF9AE6C4BEE58611CB55F64FC3D79052 (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m6A0E7FE9DF9AE6C4BEE58611CB55F64FC3D79052_gshared)(__this, ___object0, ___method1, method);
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberUnderlyingType(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C (MemberInfo_t* ___member0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_MemberType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_MemberType_m910CD710E590680C35E3663BDC07074A691C4CF3_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Type_t* ___value0, const RuntimeMethod* method) ;
// TResult System.Func`1<System.Object>::Invoke()
inline RuntimeObject* Func_1_Invoke_m1412272198DFA4066C83206E5B43353AF10A2EEE_inline (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4*, const RuntimeMethod*))Func_1_Invoke_m1412272198DFA4066C83206E5B43353AF10A2EEE_gshared_inline)(__this, method);
}
// T[] System.Array::Empty<System.Object>()
inline ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_inline (const RuntimeMethod* method)
{
return (( ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline)(method);
}
// System.Boolean System.Reflection.MethodBase::get_IsVirtual()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsVirtual_m2C0A566F37B666FDEE3066729AEACF336B342EC2 (MethodBase_t* __this, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* PropertyInfo_GetGetMethod_mE0D6C0811D404DD977B53E68C0D36BA8CB889F74 (PropertyInfo_t* __this, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* PropertyInfo_GetSetMethod_mA16842ADAD11B6F70F4EDCA2805C999E378C4C8B (PropertyInfo_t* __this, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.ReflectionUtils::GetFullyQualifiedTypeName(System.Type,Newtonsoft.Json.Serialization.ISerializationBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectionUtils_GetFullyQualifiedTypeName_m826DB6266476EFB45F193B2AFAA39C57F65B41CD (Type_t* ___t0, RuntimeObject* ___binder1, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.ReflectionUtils::RemoveAssemblyDetails(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectionUtils_RemoveAssemblyDetails_m3A8F7F5D44FF78FBA7E28A907BF8A677AC5881D8 (String_t* ___fullyQualifiedTypeName0, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsValueType_m22476DFC3DAFC7CC34E364C74CBDFFDBB7A6ED7A (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ReflectionUtils_GetDefaultConstructor_m7A2041A7C1CDCA6467F40A99AC57E46F66931382 (Type_t* ___t0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.ConstructorInfo::op_Inequality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Inequality_m6D2C06D7D85103EA9EC958DC47DA4EB44122C614 (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___left0, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ___right1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Reflection.ConstructorInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m7871710CD540E478649F02E1BC07A13BF5D774D2 (Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// TSource System.Linq.Enumerable::SingleOrDefault<System.Reflection.ConstructorInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* Enumerable_SingleOrDefault_TisConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_mFEA96B2B9A1EDE1ED75AD2FEDD232F5CCE8596FB (RuntimeObject* ___source0, Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* ___predicate1, const RuntimeMethod* method)
{
return (( ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* (*) (RuntimeObject*, Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C*, const RuntimeMethod*))Enumerable_SingleOrDefault_TisRuntimeObject_m79F141F20F85C2AC7A37F39B332426E4021F65D4_gshared)(___source0, ___predicate1, method);
}
// System.Boolean System.Type::get_IsByRef()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsByRef_mA417B3C05E39BCF8F21A2B6437A1B41D3BE638A4 (Type_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_HasElementType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_HasElementType_m44F9601E586D2EEA2EDB93FB81D1D80521C264EE (Type_t* __this, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833 (Type_t* ___type0, Type_t* ___genericInterfaceDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinition_mDAE5879664FA8FC7298CA6888E06ADAF71098A6D (Type_t* ___type0, Type_t* ___genericClassDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsClass(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeExtensions_IsClass_mA96FAA6108D1C44AF689FC78E8702BF604A113C4 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinitionInternal(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinitionInternal_m11701F7FE0AE5979A4FFBA851D5105109E76F8BA (Type_t* ___currentType0, Type_t* ___genericClassDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method) ;
// System.Type Newtonsoft.Json.Utilities.TypeExtensions::BaseType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeExtensions_BaseType_m3A8CEAA95DE0C84FD927DC6720CF30D5A8503B6C (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
// System.Attribute[] Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ReflectionUtils_GetAttributes_mC731561D3A0317252C3D268A07312588DE64F468 (RuntimeObject* ___attributeProvider0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mFDDC94E3C94B43E2DFBDA15DD749315C5B246512 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C (FieldInfo_t* __this, RuntimeObject* ___obj0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.FieldInfo::get_IsPublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsPublic_m73C84BEEAE6C993FACC6199B81DBF2B80D3810E5 (FieldInfo_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.FieldInfo::get_IsLiteral()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsLiteral_mBE7DDC6A709439F775873859C82BAAD1EEFF791A (FieldInfo_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Reflection.FieldInfo::get_IsInitOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsInitOnly_m476BB9325A68BDD56B088D3E8407F75FA1388ED9 (FieldInfo_t* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::.ctor()
inline void List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetFields(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetFields_m50FD0565F40EB0966E0D6C9E0F25B8D63878DB90 (Type_t* ___targetType0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341 (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetProperties(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetProperties_m1BF5D5AB1FA2EF77CB86BFE0AC6F954624FB533E (Type_t* ___targetType0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Reflection.MemberInfo>::get_Count()
inline int32_t List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_inline (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::.ctor(System.Int32)
inline void List_1__ctor_m4C102B22A268A681BB63B27829B493E15936FA26 (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, int32_t ___capacity0, const RuntimeMethod* method)
{
(( void (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
}
// System.Void System.Func`2<System.Reflection.MemberInfo,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m699289F206947D3B203957AB5645799C51DB54C4 (Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<System.Linq.IGrouping`2<TKey,TSource>> System.Linq.Enumerable::GroupBy<System.Reflection.MemberInfo,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
inline RuntimeObject* Enumerable_GroupBy_TisMemberInfo_t_TisString_t_m851AA14DB80DE7AF5D282E5D08CA6ECD04BF9D1D (RuntimeObject* ___source0, Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* ___keySelector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335*, const RuntimeMethod*))Enumerable_GroupBy_TisRuntimeObject_TisRuntimeObject_m928678DD0BA06FA493AB806172807728CF37B04B_gshared)(___source0, ___keySelector1, method);
}
// System.Int32 System.Linq.Enumerable::Count<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<TSource>)
inline int32_t Enumerable_Count_TisMemberInfo_t_m29621F32121724ACF63D8E402ED67CA5E4F8EFC0 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Count_TisRuntimeObject_mFE2578389AAD1579F88DF0952810FE9CC535D2DE_gshared)(___source0, method);
}
// TSource System.Linq.Enumerable::First<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<TSource>)
inline MemberInfo_t* Enumerable_First_TisMemberInfo_t_m01BAA12175FEE2329291832C52FAEB103CD37397 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( MemberInfo_t* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_First_TisRuntimeObject_mC0E9A81793F65BF8BEDFAAAD5B2401ADB054DD5A_gshared)(___source0, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::Add(T)
inline void List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_inline (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, MemberInfo_t* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, MemberInfo_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass31_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass31_0__ctor_m7612987B8526E3E7B8C0752E93148C8C7AC5F42C (U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* __this, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsOverridenGenericMember(System.Reflection.MemberInfo,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsOverridenGenericMember_m0FEF3551507165ED8191B5D7911F2C6FE9E30D04 (MemberInfo_t* ___memberInfo0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Reflection.MemberInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m2C15E9DEC22C319A97CBE1E10D4A1B23E468ED19 (Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// System.Boolean System.Linq.Enumerable::Any<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline bool Enumerable_Any_TisMemberInfo_t_mCD6D656C7D701A05B9B39CFD962AD3520F1FB490 (RuntimeObject* ___source0, Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D* ___predicate1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D*, const RuntimeMethod*))Enumerable_Any_TisRuntimeObject_mDCE2755EF33EFD51A60E9238A1537E3B41351058_gshared)(___source0, ___predicate1, method);
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsVirtual(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsVirtual_mC331EA066BD75E22FB4E83C1ADF51C9D14D2CB44 (PropertyInfo_t* ___propertyInfo0, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Attribute>(System.Collections.IEnumerable)
inline RuntimeObject* Enumerable_Cast_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m15F338502F06EB3AFD250C4139A865AE3214A35A (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Cast_TisRuntimeObject_m2A5A4081E63E9C54E004DDD58B93C44866FE1330_gshared)(___source0, method);
}
// TSource[] System.Linq.Enumerable::ToArray<System.Attribute>(System.Collections.Generic.IEnumerable`1<TSource>)
inline AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Enumerable_ToArray_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m8CBAA4BADFBB32C06C6CB9209549C8406D79A5F4 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m6B1F26FB2B3EA7B18B82FC81035440AAAEFCE924_gshared)(___source0, method);
}
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m18CB1B1F33393986F99C24ACF91845FED6E7DD27 (Assembly_t* ___element0, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m453F2B409BF91F0662378947B095DAD2B04E8F9A (Assembly_t* ___element0, Type_t* ___attributeType1, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m0769AE954BBEBA567C151001B00EC6386DFCCC2D (MemberInfo_t* ___element0, bool ___inherit1, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m5FDA0A7B46138B19C39F3CBE9AAC1965DC1B7E79 (MemberInfo_t* ___element0, Type_t* ___type1, bool ___inherit2, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Module,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_mAD3D4BB166168FC3964929882B025CC046D193AF (Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* ___element0, bool ___inherit1, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Module,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m23096DF5EA713487E8064B4C035DEDBB4349DAF3 (Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* ___element0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m8B9BD902255772419F1334A89FD282A8C6ADACE8 (ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* ___element0, bool ___inherit1, const RuntimeMethod* method) ;
// System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* Attribute_GetCustomAttributes_m699FB76E31771F04FB60A90A610A0389D036EE50 (ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* ___element0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method) ;
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.ReflectionUtils::GetAssemblyDelimiterIndex(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ReflectionUtils_GetAssemblyDelimiterIndex_m10628DF753FE068503B1F99EC898FBCF57ED4243 (String_t* ___fullyQualifiedTypeName0, const RuntimeMethod* method) ;
// System.String Newtonsoft.Json.Utilities.StringUtils::Trim(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringUtils_Trim_m68EFB6FA66C179F8B75B89FC0861A51681F02895 (String_t* ___s0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.StructMultiKey`2<System.String,System.String>::.ctor(T1,T2)
inline void StructMultiKey_2__ctor_m86731997DA776682D68E49D641713A373FCB9844 (StructMultiKey_2_t6E68BC5B4E82B577ED926DDD328474297A4F65C3* __this, String_t* ___v10, String_t* ___v21, const RuntimeMethod* method)
{
(( void (*) (StructMultiKey_2_t6E68BC5B4E82B577ED926DDD328474297A4F65C3*, String_t*, String_t*, const RuntimeMethod*))StructMultiKey_2__ctor_mE9355E0A5E026A1DB579A95CEC49CDB5C82197DF_gshared)(__this, ___v10, ___v21, method);
}
// System.Void System.Func`2<System.Reflection.ParameterInfo,System.Type>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_mABAC2A1749B8A3F716CAD567A9ABCC9654A7E97E (Func_2_t083860B929985EC8DF79C99B5157C38632F84196* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t083860B929985EC8DF79C99B5157C38632F84196*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Reflection.ParameterInfo,System.Type>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
inline RuntimeObject* Enumerable_Select_TisParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_TisType_t_m275E353BA1242C1B0AF4B73B7BEE3994E4DF6A84 (RuntimeObject* ___source0, Func_2_t083860B929985EC8DF79C99B5157C38632F84196* ___selector1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t083860B929985EC8DF79C99B5157C38632F84196*, const RuntimeMethod*))Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m960CFE6ABFCB6C2399B69DEDFB27765D1FCE57A6_gshared)(___source0, ___selector1, method);
}
// TSource[] System.Linq.Enumerable::ToArray<System.Type>(System.Collections.Generic.IEnumerable`1<TSource>)
inline TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* Enumerable_ToArray_TisType_t_m28C7A2C8A923EDB686746CE65C1C0BD2BCF93A00 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_m6B1F26FB2B3EA7B18B82FC81035440AAAEFCE924_gshared)(___source0, method);
}
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_m56B512B27B74B56735C0BC4973B3E3C3BE817C68 (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___binder2, Type_t* ___returnType3, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___types4, ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364* ___modifiers5, const RuntimeMethod* method) ;
// TSource System.Linq.Enumerable::SingleOrDefault<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<TSource>)
inline MemberInfo_t* Enumerable_SingleOrDefault_TisMemberInfo_t_mA18F069F81CC9297AE5C6D9A7C0B28D4711667F9 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( MemberInfo_t* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_SingleOrDefault_TisRuntimeObject_m3B8BD7166B8DD26E05C0A3C8127047580A54FDC0_gshared)(___source0, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1__ctor_m6A67D9D691261F2556B731A8AE6B4929B8A94E31 (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateFields(System.Collections.Generic.IList`1<System.Reflection.MemberInfo>,System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetChildPrivateFields_m84B6404076C97499FD07D76CAA860D974DB6C0F6 (RuntimeObject* ___initialFields0, Type_t* ___targetType1, int32_t ___bindingAttr2, const RuntimeMethod* method) ;
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Reflection.FieldInfo>(System.Collections.IEnumerable)
inline RuntimeObject* Enumerable_Cast_TisFieldInfo_t_mAD6B4A40666C7952F692C3815439C6A9BD758E77 (RuntimeObject* ___source0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Cast_TisRuntimeObject_m2A5A4081E63E9C54E004DDD58B93C44866FE1330_gshared)(___source0, method);
}
// System.Reflection.BindingFlags Newtonsoft.Json.Utilities.ReflectionUtils::RemoveFlag(System.Reflection.BindingFlags,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReflectionUtils_RemoveFlag_mE5086FC6997D9EF9C70815D7BB8603A411F90930 (int32_t ___bindingAttr0, int32_t ___flag1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Reflection.FieldInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m720E8683356B22FA89D3983D974FC700BDE279A3 (Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Reflection.FieldInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline RuntimeObject* Enumerable_Where_TisFieldInfo_t_m3822895513BBCC2708F1B3A231E52A5ADBAEC44B (RuntimeObject* ___source0, Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* ___predicate1, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630*, const RuntimeMethod*))Enumerable_Where_TisRuntimeObject_m046DED489E38F15407F5825AD753C4090F103893_gshared)(___source0, ___predicate1, method);
}
// System.Void Newtonsoft.Json.Utilities.CollectionUtils::AddRange<System.Reflection.MemberInfo>(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
inline void CollectionUtils_AddRange_TisMemberInfo_t_m2244102F15CA8B14A3269A8E8001A30E32E88049 (RuntimeObject* ___initial0, RuntimeObject* ___collection1, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*))CollectionUtils_AddRange_TisRuntimeObject_m184CF3BF9C099CBB44E096B113C486C013167CF2_gshared)(___initial0, ___collection1, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.PropertyInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1__ctor_mF2EB4E16CD63260F4A40B2CB9D25CAE969F1EA79 (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
}
// System.Void System.Collections.Generic.List`1<System.Reflection.PropertyInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1_AddRange_mBA5D755463D755BE7FDA512D25353813E0C8EB3E (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateProperties(System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>,System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetChildPrivateProperties_mEC746493BD1FD47AA20E9D979402902F9E6D09F5 (RuntimeObject* ___initialProperties0, Type_t* ___targetType1, int32_t ___bindingAttr2, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Reflection.PropertyInfo>::get_Item(System.Int32)
inline PropertyInfo_t* List_1_get_Item_m42DD116FCC6A980B9B1DACDA2168961AAFA656A8 (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( PropertyInfo_t* (*) (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Reflection.MemberInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberInfoFromType(System.Type,System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfo_t* ReflectionUtils_GetMemberInfoFromType_mC7C8794B7F2A16B94C254A2E138B31A30CC84727 (Type_t* ___targetType0, MemberInfo_t* ___memberInfo1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Reflection.PropertyInfo>::set_Item(System.Int32,T)
inline void List_1_set_Item_mEB3D88999B573EBB88F1A7D86721429006820CF8 (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* __this, int32_t ___index0, PropertyInfo_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*, int32_t, PropertyInfo_t*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___index0, ___value1, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Reflection.PropertyInfo>::get_Count()
inline int32_t List_1_get_Count_m355CEE6943458AA8FD801E55B91417D3872474EA_inline (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass44_0__ctor_mBC092A5561E02842F0507C1BD753AD361BE4E0FD (U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* __this, const RuntimeMethod* method) ;
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsPublic(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsPublic_mECFD8FF1C8082562F5BF92A423C8E72048E43298 (PropertyInfo_t* ___property0, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Reflection.PropertyInfo,System.Boolean>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m48337939E4E24F5ADE3777B5B57E73EEF3C2CEC7 (Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m13C0A7F33154D861E2A041B52E88461832DA1697_gshared)(__this, ___object0, ___method1, method);
}
// System.Int32 Newtonsoft.Json.Utilities.CollectionUtils::IndexOf<System.Reflection.PropertyInfo>(System.Collections.Generic.IEnumerable`1<T>,System.Func`2<T,System.Boolean>)
inline int32_t CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E (RuntimeObject* ___collection0, Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74* ___predicate1, const RuntimeMethod* method)
{
return (( int32_t (*) (RuntimeObject*, Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74*, const RuntimeMethod*))CollectionUtils_IndexOf_TisRuntimeObject_mB5B189DF6E2B10CEDC9451B4370EF3E428041313_gshared)(___collection0, ___predicate1, method);
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass44_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass44_1__ctor_m3140F854DE9DE3FD9E3BA541208EDBD13E85A1B3 (U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* __this, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetBaseDefinition(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* ReflectionUtils_GetBaseDefinition_mF725A4FEEAA10EE60F8C529FDA8AEE6735C8BBBE (PropertyInfo_t* ___propertyInfo0, const RuntimeMethod* method) ;
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass45_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass45_0__ctor_m9EC0C51E97EC0361FEB33F9EF48B8FF8A2A801ED (U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* __this, const RuntimeMethod* method) ;
// System.Boolean System.Linq.Enumerable::Any<System.Reflection.MethodInfo>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
inline bool Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32 (RuntimeObject* ___source0, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* ___predicate1, const RuntimeMethod* method)
{
return (( bool (*) (RuntimeObject*, Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*, const RuntimeMethod*))Enumerable_Any_TisRuntimeObject_mDCE2755EF33EFD51A60E9238A1537E3B41351058_gshared)(___source0, ___predicate1, method);
}
// System.Object System.Activator::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_m0A28F274256F1444949E372089034D9FB66FBD67 (Type_t* ___type0, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_MoveNext_mC69ECC163AA17C93589D91B7C90A3B52CF496967 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* V_1 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
switch (L_2)
{
case 0:
{
goto IL_0065_1;
}
case 1:
{
goto IL_00ea_1;
}
case 2:
{
goto IL_015a_1;
}
case 3:
{
goto IL_01cd_1;
}
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3 = __this->___task_2;
NullCheck(L_3);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_4;
L_4 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_3, (bool)0, NULL);
V_3 = L_4;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_5;
L_5 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_5;
bool L_6;
L_6 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_6)
{
goto IL_0081_1;
}
}
{
int32_t L_7 = 0;
V_0 = L_7;
__this->___U3CU3E1__state_0 = L_7;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_8 = V_2;
__this->___U3CU3Eu__1_7 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_9 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288(L_9, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var);
goto IL_021e;
}
IL_0065_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_10 = __this->___U3CU3Eu__1_7;
V_2 = L_10;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_11 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_11, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_12 = (-1);
V_0 = L_12;
__this->___U3CU3E1__state_0 = L_12;
}
IL_0081_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_13 = V_1;
NullCheck(L_13);
int32_t L_14 = L_13->____formatting_5;
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_010d_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_15 = V_1;
NullCheck(L_15);
int32_t L_16 = L_15->____currentState_4;
if ((((int32_t)L_16) == ((int32_t)2)))
{
goto IL_010d_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_17 = V_1;
NullCheck(L_17);
int32_t L_18 = L_17->____currentState_4;
if ((((int32_t)L_18) == ((int32_t)4)))
{
goto IL_010d_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_19 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_20 = __this->___CancellationToken_4;
NullCheck(L_19);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_21;
L_21 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(8 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteIndentAsync(System.Threading.CancellationToken) */, L_19, L_20);
NullCheck(L_21);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_21, (bool)0, NULL);
V_3 = L_22;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_23;
bool L_24;
L_24 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_24)
{
goto IL_0106_1;
}
}
{
int32_t L_25 = 1;
V_0 = L_25;
__this->___U3CU3E1__state_0 = L_25;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_26 = V_2;
__this->___U3CU3Eu__1_7 = L_26;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_27 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288(L_27, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var);
goto IL_021e;
}
IL_00ea_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_28 = __this->___U3CU3Eu__1_7;
V_2 = L_28;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_29 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_29, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_30 = (-1);
V_0 = L_30;
__this->___U3CU3E1__state_0 = L_30;
}
IL_0106_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_010d_1:
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_31 = V_1;
int32_t L_32 = __this->___token_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_33 = __this->___CancellationToken_4;
NullCheck(L_31);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_34;
L_34 = VirtualFuncInvoker2< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, int32_t, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(7 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken) */, L_31, L_32, L_33);
NullCheck(L_34);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_35;
L_35 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_34, (bool)0, NULL);
V_3 = L_35;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_36;
L_36 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_36;
bool L_37;
L_37 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_37)
{
goto IL_0176_1;
}
}
{
int32_t L_38 = 2;
V_0 = L_38;
__this->___U3CU3E1__state_0 = L_38;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_39 = V_2;
__this->___U3CU3Eu__1_7 = L_39;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_40 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288(L_40, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var);
goto IL_021e;
}
IL_015a_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_41 = __this->___U3CU3Eu__1_7;
V_2 = L_41;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_42 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_42, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_43 = (-1);
V_0 = L_43;
__this->___U3CU3E1__state_0 = L_43;
}
IL_0176_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_44 = V_1;
NullCheck(L_44);
JsonWriter_UpdateCurrentState_m0CC4C4BBCF85021B1AE0A72659C5A91050CE9278(L_44, NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_45 = V_1;
int32_t L_46 = __this->___LevelsToComplete_6;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_47 = __this->___CancellationToken_4;
NullCheck(L_45);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_48;
L_48 = JsonWriter_U3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3_m9EA2ACE88C9FE286A0833D33835BD73B02F379E8(L_45, L_46, L_47, NULL);
NullCheck(L_48);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_49;
L_49 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_48, (bool)0, NULL);
V_3 = L_49;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_50;
L_50 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_50;
bool L_51;
L_51 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_51)
{
goto IL_01e9_1;
}
}
{
int32_t L_52 = 3;
V_0 = L_52;
__this->___U3CU3E1__state_0 = L_52;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_53 = V_2;
__this->___U3CU3Eu__1_7 = L_53;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_54 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288(L_54, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738_m5A5B8DCD33DAEE51130199BCB56B4D45E7C92288_RuntimeMethod_var);
goto IL_021e;
}
IL_01cd_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_55 = __this->___U3CU3Eu__1_7;
V_2 = L_55;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_56 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_56, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_57 = (-1);
V_0 = L_57;
__this->___U3CU3E1__state_0 = L_57;
}
IL_01e9_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
goto IL_020b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_01f2;
}
throw e;
}
CATCH_01f2:
{// begin catch(System.Exception)
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_58 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_59 = V_4;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_58, L_59, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_021e;
}// end catch (depth: 1)
IL_020b:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_60 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_60, NULL);
}
IL_021e:
{
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_MoveNext_mC69ECC163AA17C93589D91B7C90A3B52CF496967_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_MoveNext_mC69ECC163AA17C93589D91B7C90A3B52CF496967(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitProperty|11_0>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_SetStateMachine_m69528EFF6576202DB38A30E412337F9377209669 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_SetStateMachine_m69528EFF6576202DB38A30E412337F9377209669_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_t17902B5DCC22165920D1F75722B8F6E3C70BA738*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitPropertyU7C11_0U3Ed_SetStateMachine_m69528EFF6576202DB38A30E412337F9377209669(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_MoveNext_mC2D308AAECF5204B8E72DB83877E7827E9D65940 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* V_1 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
switch (L_2)
{
case 0:
{
goto IL_0061_1;
}
case 1:
{
goto IL_00d1_1;
}
case 2:
{
goto IL_0144_1;
}
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3 = __this->___task_2;
NullCheck(L_3);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_4;
L_4 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_3, (bool)0, NULL);
V_3 = L_4;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_5;
L_5 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_5;
bool L_6;
L_6 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_6)
{
goto IL_007d_1;
}
}
{
int32_t L_7 = 0;
V_0 = L_7;
__this->___U3CU3E1__state_0 = L_7;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_8 = V_2;
__this->___U3CU3Eu__1_7 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_9 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB(L_9, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_RuntimeMethod_var);
goto IL_0195;
}
IL_0061_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_10 = __this->___U3CU3Eu__1_7;
V_2 = L_10;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_11 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_11, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_12 = (-1);
V_0 = L_12;
__this->___U3CU3E1__state_0 = L_12;
}
IL_007d_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_13 = V_1;
int32_t L_14 = __this->___token_4;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_15 = __this->___CancellationToken_5;
NullCheck(L_13);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_16;
L_16 = VirtualFuncInvoker2< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, int32_t, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(7 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken) */, L_13, L_14, L_15);
NullCheck(L_16);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_17;
L_17 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_16, (bool)0, NULL);
V_3 = L_17;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18;
L_18 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_18;
bool L_19;
L_19 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_19)
{
goto IL_00ed_1;
}
}
{
int32_t L_20 = 1;
V_0 = L_20;
__this->___U3CU3E1__state_0 = L_20;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_21 = V_2;
__this->___U3CU3Eu__1_7 = L_21;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_22 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB(L_22, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_RuntimeMethod_var);
goto IL_0195;
}
IL_00d1_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23 = __this->___U3CU3Eu__1_7;
V_2 = L_23;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_24 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_24, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_25 = (-1);
V_0 = L_25;
__this->___U3CU3E1__state_0 = L_25;
}
IL_00ed_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_26 = V_1;
NullCheck(L_26);
JsonWriter_UpdateCurrentState_m0CC4C4BBCF85021B1AE0A72659C5A91050CE9278(L_26, NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_27 = V_1;
int32_t L_28 = __this->___LevelsToComplete_6;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_29 = __this->___CancellationToken_5;
NullCheck(L_27);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_30;
L_30 = JsonWriter_U3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3_m9EA2ACE88C9FE286A0833D33835BD73B02F379E8(L_27, L_28, L_29, NULL);
NullCheck(L_30);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_31;
L_31 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_30, (bool)0, NULL);
V_3 = L_31;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_32;
L_32 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_32;
bool L_33;
L_33 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_33)
{
goto IL_0160_1;
}
}
{
int32_t L_34 = 2;
V_0 = L_34;
__this->___U3CU3E1__state_0 = L_34;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_35 = V_2;
__this->___U3CU3Eu__1_7 = L_35;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_36 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB(L_36, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228_mBB73E28FC4362AA8CE4359CBF7E19BF971B5DEEB_RuntimeMethod_var);
goto IL_0195;
}
IL_0144_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_37 = __this->___U3CU3Eu__1_7;
V_2 = L_37;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_38 = (&__this->___U3CU3Eu__1_7);
il2cpp_codegen_initobj(L_38, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_39 = (-1);
V_0 = L_39;
__this->___U3CU3E1__state_0 = L_39;
}
IL_0160_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
goto IL_0182;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0169;
}
throw e;
}
CATCH_0169:
{// begin catch(System.Exception)
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_40 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_41 = V_4;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_40, L_41, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0195;
}// end catch (depth: 1)
IL_0182:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_42 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_42, NULL);
}
IL_0195:
{
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_MoveNext_mC2D308AAECF5204B8E72DB83877E7827E9D65940_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_MoveNext_mC2D308AAECF5204B8E72DB83877E7827E9D65940(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitIndent|11_1>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_SetStateMachine_m54D15C554860844183B4D733D2E6F95B80051E19 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_SetStateMachine_m54D15C554860844183B4D733D2E6F95B80051E19_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_t2B315D44D9DBA0A32A819E0E51D4E2424F176228*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitIndentU7C11_1U3Ed_SetStateMachine_m54D15C554860844183B4D733D2E6F95B80051E19(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_MoveNext_m609DEBA65CB7571354A81222C9563958170A8F0A (U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* V_1 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0059_1;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_00cc_1;
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_4 = __this->___task_2;
NullCheck(L_4);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_5;
L_5 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_4, (bool)0, NULL);
V_3 = L_5;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_6;
L_6 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_6;
bool L_7;
L_7 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_7)
{
goto IL_0075_1;
}
}
{
int32_t L_8 = 0;
V_0 = L_8;
__this->___U3CU3E1__state_0 = L_8;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_9 = V_2;
__this->___U3CU3Eu__1_6 = L_9;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_10 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860(L_10, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_RuntimeMethod_var);
goto IL_011d;
}
IL_0059_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_11 = __this->___U3CU3Eu__1_6;
V_2 = L_11;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_12 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_12, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_13 = (-1);
V_0 = L_13;
__this->___U3CU3E1__state_0 = L_13;
}
IL_0075_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_14 = V_1;
NullCheck(L_14);
JsonWriter_UpdateCurrentState_m0CC4C4BBCF85021B1AE0A72659C5A91050CE9278(L_14, NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_15 = V_1;
int32_t L_16 = __this->___LevelsToComplete_4;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_17 = __this->___CancellationToken_5;
NullCheck(L_15);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_18;
L_18 = JsonWriter_U3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3_m9EA2ACE88C9FE286A0833D33835BD73B02F379E8(L_15, L_16, L_17, NULL);
NullCheck(L_18);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_19;
L_19 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_18, (bool)0, NULL);
V_3 = L_19;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_20;
L_20 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_20;
bool L_21;
L_21 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_21)
{
goto IL_00e8_1;
}
}
{
int32_t L_22 = 1;
V_0 = L_22;
__this->___U3CU3E1__state_0 = L_22;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23 = V_2;
__this->___U3CU3Eu__1_6 = L_23;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_24 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860(L_24, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099_m536D43F0FF26F53EA61DE11C9F0C98D3C11B8860_RuntimeMethod_var);
goto IL_011d;
}
IL_00cc_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_25 = __this->___U3CU3Eu__1_6;
V_2 = L_25;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_26 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_26, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_27 = (-1);
V_0 = L_27;
__this->___U3CU3E1__state_0 = L_27;
}
IL_00e8_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
goto IL_010a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00f1;
}
throw e;
}
CATCH_00f1:
{// begin catch(System.Exception)
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_28 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_29 = V_4;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_28, L_29, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_011d;
}// end catch (depth: 1)
IL_010a:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_30 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_30, NULL);
}
IL_011d:
{
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_MoveNext_m609DEBA65CB7571354A81222C9563958170A8F0A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_MoveNext_m609DEBA65CB7571354A81222C9563958170A8F0A(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitEnd|11_2>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_SetStateMachine_m764B184333ED4128C6BE30B38E33A027EA4C060F (U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_SetStateMachine_m764B184333ED4128C6BE30B38E33A027EA4C060F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_tD8719E3793D20B128B5737D1F92A770AB8EF3099*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitEndU7C11_2U3Ed_SetStateMachine_m764B184333ED4128C6BE30B38E33A027EA4C060F(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_MoveNext_m994BF8D80C9DABB8E1A740B36CE5BFE2949A664A (U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* V_1 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 0;
Exception_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_1 = __this->___U3CU3E4__this_2;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
switch (L_2)
{
case 0:
{
goto IL_0087_1;
}
case 1:
{
goto IL_010c_1;
}
case 2:
{
goto IL_0179_1;
}
}
}
{
goto IL_01a2_1;
}
IL_0025_1:
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_3 = V_1;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_4 = V_1;
NullCheck(L_4);
int32_t L_5;
L_5 = JsonWriter_Pop_mE6F01AEE8B02F6D4F6E6871A084F437B7AD5DC41(L_4, NULL);
NullCheck(L_3);
int32_t L_6;
L_6 = JsonWriter_GetCloseTokenForType_mC47C8D67ECD8D5A166A53B79EAC723C6FF89E07E(L_3, L_5, NULL);
__this->___U3CtokenU3E5__2_5 = L_6;
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_7 = V_1;
NullCheck(L_7);
int32_t L_8 = L_7->____currentState_4;
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_00aa_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_9 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_10 = __this->___CancellationToken_3;
NullCheck(L_9);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_11;
L_11 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(16 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteNullAsync(System.Threading.CancellationToken) */, L_9, L_10);
NullCheck(L_11);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_12;
L_12 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_11, (bool)0, NULL);
V_3 = L_12;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_13;
L_13 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_13;
bool L_14;
L_14 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_14)
{
goto IL_00a3_1;
}
}
{
int32_t L_15 = 0;
V_0 = L_15;
__this->___U3CU3E1__state_0 = L_15;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_16 = V_2;
__this->___U3CU3Eu__1_6 = L_16;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_17 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090(L_17, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_RuntimeMethod_var);
goto IL_01ea;
}
IL_0087_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18 = __this->___U3CU3Eu__1_6;
V_2 = L_18;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_19 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_19, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_20 = (-1);
V_0 = L_20;
__this->___U3CU3E1__state_0 = L_20;
}
IL_00a3_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_00aa_1:
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_21 = V_1;
NullCheck(L_21);
int32_t L_22 = L_21->____formatting_5;
if ((!(((uint32_t)L_22) == ((uint32_t)1))))
{
goto IL_012f_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_23 = V_1;
NullCheck(L_23);
int32_t L_24 = L_23->____currentState_4;
if ((((int32_t)L_24) == ((int32_t)2)))
{
goto IL_012f_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_25 = V_1;
NullCheck(L_25);
int32_t L_26 = L_25->____currentState_4;
if ((((int32_t)L_26) == ((int32_t)4)))
{
goto IL_012f_1;
}
}
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_27 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_28 = __this->___CancellationToken_3;
NullCheck(L_27);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_29;
L_29 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(8 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteIndentAsync(System.Threading.CancellationToken) */, L_27, L_28);
NullCheck(L_29);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_30;
L_30 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_29, (bool)0, NULL);
V_3 = L_30;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_31;
L_31 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_31;
bool L_32;
L_32 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_32)
{
goto IL_0128_1;
}
}
{
int32_t L_33 = 1;
V_0 = L_33;
__this->___U3CU3E1__state_0 = L_33;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_34 = V_2;
__this->___U3CU3Eu__1_6 = L_34;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_35 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090(L_35, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_RuntimeMethod_var);
goto IL_01ea;
}
IL_010c_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_36 = __this->___U3CU3Eu__1_6;
V_2 = L_36;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_37 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_37, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_38 = (-1);
V_0 = L_38;
__this->___U3CU3E1__state_0 = L_38;
}
IL_0128_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_012f_1:
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_39 = V_1;
int32_t L_40 = __this->___U3CtokenU3E5__2_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_41 = __this->___CancellationToken_3;
NullCheck(L_39);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_42;
L_42 = VirtualFuncInvoker2< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, int32_t, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(7 /* System.Threading.Tasks.Task Newtonsoft.Json.JsonWriter::WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken) */, L_39, L_40, L_41);
NullCheck(L_42);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_43;
L_43 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_42, (bool)0, NULL);
V_3 = L_43;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_44;
L_44 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_44;
bool L_45;
L_45 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_45)
{
goto IL_0195_1;
}
}
{
int32_t L_46 = 2;
V_0 = L_46;
__this->___U3CU3E1__state_0 = L_46;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_47 = V_2;
__this->___U3CU3Eu__1_6 = L_47;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_48 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090(L_48, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52_m62284403CAC4F649064AC4A550250511D0276090_RuntimeMethod_var);
goto IL_01ea;
}
IL_0179_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_49 = __this->___U3CU3Eu__1_6;
V_2 = L_49;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_50 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_50, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_51 = (-1);
V_0 = L_51;
__this->___U3CU3E1__state_0 = L_51;
}
IL_0195_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_52 = V_1;
NullCheck(L_52);
JsonWriter_UpdateCurrentState_m0CC4C4BBCF85021B1AE0A72659C5A91050CE9278(L_52, NULL);
}
IL_01a2_1:
{
int32_t L_53 = __this->___LevelsToComplete_4;
V_4 = L_53;
int32_t L_54 = V_4;
__this->___LevelsToComplete_4 = ((int32_t)il2cpp_codegen_subtract(L_54, 1));
int32_t L_55 = V_4;
if ((((int32_t)L_55) > ((int32_t)0)))
{
goto IL_0025_1;
}
}
{
goto IL_01d7;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_01be;
}
throw e;
}
CATCH_01be:
{// begin catch(System.Exception)
V_5 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_56 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_57 = V_5;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_56, L_57, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01ea;
}// end catch (depth: 1)
IL_01d7:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_58 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_58, NULL);
}
IL_01ea:
{
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_MoveNext_m994BF8D80C9DABB8E1A740B36CE5BFE2949A664A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_MoveNext_m994BF8D80C9DABB8E1A740B36CE5BFE2949A664A(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.JsonWriter/<<InternalWriteEndAsync>g__AwaitRemaining|11_3>d::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_SetStateMachine_m5CAA6CF2876CED89D2958DA408A6AB898C069356 (U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_SetStateMachine_m5CAA6CF2876CED89D2958DA408A6AB898C069356_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_t81A335BDD275F6E35451BEB7BA20E3FCA2F83A52*>(__this + _offset);
U3CU3CInternalWriteEndAsyncU3Eg__AwaitRemainingU7C11_3U3Ed_SetStateMachine_m5CAA6CF2876CED89D2958DA408A6AB898C069356(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String Newtonsoft.Json.JsonWriterException::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonWriterException_get_Path_mE1AB4672DACF04FEA71AA8824365F69887F869AC (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CPathU3Ek__BackingField_18;
return L_0;
}
}
// System.Void Newtonsoft.Json.JsonWriterException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_mBE0249771B368C41A4D6CA26783BEA3B82A61455 (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, const RuntimeMethod* method)
{
{
JsonException__ctor_m133E4DB19926E9CB835F6BDCF47EA910A92252A1(__this, NULL);
return;
}
}
// System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_mE9EA5E8870BA0DD45EA0FF6AFC56646E2965D39E (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
JsonException__ctor_m29A7A39A820BD2EFF57EC051CB305B86C4B81FA9(__this, L_0, NULL);
return;
}
}
// System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_m6F5E6918224C016BA0D2EF55DC125CD85CEB3D9F (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException1;
JsonException__ctor_mF25D98C588CF67F15BECFB01FEA535FEC0117CB4(__this, L_0, L_1, NULL);
return;
}
}
// System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_m29EA8351C06D3CE9DA690046CB1C26B73484CB06 (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1;
JsonException__ctor_mF4EA9CF06D3471F221C86E1CF375030528D0090F(__this, L_0, L_1, NULL);
return;
}
}
// System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JsonWriterException__ctor_m9DBE14E1D9FEA8877CB2528A2A0A0464F76E79C8 (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* __this, String_t* ___message0, String_t* ___path1, Exception_t* ___innerException2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException2;
JsonException__ctor_mF25D98C588CF67F15BECFB01FEA535FEC0117CB4(__this, L_0, L_1, NULL);
String_t* L_2 = ___path1;
__this->___U3CPathU3Ek__BackingField_18 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPathU3Ek__BackingField_18), (void*)L_2);
return;
}
}
// Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriterException::Create(Newtonsoft.Json.JsonWriter,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* JsonWriterException_Create_m101D7077E7B825389977FB7A1ED3555C783FDE61 (JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* ___writer0, String_t* ___message1, Exception_t* ___ex2, const RuntimeMethod* method)
{
{
JsonWriter_t1750495CE81BD2D7BF7335A8468E2F960CA3ABC3* L_0 = ___writer0;
NullCheck(L_0);
String_t* L_1;
L_1 = JsonWriter_get_ContainerPath_mEEB68127DE05B60631203B908206E58C653E459C(L_0, NULL);
String_t* L_2 = ___message1;
Exception_t* L_3 = ___ex2;
JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* L_4;
L_4 = JsonWriterException_Create_m6C3D3BEE044830CEF3CB8039FDCE0688E50A947A(L_1, L_2, L_3, NULL);
return L_4;
}
}
// Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriterException::Create(System.String,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* JsonWriterException_Create_m6C3D3BEE044830CEF3CB8039FDCE0688E50A947A (String_t* ___path0, String_t* ___message1, Exception_t* ___ex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonPosition_t7788656A280615072710710E8C15D23285850E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___path0;
String_t* L_1 = ___message1;
il2cpp_codegen_runtime_class_init_inline(JsonPosition_t7788656A280615072710710E8C15D23285850E8E_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = JsonPosition_FormatMessage_m75AF225DE2E1664B976DAA52E080571CC36E51E5((RuntimeObject*)NULL, L_0, L_1, NULL);
___message1 = L_2;
String_t* L_3 = ___message1;
String_t* L_4 = ___path0;
Exception_t* L_5 = ___ex2;
JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA* L_6 = (JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA*)il2cpp_codegen_object_new(JsonWriterException_tF13EC07A2159B2C5951971D4AED5A195DEBE8AAA_il2cpp_TypeInfo_var);
NullCheck(L_6);
JsonWriterException__ctor_m9DBE14E1D9FEA8877CB2528A2A0A0464F76E79C8(L_6, L_3, L_4, L_5, NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.AotHelper::Ensure(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AotHelper_Ensure_m5F78BB3FBBDEAF52A651C63492E857B36DF156E3 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___action0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
bool L_0;
L_0 = AotHelper_IsFalse_m0E45B362E86CEEBA6F8F14F9B861B999912E0568_inline(NULL);
if (!L_0)
{
goto IL_001c;
}
}
try
{// begin try (depth: 1)
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___action0;
NullCheck(L_1);
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(L_1, NULL);
goto IL_001c;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_000f;
}
throw e;
}
CATCH_000f:
{// begin catch(System.Exception)
V_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_2 = V_0;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709)), L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AotHelper_Ensure_m5F78BB3FBBDEAF52A651C63492E857B36DF156E3_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_001c:
{
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.AotHelper::IsFalse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AotHelper_IsFalse_m0E45B362E86CEEBA6F8F14F9B861B999912E0568 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
bool L_0 = ((AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_StaticFields*)il2cpp_codegen_static_fields_for(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var))->___s_alwaysFalse_0;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.AotHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AotHelper__cctor_mDA8DD7C4C430B6598268E2BD227BE8B35BF7BCAA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
memset((&V_0), 0, sizeof(V_0));
{
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
L_0 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
V_0 = L_0;
int32_t L_1;
L_1 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_0), NULL);
((AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_StaticFields*)il2cpp_codegen_static_fields_for(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var))->___s_alwaysFalse_0 = (bool)((((int32_t)L_1) < ((int32_t)0))? 1 : 0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Boolean> Newtonsoft.Json.Utilities.AsyncUtils::ToAsync(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t824317F4B958F7512E8F7300511752937A6C6043* AsyncUtils_ToAsync_m08F1914455B901A0980630E55C0259C2505B78DF (bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_1 = ((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___False_0;
return L_1;
}
IL_0009:
{
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_2 = ((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___True_1;
return L_2;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::CancelIfRequestedAsync(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_CancelIfRequestedAsync_mB9A37A491FB2ACA89CBD016AE01943177F960BAC (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken0), NULL);
if (L_0)
{
goto IL_000b;
}
}
{
return (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)NULL;
}
IL_000b:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken0;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2;
L_2 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_1, NULL);
return L_2;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::FromCanceled(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CFromCanceledU3Eb__5_0_mC491F58F4C79E13A10314420560BDD725DA31BCF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var);
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9__5_0_1;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_001f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var);
U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* L_2 = ((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_3);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CFromCanceledU3Eb__5_0_mC491F58F4C79E13A10314420560BDD725DA31BCF_RuntimeMethod_var), NULL);
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = L_3;
((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9__5_0_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9__5_0_1), (void*)L_4);
G_B2_0 = L_4;
}
IL_001f:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_5 = ___cancellationToken0;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_6 = (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)il2cpp_codegen_object_new(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
NullCheck(L_6);
Task__ctor_mF543A040124A47EDA7AE6712F2B34265D3F42361(L_6, G_B2_0, L_5, NULL);
return L_6;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.Char,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_m5AAF72F0AFB81C71CAD40D2A02BFE861DCFA8E98 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, Il2CppChar ___value1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken2), NULL);
if (L_0)
{
goto IL_0011;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0;
Il2CppChar L_2 = ___value1;
NullCheck(L_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
L_3 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, Il2CppChar >::Invoke(47 /* System.Threading.Tasks.Task System.IO.TextWriter::WriteAsync(System.Char) */, L_1, L_2);
return L_3;
}
IL_0011:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = ___cancellationToken2;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_4, NULL);
return L_5;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.String,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_mD9EEB8C0D7E532FCCF17707C702A61DB60030F2D (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___value1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken2), NULL);
if (L_0)
{
goto IL_0011;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0;
String_t* L_2 = ___value1;
NullCheck(L_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
L_3 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, String_t* >::Invoke(48 /* System.Threading.Tasks.Task System.IO.TextWriter::WriteAsync(System.String) */, L_1, L_2);
return L_3;
}
IL_0011:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = ___cancellationToken2;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_4, NULL);
return L_5;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.AsyncUtils::WriteAsync(System.IO.TextWriter,System.Char[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value1, int32_t ___start2, int32_t ___count3, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken4), NULL);
if (L_0)
{
goto IL_0013;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___value1;
int32_t L_3 = ___start2;
int32_t L_4 = ___count3;
NullCheck(L_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = VirtualFuncInvoker3< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(49 /* System.Threading.Tasks.Task System.IO.TextWriter::WriteAsync(System.Char[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
return L_5;
}
IL_0013:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_6 = ___cancellationToken4;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_7;
L_7 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_6, NULL);
return L_7;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Newtonsoft.Json.Utilities.AsyncUtils::ReadAsync(System.IO.TextReader,System.Char[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* AsyncUtils_ReadAsync_mFD1BF4F7D11A6C9118257F2018A95A545D211D90 (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___reader0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, int32_t ___index2, int32_t ___count3, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken4), NULL);
if (L_0)
{
goto IL_0013;
}
}
{
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_1 = ___reader0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer1;
int32_t L_3 = ___index2;
int32_t L_4 = ___count3;
NullCheck(L_1);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_5;
L_5 = VirtualFuncInvoker3< Task_1_t4C228DE57804012969575431CFF12D57C875552D*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Threading.Tasks.Task`1<System.Int32> System.IO.TextReader::ReadAsync(System.Char[],System.Int32,System.Int32) */, L_1, L_2, L_3, L_4);
return L_5;
}
IL_0013:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_6 = ___cancellationToken4;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_7;
L_7 = AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725(L_6, AsyncUtils_FromCanceled_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mEC6E2B42A29E880215BB06D76172BDF2BA245725_RuntimeMethod_var);
return L_7;
}
}
// System.Boolean Newtonsoft.Json.Utilities.AsyncUtils::IsCompletedSucessfully(System.Threading.Tasks.Task)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncUtils_IsCompletedSucessfully_m97657301273FA0A88B58B195D01F780211F97FEA (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, const RuntimeMethod* method)
{
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = ___task0;
NullCheck(L_0);
int32_t L_1;
L_1 = Task_get_Status_m9707FD4B44416BA03FA2FDBEB3D0F0F281D90AD8(L_0, NULL);
return (bool)((((int32_t)L_1) == ((int32_t)5))? 1 : 0);
}
}
// System.Void Newtonsoft.Json.Utilities.AsyncUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncUtils__cctor_m32B16F2DCB2BBB5B4B544115A74071F2C0FAE333 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0;
L_0 = Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD((bool)0, Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_RuntimeMethod_var);
((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___False_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___False_0), (void*)L_0);
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_1;
L_1 = Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD((bool)1, Task_FromResult_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE25E66F88273049DD76B6FA6A5C3818D2A66DFDD_RuntimeMethod_var);
((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___True_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___True_1), (void*)L_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2;
L_2 = Task_Delay_m49549664B58973EEEF1B479B21FB30D0DF3C7EFA(0, NULL);
((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___CompletedTask_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___CompletedTask_2), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.AsyncUtils/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mBBFA11D07514E472309A229F9E0603E2BA13FCFA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* L_0 = (U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653*)il2cpp_codegen_object_new(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m1143584A255BED8D14F32ED652C51D8E6DB09DE5(L_0, NULL);
((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.AsyncUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m1143584A255BED8D14F32ED652C51D8E6DB09DE5 (U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.AsyncUtils/<>c::<FromCanceled>b__5_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CFromCanceledU3Eb__5_0_mC491F58F4C79E13A10314420560BDD725DA31BCF (U3CU3Ec_t9807D522801ED3C705D96B2771AA46078FC42653* __this, const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder__ctor_m8F45560E8389A93FBEB501B8685D03E876F46C4D (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)76));
__this->____charsLine_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____charsLine_2), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteral638C5441E8427B2B9D2C941DDBF958579B5FE3F0, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = ___writer0;
__this->____writer_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____writer_3), (void*)L_2);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::ValidateEncode(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001d;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B_RuntimeMethod_var)));
}
IL_001d:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_002c;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B_RuntimeMethod_var)));
}
IL_002c:
{
int32_t L_6 = ___count2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___buffer0;
NullCheck(L_7);
int32_t L_8 = ___index1;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_003f;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B_RuntimeMethod_var)));
}
IL_003f:
{
return;
}
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::Encode(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Encode_mB7AC073FA2837C4647788A4517F6234EECC78F92 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B(__this, L_0, L_1, L_2, NULL);
int32_t L_3 = __this->____leftOverBytesCount_5;
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0042;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___buffer0;
int32_t L_5 = ___index1;
bool L_6;
L_6 = Base64Encoder_FulfillFromLeftover_m0FC68C1E5413E57DF204AA71B0B07C4D80E03442(__this, L_4, L_5, (&___count2), NULL);
if (!L_6)
{
goto IL_001f;
}
}
{
return;
}
IL_001f:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->____leftOverBytes_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_9;
L_9 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_7, 0, 3, L_8, 0, NULL);
V_2 = L_9;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->____charsLine_2;
int32_t L_11 = V_2;
Base64Encoder_WriteChars_m2402CA2720FAFFF4529F80B591E2B701877C6EE9(__this, L_10, 0, L_11, NULL);
}
IL_0042:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___buffer0;
int32_t L_13 = ___index1;
Base64Encoder_StoreLeftOverBytes_m3B84B2B5BB5FDDA907E57387F515B6E662966AB9(__this, L_12, L_13, (&___count2), NULL);
int32_t L_14 = ___index1;
int32_t L_15 = ___count2;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, L_15));
V_1 = ((int32_t)57);
goto IL_0082;
}
IL_0055:
{
int32_t L_16 = ___index1;
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_16, L_17))) <= ((int32_t)L_18)))
{
goto IL_005f;
}
}
{
int32_t L_19 = V_0;
int32_t L_20 = ___index1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_19, L_20));
}
IL_005f:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___buffer0;
int32_t L_22 = ___index1;
int32_t L_23 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = __this->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_25;
L_25 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_21, L_22, L_23, L_24, 0, NULL);
V_3 = L_25;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = __this->____charsLine_2;
int32_t L_27 = V_3;
Base64Encoder_WriteChars_m2402CA2720FAFFF4529F80B591E2B701877C6EE9(__this, L_26, 0, L_27, NULL);
int32_t L_28 = ___index1;
int32_t L_29 = V_1;
___index1 = ((int32_t)il2cpp_codegen_add(L_28, L_29));
}
IL_0082:
{
int32_t L_30 = ___index1;
int32_t L_31 = V_0;
if ((((int32_t)L_30) < ((int32_t)L_31)))
{
goto IL_0055;
}
}
{
return;
}
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::StoreLeftOverBytes(System.Byte[],System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_StoreLeftOverBytes_m3B84B2B5BB5FDDA907E57387F515B6E662966AB9 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t* ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t* L_0 = ___count2;
int32_t L_1 = *((int32_t*)L_0);
V_0 = ((int32_t)(L_1%3));
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003f;
}
}
{
int32_t* L_3 = ___count2;
int32_t* L_4 = ___count2;
int32_t L_5 = *((int32_t*)L_4);
int32_t L_6 = V_0;
*((int32_t*)L_3) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_5, L_6));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->____leftOverBytes_4;
if (L_7)
{
goto IL_0023;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)3);
__this->____leftOverBytes_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____leftOverBytes_4), (void*)L_8);
}
IL_0023:
{
V_1 = 0;
goto IL_003b;
}
IL_0027:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->____leftOverBytes_4;
int32_t L_10 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___buffer0;
int32_t L_12 = ___index1;
int32_t* L_13 = ___count2;
int32_t L_14 = *((int32_t*)L_13);
int32_t L_15 = V_1;
NullCheck(L_11);
int32_t L_16 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_12, L_14)), L_15));
uint8_t L_17 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (uint8_t)L_17);
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_003b:
{
int32_t L_19 = V_1;
int32_t L_20 = V_0;
if ((((int32_t)L_19) < ((int32_t)L_20)))
{
goto IL_0027;
}
}
IL_003f:
{
int32_t L_21 = V_0;
__this->____leftOverBytesCount_5 = L_21;
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.Base64Encoder::FulfillFromLeftover(System.Byte[],System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Base64Encoder_FulfillFromLeftover_m0FC68C1E5413E57DF204AA71B0B07C4D80E03442 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t* ___count2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->____leftOverBytesCount_5;
V_0 = L_0;
goto IL_0023;
}
IL_0009:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____leftOverBytes_4;
int32_t L_2 = V_0;
int32_t L_3 = L_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_3, 1));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___buffer0;
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
___index1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
NullCheck(L_4);
int32_t L_7 = L_6;
uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)L_8);
int32_t* L_9 = ___count2;
int32_t* L_10 = ___count2;
int32_t L_11 = *((int32_t*)L_10);
*((int32_t*)L_9) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_11, 1));
}
IL_0023:
{
int32_t L_12 = V_0;
if ((((int32_t)L_12) >= ((int32_t)3)))
{
goto IL_002c;
}
}
{
int32_t* L_13 = ___count2;
int32_t L_14 = *((int32_t*)L_13);
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0009;
}
}
IL_002c:
{
int32_t* L_15 = ___count2;
int32_t L_16 = *((int32_t*)L_15);
if (L_16)
{
goto IL_003d;
}
}
{
int32_t L_17 = V_0;
if ((((int32_t)L_17) >= ((int32_t)3)))
{
goto IL_003d;
}
}
{
int32_t L_18 = V_0;
__this->____leftOverBytesCount_5 = L_18;
return (bool)1;
}
IL_003d:
{
return (bool)0;
}
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Flush_m0227AAAF28FFCA22AF4FA524E82FC4F2C1AD4DDD (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->____leftOverBytesCount_5;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0038;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->____leftOverBytes_4;
int32_t L_2 = __this->____leftOverBytesCount_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_1, 0, L_2, L_3, 0, NULL);
V_0 = L_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = __this->____charsLine_2;
int32_t L_6 = V_0;
Base64Encoder_WriteChars_m2402CA2720FAFFF4529F80B591E2B701877C6EE9(__this, L_5, 0, L_6, NULL);
__this->____leftOverBytesCount_5 = 0;
}
IL_0038:
{
return;
}
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_WriteChars_m2402CA2720FAFFF4529F80B591E2B701877C6EE9 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->____writer_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___chars0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.Base64Encoder::EncodeAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Base64Encoder_EncodeAsync_mA082C2FDE41B6651187E3C38B912B6E970E95240 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3 V_0;
memset((&V_0), 0, sizeof(V_0));
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 V_1;
memset((&V_1), 0, sizeof(V_1));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
(&V_0)->___buffer_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___buffer_3), (void*)L_0);
int32_t L_1 = ___index1;
(&V_0)->___index_4 = L_1;
int32_t L_2 = ___count2;
(&V_0)->___count_5 = L_2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_3 = ___cancellationToken3;
(&V_0)->___cancellationToken_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_6))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_4;
L_4 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3 L_5 = V_0;
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_6 = L_5.___U3CU3Et__builder_1;
V_1 = L_6;
AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80((&V_1), (&V_0), AsyncTaskMethodBuilder_Start_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m1D493E013978BDEFF2672F0495B211FB7D138B80_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_7 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_8;
L_8 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_7, NULL);
return L_8;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.Base64Encoder::WriteCharsAsync(System.Char[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Base64Encoder_WriteCharsAsync_m144AB562BAC2A09E4E03EACD94BED517D5FB42FD (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___index1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->____writer_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___chars0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = ___cancellationToken3;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC(L_0, L_1, L_2, L_3, L_4, NULL);
return L_5;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.Base64Encoder::FlushAsync(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Base64Encoder_FlushAsync_m643FDD8C71D1B4DE0B7982C0F1AFAAD998CCBBF7 (Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken0), NULL);
if (!L_0)
{
goto IL_0010;
}
}
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken0;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2;
L_2 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_1, NULL);
return L_2;
}
IL_0010:
{
int32_t L_3 = __this->____leftOverBytesCount_5;
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_004a;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->____leftOverBytes_4;
int32_t L_5 = __this->____leftOverBytesCount_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_7;
L_7 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_4, 0, L_5, L_6, 0, NULL);
V_0 = L_7;
__this->____leftOverBytesCount_5 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->____charsLine_2;
int32_t L_9 = V_0;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_10 = ___cancellationToken0;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_11;
L_11 = Base64Encoder_WriteCharsAsync_m144AB562BAC2A09E4E03EACD94BED517D5FB42FD(__this, L_8, 0, L_9, L_10, NULL);
return L_11;
}
IL_004a:
{
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_12 = ((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___CompletedTask_2;
return L_12;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEncodeAsyncU3Ed__13_MoveNext_m08B0EE21B4F58EE65D7771073CBEA715263EDF36 (U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* V_1 = NULL;
int32_t V_2 = 0;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_3;
memset((&V_3), 0, sizeof(V_3));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
Exception_t* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_1 = __this->___U3CU3E4__this_2;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_00c3_1;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_01b4_1;
}
}
{
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_4 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___buffer_3;
int32_t L_6 = __this->___index_4;
int32_t L_7 = __this->___count_5;
NullCheck(L_4);
Base64Encoder_ValidateEncode_mE36AF7F390C42675FC7358929CB671B3CCDE964B(L_4, L_5, L_6, L_7, NULL);
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_8 = V_1;
NullCheck(L_8);
int32_t L_9 = L_8->____leftOverBytesCount_5;
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_00e6_1;
}
}
{
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_10 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___buffer_3;
int32_t L_12 = __this->___index_4;
int32_t* L_13 = (&__this->___count_5);
NullCheck(L_10);
bool L_14;
L_14 = Base64Encoder_FulfillFromLeftover_m0FC68C1E5413E57DF204AA71B0B07C4D80E03442(L_10, L_11, L_12, L_13, NULL);
if (!L_14)
{
goto IL_005e_1;
}
}
{
goto IL_0216;
}
IL_005e_1:
{
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_15 = V_1;
NullCheck(L_15);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = L_15->____leftOverBytes_4;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_17 = V_1;
NullCheck(L_17);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_19;
L_19 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_16, 0, 3, L_18, 0, NULL);
V_2 = L_19;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_20 = V_1;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_21 = V_1;
NullCheck(L_21);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = L_21->____charsLine_2;
int32_t L_23 = V_2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_24 = __this->___cancellationToken_6;
NullCheck(L_20);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_25;
L_25 = Base64Encoder_WriteCharsAsync_m144AB562BAC2A09E4E03EACD94BED517D5FB42FD(L_20, L_22, 0, L_23, L_24, NULL);
NullCheck(L_25);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_26;
L_26 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_25, (bool)0, NULL);
V_4 = L_26;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_27;
L_27 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
V_3 = L_27;
bool L_28;
L_28 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_3), NULL);
if (L_28)
{
goto IL_00df_1;
}
}
{
int32_t L_29 = 0;
V_0 = L_29;
__this->___U3CU3E1__state_0 = L_29;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_30 = V_3;
__this->___U3CU3Eu__1_9 = L_30;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_9))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_31 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C(L_31, (&V_3), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_RuntimeMethod_var);
goto IL_0229;
}
IL_00c3_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_32 = __this->___U3CU3Eu__1_9;
V_3 = L_32;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_33 = (&__this->___U3CU3Eu__1_9);
il2cpp_codegen_initobj(L_33, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_34 = (-1);
V_0 = L_34;
__this->___U3CU3E1__state_0 = L_34;
}
IL_00df_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_3), NULL);
}
IL_00e6_1:
{
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_35 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = __this->___buffer_3;
int32_t L_37 = __this->___index_4;
int32_t* L_38 = (&__this->___count_5);
NullCheck(L_35);
Base64Encoder_StoreLeftOverBytes_m3B84B2B5BB5FDDA907E57387F515B6E662966AB9(L_35, L_36, L_37, L_38, NULL);
int32_t L_39 = __this->___index_4;
int32_t L_40 = __this->___count_5;
__this->___U3Cnum4U3E5__2_7 = ((int32_t)il2cpp_codegen_add(L_39, L_40));
__this->___U3ClengthU3E5__3_8 = ((int32_t)57);
goto IL_01ea_1;
}
IL_011e_1:
{
int32_t L_41 = __this->___index_4;
int32_t L_42 = __this->___U3ClengthU3E5__3_8;
int32_t L_43 = __this->___U3Cnum4U3E5__2_7;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_41, L_42))) <= ((int32_t)L_43)))
{
goto IL_0146_1;
}
}
{
int32_t L_44 = __this->___U3Cnum4U3E5__2_7;
int32_t L_45 = __this->___index_4;
__this->___U3ClengthU3E5__3_8 = ((int32_t)il2cpp_codegen_subtract(L_44, L_45));
}
IL_0146_1:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_46 = __this->___buffer_3;
int32_t L_47 = __this->___index_4;
int32_t L_48 = __this->___U3ClengthU3E5__3_8;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_49 = V_1;
NullCheck(L_49);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_50 = L_49->____charsLine_2;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_51;
L_51 = Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D(L_46, L_47, L_48, L_50, 0, NULL);
V_5 = L_51;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_52 = V_1;
Base64Encoder_t70348F0C1F3E24616D01828E151D7E559CE8AC57* L_53 = V_1;
NullCheck(L_53);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_54 = L_53->____charsLine_2;
int32_t L_55 = V_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_56 = __this->___cancellationToken_6;
NullCheck(L_52);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_57;
L_57 = Base64Encoder_WriteCharsAsync_m144AB562BAC2A09E4E03EACD94BED517D5FB42FD(L_52, L_54, 0, L_55, L_56, NULL);
NullCheck(L_57);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_58;
L_58 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_57, (bool)0, NULL);
V_4 = L_58;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_59;
L_59 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
V_3 = L_59;
bool L_60;
L_60 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_3), NULL);
if (L_60)
{
goto IL_01d0_1;
}
}
{
int32_t L_61 = 1;
V_0 = L_61;
__this->___U3CU3E1__state_0 = L_61;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_62 = V_3;
__this->___U3CU3Eu__1_9 = L_62;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_9))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_63 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C(L_63, (&V_3), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3_m3673F1DC6069652121FB1A7CDB61E2418883ED5C_RuntimeMethod_var);
goto IL_0229;
}
IL_01b4_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_64 = __this->___U3CU3Eu__1_9;
V_3 = L_64;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_65 = (&__this->___U3CU3Eu__1_9);
il2cpp_codegen_initobj(L_65, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_66 = (-1);
V_0 = L_66;
__this->___U3CU3E1__state_0 = L_66;
}
IL_01d0_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_3), NULL);
int32_t L_67 = __this->___index_4;
int32_t L_68 = __this->___U3ClengthU3E5__3_8;
__this->___index_4 = ((int32_t)il2cpp_codegen_add(L_67, L_68));
}
IL_01ea_1:
{
int32_t L_69 = __this->___index_4;
int32_t L_70 = __this->___U3Cnum4U3E5__2_7;
if ((((int32_t)L_69) < ((int32_t)L_70)))
{
goto IL_011e_1;
}
}
{
goto IL_0216;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_01fd;
}
throw e;
}
CATCH_01fd:
{// begin catch(System.Exception)
V_6 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_71 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_72 = V_6;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_71, L_72, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0229;
}// end catch (depth: 1)
IL_0216:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_73 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_73, NULL);
}
IL_0229:
{
return;
}
}
IL2CPP_EXTERN_C void U3CEncodeAsyncU3Ed__13_MoveNext_m08B0EE21B4F58EE65D7771073CBEA715263EDF36_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3*>(__this + _offset);
U3CEncodeAsyncU3Ed__13_MoveNext_m08B0EE21B4F58EE65D7771073CBEA715263EDF36(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.Utilities.Base64Encoder/<EncodeAsync>d__13::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEncodeAsyncU3Ed__13_SetStateMachine_m969885F93B44F072CA61F028E51310515738805F (U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CEncodeAsyncU3Ed__13_SetStateMachine_m969885F93B44F072CA61F028E51310515738805F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CEncodeAsyncU3Ed__13_t5103EE720FE3B071FCECA90423737910CAACB2D3*>(__this + _offset);
U3CEncodeAsyncU3Ed__13_SetStateMachine_m969885F93B44F072CA61F028E51310515738805F(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean Newtonsoft.Json.Utilities.CollectionUtils::IsDictionaryType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionUtils_IsDictionaryType_m743D5E0315C996C84B573CF1DC6E9F57286EBFFC (Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t4F866F723F9E0A522C362494DC799D065D96C726_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReadOnlyDictionary_2_t7AC36CF348C533A7F72C38A31C1FD6CE48B49ADC_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
Type_t* L_3 = ___type0;
NullCheck(L_2);
bool L_4;
L_4 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_2, L_3);
if (!L_4)
{
goto IL_001f;
}
}
{
return (bool)1;
}
IL_001f:
{
Type_t* L_5 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (IDictionary_2_t4F866F723F9E0A522C362494DC799D065D96C726_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_8;
L_8 = ReflectionUtils_ImplementsGenericDefinition_m489A8822028619645D53225726EAC777F42572FC(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0033;
}
}
{
return (bool)1;
}
IL_0033:
{
Type_t* L_9 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (IReadOnlyDictionary_2_t7AC36CF348C533A7F72C38A31C1FD6CE48B49ADC_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_12;
L_12 = ReflectionUtils_ImplementsGenericDefinition_m489A8822028619645D53225726EAC777F42572FC(L_9, L_11, NULL);
if (!L_12)
{
goto IL_0047;
}
}
{
return (bool)1;
}
IL_0047:
{
return (bool)0;
}
}
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* CollectionUtils_ResolveEnumerableCollectionConstructor_m8ACE7C9E0FB6B75DF1F7A64CFDA30CFEBDD388B9 (Type_t* ___collectionType0, Type_t* ___collectionItemType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = L_2;
Type_t* L_4 = ___collectionItemType1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_4);
NullCheck(L_1);
Type_t* L_5;
L_5 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_1, L_3);
V_0 = L_5;
Type_t* L_6 = ___collectionType0;
Type_t* L_7 = ___collectionItemType1;
Type_t* L_8 = V_0;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_9;
L_9 = CollectionUtils_ResolveEnumerableCollectionConstructor_mD88FC90C434024188F88254B22CCB8671F294D8B(L_6, L_7, L_8, NULL);
return L_9;
}
}
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* CollectionUtils_ResolveEnumerableCollectionConstructor_mD88FC90C434024188F88254B22CCB8671F294D8B (Type_t* ___collectionType0, Type_t* ___collectionItemType1, Type_t* ___constructorArgumentType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDECCB0903E13D406837BA6674FDAF7B6B1EDF44B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tA9E92116BDDEB68A8527F08BF8D2B70B7A00CA95_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* V_1 = NULL;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* V_2 = NULL;
int32_t V_3 = 0;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* V_4 = NULL;
RuntimeObject* V_5 = NULL;
Type_t* V_6 = NULL;
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = L_2;
Type_t* L_4 = ___collectionItemType1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_4);
NullCheck(L_1);
Type_t* L_5;
L_5 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_1, L_3);
V_0 = L_5;
V_1 = (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB*)NULL;
Type_t* L_6 = ___collectionType0;
NullCheck(L_6);
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_7;
L_7 = VirtualFuncInvoker1< ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A*, int32_t >::Invoke(82 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_6, ((int32_t)20));
V_2 = L_7;
V_3 = 0;
goto IL_0079;
}
IL_0029:
{
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_8 = V_2;
int32_t L_9 = V_3;
NullCheck(L_8);
int32_t L_10 = L_9;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_4 = L_11;
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_12 = V_4;
NullCheck(L_12);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_13;
L_13 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_12);
V_5 = (RuntimeObject*)L_13;
RuntimeObject* L_14 = V_5;
NullCheck(L_14);
int32_t L_15;
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.ParameterInfo>::get_Count() */, ICollection_1_tDECCB0903E13D406837BA6674FDAF7B6B1EDF44B_il2cpp_TypeInfo_var, L_14);
if ((!(((uint32_t)L_15) == ((uint32_t)1))))
{
goto IL_0075;
}
}
{
RuntimeObject* L_16 = V_5;
NullCheck(L_16);
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_17;
L_17 = InterfaceFuncInvoker1< ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.ParameterInfo>::get_Item(System.Int32) */, IList_1_tA9E92116BDDEB68A8527F08BF8D2B70B7A00CA95_il2cpp_TypeInfo_var, L_16, 0);
NullCheck(L_17);
Type_t* L_18;
L_18 = VirtualFuncInvoker0< Type_t* >::Invoke(11 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_17);
V_6 = L_18;
Type_t* L_19 = V_0;
Type_t* L_20 = V_6;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_21;
L_21 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_19, L_20, NULL);
if (!L_21)
{
goto IL_005f;
}
}
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_22 = V_4;
V_1 = L_22;
goto IL_007f;
}
IL_005f:
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_23 = V_1;
il2cpp_codegen_runtime_class_init_inline(ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var);
bool L_24;
L_24 = ConstructorInfo_op_Equality_mED386D917BF45C301A559A624731E9E57F1C064A(L_23, (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB*)NULL, NULL);
if (!L_24)
{
goto IL_0075;
}
}
{
Type_t* L_25 = V_6;
Type_t* L_26 = ___constructorArgumentType2;
NullCheck(L_25);
bool L_27;
L_27 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_25, L_26);
if (!L_27)
{
goto IL_0075;
}
}
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_28 = V_4;
V_1 = L_28;
}
IL_0075:
{
int32_t L_29 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
}
IL_0079:
{
int32_t L_30 = V_3;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_31 = V_2;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_0029;
}
}
IL_007f:
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_32 = V_1;
return L_32;
}
}
// System.Collections.Generic.IList`1<System.Int32> Newtonsoft.Json.Utilities.CollectionUtils::GetDimensions(System.Collections.IList,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionUtils_GetDimensions_mF3D5F233089033C3DE9A6AAC64C53DE2D295D511 (RuntimeObject* ___values0, int32_t ___dimensionsCount1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_0, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
V_0 = L_0;
RuntimeObject* L_1 = ___values0;
V_1 = L_1;
}
IL_0008:
{
RuntimeObject* L_2 = V_0;
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_3);
NullCheck(L_2);
InterfaceActionInvoker1< int32_t >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Int32>::Add(T) */, ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var, L_2, L_4);
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Int32>::get_Count() */, ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var, L_5);
int32_t L_7 = ___dimensionsCount1;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_0039;
}
}
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_8);
if (!L_9)
{
goto IL_0039;
}
}
{
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_10, 0);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
RuntimeObject* L_12 = V_2;
if (!L_12)
{
goto IL_0039;
}
}
{
RuntimeObject* L_13 = V_2;
V_1 = L_13;
goto IL_0008;
}
IL_0039:
{
RuntimeObject* L_14 = V_0;
return L_14;
}
}
// System.Void Newtonsoft.Json.Utilities.CollectionUtils::CopyFromJaggedToMultidimensionalArray(System.Collections.IList,System.Array,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0 (RuntimeObject* ___values0, RuntimeArray* ___multidimensionalArray1, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___indices2;
NullCheck(L_0);
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
int32_t L_1 = V_0;
RuntimeArray* L_2 = ___multidimensionalArray1;
NullCheck(L_2);
int32_t L_3;
L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_001c;
}
}
{
RuntimeArray* L_4 = ___multidimensionalArray1;
RuntimeObject* L_5 = ___values0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___indices2;
RuntimeObject* L_7;
L_7 = CollectionUtils_JaggedArrayGetValue_mBA79916F1A61FB55361DFB1A7F0B691592F4676F(L_5, L_6, NULL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ___indices2;
NullCheck(L_4);
Array_SetValue_m71595F7B1BD3262D3BE2D03B3F8A7A0F51482917(L_4, L_7, L_8, NULL);
return;
}
IL_001c:
{
RuntimeArray* L_9 = ___multidimensionalArray1;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11;
L_11 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_9, L_10, NULL);
V_1 = L_11;
RuntimeObject* L_12 = ___values0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = ___indices2;
RuntimeObject* L_14;
L_14 = CollectionUtils_JaggedArrayGetValue_mBA79916F1A61FB55361DFB1A7F0B691592F4676F(L_12, L_13, NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_14, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)));
int32_t L_15;
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var)));
int32_t L_16 = V_1;
if ((((int32_t)L_15) == ((int32_t)L_16)))
{
goto IL_0043;
}
}
{
Exception_t* L_17 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_17);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD5BAE51140F5FF32C4A4D46B53FB6E0AA6B4FD6)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0_RuntimeMethod_var)));
}
IL_0043:
{
int32_t L_18 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_18, 1)));
V_2 = L_19;
V_3 = 0;
goto IL_005a;
}
IL_0050:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = V_2;
int32_t L_21 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = ___indices2;
int32_t L_23 = V_3;
NullCheck(L_22);
int32_t L_24 = L_23;
int32_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (int32_t)L_25);
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_005a:
{
int32_t L_27 = V_3;
int32_t L_28 = V_0;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_0050;
}
}
{
V_4 = 0;
goto IL_0076;
}
IL_0063:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_29 = V_2;
int32_t L_30 = V_0;
int32_t L_31 = V_4;
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (int32_t)L_31);
RuntimeObject* L_32 = ___values0;
RuntimeArray* L_33 = ___multidimensionalArray1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = V_2;
CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0(L_32, L_33, L_34, NULL);
int32_t L_35 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_35, 1));
}
IL_0076:
{
int32_t L_36 = V_4;
RuntimeArray* L_37 = ___multidimensionalArray1;
int32_t L_38 = V_0;
NullCheck(L_37);
int32_t L_39;
L_39 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_37, L_38, NULL);
if ((((int32_t)L_36) < ((int32_t)L_39)))
{
goto IL_0063;
}
}
{
return;
}
}
// System.Object Newtonsoft.Json.Utilities.CollectionUtils::JaggedArrayGetValue(System.Collections.IList,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionUtils_JaggedArrayGetValue_mBA79916F1A61FB55361DFB1A7F0B691592F4676F (RuntimeObject* ___values0, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = ___values0;
V_0 = L_0;
V_1 = 0;
goto IL_002b;
}
IL_0006:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___indices1;
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_2 = L_4;
int32_t L_5 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___indices1;
NullCheck(L_6);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), 1))))))
{
goto IL_001a;
}
}
{
RuntimeObject* L_7 = V_0;
int32_t L_8 = V_2;
NullCheck(L_7);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_7, L_8);
return L_9;
}
IL_001a:
{
RuntimeObject* L_10 = V_0;
int32_t L_11 = V_2;
NullCheck(L_10);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_10, L_11);
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_002b:
{
int32_t L_14 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = ___indices1;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
{
goto IL_0006;
}
}
{
RuntimeObject* L_16 = V_0;
return L_16;
}
}
// System.Array Newtonsoft.Json.Utilities.CollectionUtils::ToMultidimensionalArray(System.Collections.IList,System.Type,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* CollectionUtils_ToMultidimensionalArray_mEB4F3E699DD0C8E55AABD75FA94F197CD68C9766 (RuntimeObject* ___values0, Type_t* ___type1, int32_t ___rank2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeArray* V_1 = NULL;
{
RuntimeObject* L_0 = ___values0;
int32_t L_1 = ___rank2;
RuntimeObject* L_2;
L_2 = CollectionUtils_GetDimensions_mF3D5F233089033C3DE9A6AAC64C53DE2D295D511(L_0, L_1, NULL);
V_0 = L_2;
goto IL_0011;
}
IL_000a:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker1< int32_t >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Int32>::Add(T) */, ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var, L_3, 0);
}
IL_0011:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Int32>::get_Count() */, ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var, L_4);
int32_t L_6 = ___rank2;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_000a;
}
}
{
Type_t* L_7 = ___type1;
RuntimeObject* L_8 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9;
L_9 = Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E(L_8, Enumerable_ToArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC959D4AA13DAB91F3D27B51E188E9B24C894E75E_RuntimeMethod_var);
RuntimeArray* L_10;
L_10 = Array_CreateInstance_m2947AE405EE1AC72C52E81E6DC6C0D4A77AF1B05(L_7, L_9, NULL);
V_1 = L_10;
RuntimeObject* L_11 = ___values0;
RuntimeArray* L_12 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13;
L_13 = CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_inline(CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_RuntimeMethod_var);
CollectionUtils_CopyFromJaggedToMultidimensionalArray_mBB0CD1D1BCF90A786DC5E8DE8588FD7913BDE7A0(L_11, L_12, L_13, NULL);
RuntimeArray* L_14 = V_1;
return L_14;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type Newtonsoft.Json.Utilities.TypeInformation::get_Type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeInformation_get_Type_m66CAE341688AA88BD1598BD84C736FC0429619F1 (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CTypeU3Ek__BackingField_0;
return L_0;
}
}
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.TypeInformation::get_TypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeInformation_get_TypeCode_mC353DCEF2D0C5A983CD7A389E67D0F1B9D4F57EA (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CTypeCodeU3Ek__BackingField_1;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.TypeInformation::.ctor(System.Type,Newtonsoft.Json.Utilities.PrimitiveTypeCode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69 (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* __this, Type_t* ___type0, int32_t ___typeCode1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Type_t* L_0 = ___type0;
__this->___U3CTypeU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTypeU3Ek__BackingField_0), (void*)L_0);
int32_t L_1 = ___typeCode1;
__this->___U3CTypeCodeU3Ek__BackingField_1 = L_1;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8 (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Type_t* L_0 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = ConvertUtils_GetTypeCode_m81D45C5E7E6FDEA8B00CE19B5CC8BE488ADC1474(L_0, (&V_0), NULL);
return L_1;
}
}
// Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_GetTypeCode_m81D45C5E7E6FDEA8B00CE19B5CC8BE488ADC1474 (Type_t* ___t0, bool* ___isEnum1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mEC72D6EF420C656529099C9CBDA497904A1B8ADC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Type_t* V_1 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_0 = ((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___TypeCodeMap_0;
Type_t* L_1 = ___t0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_mEC72D6EF420C656529099C9CBDA497904A1B8ADC(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mEC72D6EF420C656529099C9CBDA497904A1B8ADC_RuntimeMethod_var);
if (!L_2)
{
goto IL_0014;
}
}
{
bool* L_3 = ___isEnum1;
*((int8_t*)L_3) = (int8_t)0;
int32_t L_4 = V_0;
return L_4;
}
IL_0014:
{
Type_t* L_5 = ___t0;
bool L_6;
L_6 = TypeExtensions_IsEnum_m8FA65C0E930492403B47210901174D660CB274A4(L_5, NULL);
if (!L_6)
{
goto IL_002b;
}
}
{
bool* L_7 = ___isEnum1;
*((int8_t*)L_7) = (int8_t)1;
Type_t* L_8 = ___t0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
Type_t* L_9;
L_9 = Enum_GetUnderlyingType_m82EA340BC4D4652783F7D2408BF02A945F0F90DE(L_8, NULL);
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_10;
L_10 = ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8(L_9, NULL);
return L_10;
}
IL_002b:
{
Type_t* L_11 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_12;
L_12 = ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A(L_11, NULL);
if (!L_12)
{
goto IL_0069;
}
}
{
Type_t* L_13 = ___t0;
Type_t* L_14;
L_14 = Nullable_GetUnderlyingType_m3162A4F48AE683C74A9419644E40C05595BA41E7(L_13, NULL);
V_1 = L_14;
Type_t* L_15 = V_1;
bool L_16;
L_16 = TypeExtensions_IsEnum_m8FA65C0E930492403B47210901174D660CB274A4(L_15, NULL);
if (!L_16)
{
goto IL_0069;
}
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_20 = L_19;
Type_t* L_21 = V_1;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
Type_t* L_22;
L_22 = Enum_GetUnderlyingType_m82EA340BC4D4652783F7D2408BF02A945F0F90DE(L_21, NULL);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_22);
NullCheck(L_18);
Type_t* L_23;
L_23 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_18, L_20);
bool* L_24 = ___isEnum1;
*((int8_t*)L_24) = (int8_t)1;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_25;
L_25 = ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8(L_23, NULL);
return L_25;
}
IL_0069:
{
bool* L_26 = ___isEnum1;
*((int8_t*)L_26) = (int8_t)0;
return (int32_t)(1);
}
}
// Newtonsoft.Json.Utilities.TypeInformation Newtonsoft.Json.Utilities.ConvertUtils::GetTypeInformation(System.IConvertible)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* ConvertUtils_GetTypeInformation_m61BCE04D7078EA3A4BF3D999AB4C1B37DB7610AE (RuntimeObject* ___convertable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_0 = ((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___PrimitiveTypeCodes_1;
RuntimeObject* L_1 = ___convertable0;
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.TypeCode System.IConvertible::GetTypeCode() */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_1);
NullCheck(L_0);
int32_t L_3 = L_2;
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsConvertible(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsConvertible_mEF2D516F9B97EBC8D75F45191567A381A42AB593 (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
Type_t* L_2 = ___t0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, L_2);
return L_3;
}
}
// System.TimeSpan Newtonsoft.Json.Utilities.ConvertUtils::ParseTimeSpan(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ConvertUtils_ParseTimeSpan_m57269DE3ABCC7D347293DF51A06DED6D4BE25FD4 (String_t* ___input0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___input0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2;
L_2 = TimeSpan_Parse_m49D0C9E15F6B481544498E6F64101FFF7EC88918(L_0, L_1, NULL);
return L_2;
}
}
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ConvertUtils::CreateCastConverter(Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,System.Type>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* ConvertUtils_CreateCastConverter_mACDED39C8FBC039BFA8BF16C117137B5EFDF8D91 (StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5 ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tACBF5A1656250800CE861707354491F0611F6624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass8_0_U3CCreateCastConverterU3Eb__0_mDC84E827B3BA216BAECEDDCB26FCA5EFCEF550EF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6E90C09E43FB002DA629508AC300A0750320118);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
MethodInfo_t* V_3 = NULL;
MethodInfo_t* G_B2_0 = NULL;
MethodInfo_t* G_B1_0 = NULL;
{
U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* L_0 = (U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass8_0__ctor_m7DB75E6B20C696DD77ED6EE409C002FC85E401BB(L_0, NULL);
V_0 = L_0;
StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5 L_1 = ___t0;
Type_t* L_2 = L_1.___Value1_0;
V_1 = L_2;
StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5 L_3 = ___t0;
Type_t* L_4 = L_3.___Value2_1;
V_2 = L_4;
Type_t* L_5 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_6 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = L_6;
Type_t* L_8 = V_1;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_8);
NullCheck(L_5);
MethodInfo_t* L_9;
L_9 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_5, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, L_7, NULL);
MethodInfo_t* L_10 = L_9;
G_B1_0 = L_10;
if (L_10)
{
G_B2_0 = L_10;
goto IL_0042;
}
}
{
Type_t* L_11 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_12 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = L_12;
Type_t* L_14 = V_1;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_14);
NullCheck(L_11);
MethodInfo_t* L_15;
L_15 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_11, _stringLiteralB6E90C09E43FB002DA629508AC300A0750320118, L_13, NULL);
G_B2_0 = L_15;
}
IL_0042:
{
V_3 = G_B2_0;
MethodInfo_t* L_16 = V_3;
bool L_17;
L_17 = MethodInfo_op_Equality_m3F6B020142F59A9A1549CEB6C7A43798FBA18BEB(L_16, (MethodInfo_t*)NULL, NULL);
if (!L_17)
{
goto IL_004e;
}
}
{
return (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)NULL;
}
IL_004e:
{
U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* L_18 = V_0;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_19;
L_19 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_20 = V_3;
NullCheck(L_19);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_21;
L_21 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_19, L_20);
NullCheck(L_18);
L_18->___call_0 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&L_18->___call_0), (void*)L_21);
U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* L_22 = V_0;
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_23 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)il2cpp_codegen_object_new(Func_2_tACBF5A1656250800CE861707354491F0611F6624_il2cpp_TypeInfo_var);
NullCheck(L_23);
Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398(L_23, L_22, (intptr_t)((void*)U3CU3Ec__DisplayClass8_0_U3CCreateCastConverterU3Eb__0_mDC84E827B3BA216BAECEDDCB26FCA5EFCEF550EF_RuntimeMethod_var), NULL);
return L_23;
}
}
// System.Numerics.BigInteger Newtonsoft.Json.Utilities.ConvertUtils::ToBigInteger(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ConvertUtils_ToBigInteger_mAC51C13F851033B34F2FB9612FB9E26F4242CAC6 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F V_0;
memset((&V_0), 0, sizeof(V_0));
String_t* V_1 = NULL;
float V_2 = 0.0f;
double V_3 = 0.0;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
int64_t V_6 = 0;
uint32_t V_7 = 0;
uint64_t V_8 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_9 = NULL;
{
RuntimeObject* L_0 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var)))
{
goto IL_0011;
}
}
{
RuntimeObject* L_1 = ___value0;
V_0 = ((*(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)((BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)UnBox(L_1, BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var))));
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_2 = V_0;
return L_2;
}
IL_0011:
{
RuntimeObject* L_3 = ___value0;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var));
String_t* L_4 = V_1;
if (!L_4)
{
goto IL_0027;
}
}
{
String_t* L_5 = V_1;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_7;
L_7 = BigInteger_Parse_mDED5D552139B603F31989B5D5A5D8F08EB9032A6(L_5, L_6, NULL);
return L_7;
}
IL_0027:
{
RuntimeObject* L_8 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_8, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
goto IL_003d;
}
}
{
RuntimeObject* L_9 = ___value0;
V_2 = ((*(float*)((float*)(float*)UnBox(L_9, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var))));
float L_10 = V_2;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_11;
memset((&L_11), 0, sizeof(L_11));
BigInteger__ctor_m9F274FB1B4EC1E507374A65D16F8D1A6D23D54AC((&L_11), L_10, /*hidden argument*/NULL);
return L_11;
}
IL_003d:
{
RuntimeObject* L_12 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_12, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0053;
}
}
{
RuntimeObject* L_13 = ___value0;
V_3 = ((*(double*)((double*)(double*)UnBox(L_13, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))));
double L_14 = V_3;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_15;
memset((&L_15), 0, sizeof(L_15));
BigInteger__ctor_m48BEDD707B2B28BDB94A838395590DFFE775015A((&L_15), L_14, /*hidden argument*/NULL);
return L_15;
}
IL_0053:
{
RuntimeObject* L_16 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_16, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_006b;
}
}
{
RuntimeObject* L_17 = ___value0;
V_4 = ((*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)UnBox(L_17, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))));
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_18 = V_4;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_19;
memset((&L_19), 0, sizeof(L_19));
BigInteger__ctor_m9544C18A3217F10163645D4A62264DE37CA49821((&L_19), L_18, /*hidden argument*/NULL);
return L_19;
}
IL_006b:
{
RuntimeObject* L_20 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_20, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))
{
goto IL_0083;
}
}
{
RuntimeObject* L_21 = ___value0;
V_5 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_21, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
int32_t L_22 = V_5;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_23;
memset((&L_23), 0, sizeof(L_23));
BigInteger__ctor_mFEDEDA4A6AFC2BA534FEEF4EB3431B9C5AC3F9D9((&L_23), L_22, /*hidden argument*/NULL);
return L_23;
}
IL_0083:
{
RuntimeObject* L_24 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_24, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))
{
goto IL_009b;
}
}
{
RuntimeObject* L_25 = ___value0;
V_6 = ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_25, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))));
int64_t L_26 = V_6;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_27;
memset((&L_27), 0, sizeof(L_27));
BigInteger__ctor_mA87DC2182BB2F6AA0209BD98E81C30BCE5B8BBAA((&L_27), L_26, /*hidden argument*/NULL);
return L_27;
}
IL_009b:
{
RuntimeObject* L_28 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_28, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))
{
goto IL_00b3;
}
}
{
RuntimeObject* L_29 = ___value0;
V_7 = ((*(uint32_t*)((uint32_t*)(uint32_t*)UnBox(L_29, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var))));
uint32_t L_30 = V_7;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_31;
memset((&L_31), 0, sizeof(L_31));
BigInteger__ctor_mE9288D5C617F6BF5B8E44F8B73D9198F30B90D84((&L_31), L_30, /*hidden argument*/NULL);
return L_31;
}
IL_00b3:
{
RuntimeObject* L_32 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_32, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))
{
goto IL_00cb;
}
}
{
RuntimeObject* L_33 = ___value0;
V_8 = ((*(uint64_t*)((uint64_t*)(uint64_t*)UnBox(L_33, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))));
uint64_t L_34 = V_8;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_35;
memset((&L_35), 0, sizeof(L_35));
BigInteger__ctor_m4685E4C69B49F9470E056A761DCEB8DB9FA7D01C((&L_35), L_34, /*hidden argument*/NULL);
return L_35;
}
IL_00cb:
{
RuntimeObject* L_36 = ___value0;
V_9 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)IsInst((RuntimeObject*)L_36, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_9;
if (!L_37)
{
goto IL_00df;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_38 = V_9;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_39;
memset((&L_39), 0, sizeof(L_39));
BigInteger__ctor_m25FA3F3C832BC621CD91ABFAC3535A2F4EE7B371((&L_39), L_38, /*hidden argument*/NULL);
return L_39;
}
IL_00df:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_40;
L_40 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_41 = ___value0;
NullCheck(L_41);
Type_t* L_42;
L_42 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_41, NULL);
String_t* L_43;
L_43 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82654850C7DC175C6EB41DBCE0F83FCD0ACFC651)), L_40, L_42, NULL);
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_44 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
NullCheck(L_44);
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_44, L_43, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_ToBigInteger_mAC51C13F851033B34F2FB9612FB9E26F4242CAC6_RuntimeMethod_var)));
}
}
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::FromBigInteger(System.Numerics.BigInteger,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_FromBigInteger_mF53687CC3D0ABCF2D027381F42E00F158E70283C (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F ___i0, Type_t* ___targetType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Exception_t* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
Type_t* L_0 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
bool L_3;
L_3 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, L_2, NULL);
if (!L_3)
{
goto IL_001e;
}
}
{
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_4 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_5;
L_5 = BigInteger_op_Explicit_m7BBDC9C9467637F386A05AE96B834877ECC4ED02(L_4, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_6 = L_5;
RuntimeObject* L_7 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_6);
return L_7;
}
IL_001e:
{
Type_t* L_8 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_10;
L_10 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_9, NULL);
bool L_11;
L_11 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_8, L_10, NULL);
if (!L_11)
{
goto IL_003d;
}
}
{
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_12 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
double L_13;
L_13 = BigInteger_op_Explicit_m2AE1E0AC2AD93E0A02F65831DA8643B9DEEB99CA(L_12, NULL);
double L_14 = ((double)L_13);
RuntimeObject* L_15 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_14);
return L_15;
}
IL_003d:
{
Type_t* L_16 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
bool L_19;
L_19 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_16, L_18, NULL);
if (!L_19)
{
goto IL_005c;
}
}
{
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_20 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
float L_21;
L_21 = BigInteger_op_Explicit_mCF63D476FE84A5610A522C6B0D63FC679FD5036F(L_20, NULL);
float L_22 = ((float)L_21);
RuntimeObject* L_23 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_22);
return L_23;
}
IL_005c:
{
Type_t* L_24 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_25 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_26;
L_26 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_25, NULL);
bool L_27;
L_27 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_24, L_26, NULL);
if (!L_27)
{
goto IL_007a;
}
}
{
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_28 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
uint64_t L_29;
L_29 = BigInteger_op_Explicit_m1BEEBEB5BD018A3C24694779C8F65D689740EE55(L_28, NULL);
uint64_t L_30 = L_29;
RuntimeObject* L_31 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_30);
return L_31;
}
IL_007a:
{
Type_t* L_32 = ___targetType1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_34;
L_34 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_33, NULL);
bool L_35;
L_35 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_32, L_34, NULL);
if (!L_35)
{
goto IL_009a;
}
}
{
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_36 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
bool L_37;
L_37 = BigInteger_op_Inequality_m7E1224F9A051BF8F0DBD1001E931EC3C7F4174BC(L_36, ((int64_t)0), NULL);
bool L_38 = L_37;
RuntimeObject* L_39 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_38);
return L_39;
}
IL_009a:
{
}
try
{// begin try (depth: 1)
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_40 = ___i0;
il2cpp_codegen_runtime_class_init_inline(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
int64_t L_41;
L_41 = BigInteger_op_Explicit_mAA8F7C38164909FDEC9E39A29A454F6A56F2232B(L_40, NULL);
int64_t L_42 = L_41;
RuntimeObject* L_43 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_42);
Type_t* L_44 = ___targetType1;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_45;
L_45 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_46;
L_46 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_43, L_44, L_45, NULL);
V_0 = L_46;
goto IL_00cc;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00b4;
}
throw e;
}
CATCH_00b4:
{// begin catch(System.Exception)
V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_47;
L_47 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_48 = ___targetType1;
String_t* L_49;
L_49 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA5C73BCDDD96ECFB9C5FA4C7D8C74319CD3B418)), L_47, L_48, NULL);
Exception_t* L_50 = V_1;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_51 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_51);
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_51, L_49, L_50, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_FromBigInteger_mF53687CC3D0ABCF2D027381F42E00F158E70283C_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00cc:
{
RuntimeObject* L_52 = V_0;
return L_52;
}
}
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::Convert(System.Object,System.Globalization.CultureInfo,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0 (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = ___initialValue0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = ___culture1;
Type_t* L_2 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB(L_0, L_1, L_2, (&V_0), NULL);
V_1 = L_3;
int32_t L_4 = V_1;
switch (L_4)
{
case 0:
{
goto IL_0023;
}
case 1:
{
goto IL_0025;
}
case 2:
{
goto IL_0041;
}
case 3:
{
goto IL_005c;
}
}
}
{
goto IL_0078;
}
IL_0023:
{
RuntimeObject* L_5 = V_0;
return L_5;
}
IL_0025:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_7 = ___initialValue0;
NullCheck(L_7);
Type_t* L_8;
L_8 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_7, NULL);
Type_t* L_9 = ___targetType2;
String_t* L_10;
L_10 = StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5F86FD91A59C8D1EE50BC1FAE93198709F71ADFD)), L_6, L_8, L_9, NULL);
Exception_t* L_11 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_11);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_11, L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0_RuntimeMethod_var)));
}
IL_0041:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_13 = ___targetType2;
String_t* L_14;
L_14 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B301D8494B36842D7B3D50DCBFE8B45FF4A545F)), L_12, L_13, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_15);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_15, L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0_RuntimeMethod_var)));
}
IL_005c:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_16;
L_16 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_17 = ___initialValue0;
NullCheck(L_17);
Type_t* L_18;
L_18 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_17, NULL);
Type_t* L_19 = ___targetType2;
String_t* L_20;
L_20 = StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3438D17A546896844C14420AF9F02B18607937D8)), L_16, L_18, L_19, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_21 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_21);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0_RuntimeMethod_var)));
}
IL_0078:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_22 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_22);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BA8E3033D469A47C12379E4233623AFE1AED303)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_Convert_m3091CCC82FAB73D51C73118AF7C57C65EC6EFEF0_RuntimeMethod_var)));
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_TryConvert_m098BBAFB2A31A6F3D4987226819FB086A1872603 (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, RuntimeObject** ___value3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
RuntimeObject* L_0 = ___initialValue0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1 = ___culture1;
Type_t* L_2 = ___targetType2;
RuntimeObject** L_3 = ___value3;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB(L_0, L_1, L_2, L_3, NULL);
if (L_4)
{
goto IL_000f_1;
}
}
{
V_0 = (bool)1;
goto IL_001e;
}
IL_000f_1:
{
RuntimeObject** L_5 = ___value3;
*((RuntimeObject**)L_5) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)NULL);
V_0 = (bool)0;
goto IL_001e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{// begin catch(System.Object)
RuntimeObject** L_6 = ___value3;
*((RuntimeObject**)L_6) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)NULL);
V_0 = (bool)0;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_001e;
}// end catch (depth: 1)
IL_001e:
{
bool L_7 = V_0;
return L_7;
}
}
// Newtonsoft.Json.Utilities.ConvertUtils/ConvertResult Newtonsoft.Json.Utilities.ConvertUtils::TryConvertInternal(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, RuntimeObject** ___value3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeDescriptor_tC36C76617F823DE4F887E1D17846077CE7B0C3D0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
memset((&V_1), 0, sizeof(V_1));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
Guid_t V_3;
memset((&V_3), 0, sizeof(V_3));
String_t* V_4 = NULL;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F V_5;
memset((&V_5), 0, sizeof(V_5));
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* V_6 = NULL;
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* V_7 = NULL;
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* V_8 = NULL;
{
RuntimeObject* L_0 = ___initialValue0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFBD6003EB35087D8063200EFEE0344815A6DA10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB_RuntimeMethod_var)));
}
IL_000e:
{
Type_t* L_2 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_3;
L_3 = ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A(L_2, NULL);
if (!L_3)
{
goto IL_001e;
}
}
{
Type_t* L_4 = ___targetType2;
Type_t* L_5;
L_5 = Nullable_GetUnderlyingType_m3162A4F48AE683C74A9419644E40C05595BA41E7(L_4, NULL);
___targetType2 = L_5;
}
IL_001e:
{
RuntimeObject* L_6 = ___initialValue0;
NullCheck(L_6);
Type_t* L_7;
L_7 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_6, NULL);
V_0 = L_7;
Type_t* L_8 = ___targetType2;
Type_t* L_9 = V_0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_10;
L_10 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_8, L_9, NULL);
if (!L_10)
{
goto IL_0033;
}
}
{
RuntimeObject** L_11 = ___value3;
RuntimeObject* L_12 = ___initialValue0;
*((RuntimeObject**)L_11) = (RuntimeObject*)L_12;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_12);
return (int32_t)(0);
}
IL_0033:
{
RuntimeObject* L_13 = ___initialValue0;
NullCheck(L_13);
Type_t* L_14;
L_14 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_13, NULL);
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_15;
L_15 = ConvertUtils_IsConvertible_mEF2D516F9B97EBC8D75F45191567A381A42AB593(L_14, NULL);
if (!L_15)
{
goto IL_0088;
}
}
{
Type_t* L_16 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_17;
L_17 = ConvertUtils_IsConvertible_mEF2D516F9B97EBC8D75F45191567A381A42AB593(L_16, NULL);
if (!L_17)
{
goto IL_0088;
}
}
{
Type_t* L_18 = ___targetType2;
bool L_19;
L_19 = TypeExtensions_IsEnum_m8FA65C0E930492403B47210901174D660CB274A4(L_18, NULL);
if (!L_19)
{
goto IL_007c;
}
}
{
RuntimeObject* L_20 = ___initialValue0;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0069;
}
}
{
RuntimeObject** L_21 = ___value3;
Type_t* L_22 = ___targetType2;
RuntimeObject* L_23 = ___initialValue0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23);
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_25;
L_25 = Enum_Parse_m1ABE53499F05D295104BDE57EE12376CF4513585(L_22, L_24, (bool)1, NULL);
*((RuntimeObject**)L_21) = (RuntimeObject*)L_25;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_21, (void*)(RuntimeObject*)L_25);
return (int32_t)(0);
}
IL_0069:
{
RuntimeObject* L_26 = ___initialValue0;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_27;
L_27 = ConvertUtils_IsInteger_m0647676958090E61BC6031DE800DC1BEC9C8063D(L_26, NULL);
if (!L_27)
{
goto IL_007c;
}
}
{
RuntimeObject** L_28 = ___value3;
Type_t* L_29 = ___targetType2;
RuntimeObject* L_30 = ___initialValue0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_31;
L_31 = Enum_ToObject_m6AC36749AA2CE7BCC5416CA230C0E5B4BDCFF4DB(L_29, L_30, NULL);
*((RuntimeObject**)L_28) = (RuntimeObject*)L_31;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_28, (void*)(RuntimeObject*)L_31);
return (int32_t)(0);
}
IL_007c:
{
RuntimeObject** L_32 = ___value3;
RuntimeObject* L_33 = ___initialValue0;
Type_t* L_34 = ___targetType2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_35 = ___culture1;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_36;
L_36 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_33, L_34, L_35, NULL);
*((RuntimeObject**)L_32) = (RuntimeObject*)L_36;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_32, (void*)(RuntimeObject*)L_36);
return (int32_t)(0);
}
IL_0088:
{
RuntimeObject* L_37 = ___initialValue0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_37, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_00b8;
}
}
{
RuntimeObject* L_38 = ___initialValue0;
V_1 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_38, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))));
Type_t* L_39 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_41;
L_41 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_40, NULL);
bool L_42;
L_42 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_39, L_41, NULL);
if (!L_42)
{
goto IL_00b8;
}
}
{
RuntimeObject** L_43 = ___value3;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_44 = V_1;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_45;
memset((&L_45), 0, sizeof(L_45));
DateTimeOffset__ctor_mB1671EA00463E92811C8DEA80797DC89B2FFCA62((&L_45), L_44, /*hidden argument*/NULL);
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_46 = L_45;
RuntimeObject* L_47 = Box(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var, &L_46);
*((RuntimeObject**)L_43) = (RuntimeObject*)L_47;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_43, (void*)(RuntimeObject*)L_47);
return (int32_t)(0);
}
IL_00b8:
{
RuntimeObject* L_48 = ___initialValue0;
V_2 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)IsInst((RuntimeObject*)L_48, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_49 = V_2;
if (!L_49)
{
goto IL_00e3;
}
}
{
Type_t* L_50 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_52;
L_52 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_51, NULL);
bool L_53;
L_53 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_50, L_52, NULL);
if (!L_53)
{
goto IL_00e3;
}
}
{
RuntimeObject** L_54 = ___value3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_55 = V_2;
Guid_t L_56;
memset((&L_56), 0, sizeof(L_56));
Guid__ctor_m9BEFD9FC285BE9ACEC2EB97FC76C0E35E14D725C((&L_56), L_55, /*hidden argument*/NULL);
Guid_t L_57 = L_56;
RuntimeObject* L_58 = Box(Guid_t_il2cpp_TypeInfo_var, &L_57);
*((RuntimeObject**)L_54) = (RuntimeObject*)L_58;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_54, (void*)(RuntimeObject*)L_58);
return (int32_t)(0);
}
IL_00e3:
{
RuntimeObject* L_59 = ___initialValue0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_59, Guid_t_il2cpp_TypeInfo_var)))
{
goto IL_010f;
}
}
{
RuntimeObject* L_60 = ___initialValue0;
V_3 = ((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_60, Guid_t_il2cpp_TypeInfo_var))));
Type_t* L_61 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
bool L_64;
L_64 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_61, L_63, NULL);
if (!L_64)
{
goto IL_010f;
}
}
{
RuntimeObject** L_65 = ___value3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_66;
L_66 = Guid_ToByteArray_m6EBFB2F42D3760D9143050A3A8ED03F085F3AFE9((&V_3), NULL);
*((RuntimeObject**)L_65) = (RuntimeObject*)L_66;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_65, (void*)(RuntimeObject*)L_66);
return (int32_t)(0);
}
IL_010f:
{
RuntimeObject* L_67 = ___initialValue0;
V_4 = ((String_t*)IsInstSealed((RuntimeObject*)L_67, String_t_il2cpp_TypeInfo_var));
String_t* L_68 = V_4;
if (!L_68)
{
goto IL_01e3;
}
}
{
Type_t* L_69 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_71;
L_71 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_70, NULL);
bool L_72;
L_72 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_69, L_71, NULL);
if (!L_72)
{
goto IL_0140;
}
}
{
RuntimeObject** L_73 = ___value3;
String_t* L_74 = V_4;
Guid_t L_75;
memset((&L_75), 0, sizeof(L_75));
Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830((&L_75), L_74, /*hidden argument*/NULL);
Guid_t L_76 = L_75;
RuntimeObject* L_77 = Box(Guid_t_il2cpp_TypeInfo_var, &L_76);
*((RuntimeObject**)L_73) = (RuntimeObject*)L_77;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_73, (void*)(RuntimeObject*)L_77);
return (int32_t)(0);
}
IL_0140:
{
Type_t* L_78 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_80;
L_80 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_79, NULL);
bool L_81;
L_81 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_78, L_80, NULL);
if (!L_81)
{
goto IL_015e;
}
}
{
RuntimeObject** L_82 = ___value3;
String_t* L_83 = V_4;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_84 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
NullCheck(L_84);
Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_84, L_83, 0, NULL);
*((RuntimeObject**)L_82) = (RuntimeObject*)L_84;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_82, (void*)(RuntimeObject*)L_84);
return (int32_t)(0);
}
IL_015e:
{
Type_t* L_85 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_86 = { reinterpret_cast<intptr_t> (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_87;
L_87 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_86, NULL);
bool L_88;
L_88 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_85, L_87, NULL);
if (!L_88)
{
goto IL_0180;
}
}
{
RuntimeObject** L_89 = ___value3;
String_t* L_90 = V_4;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_91;
L_91 = ConvertUtils_ParseTimeSpan_m57269DE3ABCC7D347293DF51A06DED6D4BE25FD4(L_90, NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_92 = L_91;
RuntimeObject* L_93 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_92);
*((RuntimeObject**)L_89) = (RuntimeObject*)L_93;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_89, (void*)(RuntimeObject*)L_93);
return (int32_t)(0);
}
IL_0180:
{
Type_t* L_94 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_95 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_96;
L_96 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_95, NULL);
bool L_97;
L_97 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_94, L_96, NULL);
if (!L_97)
{
goto IL_019d;
}
}
{
RuntimeObject** L_98 = ___value3;
String_t* L_99 = V_4;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_100;
L_100 = Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1(L_99, NULL);
*((RuntimeObject**)L_98) = (RuntimeObject*)L_100;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_98, (void*)(RuntimeObject*)L_100);
return (int32_t)(0);
}
IL_019d:
{
Type_t* L_101 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_102 = { reinterpret_cast<intptr_t> (Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_103;
L_103 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_102, NULL);
bool L_104;
L_104 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_101, L_103, NULL);
if (!L_104)
{
goto IL_01c5;
}
}
{
String_t* L_105 = V_4;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_106;
L_106 = ConvertUtils_VersionTryParse_m54C210096FC4105F420D6604EBC7E3DF87B6BD5B(L_105, (&V_8), NULL);
if (!L_106)
{
goto IL_01c0;
}
}
{
RuntimeObject** L_107 = ___value3;
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* L_108 = V_8;
*((RuntimeObject**)L_107) = (RuntimeObject*)L_108;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_107, (void*)(RuntimeObject*)L_108);
return (int32_t)(0);
}
IL_01c0:
{
RuntimeObject** L_109 = ___value3;
*((RuntimeObject**)L_109) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_109, (void*)(RuntimeObject*)NULL);
return (int32_t)(3);
}
IL_01c5:
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_110 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_111;
L_111 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_110, NULL);
Type_t* L_112 = ___targetType2;
NullCheck(L_111);
bool L_113;
L_113 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_111, L_112);
if (!L_113)
{
goto IL_01e3;
}
}
{
RuntimeObject** L_114 = ___value3;
String_t* L_115 = V_4;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_116;
L_116 = il2cpp_codegen_get_type(L_115, (bool)1, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, ConvertUtils_TryConvertInternal_mE2036091DD5AEA956413198643E49D8EFCFADDCB_RuntimeMethod_var);
*((RuntimeObject**)L_114) = (RuntimeObject*)L_116;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_114, (void*)(RuntimeObject*)L_116);
return (int32_t)(0);
}
IL_01e3:
{
Type_t* L_117 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_118 = { reinterpret_cast<intptr_t> (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_119;
L_119 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_118, NULL);
bool L_120;
L_120 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_117, L_119, NULL);
if (!L_120)
{
goto IL_0204;
}
}
{
RuntimeObject** L_121 = ___value3;
RuntimeObject* L_122 = ___initialValue0;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_123;
L_123 = ConvertUtils_ToBigInteger_mAC51C13F851033B34F2FB9612FB9E26F4242CAC6(L_122, NULL);
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_124 = L_123;
RuntimeObject* L_125 = Box(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var, &L_124);
*((RuntimeObject**)L_121) = (RuntimeObject*)L_125;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_121, (void*)(RuntimeObject*)L_125);
return (int32_t)(0);
}
IL_0204:
{
RuntimeObject* L_126 = ___initialValue0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_126, BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var)))
{
goto IL_0220;
}
}
{
RuntimeObject* L_127 = ___initialValue0;
V_5 = ((*(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)((BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F*)UnBox(L_127, BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var))));
RuntimeObject** L_128 = ___value3;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_129 = V_5;
Type_t* L_130 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
RuntimeObject* L_131;
L_131 = ConvertUtils_FromBigInteger_mF53687CC3D0ABCF2D027381F42E00F158E70283C(L_129, L_130, NULL);
*((RuntimeObject**)L_128) = (RuntimeObject*)L_131;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_128, (void*)(RuntimeObject*)L_131);
return (int32_t)(0);
}
IL_0220:
{
Type_t* L_132 = V_0;
il2cpp_codegen_runtime_class_init_inline(TypeDescriptor_tC36C76617F823DE4F887E1D17846077CE7B0C3D0_il2cpp_TypeInfo_var);
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_133;
L_133 = TypeDescriptor_GetConverter_mBF37D89915F76D19765E81387D62B0B407432EC6(L_132, NULL);
V_6 = L_133;
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_134 = V_6;
if (!L_134)
{
goto IL_0245;
}
}
{
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_135 = V_6;
Type_t* L_136 = ___targetType2;
NullCheck(L_135);
bool L_137;
L_137 = TypeConverter_CanConvertTo_m05803F15F053E4DA3CF290D52FC379BB9D8C396A(L_135, L_136, NULL);
if (!L_137)
{
goto IL_0245;
}
}
{
RuntimeObject** L_138 = ___value3;
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_139 = V_6;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_140 = ___culture1;
RuntimeObject* L_141 = ___initialValue0;
Type_t* L_142 = ___targetType2;
NullCheck(L_139);
RuntimeObject* L_143;
L_143 = VirtualFuncInvoker4< RuntimeObject*, RuntimeObject*, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0*, RuntimeObject*, Type_t* >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, L_139, (RuntimeObject*)NULL, L_140, L_141, L_142);
*((RuntimeObject**)L_138) = (RuntimeObject*)L_143;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_138, (void*)(RuntimeObject*)L_143);
return (int32_t)(0);
}
IL_0245:
{
Type_t* L_144 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(TypeDescriptor_tC36C76617F823DE4F887E1D17846077CE7B0C3D0_il2cpp_TypeInfo_var);
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_145;
L_145 = TypeDescriptor_GetConverter_mBF37D89915F76D19765E81387D62B0B407432EC6(L_144, NULL);
V_7 = L_145;
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_146 = V_7;
if (!L_146)
{
goto IL_0269;
}
}
{
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_147 = V_7;
Type_t* L_148 = V_0;
NullCheck(L_147);
bool L_149;
L_149 = TypeConverter_CanConvertFrom_mE41048372E94CADCD46A0E450385F4E13011D19B(L_147, L_148, NULL);
if (!L_149)
{
goto IL_0269;
}
}
{
RuntimeObject** L_150 = ___value3;
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* L_151 = V_7;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_152 = ___culture1;
RuntimeObject* L_153 = ___initialValue0;
NullCheck(L_151);
RuntimeObject* L_154;
L_154 = VirtualFuncInvoker3< RuntimeObject*, RuntimeObject*, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0*, RuntimeObject* >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, L_151, (RuntimeObject*)NULL, L_152, L_153);
*((RuntimeObject**)L_150) = (RuntimeObject*)L_154;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_150, (void*)(RuntimeObject*)L_154);
return (int32_t)(0);
}
IL_0269:
{
RuntimeObject* L_155 = ___initialValue0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_156 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_155) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_156))))
{
goto IL_028a;
}
}
{
Type_t* L_157 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_158;
L_158 = ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0(L_157, NULL);
if (!L_158)
{
goto IL_0285;
}
}
{
RuntimeObject** L_159 = ___value3;
Type_t* L_160 = V_0;
Type_t* L_161 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
RuntimeObject* L_162;
L_162 = ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027(NULL, L_160, L_161, NULL);
*((RuntimeObject**)L_159) = (RuntimeObject*)L_162;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_159, (void*)(RuntimeObject*)L_162);
return (int32_t)(0);
}
IL_0285:
{
RuntimeObject** L_163 = ___value3;
*((RuntimeObject**)L_163) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_163, (void*)(RuntimeObject*)NULL);
return (int32_t)(1);
}
IL_028a:
{
Type_t* L_164 = ___targetType2;
bool L_165;
L_165 = TypeExtensions_IsInterface_m4D973DDF986A880468989BCF6074CF83014FC4FC(L_164, NULL);
if (L_165)
{
goto IL_02a2;
}
}
{
Type_t* L_166 = ___targetType2;
bool L_167;
L_167 = TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E(L_166, NULL);
if (L_167)
{
goto IL_02a2;
}
}
{
Type_t* L_168 = ___targetType2;
bool L_169;
L_169 = TypeExtensions_IsAbstract_mAD6BAB4469EAD167D3D61F7DFA7013BA36914671(L_168, NULL);
if (!L_169)
{
goto IL_02a7;
}
}
IL_02a2:
{
RuntimeObject** L_170 = ___value3;
*((RuntimeObject**)L_170) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_170, (void*)(RuntimeObject*)NULL);
return (int32_t)(2);
}
IL_02a7:
{
RuntimeObject** L_171 = ___value3;
*((RuntimeObject**)L_171) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_171, (void*)(RuntimeObject*)NULL);
return (int32_t)(3);
}
}
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_ConvertOrCast_m6092A24956C54539C90B8C6B3B6F3E5B95DA6B9A (RuntimeObject* ___initialValue0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, Type_t* ___targetType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Type_t* L_0 = ___targetType2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
bool L_3;
L_3 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, L_2, NULL);
if (!L_3)
{
goto IL_0014;
}
}
{
RuntimeObject* L_4 = ___initialValue0;
return L_4;
}
IL_0014:
{
RuntimeObject* L_5 = ___initialValue0;
if (L_5)
{
goto IL_0021;
}
}
{
Type_t* L_6 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_7;
L_7 = ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0(L_6, NULL);
if (!L_7)
{
goto IL_0021;
}
}
{
return NULL;
}
IL_0021:
{
RuntimeObject* L_8 = ___initialValue0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9 = ___culture1;
Type_t* L_10 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_11;
L_11 = ConvertUtils_TryConvert_m098BBAFB2A31A6F3D4987226819FB086A1872603(L_8, L_9, L_10, (&V_0), NULL);
if (!L_11)
{
goto IL_002f;
}
}
{
RuntimeObject* L_12 = V_0;
return L_12;
}
IL_002f:
{
RuntimeObject* L_13 = ___initialValue0;
RuntimeObject* L_14 = ___initialValue0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
Type_t* L_15;
L_15 = ReflectionUtils_GetObjectType_m509A727ACFEDF3DE4EF246185EC5C69314F3020B(L_14, NULL);
Type_t* L_16 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
RuntimeObject* L_17;
L_17 = ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027(L_13, L_15, L_16, NULL);
return L_17;
}
}
// System.Object Newtonsoft.Json.Utilities.ConvertUtils::EnsureTypeAssignable(System.Object,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027 (RuntimeObject* ___value0, Type_t* ___initialType1, Type_t* ___targetType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StructMultiKey_2__ctor_m268A22933F6F2600333CB40527C6BEB24842D789_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_Get_m2D1CF0F41B583FA3F614780910FF1155219D70C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
Func_2_tACBF5A1656250800CE861707354491F0611F6624* V_1 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B9_0 = NULL;
String_t* G_B9_1 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B8_0 = NULL;
String_t* G_B8_1 = NULL;
String_t* G_B10_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B10_1 = NULL;
String_t* G_B10_2 = NULL;
String_t* G_B12_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B12_1 = NULL;
String_t* G_B12_2 = NULL;
String_t* G_B11_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B11_1 = NULL;
String_t* G_B11_2 = NULL;
{
RuntimeObject* L_0 = ___value0;
if (!L_0)
{
goto IL_0032;
}
}
{
RuntimeObject* L_1 = ___value0;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
V_0 = L_2;
Type_t* L_3 = ___targetType2;
Type_t* L_4 = V_0;
NullCheck(L_3);
bool L_5;
L_5 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_4);
if (!L_5)
{
goto IL_0015;
}
}
{
RuntimeObject* L_6 = ___value0;
return L_6;
}
IL_0015:
{
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E* L_7 = ((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___CastConverters_2;
Type_t* L_8 = V_0;
Type_t* L_9 = ___targetType2;
StructMultiKey_2_t976DA9C5BBF0BD9567BAFE22C1E741F8E238D5F5 L_10;
memset((&L_10), 0, sizeof(L_10));
StructMultiKey_2__ctor_m268A22933F6F2600333CB40527C6BEB24842D789((&L_10), L_8, L_9, /*hidden argument*/StructMultiKey_2__ctor_m268A22933F6F2600333CB40527C6BEB24842D789_RuntimeMethod_var);
NullCheck(L_7);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_11;
L_11 = ThreadSafeStore_2_Get_m2D1CF0F41B583FA3F614780910FF1155219D70C4(L_7, L_10, ThreadSafeStore_2_Get_m2D1CF0F41B583FA3F614780910FF1155219D70C4_RuntimeMethod_var);
V_1 = L_11;
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_12 = V_1;
if (!L_12)
{
goto IL_003c;
}
}
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_13 = V_1;
RuntimeObject* L_14 = ___value0;
NullCheck(L_13);
RuntimeObject* L_15;
L_15 = Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline(L_13, L_14, NULL);
return L_15;
}
IL_0032:
{
Type_t* L_16 = ___targetType2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_17;
L_17 = ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0(L_16, NULL);
if (!L_17)
{
goto IL_003c;
}
}
{
return NULL;
}
IL_003c:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18;
L_18 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_19 = ___initialType1;
G_B8_0 = L_18;
G_B8_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral60E054398E9A44564C17311CB5271848DD97B127));
if (L_19)
{
G_B9_0 = L_18;
G_B9_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral60E054398E9A44564C17311CB5271848DD97B127));
goto IL_004c;
}
}
{
G_B10_0 = ((String_t*)(NULL));
G_B10_1 = G_B8_0;
G_B10_2 = G_B8_1;
goto IL_0052;
}
IL_004c:
{
Type_t* L_20 = ___initialType1;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20);
G_B10_0 = L_21;
G_B10_1 = G_B9_0;
G_B10_2 = G_B9_1;
}
IL_0052:
{
String_t* L_22 = G_B10_0;
G_B11_0 = L_22;
G_B11_1 = G_B10_1;
G_B11_2 = G_B10_2;
if (L_22)
{
G_B12_0 = L_22;
G_B12_1 = G_B10_1;
G_B12_2 = G_B10_2;
goto IL_005b;
}
}
{
G_B12_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581));
G_B12_1 = G_B11_1;
G_B12_2 = G_B11_2;
}
IL_005b:
{
Type_t* L_23 = ___targetType2;
String_t* L_24;
L_24 = StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501(G_B12_2, G_B12_1, G_B12_0, L_23, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_25 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_25);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_25, L_24, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConvertUtils_EnsureTypeAssignable_mED370404399787B52173345C4F9734CD658D6027_RuntimeMethod_var)));
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::VersionTryParse(System.String,System.Version&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_VersionTryParse_m54C210096FC4105F420D6604EBC7E3DF87B6BD5B (String_t* ___input0, Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7** ___result1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7** L_1 = ___result1;
bool L_2;
L_2 = Version_TryParse_m0F9193568E5911063EA9B477E8783DE9519E3D8D(L_0, L_1, NULL);
return L_2;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsInteger(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_IsInteger_m0647676958090E61BC6031DE800DC1BEC9C8063D (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject* L_0 = ___value0;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 6)))
{
case 0:
{
goto IL_0052;
}
case 1:
{
goto IL_0054;
}
case 2:
{
goto IL_0052;
}
case 3:
{
goto IL_0054;
}
case 4:
{
goto IL_0052;
}
case 5:
{
goto IL_0054;
}
case 6:
{
goto IL_0052;
}
case 7:
{
goto IL_0054;
}
case 8:
{
goto IL_0052;
}
case 9:
{
goto IL_0054;
}
case 10:
{
goto IL_0052;
}
case 11:
{
goto IL_0054;
}
case 12:
{
goto IL_0052;
}
case 13:
{
goto IL_0054;
}
case 14:
{
goto IL_0052;
}
}
}
{
goto IL_0054;
}
IL_0052:
{
return (bool)1;
}
IL_0054:
{
return (bool)0;
}
}
// Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int32TryParse(System.Char[],System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_Int32TryParse_m27D6FEF87EDF6A5A835E12774A5CE9BAA952D266 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___length2, int32_t* ___value3, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
{
int32_t* L_0 = ___value3;
*((int32_t*)L_0) = (int32_t)0;
int32_t L_1 = ___length2;
if (L_1)
{
goto IL_0008;
}
}
{
return (int32_t)(3);
}
IL_0008:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___chars0;
int32_t L_3 = ___start1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (bool)((((int32_t)L_5) == ((int32_t)((int32_t)45)))? 1 : 0);
bool L_6 = V_0;
if (!L_6)
{
goto IL_0023;
}
}
{
int32_t L_7 = ___length2;
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_0019;
}
}
{
return (int32_t)(3);
}
IL_0019:
{
int32_t L_8 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
int32_t L_9 = ___length2;
___length2 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
}
IL_0023:
{
int32_t L_10 = ___start1;
int32_t L_11 = ___length2;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
int32_t L_12 = ___length2;
if ((((int32_t)L_12) > ((int32_t)((int32_t)10))))
{
goto IL_003a;
}
}
{
int32_t L_13 = ___length2;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)10)))))
{
goto IL_005a;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = ___chars0;
int32_t L_15 = ___start1;
NullCheck(L_14);
int32_t L_16 = L_15;
uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, ((int32_t)48)))) <= ((int32_t)2)))
{
goto IL_005a;
}
}
IL_003a:
{
int32_t L_18 = ___start1;
V_2 = L_18;
goto IL_0054;
}
IL_003e:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = ___chars0;
int32_t L_20 = V_2;
NullCheck(L_19);
int32_t L_21 = L_20;
uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, ((int32_t)48)));
int32_t L_23 = V_3;
if ((((int32_t)L_23) < ((int32_t)0)))
{
goto IL_004e;
}
}
{
int32_t L_24 = V_3;
if ((((int32_t)L_24) <= ((int32_t)((int32_t)9))))
{
goto IL_0050;
}
}
IL_004e:
{
return (int32_t)(3);
}
IL_0050:
{
int32_t L_25 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1));
}
IL_0054:
{
int32_t L_26 = V_2;
int32_t L_27 = V_1;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_003e;
}
}
{
return (int32_t)(2);
}
IL_005a:
{
int32_t L_28 = ___start1;
V_4 = L_28;
goto IL_00ba;
}
IL_005f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = ___chars0;
int32_t L_30 = V_4;
NullCheck(L_29);
int32_t L_31 = L_30;
uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, ((int32_t)48)));
int32_t L_33 = V_5;
if ((((int32_t)L_33) < ((int32_t)0)))
{
goto IL_0073;
}
}
{
int32_t L_34 = V_5;
if ((((int32_t)L_34) <= ((int32_t)((int32_t)9))))
{
goto IL_0075;
}
}
IL_0073:
{
return (int32_t)(3);
}
IL_0075:
{
int32_t* L_35 = ___value3;
int32_t L_36 = *((int32_t*)L_35);
int32_t L_37 = V_5;
V_6 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(((int32_t)10), L_36)), L_37));
int32_t L_38 = V_6;
int32_t* L_39 = ___value3;
int32_t L_40 = *((int32_t*)L_39);
if ((((int32_t)L_38) <= ((int32_t)L_40)))
{
goto IL_00b0;
}
}
{
int32_t L_41 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_41, 1));
goto IL_00a9;
}
IL_008d:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_42 = ___chars0;
int32_t L_43 = V_4;
NullCheck(L_42);
int32_t L_44 = L_43;
uint16_t L_45 = (uint16_t)(L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, ((int32_t)48)));
int32_t L_46 = V_5;
if ((((int32_t)L_46) < ((int32_t)0)))
{
goto IL_00a1;
}
}
{
int32_t L_47 = V_5;
if ((((int32_t)L_47) <= ((int32_t)((int32_t)9))))
{
goto IL_00a3;
}
}
IL_00a1:
{
return (int32_t)(3);
}
IL_00a3:
{
int32_t L_48 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_48, 1));
}
IL_00a9:
{
int32_t L_49 = V_4;
int32_t L_50 = V_1;
if ((((int32_t)L_49) < ((int32_t)L_50)))
{
goto IL_008d;
}
}
{
return (int32_t)(2);
}
IL_00b0:
{
int32_t* L_51 = ___value3;
int32_t L_52 = V_6;
*((int32_t*)L_51) = (int32_t)L_52;
int32_t L_53 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_53, 1));
}
IL_00ba:
{
int32_t L_54 = V_4;
int32_t L_55 = V_1;
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_005f;
}
}
{
bool L_56 = V_0;
if (L_56)
{
goto IL_00d2;
}
}
{
int32_t* L_57 = ___value3;
int32_t L_58 = *((int32_t*)L_57);
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)-2147483648LL)))))
{
goto IL_00cd;
}
}
{
return (int32_t)(2);
}
IL_00cd:
{
int32_t* L_59 = ___value3;
int32_t* L_60 = ___value3;
int32_t L_61 = *((int32_t*)L_60);
*((int32_t*)L_59) = (int32_t)((-L_61));
}
IL_00d2:
{
return (int32_t)(1);
}
}
// Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int64TryParse(System.Char[],System.Int32,System.Int32,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_Int64TryParse_m1EA37290CAB28B9BDD22888990F8E0E9850E8438 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___length2, int64_t* ___value3, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int64_t V_6 = 0;
{
int64_t* L_0 = ___value3;
*((int64_t*)L_0) = (int64_t)((int64_t)0);
int32_t L_1 = ___length2;
if (L_1)
{
goto IL_0009;
}
}
{
return (int32_t)(3);
}
IL_0009:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___chars0;
int32_t L_3 = ___start1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (bool)((((int32_t)L_5) == ((int32_t)((int32_t)45)))? 1 : 0);
bool L_6 = V_0;
if (!L_6)
{
goto IL_0024;
}
}
{
int32_t L_7 = ___length2;
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_001a;
}
}
{
return (int32_t)(3);
}
IL_001a:
{
int32_t L_8 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
int32_t L_9 = ___length2;
___length2 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
}
IL_0024:
{
int32_t L_10 = ___start1;
int32_t L_11 = ___length2;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
int32_t L_12 = ___length2;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)19))))
{
goto IL_004d;
}
}
{
int32_t L_13 = ___start1;
V_2 = L_13;
goto IL_0047;
}
IL_0031:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = ___chars0;
int32_t L_15 = V_2;
NullCheck(L_14);
int32_t L_16 = L_15;
uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, ((int32_t)48)));
int32_t L_18 = V_3;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0041;
}
}
{
int32_t L_19 = V_3;
if ((((int32_t)L_19) <= ((int32_t)((int32_t)9))))
{
goto IL_0043;
}
}
IL_0041:
{
return (int32_t)(3);
}
IL_0043:
{
int32_t L_20 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_0047:
{
int32_t L_21 = V_2;
int32_t L_22 = V_1;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_0031;
}
}
{
return (int32_t)(2);
}
IL_004d:
{
int32_t L_23 = ___start1;
V_4 = L_23;
goto IL_00af;
}
IL_0052:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = ___chars0;
int32_t L_25 = V_4;
NullCheck(L_24);
int32_t L_26 = L_25;
uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, ((int32_t)48)));
int32_t L_28 = V_5;
if ((((int32_t)L_28) < ((int32_t)0)))
{
goto IL_0066;
}
}
{
int32_t L_29 = V_5;
if ((((int32_t)L_29) <= ((int32_t)((int32_t)9))))
{
goto IL_0068;
}
}
IL_0066:
{
return (int32_t)(3);
}
IL_0068:
{
int64_t* L_30 = ___value3;
int64_t L_31 = *((int64_t*)L_30);
int32_t L_32 = V_5;
V_6 = ((int64_t)il2cpp_codegen_subtract(((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)10)), L_31)), ((int64_t)L_32)));
int64_t L_33 = V_6;
int64_t* L_34 = ___value3;
int64_t L_35 = *((int64_t*)L_34);
if ((((int64_t)L_33) <= ((int64_t)L_35)))
{
goto IL_00a5;
}
}
{
int32_t L_36 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_36, 1));
goto IL_009e;
}
IL_0082:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = ___chars0;
int32_t L_38 = V_4;
NullCheck(L_37);
int32_t L_39 = L_38;
uint16_t L_40 = (uint16_t)(L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, ((int32_t)48)));
int32_t L_41 = V_5;
if ((((int32_t)L_41) < ((int32_t)0)))
{
goto IL_0096;
}
}
{
int32_t L_42 = V_5;
if ((((int32_t)L_42) <= ((int32_t)((int32_t)9))))
{
goto IL_0098;
}
}
IL_0096:
{
return (int32_t)(3);
}
IL_0098:
{
int32_t L_43 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_43, 1));
}
IL_009e:
{
int32_t L_44 = V_4;
int32_t L_45 = V_1;
if ((((int32_t)L_44) < ((int32_t)L_45)))
{
goto IL_0082;
}
}
{
return (int32_t)(2);
}
IL_00a5:
{
int64_t* L_46 = ___value3;
int64_t L_47 = V_6;
*((int64_t*)L_46) = (int64_t)L_47;
int32_t L_48 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_48, 1));
}
IL_00af:
{
int32_t L_49 = V_4;
int32_t L_50 = V_1;
if ((((int32_t)L_49) < ((int32_t)L_50)))
{
goto IL_0052;
}
}
{
bool L_51 = V_0;
if (L_51)
{
goto IL_00cb;
}
}
{
int64_t* L_52 = ___value3;
int64_t L_53 = *((int64_t*)L_52);
if ((!(((uint64_t)L_53) == ((uint64_t)((int64_t)(std::numeric_limits<int64_t>::min)())))))
{
goto IL_00c6;
}
}
{
return (int32_t)(2);
}
IL_00c6:
{
int64_t* L_54 = ___value3;
int64_t* L_55 = ___value3;
int64_t L_56 = *((int64_t*)L_55);
*((int64_t*)L_54) = (int64_t)((-L_56));
}
IL_00cb:
{
return (int32_t)(1);
}
}
// Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::DecimalTryParse(System.Char[],System.Int32,System.Int32,System.Decimal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConvertUtils_DecimalTryParse_m5396CD42EBA1E91CD34E86C863794F81C674077F (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___length2, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* ___value3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
uint64_t V_6 = 0;
uint64_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1 V_10;
memset((&V_10), 0, sizeof(V_10));
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_11;
memset((&V_11), 0, sizeof(V_11));
Il2CppChar V_12 = 0x0;
bool V_13 = false;
int32_t V_14 = 0;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_15;
memset((&V_15), 0, sizeof(V_15));
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_16;
memset((&V_16), 0, sizeof(V_16));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_17;
memset((&V_17), 0, sizeof(V_17));
int32_t V_18 = 0;
Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1 V_19;
memset((&V_19), 0, sizeof(V_19));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_20;
memset((&V_20), 0, sizeof(V_20));
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B60_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B53_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B59_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B54_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B58_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B55_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B57_0 = NULL;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B56_0 = NULL;
int32_t G_B61_0 = 0;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* G_B61_1 = NULL;
bool G_B63_0 = false;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B87_0;
memset((&G_B87_0), 0, sizeof(G_B87_0));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B94_0;
memset((&G_B94_0), 0, sizeof(G_B94_0));
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* G_B101_0 = NULL;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* G_B100_0 = NULL;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F G_B102_0;
memset((&G_B102_0), 0, sizeof(G_B102_0));
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* G_B102_1 = NULL;
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_0 = ___value3;
il2cpp_codegen_initobj(L_0, sizeof(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F));
int32_t L_1 = ___length2;
if (L_1)
{
goto IL_000c;
}
}
{
return (int32_t)(3);
}
IL_000c:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___chars0;
int32_t L_3 = ___start1;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (bool)((((int32_t)L_5) == ((int32_t)((int32_t)45)))? 1 : 0);
bool L_6 = V_0;
if (!L_6)
{
goto IL_0027;
}
}
{
int32_t L_7 = ___length2;
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_001d;
}
}
{
return (int32_t)(3);
}
IL_001d:
{
int32_t L_8 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
int32_t L_9 = ___length2;
___length2 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
}
IL_0027:
{
int32_t L_10 = ___start1;
V_1 = L_10;
int32_t L_11 = ___start1;
int32_t L_12 = ___length2;
V_2 = ((int32_t)il2cpp_codegen_add(L_11, L_12));
int32_t L_13 = V_2;
V_3 = L_13;
int32_t L_14 = V_2;
V_4 = L_14;
V_5 = 0;
V_6 = ((int64_t)0);
V_7 = ((int64_t)0);
V_8 = 0;
V_9 = 0;
il2cpp_codegen_initobj((&V_10), sizeof(Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1));
il2cpp_codegen_initobj((&V_11), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
goto IL_021b;
}
IL_0058:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = ___chars0;
int32_t L_16 = V_1;
NullCheck(L_15);
int32_t L_17 = L_16;
uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_12 = L_18;
Il2CppChar L_19 = V_12;
if ((((int32_t)L_19) == ((int32_t)((int32_t)46))))
{
goto IL_0074;
}
}
{
Il2CppChar L_20 = V_12;
if ((((int32_t)L_20) == ((int32_t)((int32_t)69))))
{
goto IL_0091;
}
}
{
Il2CppChar L_21 = V_12;
if ((((int32_t)L_21) == ((int32_t)((int32_t)101))))
{
goto IL_0091;
}
}
{
goto IL_0116;
}
IL_0074:
{
int32_t L_22 = V_1;
int32_t L_23 = ___start1;
if ((!(((uint32_t)L_22) == ((uint32_t)L_23))))
{
goto IL_007a;
}
}
{
return (int32_t)(3);
}
IL_007a:
{
int32_t L_24 = V_1;
int32_t L_25 = V_2;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_24, 1))) == ((uint32_t)L_25))))
{
goto IL_0082;
}
}
{
return (int32_t)(3);
}
IL_0082:
{
int32_t L_26 = V_3;
int32_t L_27 = V_2;
if ((((int32_t)L_26) == ((int32_t)L_27)))
{
goto IL_0088;
}
}
{
return (int32_t)(3);
}
IL_0088:
{
int32_t L_28 = V_1;
V_3 = ((int32_t)il2cpp_codegen_add(L_28, 1));
goto IL_0217;
}
IL_0091:
{
int32_t L_29 = V_1;
int32_t L_30 = ___start1;
if ((!(((uint32_t)L_29) == ((uint32_t)L_30))))
{
goto IL_0097;
}
}
{
return (int32_t)(3);
}
IL_0097:
{
int32_t L_31 = V_1;
int32_t L_32 = V_3;
if ((!(((uint32_t)L_31) == ((uint32_t)L_32))))
{
goto IL_009d;
}
}
{
return (int32_t)(3);
}
IL_009d:
{
int32_t L_33 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_33, 1));
int32_t L_34 = V_1;
int32_t L_35 = V_2;
if ((!(((uint32_t)L_34) == ((uint32_t)L_35))))
{
goto IL_00a7;
}
}
{
return (int32_t)(3);
}
IL_00a7:
{
int32_t L_36 = V_3;
int32_t L_37 = V_2;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_00b0;
}
}
{
int32_t L_38 = V_1;
V_4 = ((int32_t)il2cpp_codegen_subtract(L_38, 1));
}
IL_00b0:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = ___chars0;
int32_t L_40 = V_1;
NullCheck(L_39);
int32_t L_41 = L_40;
uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
V_12 = L_42;
V_13 = (bool)0;
Il2CppChar L_43 = V_12;
if ((((int32_t)L_43) == ((int32_t)((int32_t)43))))
{
goto IL_00cd;
}
}
{
Il2CppChar L_44 = V_12;
if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)45)))))
{
goto IL_0101;
}
}
{
V_13 = (bool)1;
int32_t L_45 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_45, 1));
goto IL_0101;
}
IL_00cd:
{
int32_t L_46 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_46, 1));
goto IL_0101;
}
IL_00d3:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = ___chars0;
int32_t L_48 = V_1;
NullCheck(L_47);
int32_t L_49 = L_48;
uint16_t L_50 = (uint16_t)(L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
V_12 = L_50;
Il2CppChar L_51 = V_12;
if ((((int32_t)L_51) < ((int32_t)((int32_t)48))))
{
goto IL_00e4;
}
}
{
Il2CppChar L_52 = V_12;
if ((((int32_t)L_52) <= ((int32_t)((int32_t)57))))
{
goto IL_00e6;
}
}
IL_00e4:
{
return (int32_t)(3);
}
IL_00e6:
{
int32_t L_53 = V_5;
Il2CppChar L_54 = V_12;
V_14 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)10), L_53)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_54, ((int32_t)48)))));
int32_t L_55 = V_5;
int32_t L_56 = V_14;
if ((((int32_t)L_55) >= ((int32_t)L_56)))
{
goto IL_00fd;
}
}
{
int32_t L_57 = V_14;
V_5 = L_57;
}
IL_00fd:
{
int32_t L_58 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_58, 1));
}
IL_0101:
{
int32_t L_59 = V_1;
int32_t L_60 = V_2;
if ((((int32_t)L_59) < ((int32_t)L_60)))
{
goto IL_00d3;
}
}
{
bool L_61 = V_13;
if (!L_61)
{
goto IL_0217;
}
}
{
int32_t L_62 = V_5;
V_5 = ((-L_62));
goto IL_0217;
}
IL_0116:
{
Il2CppChar L_63 = V_12;
if ((((int32_t)L_63) < ((int32_t)((int32_t)48))))
{
goto IL_0122;
}
}
{
Il2CppChar L_64 = V_12;
if ((((int32_t)L_64) <= ((int32_t)((int32_t)57))))
{
goto IL_0124;
}
}
IL_0122:
{
return (int32_t)(3);
}
IL_0124:
{
int32_t L_65 = V_1;
int32_t L_66 = ___start1;
if ((!(((uint32_t)L_65) == ((uint32_t)L_66))))
{
goto IL_0158;
}
}
{
Il2CppChar L_67 = V_12;
if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)48)))))
{
goto IL_0158;
}
}
{
int32_t L_68 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_68, 1));
int32_t L_69 = V_1;
int32_t L_70 = V_2;
if ((((int32_t)L_69) == ((int32_t)L_70)))
{
goto IL_0158;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_71 = ___chars0;
int32_t L_72 = V_1;
NullCheck(L_71);
int32_t L_73 = L_72;
uint16_t L_74 = (uint16_t)(L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_73));
V_12 = L_74;
Il2CppChar L_75 = V_12;
if ((((int32_t)L_75) == ((int32_t)((int32_t)46))))
{
goto IL_0074;
}
}
{
Il2CppChar L_76 = V_12;
if ((((int32_t)L_76) == ((int32_t)((int32_t)101))))
{
goto IL_0091;
}
}
{
Il2CppChar L_77 = V_12;
if ((((int32_t)L_77) == ((int32_t)((int32_t)69))))
{
goto IL_0091;
}
}
{
return (int32_t)(3);
}
IL_0158:
{
int32_t L_78 = V_8;
if ((((int32_t)L_78) >= ((int32_t)((int32_t)29))))
{
goto IL_01ff;
}
}
{
int32_t L_79 = V_8;
if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)28)))))
{
goto IL_01d1;
}
}
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_80 = V_11;
V_15 = L_80;
bool L_81;
L_81 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_15), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
if (L_81)
{
goto IL_01c8;
}
}
{
uint64_t L_82 = V_6;
G_B53_0 = (&V_11);
if ((!(((uint64_t)L_82) <= ((uint64_t)((int64_t)7922816251426433759LL)))))
{
G_B60_0 = (&V_11);
goto IL_01b5;
}
}
{
uint64_t L_83 = V_6;
G_B54_0 = G_B53_0;
if ((!(((uint64_t)L_83) == ((uint64_t)((int64_t)7922816251426433759LL)))))
{
G_B59_0 = G_B53_0;
goto IL_01b2;
}
}
{
uint64_t L_84 = V_7;
G_B55_0 = G_B54_0;
if ((!(((uint64_t)L_84) <= ((uint64_t)((int64_t)((int32_t)354395033))))))
{
G_B58_0 = G_B54_0;
goto IL_01af;
}
}
{
uint64_t L_85 = V_7;
G_B56_0 = G_B55_0;
if ((!(((uint64_t)L_85) == ((uint64_t)((int64_t)((int32_t)354395033))))))
{
G_B57_0 = G_B55_0;
goto IL_01ac;
}
}
{
Il2CppChar L_86 = V_12;
G_B61_0 = ((((int32_t)L_86) > ((int32_t)((int32_t)53)))? 1 : 0);
G_B61_1 = G_B56_0;
goto IL_01b6;
}
IL_01ac:
{
G_B61_0 = 0;
G_B61_1 = G_B57_0;
goto IL_01b6;
}
IL_01af:
{
G_B61_0 = 1;
G_B61_1 = G_B58_0;
goto IL_01b6;
}
IL_01b2:
{
G_B61_0 = 0;
G_B61_1 = G_B59_0;
goto IL_01b6;
}
IL_01b5:
{
G_B61_0 = 1;
G_B61_1 = G_B60_0;
}
IL_01b6:
{
Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5(G_B61_1, (bool)G_B61_0, Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_87 = V_11;
V_16 = L_87;
bool L_88;
L_88 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_16), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
G_B63_0 = L_88;
goto IL_01cf;
}
IL_01c8:
{
bool L_89;
L_89 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_15), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
G_B63_0 = L_89;
}
IL_01cf:
{
if (G_B63_0)
{
goto IL_01ff;
}
}
IL_01d1:
{
int32_t L_90 = V_8;
if ((((int32_t)L_90) >= ((int32_t)((int32_t)19))))
{
goto IL_01e8;
}
}
{
uint64_t L_91 = V_6;
Il2CppChar L_92 = V_12;
V_6 = ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply((int64_t)L_91, ((int64_t)((int32_t)10)))), ((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_92, ((int32_t)48))))));
goto IL_01f7;
}
IL_01e8:
{
uint64_t L_93 = V_7;
Il2CppChar L_94 = V_12;
V_7 = ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply((int64_t)L_93, ((int64_t)((int32_t)10)))), ((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_94, ((int32_t)48))))));
}
IL_01f7:
{
int32_t L_95 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_95, 1));
goto IL_0217;
}
IL_01ff:
{
bool L_96;
L_96 = Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_inline((&V_10), Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_RuntimeMethod_var);
if (L_96)
{
goto IL_0211;
}
}
{
Il2CppChar L_97 = V_12;
Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE((&V_10), L_97, Nullable_1__ctor_m925B76A79F5C50FC6CCDB1C29526E908C8257ABE_RuntimeMethod_var);
}
IL_0211:
{
int32_t L_98 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add(L_98, 1));
}
IL_0217:
{
int32_t L_99 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_99, 1));
}
IL_021b:
{
int32_t L_100 = V_1;
int32_t L_101 = V_2;
if ((((int32_t)L_100) < ((int32_t)L_101)))
{
goto IL_0058;
}
}
{
int32_t L_102 = V_5;
int32_t L_103 = V_9;
V_5 = ((int32_t)il2cpp_codegen_add(L_102, L_103));
int32_t L_104 = V_5;
int32_t L_105 = V_4;
int32_t L_106 = V_3;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_104, ((int32_t)il2cpp_codegen_subtract(L_105, L_106))));
int32_t L_107 = V_8;
if ((((int32_t)L_107) > ((int32_t)((int32_t)19))))
{
goto IL_0247;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_108 = ___value3;
uint64_t L_109 = V_6;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_110;
L_110 = Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F(L_109, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_108 = L_110;
goto IL_0274;
}
IL_0247:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_111 = ___value3;
uint64_t L_112 = V_6;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_113;
L_113 = Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F(L_112, NULL);
int32_t L_114 = V_8;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_115;
memset((&L_115), 0, sizeof(L_115));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_115), 1, 0, 0, (bool)0, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract(L_114, ((int32_t)19)))), /*hidden argument*/NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_116;
L_116 = Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A(L_113, L_115, NULL);
uint64_t L_117 = V_7;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_118;
L_118 = Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F(L_117, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_119;
L_119 = Decimal_op_Addition_m79AD1C3ED1E6345D50110EA4D20DAE724724B9DA(L_116, L_118, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_111 = L_119;
}
IL_0274:
{
int32_t L_120 = V_5;
if ((((int32_t)L_120) <= ((int32_t)0)))
{
goto IL_0381;
}
}
{
int32_t L_121 = V_8;
int32_t L_122 = V_5;
V_8 = ((int32_t)il2cpp_codegen_add(L_121, L_122));
int32_t L_123 = V_8;
if ((((int32_t)L_123) <= ((int32_t)((int32_t)29))))
{
goto IL_028b;
}
}
{
return (int32_t)(2);
}
IL_028b:
{
int32_t L_124 = V_8;
if ((!(((uint32_t)L_124) == ((uint32_t)((int32_t)29)))))
{
goto IL_035f;
}
}
{
int32_t L_125 = V_5;
if ((((int32_t)L_125) <= ((int32_t)1)))
{
goto IL_02dd;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_126 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_127 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_128 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_127);
int32_t L_129 = V_5;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_130;
memset((&L_130), 0, sizeof(L_130));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_130), 1, 0, 0, (bool)0, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract(L_129, 1))), /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_131;
L_131 = Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A(L_128, L_130, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_126 = L_131;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_132 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_133 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_132);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_134;
memset((&L_134), 0, sizeof(L_134));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_134), ((int32_t)-1717986919), ((int32_t)-1717986919), ((int32_t)429496729), (bool)0, (uint8_t)0, /*hidden argument*/NULL);
bool L_135;
L_135 = Decimal_op_GreaterThan_m2C5A01FFBCF3858E8EF62C569D993EDC1CBC60FA(L_133, L_134, NULL);
if (!L_135)
{
goto IL_0342;
}
}
{
return (int32_t)(2);
}
IL_02dd:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_136 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_137 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_136);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_138;
memset((&L_138), 0, sizeof(L_138));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_138), ((int32_t)-1717986919), ((int32_t)-1717986919), ((int32_t)429496729), (bool)0, (uint8_t)0, /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
bool L_139;
L_139 = Decimal_op_Equality_m48AE8B579CA29541C36D456B707AF9D8015C3558(L_137, L_138, NULL);
if (!L_139)
{
goto IL_0342;
}
}
{
Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1 L_140 = V_10;
V_19 = L_140;
bool L_141;
L_141 = Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_inline((&V_19), Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_RuntimeMethod_var);
if (L_141)
{
goto IL_0319;
}
}
{
il2cpp_codegen_initobj((&V_20), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_142 = V_20;
G_B87_0 = L_142;
goto IL_0325;
}
IL_0319:
{
Il2CppChar L_143;
L_143 = Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_inline((&V_19), Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_RuntimeMethod_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_144;
memset((&L_144), 0, sizeof(L_144));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_144), L_143, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
G_B87_0 = L_144;
}
IL_0325:
{
V_17 = G_B87_0;
V_18 = ((int32_t)53);
int32_t L_145;
L_145 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_17), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_146 = V_18;
bool L_147;
L_147 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_17), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!((int32_t)(((((int32_t)L_145) > ((int32_t)L_146))? 1 : 0)&(int32_t)L_147)))
{
goto IL_0342;
}
}
{
return (int32_t)(2);
}
IL_0342:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_148 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_149 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_150 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_149);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_151;
memset((&L_151), 0, sizeof(L_151));
Decimal__ctor_m6DDFD6E3A7A8CDEB1BADF8E09A8D8E1BDA9497A9((&L_151), ((int32_t)10), /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_152;
L_152 = Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19(L_150, L_151, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_148 = L_152;
goto IL_0473;
}
IL_035f:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_153 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_154 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_155 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_154);
int32_t L_156 = V_5;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_157;
memset((&L_157), 0, sizeof(L_157));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_157), 1, 0, 0, (bool)0, (uint8_t)((int32_t)(uint8_t)L_156), /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_158;
L_158 = Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A(L_155, L_157, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_153 = L_158;
goto IL_0473;
}
IL_0381:
{
Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1 L_159 = V_10;
V_19 = L_159;
bool L_160;
L_160 = Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_inline((&V_19), Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_RuntimeMethod_var);
if (L_160)
{
goto IL_039a;
}
}
{
il2cpp_codegen_initobj((&V_20), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_161 = V_20;
G_B94_0 = L_161;
goto IL_03a6;
}
IL_039a:
{
Il2CppChar L_162;
L_162 = Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_inline((&V_19), Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_RuntimeMethod_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_163;
memset((&L_163), 0, sizeof(L_163));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_163), L_162, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
G_B94_0 = L_163;
}
IL_03a6:
{
V_17 = G_B94_0;
V_18 = ((int32_t)53);
int32_t L_164;
L_164 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_17), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_165 = V_18;
bool L_166;
L_166 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_17), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!((int32_t)(((((int32_t)((((int32_t)L_164) < ((int32_t)L_165))? 1 : 0)) == ((int32_t)0))? 1 : 0)&(int32_t)L_166)))
{
goto IL_03db;
}
}
{
int32_t L_167 = V_5;
if ((((int32_t)L_167) < ((int32_t)((int32_t)-28))))
{
goto IL_03db;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_168 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_169 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_170 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_169);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_171;
L_171 = Decimal_op_Increment_m1864BCEBD01454E05A1A273FC0FD43BBDED10892(L_170, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_168 = L_171;
}
IL_03db:
{
int32_t L_172 = V_5;
if ((((int32_t)L_172) >= ((int32_t)0)))
{
goto IL_0473;
}
}
{
int32_t L_173 = V_8;
int32_t L_174 = V_5;
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_173, L_174)), ((int32_t)28)))) > ((int32_t)0)))
{
goto IL_0405;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_175 = ___value3;
bool L_176 = V_0;
G_B100_0 = L_175;
if (L_176)
{
G_B101_0 = L_175;
goto IL_03f9;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_177 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3;
G_B102_0 = L_177;
G_B102_1 = G_B100_0;
goto IL_03fe;
}
IL_03f9:
{
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_178 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3;
G_B102_0 = L_178;
G_B102_1 = G_B101_0;
}
IL_03fe:
{
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)G_B102_1 = G_B102_0;
return (int32_t)(1);
}
IL_0405:
{
int32_t L_179 = V_5;
if ((((int32_t)L_179) < ((int32_t)((int32_t)-28))))
{
goto IL_042b;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_180 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_181 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_182 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_181);
int32_t L_183 = V_5;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_184;
memset((&L_184), 0, sizeof(L_184));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_184), 1, 0, 0, (bool)0, (uint8_t)((int32_t)(uint8_t)((-L_183))), /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_185;
L_185 = Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19(L_182, L_184, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_180 = L_185;
goto IL_0473;
}
IL_042b:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_186 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_187 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_188 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_187);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_189;
memset((&L_189), 0, sizeof(L_189));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_189), ((int32_t)268435456), ((int32_t)1042612833), ((int32_t)542101086), (bool)0, (uint8_t)0, /*hidden argument*/NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_190;
L_190 = Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A(L_188, L_189, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_186 = L_190;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_191 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_192 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_193 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_192);
int32_t L_194 = V_5;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_195;
memset((&L_195), 0, sizeof(L_195));
Decimal__ctor_mC089D0AF6A28E017DE6F2F0966D8EBEBFE2DAAF7((&L_195), 1, 0, 0, (bool)0, (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract(((-L_194)), ((int32_t)28)))), /*hidden argument*/NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_196;
L_196 = Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19(L_193, L_195, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_191 = L_196;
}
IL_0473:
{
bool L_197 = V_0;
if (!L_197)
{
goto IL_0487;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_198 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* L_199 = ___value3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_200 = (*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_199);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_201;
L_201 = Decimal_op_UnaryNegation_m6D15E0F16CF3D8B4B89AA6993EE09F935D98C2A8(L_200, NULL);
*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)L_198 = L_201;
}
IL_0487:
{
return (int32_t)(1);
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryConvertGuid(System.String,System.Guid&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_TryConvertGuid_m86DFDDDFDB55FAFBFDB6E5228FC348015510AA8F (String_t* ___s0, Guid_t* ___g1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
Guid_t* L_1 = ___g1;
bool L_2;
L_2 = Guid_TryParseExact_m64BD373DE1BE946EB243FDD168B21BAFFFDE5F3E(L_0, _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158, L_1, NULL);
return L_2;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryHexTextToInt(System.Char[],System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConvertUtils_TryHexTextToInt_mFCB28F9712A30F71CB3A2A4B52D90CEEEFBA246C (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text0, int32_t ___start1, int32_t ___end2, int32_t* ___value3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
{
int32_t* L_0 = ___value3;
*((int32_t*)L_0) = (int32_t)0;
int32_t L_1 = ___start1;
V_0 = L_1;
goto IL_0058;
}
IL_0007:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___text0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_1 = L_5;
Il2CppChar L_6 = V_1;
if ((((int32_t)L_6) > ((int32_t)((int32_t)57))))
{
goto IL_001c;
}
}
{
Il2CppChar L_7 = V_1;
if ((((int32_t)L_7) < ((int32_t)((int32_t)48))))
{
goto IL_001c;
}
}
{
Il2CppChar L_8 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)48)));
goto IL_0043;
}
IL_001c:
{
Il2CppChar L_9 = V_1;
if ((((int32_t)L_9) > ((int32_t)((int32_t)70))))
{
goto IL_002d;
}
}
{
Il2CppChar L_10 = V_1;
if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
{
goto IL_002d;
}
}
{
Il2CppChar L_11 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, ((int32_t)55)));
goto IL_0043;
}
IL_002d:
{
Il2CppChar L_12 = V_1;
if ((((int32_t)L_12) > ((int32_t)((int32_t)102))))
{
goto IL_003e;
}
}
{
Il2CppChar L_13 = V_1;
if ((((int32_t)L_13) < ((int32_t)((int32_t)97))))
{
goto IL_003e;
}
}
{
Il2CppChar L_14 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, ((int32_t)87)));
goto IL_0043;
}
IL_003e:
{
int32_t* L_15 = ___value3;
*((int32_t*)L_15) = (int32_t)0;
return (bool)0;
}
IL_0043:
{
int32_t* L_16 = ___value3;
int32_t* L_17 = ___value3;
int32_t L_18 = *((int32_t*)L_17);
int32_t L_19 = V_2;
int32_t L_20 = ___end2;
int32_t L_21 = V_0;
*((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_18, ((int32_t)(L_19<<((int32_t)(((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_20, 1)), L_21)), 4))&((int32_t)31)))))));
int32_t L_22 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0058:
{
int32_t L_23 = V_0;
int32_t L_24 = ___end2;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_0007;
}
}
{
return (bool)1;
}
}
// System.Void Newtonsoft.Json.Utilities.ConvertUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConvertUtils__cctor_m4EAC33809444B49B59460F1B4240DE0ADC84EB31 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_CreateCastConverter_mACDED39C8FBC039BFA8BF16C117137B5EFDF8D91_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m96B447EB5EF440757CFDA218BB8344D89762CE2C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t890667DD511E31012095396A8BF9C888E2284437_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t0ECB838EB0C9A81655750B26970F21CF9A83A5F7_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t3D746CBB6123D4569FF4DEA60BC4240F32C6FE75_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t4926B6730CE7D5D65A9903F48CFD632867A41E72_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t5127ABE6809BA32727C69CB2E076B28D676EB15B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t70F850DEE49B62D1B877D3C32F9E0EC724ADC4D9_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tD043F01310E483091D0E9A5526C3425F13EF2099_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tF8BFF19FF240C9F0A45168187CD7106BAA146A99_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2__ctor_mF589737F54B40E91045E1203531A2FFFDDCFB386_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_0 = (Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5*)il2cpp_codegen_object_new(Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_m96B447EB5EF440757CFDA218BB8344D89762CE2C(L_0, Dictionary_2__ctor_m96B447EB5EF440757CFDA218BB8344D89762CE2C_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_1 = L_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_2, NULL);
NullCheck(L_1);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_1, L_3, 2, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_4 = L_1;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1_0_0_0_var) };
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
NullCheck(L_4);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_4, L_6, 3, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_7 = L_4;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
Type_t* L_9;
L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL);
NullCheck(L_7);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_7, L_9, 4, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_10 = L_7;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01_0_0_0_var) };
Type_t* L_12;
L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL);
NullCheck(L_10);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_10, L_12, 5, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_13 = L_10;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_15;
L_15 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_14, NULL);
NullCheck(L_13);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_13, L_15, 6, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_16 = L_13;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Nullable_1_tCF16C2638810B89EAA3EEFE6B35FC71B6AE96B2C_0_0_0_var) };
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
NullCheck(L_16);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_16, L_18, 7, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_19 = L_16;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_21;
L_21 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_20, NULL);
NullCheck(L_19);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_19, L_21, 8, Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_22 = L_19;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast<intptr_t> (Nullable_1_t57D99A484501B89DA27E67D6D9A89722D5A7DE2C_0_0_0_var) };
Type_t* L_24;
L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL);
NullCheck(L_22);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_22, L_24, ((int32_t)9), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_25 = L_22;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_27;
L_27 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_26, NULL);
NullCheck(L_25);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_25, L_27, ((int32_t)10), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_28 = L_25;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Nullable_1_t70F850DEE49B62D1B877D3C32F9E0EC724ADC4D9_0_0_0_var) };
Type_t* L_30;
L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL);
NullCheck(L_28);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_28, L_30, ((int32_t)11), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_31 = L_28;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_33;
L_33 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_32, NULL);
NullCheck(L_31);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_31, L_33, ((int32_t)12), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_34 = L_31;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28_0_0_0_var) };
Type_t* L_36;
L_36 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_35, NULL);
NullCheck(L_34);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_34, L_36, ((int32_t)13), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_37 = L_34;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_39;
L_39 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_38, NULL);
NullCheck(L_37);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_37, L_39, ((int32_t)14), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_40 = L_37;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast<intptr_t> (Nullable_1_tEB6689CC9747A3600689077DCBF77B8E8B510505_0_0_0_var) };
Type_t* L_42;
L_42 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_41, NULL);
NullCheck(L_40);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_40, L_42, ((int32_t)15), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_43 = L_40;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_45;
L_45 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_44, NULL);
NullCheck(L_43);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_43, L_45, ((int32_t)16), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_46 = L_43;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (Nullable_1_tD043F01310E483091D0E9A5526C3425F13EF2099_0_0_0_var) };
Type_t* L_48;
L_48 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_47, NULL);
NullCheck(L_46);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_46, L_48, ((int32_t)17), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_49 = L_46;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_51;
L_51 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_50, NULL);
NullCheck(L_49);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_49, L_51, ((int32_t)18), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_52 = L_49;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17_0_0_0_var) };
Type_t* L_54;
L_54 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_53, NULL);
NullCheck(L_52);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_52, L_54, ((int32_t)19), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_55 = L_52;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_57;
L_57 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_56, NULL);
NullCheck(L_55);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_55, L_57, ((int32_t)20), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_58 = L_55;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (Nullable_1_tF8BFF19FF240C9F0A45168187CD7106BAA146A99_0_0_0_var) };
Type_t* L_60;
L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL);
NullCheck(L_58);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_58, L_60, ((int32_t)21), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_61 = L_58;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
Type_t* L_63;
L_63 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_62, NULL);
NullCheck(L_61);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_61, L_63, ((int32_t)22), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_64 = L_61;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_65 = { reinterpret_cast<intptr_t> (Nullable_1_t3D746CBB6123D4569FF4DEA60BC4240F32C6FE75_0_0_0_var) };
Type_t* L_66;
L_66 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_65, NULL);
NullCheck(L_64);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_64, L_66, ((int32_t)23), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_67 = L_64;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
Type_t* L_69;
L_69 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_68, NULL);
NullCheck(L_67);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_67, L_69, ((int32_t)24), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_70 = L_67;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_71 = { reinterpret_cast<intptr_t> (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165_0_0_0_var) };
Type_t* L_72;
L_72 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_71, NULL);
NullCheck(L_70);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_70, L_72, ((int32_t)25), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_73 = L_70;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
Type_t* L_75;
L_75 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_74, NULL);
NullCheck(L_73);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_73, L_75, ((int32_t)26), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_76 = L_73;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC_0_0_0_var) };
Type_t* L_78;
L_78 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_77, NULL);
NullCheck(L_76);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_76, L_78, ((int32_t)27), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_79 = L_76;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_80 = { reinterpret_cast<intptr_t> (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_0_0_0_var) };
Type_t* L_81;
L_81 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_80, NULL);
NullCheck(L_79);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_79, L_81, ((int32_t)28), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_82 = L_79;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_83 = { reinterpret_cast<intptr_t> (Nullable_1_t5127ABE6809BA32727C69CB2E076B28D676EB15B_0_0_0_var) };
Type_t* L_84;
L_84 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_83, NULL);
NullCheck(L_82);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_82, L_84, ((int32_t)29), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_85 = L_82;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_86 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
Type_t* L_87;
L_87 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_86, NULL);
NullCheck(L_85);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_85, L_87, ((int32_t)30), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_88 = L_85;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_89 = { reinterpret_cast<intptr_t> (Nullable_1_t072551AA1AA8366A46F232F8180C34AA0CFFACBB_0_0_0_var) };
Type_t* L_90;
L_90 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_89, NULL);
NullCheck(L_88);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_88, L_90, ((int32_t)31), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_91 = L_88;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
Type_t* L_93;
L_93 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_92, NULL);
NullCheck(L_91);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_91, L_93, ((int32_t)32), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_94 = L_91;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_95 = { reinterpret_cast<intptr_t> (Nullable_1_t0ECB838EB0C9A81655750B26970F21CF9A83A5F7_0_0_0_var) };
Type_t* L_96;
L_96 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_95, NULL);
NullCheck(L_94);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_94, L_96, ((int32_t)33), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_97 = L_94;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_98 = { reinterpret_cast<intptr_t> (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) };
Type_t* L_99;
L_99 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_98, NULL);
NullCheck(L_97);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_97, L_99, ((int32_t)34), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_100 = L_97;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_101 = { reinterpret_cast<intptr_t> (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272_0_0_0_var) };
Type_t* L_102;
L_102 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_101, NULL);
NullCheck(L_100);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_100, L_102, ((int32_t)35), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_103 = L_100;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_0_0_0_var) };
Type_t* L_105;
L_105 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_104, NULL);
NullCheck(L_103);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_103, L_105, ((int32_t)36), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_106 = L_103;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (Nullable_1_t4926B6730CE7D5D65A9903F48CFD632867A41E72_0_0_0_var) };
Type_t* L_108;
L_108 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_107, NULL);
NullCheck(L_106);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_106, L_108, ((int32_t)37), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_109 = L_106;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_110 = { reinterpret_cast<intptr_t> (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_0_0_0_var) };
Type_t* L_111;
L_111 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_110, NULL);
NullCheck(L_109);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_109, L_111, ((int32_t)38), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_112 = L_109;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t* L_114;
L_114 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_113, NULL);
NullCheck(L_112);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_112, L_114, ((int32_t)39), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_115 = L_112;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_116 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_0_0_0_var) };
Type_t* L_117;
L_117 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_116, NULL);
NullCheck(L_115);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_115, L_117, ((int32_t)40), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
Dictionary_2_tB4EE9E1FEFC4DA9733FDA0866945A0C2F84B0DC5* L_118 = L_115;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_119 = { reinterpret_cast<intptr_t> (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var) };
Type_t* L_120;
L_120 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_119, NULL);
NullCheck(L_118);
Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B(L_118, L_120, ((int32_t)41), Dictionary_2_Add_mF360F7DD5F1DE6CCAF2EA4878D710073A886B14B_RuntimeMethod_var);
((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___TypeCodeMap_0 = L_118;
Il2CppCodeGenWriteBarrier((void**)(&((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___TypeCodeMap_0), (void*)L_118);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_121 = (TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339*)(TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339*)SZArrayNew(TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19));
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_122 = L_121;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_123 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_124;
L_124 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_123, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_125 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_125);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_125, L_124, 0, NULL);
NullCheck(L_122);
ArrayElementTypeCheck (L_122, L_125);
(L_122)->SetAt(static_cast<il2cpp_array_size_t>(0), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_125);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_126 = L_122;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_127 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_128;
L_128 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_127, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_129 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_129);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_129, L_128, 1, NULL);
NullCheck(L_126);
ArrayElementTypeCheck (L_126, L_129);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(1), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_129);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_130 = L_126;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_131 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_132;
L_132 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_131, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_133 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_133);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_133, L_132, ((int32_t)41), NULL);
NullCheck(L_130);
ArrayElementTypeCheck (L_130, L_133);
(L_130)->SetAt(static_cast<il2cpp_array_size_t>(2), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_133);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_134 = L_130;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_135 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
Type_t* L_136;
L_136 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_135, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_137 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_137);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_137, L_136, 4, NULL);
NullCheck(L_134);
ArrayElementTypeCheck (L_134, L_137);
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(3), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_137);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_138 = L_134;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_139 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
Type_t* L_140;
L_140 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_139, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_141 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_141);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_141, L_140, 2, NULL);
NullCheck(L_138);
ArrayElementTypeCheck (L_138, L_141);
(L_138)->SetAt(static_cast<il2cpp_array_size_t>(4), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_141);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_142 = L_138;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_143 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
Type_t* L_144;
L_144 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_143, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_145 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_145);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_145, L_144, 6, NULL);
NullCheck(L_142);
ArrayElementTypeCheck (L_142, L_145);
(L_142)->SetAt(static_cast<il2cpp_array_size_t>(5), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_145);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_146 = L_142;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
Type_t* L_148;
L_148 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_147, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_149 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_149);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_149, L_148, ((int32_t)14), NULL);
NullCheck(L_146);
ArrayElementTypeCheck (L_146, L_149);
(L_146)->SetAt(static_cast<il2cpp_array_size_t>(6), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_149);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_150 = L_146;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_151 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
Type_t* L_152;
L_152 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_151, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_153 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_153);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_153, L_152, 8, NULL);
NullCheck(L_150);
ArrayElementTypeCheck (L_150, L_153);
(L_150)->SetAt(static_cast<il2cpp_array_size_t>(7), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_153);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_154 = L_150;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_155 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
Type_t* L_156;
L_156 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_155, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_157 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_157);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_157, L_156, ((int32_t)10), NULL);
NullCheck(L_154);
ArrayElementTypeCheck (L_154, L_157);
(L_154)->SetAt(static_cast<il2cpp_array_size_t>(8), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_157);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_158 = L_154;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_159 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
Type_t* L_160;
L_160 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_159, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_161 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_161);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_161, L_160, ((int32_t)12), NULL);
NullCheck(L_158);
ArrayElementTypeCheck (L_158, L_161);
(L_158)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_161);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_162 = L_158;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_163 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
Type_t* L_164;
L_164 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_163, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_165 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_165);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_165, L_164, ((int32_t)16), NULL);
NullCheck(L_162);
ArrayElementTypeCheck (L_162, L_165);
(L_162)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_165);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_166 = L_162;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_167 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
Type_t* L_168;
L_168 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_167, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_169 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_169);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_169, L_168, ((int32_t)18), NULL);
NullCheck(L_166);
ArrayElementTypeCheck (L_166, L_169);
(L_166)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_169);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_170 = L_166;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_171 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
Type_t* L_172;
L_172 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_171, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_173 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_173);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_173, L_172, ((int32_t)20), NULL);
NullCheck(L_170);
ArrayElementTypeCheck (L_170, L_173);
(L_170)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_173);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_174 = L_170;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_175 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
Type_t* L_176;
L_176 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_175, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_177 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_177);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_177, L_176, ((int32_t)22), NULL);
NullCheck(L_174);
ArrayElementTypeCheck (L_174, L_177);
(L_174)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_177);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_178 = L_174;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_179 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
Type_t* L_180;
L_180 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_179, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_181 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_181);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_181, L_180, ((int32_t)24), NULL);
NullCheck(L_178);
ArrayElementTypeCheck (L_178, L_181);
(L_178)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_181);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_182 = L_178;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_183 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
Type_t* L_184;
L_184 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_183, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_185 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_185);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_185, L_184, ((int32_t)30), NULL);
NullCheck(L_182);
ArrayElementTypeCheck (L_182, L_185);
(L_182)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_185);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_186 = L_182;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_187 = { reinterpret_cast<intptr_t> (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) };
Type_t* L_188;
L_188 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_187, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_189 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_189);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_189, L_188, ((int32_t)26), NULL);
NullCheck(L_186);
ArrayElementTypeCheck (L_186, L_189);
(L_186)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_189);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_190 = L_186;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_191 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t* L_192;
L_192 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_191, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_193 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_193);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_193, L_192, 0, NULL);
NullCheck(L_190);
ArrayElementTypeCheck (L_190, L_193);
(L_190)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_193);
TypeInformationU5BU5D_t2BF780FA337D6964A5D7AC03CFBE04ABAB47C339* L_194 = L_190;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_195 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t* L_196;
L_196 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_195, NULL);
TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15* L_197 = (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)il2cpp_codegen_object_new(TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15_il2cpp_TypeInfo_var);
NullCheck(L_197);
TypeInformation__ctor_mBDA852CD34E205536CA659FB8EF0B46AAA137E69(L_197, L_196, ((int32_t)39), NULL);
NullCheck(L_194);
ArrayElementTypeCheck (L_194, L_197);
(L_194)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (TypeInformation_tBAA2819DD869179F8DFB0A658547229B4C7D6E15*)L_197);
((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___PrimitiveTypeCodes_1 = L_194;
Il2CppCodeGenWriteBarrier((void**)(&((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___PrimitiveTypeCodes_1), (void*)L_194);
Func_2_t890667DD511E31012095396A8BF9C888E2284437* L_198 = (Func_2_t890667DD511E31012095396A8BF9C888E2284437*)il2cpp_codegen_object_new(Func_2_t890667DD511E31012095396A8BF9C888E2284437_il2cpp_TypeInfo_var);
NullCheck(L_198);
Func_2__ctor_mDDEAD298E1A5A006441585942908F6BD7CE7699E(L_198, NULL, (intptr_t)((void*)ConvertUtils_CreateCastConverter_mACDED39C8FBC039BFA8BF16C117137B5EFDF8D91_RuntimeMethod_var), NULL);
ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E* L_199 = (ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E*)il2cpp_codegen_object_new(ThreadSafeStore_2_t43233086D1027FD1EEEB46A39313B1846844BF5E_il2cpp_TypeInfo_var);
NullCheck(L_199);
ThreadSafeStore_2__ctor_mF589737F54B40E91045E1203531A2FFFDDCFB386(L_199, L_198, ThreadSafeStore_2__ctor_mF589737F54B40E91045E1203531A2FFFDDCFB386_RuntimeMethod_var);
((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___CastConverters_2 = L_199;
Il2CppCodeGenWriteBarrier((void**)(&((ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_StaticFields*)il2cpp_codegen_static_fields_for(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var))->___CastConverters_2), (void*)L_199);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m7DB75E6B20C696DD77ED6EE409C002FC85E401BB (U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass8_0::<CreateCastConverter>b__0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass8_0_U3CCreateCastConverterU3Eb__0_mDC84E827B3BA216BAECEDDCB26FCA5EFCEF550EF (U3CU3Ec__DisplayClass8_0_tF20B383626D01F8996236F1642B4E5B585C201B3* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___call_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
RuntimeObject* L_3 = ___o0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_3);
NullCheck(L_0);
RuntimeObject* L_4;
L_4 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, NULL, L_2, NULL);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: Newtonsoft.Json.Utilities.DateTimeParser
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_pinvoke(const DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246& unmarshaled, DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_pinvoke& marshaled)
{
marshaled.___Year_0 = unmarshaled.___Year_0;
marshaled.___Month_1 = unmarshaled.___Month_1;
marshaled.___Day_2 = unmarshaled.___Day_2;
marshaled.___Hour_3 = unmarshaled.___Hour_3;
marshaled.___Minute_4 = unmarshaled.___Minute_4;
marshaled.___Second_5 = unmarshaled.___Second_5;
marshaled.___Fraction_6 = unmarshaled.___Fraction_6;
marshaled.___ZoneHour_7 = unmarshaled.___ZoneHour_7;
marshaled.___ZoneMinute_8 = unmarshaled.___ZoneMinute_8;
marshaled.___Zone_9 = unmarshaled.___Zone_9;
if (unmarshaled.____text_10 != NULL)
{
il2cpp_array_size_t _unmarshaled_text_Length = (unmarshaled.____text_10)->max_length;
marshaled.____text_10 = il2cpp_codegen_marshal_allocate_array<uint8_t>(_unmarshaled_text_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_text_Length); i++)
{
(marshaled.____text_10)[i] = static_cast<uint8_t>((unmarshaled.____text_10)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)));
}
}
else
{
marshaled.____text_10 = NULL;
}
marshaled.____end_11 = unmarshaled.____end_11;
}
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_pinvoke_back(const DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_pinvoke& marshaled, DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t unmarshaledYear_temp_0 = 0;
unmarshaledYear_temp_0 = marshaled.___Year_0;
unmarshaled.___Year_0 = unmarshaledYear_temp_0;
int32_t unmarshaledMonth_temp_1 = 0;
unmarshaledMonth_temp_1 = marshaled.___Month_1;
unmarshaled.___Month_1 = unmarshaledMonth_temp_1;
int32_t unmarshaledDay_temp_2 = 0;
unmarshaledDay_temp_2 = marshaled.___Day_2;
unmarshaled.___Day_2 = unmarshaledDay_temp_2;
int32_t unmarshaledHour_temp_3 = 0;
unmarshaledHour_temp_3 = marshaled.___Hour_3;
unmarshaled.___Hour_3 = unmarshaledHour_temp_3;
int32_t unmarshaledMinute_temp_4 = 0;
unmarshaledMinute_temp_4 = marshaled.___Minute_4;
unmarshaled.___Minute_4 = unmarshaledMinute_temp_4;
int32_t unmarshaledSecond_temp_5 = 0;
unmarshaledSecond_temp_5 = marshaled.___Second_5;
unmarshaled.___Second_5 = unmarshaledSecond_temp_5;
int32_t unmarshaledFraction_temp_6 = 0;
unmarshaledFraction_temp_6 = marshaled.___Fraction_6;
unmarshaled.___Fraction_6 = unmarshaledFraction_temp_6;
int32_t unmarshaledZoneHour_temp_7 = 0;
unmarshaledZoneHour_temp_7 = marshaled.___ZoneHour_7;
unmarshaled.___ZoneHour_7 = unmarshaledZoneHour_temp_7;
int32_t unmarshaledZoneMinute_temp_8 = 0;
unmarshaledZoneMinute_temp_8 = marshaled.___ZoneMinute_8;
unmarshaled.___ZoneMinute_8 = unmarshaledZoneMinute_temp_8;
int32_t unmarshaledZone_temp_9 = 0;
unmarshaledZone_temp_9 = marshaled.___Zone_9;
unmarshaled.___Zone_9 = unmarshaledZone_temp_9;
if (marshaled.____text_10 != NULL)
{
if (unmarshaled.____text_10 == NULL)
{
unmarshaled.____text_10 = reinterpret_cast<CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*>((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, 1));
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____text_10), (void*)reinterpret_cast<CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*>((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.____text_10)->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.____text_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), static_cast<Il2CppChar>((marshaled.____text_10)[i]));
}
}
int32_t unmarshaled_end_temp_11 = 0;
unmarshaled_end_temp_11 = marshaled.____end_11;
unmarshaled.____end_11 = unmarshaled_end_temp_11;
}
// Conversion method for clean up from marshalling of: Newtonsoft.Json.Utilities.DateTimeParser
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_pinvoke_cleanup(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_pinvoke& marshaled)
{
if (marshaled.____text_10 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.____text_10);
marshaled.____text_10 = NULL;
}
}
// Conversion methods for marshalling of: Newtonsoft.Json.Utilities.DateTimeParser
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_com(const DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246& unmarshaled, DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_com& marshaled)
{
marshaled.___Year_0 = unmarshaled.___Year_0;
marshaled.___Month_1 = unmarshaled.___Month_1;
marshaled.___Day_2 = unmarshaled.___Day_2;
marshaled.___Hour_3 = unmarshaled.___Hour_3;
marshaled.___Minute_4 = unmarshaled.___Minute_4;
marshaled.___Second_5 = unmarshaled.___Second_5;
marshaled.___Fraction_6 = unmarshaled.___Fraction_6;
marshaled.___ZoneHour_7 = unmarshaled.___ZoneHour_7;
marshaled.___ZoneMinute_8 = unmarshaled.___ZoneMinute_8;
marshaled.___Zone_9 = unmarshaled.___Zone_9;
if (unmarshaled.____text_10 != NULL)
{
il2cpp_array_size_t _unmarshaled_text_Length = (unmarshaled.____text_10)->max_length;
marshaled.____text_10 = il2cpp_codegen_marshal_allocate_array<uint8_t>(_unmarshaled_text_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_text_Length); i++)
{
(marshaled.____text_10)[i] = static_cast<uint8_t>((unmarshaled.____text_10)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)));
}
}
else
{
marshaled.____text_10 = NULL;
}
marshaled.____end_11 = unmarshaled.____end_11;
}
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_com_back(const DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_com& marshaled, DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t unmarshaledYear_temp_0 = 0;
unmarshaledYear_temp_0 = marshaled.___Year_0;
unmarshaled.___Year_0 = unmarshaledYear_temp_0;
int32_t unmarshaledMonth_temp_1 = 0;
unmarshaledMonth_temp_1 = marshaled.___Month_1;
unmarshaled.___Month_1 = unmarshaledMonth_temp_1;
int32_t unmarshaledDay_temp_2 = 0;
unmarshaledDay_temp_2 = marshaled.___Day_2;
unmarshaled.___Day_2 = unmarshaledDay_temp_2;
int32_t unmarshaledHour_temp_3 = 0;
unmarshaledHour_temp_3 = marshaled.___Hour_3;
unmarshaled.___Hour_3 = unmarshaledHour_temp_3;
int32_t unmarshaledMinute_temp_4 = 0;
unmarshaledMinute_temp_4 = marshaled.___Minute_4;
unmarshaled.___Minute_4 = unmarshaledMinute_temp_4;
int32_t unmarshaledSecond_temp_5 = 0;
unmarshaledSecond_temp_5 = marshaled.___Second_5;
unmarshaled.___Second_5 = unmarshaledSecond_temp_5;
int32_t unmarshaledFraction_temp_6 = 0;
unmarshaledFraction_temp_6 = marshaled.___Fraction_6;
unmarshaled.___Fraction_6 = unmarshaledFraction_temp_6;
int32_t unmarshaledZoneHour_temp_7 = 0;
unmarshaledZoneHour_temp_7 = marshaled.___ZoneHour_7;
unmarshaled.___ZoneHour_7 = unmarshaledZoneHour_temp_7;
int32_t unmarshaledZoneMinute_temp_8 = 0;
unmarshaledZoneMinute_temp_8 = marshaled.___ZoneMinute_8;
unmarshaled.___ZoneMinute_8 = unmarshaledZoneMinute_temp_8;
int32_t unmarshaledZone_temp_9 = 0;
unmarshaledZone_temp_9 = marshaled.___Zone_9;
unmarshaled.___Zone_9 = unmarshaledZone_temp_9;
if (marshaled.____text_10 != NULL)
{
if (unmarshaled.____text_10 == NULL)
{
unmarshaled.____text_10 = reinterpret_cast<CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*>((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, 1));
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.____text_10), (void*)reinterpret_cast<CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*>((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.____text_10)->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.____text_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), static_cast<Il2CppChar>((marshaled.____text_10)[i]));
}
}
int32_t unmarshaled_end_temp_11 = 0;
unmarshaled_end_temp_11 = marshaled.____end_11;
unmarshaled.____end_11 = unmarshaled_end_temp_11;
}
// Conversion method for clean up from marshalling of: Newtonsoft.Json.Utilities.DateTimeParser
IL2CPP_EXTERN_C void DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshal_com_cleanup(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_marshaled_com& marshaled)
{
if (marshaled.____text_10 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.____text_10);
marshaled.____text_10 = NULL;
}
}
// System.Void Newtonsoft.Json.Utilities.DateTimeParser::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeParser__cctor_m1F4AC2937781C26D7FCC8578B2968C397A338EC8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____9E31F24F64765FCAA589F589324D17C9FCF6A06D_8_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral878AE10D03D16A069554617545B8533ED09E594F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE358F823C39A638A3134E442FF53D303271291F3);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)7);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____9E31F24F64765FCAA589F589324D17C9FCF6A06D_8_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Power10_12 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Power10_12), (void*)L_1);
NullCheck(_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_13 = L_3;
NullCheck(_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy__14 = L_4;
NullCheck(_stringLiteralE358F823C39A638A3134E442FF53D303271291F3);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralE358F823C39A638A3134E442FF53D303271291F3, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_15 = L_5;
NullCheck(_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM__16 = L_6;
NullCheck(_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_dd_17 = L_7;
NullCheck(_stringLiteral878AE10D03D16A069554617545B8533ED09E594F);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral878AE10D03D16A069554617545B8533ED09E594F, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_ddT_18 = L_8;
NullCheck(_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_19 = L_9;
NullCheck(_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH__20 = L_10;
NullCheck(_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm_21 = L_11;
NullCheck(_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5);
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm__22 = L_12;
NullCheck(_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm_ss_23 = L_13;
NullCheck(_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lz__24 = L_14;
NullCheck(_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6, NULL);
((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lz_zz_25 = L_15;
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___text0;
__this->____text_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____text_10), (void*)L_0);
int32_t L_1 = ___startIndex1;
int32_t L_2 = ___length2;
__this->____end_11 = ((int32_t)il2cpp_codegen_add(L_1, L_2));
int32_t L_3 = ___startIndex1;
bool L_4;
L_4 = DateTimeParser_ParseDate_mCF43EAF9D60C2DF52038EAA7C5653D59C83F9C8F(__this, L_3, NULL);
if (!L_4)
{
goto IL_003b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_5 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_dd_17;
int32_t L_6 = ___startIndex1;
bool L_7;
L_7 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, ((int32_t)il2cpp_codegen_add(L_5, L_6)), ((int32_t)84), NULL);
if (!L_7)
{
goto IL_003b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_8 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_ddT_18;
int32_t L_9 = ___startIndex1;
bool L_10;
L_10 = DateTimeParser_ParseTimeAndZoneAndWhitespace_m36C0C76A6548E07654C45414059FBD5BC95F5BBD(__this, ((int32_t)il2cpp_codegen_add(L_8, L_9)), NULL);
if (!L_10)
{
goto IL_003b;
}
}
{
return (bool)1;
}
IL_003b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091_AdjustorThunk (RuntimeObject* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091(_thisAdjusted, ___text0, ___startIndex1, ___length2, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseDate(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseDate_mCF43EAF9D60C2DF52038EAA7C5653D59C83F9C8F (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___start0;
int32_t* L_1 = (&__this->___Year_0);
bool L_2;
L_2 = DateTimeParser_Parse4Digit_mC5F981E6CD7CD915FEA858DE77A04AEC04AF4D86(__this, L_0, L_1, NULL);
if (!L_2)
{
goto IL_00a3;
}
}
{
int32_t L_3 = __this->___Year_0;
if ((((int32_t)1) > ((int32_t)L_3)))
{
goto IL_00a3;
}
}
{
int32_t L_4 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_5 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_13;
bool L_6;
L_6 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, ((int32_t)il2cpp_codegen_add(L_4, L_5)), ((int32_t)45), NULL);
if (!L_6)
{
goto IL_00a3;
}
}
{
int32_t L_7 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_8 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy__14;
int32_t* L_9 = (&__this->___Month_1);
bool L_10;
L_10 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, ((int32_t)il2cpp_codegen_add(L_7, L_8)), L_9, NULL);
if (!L_10)
{
goto IL_00a3;
}
}
{
int32_t L_11 = __this->___Month_1;
if ((((int32_t)1) > ((int32_t)L_11)))
{
goto IL_00a3;
}
}
{
int32_t L_12 = __this->___Month_1;
if ((((int32_t)L_12) > ((int32_t)((int32_t)12))))
{
goto IL_00a3;
}
}
{
int32_t L_13 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_14 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM_15;
bool L_15;
L_15 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, ((int32_t)il2cpp_codegen_add(L_13, L_14)), ((int32_t)45), NULL);
if (!L_15)
{
goto IL_00a3;
}
}
{
int32_t L_16 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_17 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lzyyyy_MM__16;
int32_t* L_18 = (&__this->___Day_2);
bool L_19;
L_19 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, ((int32_t)il2cpp_codegen_add(L_16, L_17)), L_18, NULL);
if (!L_19)
{
goto IL_00a3;
}
}
{
int32_t L_20 = __this->___Day_2;
if ((((int32_t)1) > ((int32_t)L_20)))
{
goto IL_00a3;
}
}
{
int32_t L_21 = __this->___Day_2;
int32_t L_22 = __this->___Year_0;
int32_t L_23 = __this->___Month_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
int32_t L_24;
L_24 = DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C(L_22, L_23, NULL);
return (bool)((((int32_t)((((int32_t)L_21) > ((int32_t)L_24))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_00a3:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_ParseDate_mCF43EAF9D60C2DF52038EAA7C5653D59C83F9C8F_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_ParseDate_mCF43EAF9D60C2DF52038EAA7C5653D59C83F9C8F(_thisAdjusted, ___start0, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTimeAndZoneAndWhitespace(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseTimeAndZoneAndWhitespace_m36C0C76A6548E07654C45414059FBD5BC95F5BBD (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DateTimeParser_ParseTime_m9717B1406E4705AB36B56F41A8F0CAA14B1815DD(__this, (&___start0), NULL);
if (!L_0)
{
goto IL_0012;
}
}
{
int32_t L_1 = ___start0;
bool L_2;
L_2 = DateTimeParser_ParseZone_m4CEBD1A881CB114B6EB7D8050F44EA265A260642(__this, L_1, NULL);
return L_2;
}
IL_0012:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_ParseTimeAndZoneAndWhitespace_m36C0C76A6548E07654C45414059FBD5BC95F5BBD_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_ParseTimeAndZoneAndWhitespace_m36C0C76A6548E07654C45414059FBD5BC95F5BBD(_thisAdjusted, ___start0, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTime(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseTime_m9717B1406E4705AB36B56F41A8F0CAA14B1815DD (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t* ___start0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t* L_0 = ___start0;
int32_t L_1 = *((int32_t*)L_0);
int32_t* L_2 = (&__this->___Hour_3);
bool L_3;
L_3 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, L_1, L_2, NULL);
if (!L_3)
{
goto IL_009b;
}
}
{
int32_t L_4 = __this->___Hour_3;
if ((((int32_t)L_4) > ((int32_t)((int32_t)24))))
{
goto IL_009b;
}
}
{
int32_t* L_5 = ___start0;
int32_t L_6 = *((int32_t*)L_5);
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_7 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_19;
bool L_8;
L_8 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, ((int32_t)il2cpp_codegen_add(L_6, L_7)), ((int32_t)58), NULL);
if (!L_8)
{
goto IL_009b;
}
}
{
int32_t* L_9 = ___start0;
int32_t L_10 = *((int32_t*)L_9);
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_11 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH__20;
int32_t* L_12 = (&__this->___Minute_4);
bool L_13;
L_13 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, ((int32_t)il2cpp_codegen_add(L_10, L_11)), L_12, NULL);
if (!L_13)
{
goto IL_009b;
}
}
{
int32_t L_14 = __this->___Minute_4;
if ((((int32_t)L_14) >= ((int32_t)((int32_t)60))))
{
goto IL_009b;
}
}
{
int32_t* L_15 = ___start0;
int32_t L_16 = *((int32_t*)L_15);
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_17 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm_21;
bool L_18;
L_18 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, ((int32_t)il2cpp_codegen_add(L_16, L_17)), ((int32_t)58), NULL);
if (!L_18)
{
goto IL_009b;
}
}
{
int32_t* L_19 = ___start0;
int32_t L_20 = *((int32_t*)L_19);
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_21 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm__22;
int32_t* L_22 = (&__this->___Second_5);
bool L_23;
L_23 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, ((int32_t)il2cpp_codegen_add(L_20, L_21)), L_22, NULL);
if (!L_23)
{
goto IL_009b;
}
}
{
int32_t L_24 = __this->___Second_5;
if ((((int32_t)L_24) >= ((int32_t)((int32_t)60))))
{
goto IL_009b;
}
}
{
int32_t L_25 = __this->___Hour_3;
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)24)))))
{
goto IL_009d;
}
}
{
int32_t L_26 = __this->___Minute_4;
if (L_26)
{
goto IL_009b;
}
}
{
int32_t L_27 = __this->___Second_5;
if (!L_27)
{
goto IL_009d;
}
}
IL_009b:
{
return (bool)0;
}
IL_009d:
{
int32_t* L_28 = ___start0;
int32_t* L_29 = ___start0;
int32_t L_30 = *((int32_t*)L_29);
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_31 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___LzHH_mm_ss_23;
*((int32_t*)L_28) = (int32_t)((int32_t)il2cpp_codegen_add(L_30, L_31));
int32_t* L_32 = ___start0;
int32_t L_33 = *((int32_t*)L_32);
bool L_34;
L_34 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, L_33, ((int32_t)46), NULL);
if (!L_34)
{
goto IL_0131;
}
}
{
__this->___Fraction_6 = 0;
V_0 = 0;
goto IL_00e9;
}
IL_00be:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = __this->____text_10;
int32_t* L_36 = ___start0;
int32_t L_37 = *((int32_t*)L_36);
NullCheck(L_35);
int32_t L_38 = L_37;
uint16_t L_39 = (uint16_t)(L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_39, ((int32_t)48)));
int32_t L_40 = V_1;
if ((((int32_t)L_40) < ((int32_t)0)))
{
goto IL_00fe;
}
}
{
int32_t L_41 = V_1;
if ((((int32_t)L_41) > ((int32_t)((int32_t)9))))
{
goto IL_00fe;
}
}
{
int32_t L_42 = __this->___Fraction_6;
int32_t L_43 = V_1;
__this->___Fraction_6 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_42, ((int32_t)10))), L_43));
int32_t L_44 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_44, 1));
}
IL_00e9:
{
int32_t* L_45 = ___start0;
int32_t* L_46 = ___start0;
int32_t L_47 = *((int32_t*)L_46);
V_2 = ((int32_t)il2cpp_codegen_add(L_47, 1));
int32_t L_48 = V_2;
*((int32_t*)L_45) = (int32_t)L_48;
int32_t L_49 = V_2;
int32_t L_50 = __this->____end_11;
if ((((int32_t)L_49) >= ((int32_t)L_50)))
{
goto IL_00fe;
}
}
{
int32_t L_51 = V_0;
if ((((int32_t)L_51) < ((int32_t)7)))
{
goto IL_00be;
}
}
IL_00fe:
{
int32_t L_52 = V_0;
if ((((int32_t)L_52) >= ((int32_t)7)))
{
goto IL_011d;
}
}
{
int32_t L_53 = V_0;
if (L_53)
{
goto IL_0107;
}
}
{
return (bool)0;
}
IL_0107:
{
int32_t L_54 = __this->___Fraction_6;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_55 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Power10_12;
int32_t L_56 = V_0;
NullCheck(L_55);
int32_t L_57 = ((int32_t)il2cpp_codegen_subtract(7, L_56));
int32_t L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
__this->___Fraction_6 = ((int32_t)il2cpp_codegen_multiply(L_54, L_58));
}
IL_011d:
{
int32_t L_59 = __this->___Hour_3;
if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)24)))))
{
goto IL_0131;
}
}
{
int32_t L_60 = __this->___Fraction_6;
if (!L_60)
{
goto IL_0131;
}
}
{
return (bool)0;
}
IL_0131:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_ParseTime_m9717B1406E4705AB36B56F41A8F0CAA14B1815DD_AdjustorThunk (RuntimeObject* __this, int32_t* ___start0, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_ParseTime_m9717B1406E4705AB36B56F41A8F0CAA14B1815DD(_thisAdjusted, ___start0, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseZone(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseZone_m4CEBD1A881CB114B6EB7D8050F44EA265A260642 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___start0;
int32_t L_1 = __this->____end_11;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_00f3;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->____text_10;
int32_t L_3 = ___start0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
Il2CppChar L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)90))))
{
goto IL_001f;
}
}
{
Il2CppChar L_7 = V_0;
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)122)))))
{
goto IL_0030;
}
}
IL_001f:
{
__this->___Zone_9 = 1;
int32_t L_8 = ___start0;
___start0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
goto IL_00f3;
}
IL_0030:
{
int32_t L_9 = ___start0;
int32_t L_10 = __this->____end_11;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_9, 2))) >= ((int32_t)L_10)))
{
goto IL_0086;
}
}
{
int32_t L_11 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_12 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lz__24;
int32_t* L_13 = (&__this->___ZoneHour_7);
bool L_14;
L_14 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, ((int32_t)il2cpp_codegen_add(L_11, L_12)), L_13, NULL);
if (!L_14)
{
goto IL_0086;
}
}
{
int32_t L_15 = __this->___ZoneHour_7;
if ((((int32_t)L_15) > ((int32_t)((int32_t)99))))
{
goto IL_0086;
}
}
{
Il2CppChar L_16 = V_0;
if ((((int32_t)L_16) == ((int32_t)((int32_t)43))))
{
goto IL_0076;
}
}
{
Il2CppChar L_17 = V_0;
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)45)))))
{
goto IL_0086;
}
}
{
__this->___Zone_9 = 2;
int32_t L_18 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_19 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lz_zz_25;
___start0 = ((int32_t)il2cpp_codegen_add(L_18, L_19));
goto IL_0086;
}
IL_0076:
{
__this->___Zone_9 = 3;
int32_t L_20 = ___start0;
il2cpp_codegen_runtime_class_init_inline(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var);
int32_t L_21 = ((DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246_il2cpp_TypeInfo_var))->___Lz_zz_25;
___start0 = ((int32_t)il2cpp_codegen_add(L_20, L_21));
}
IL_0086:
{
int32_t L_22 = ___start0;
int32_t L_23 = __this->____end_11;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_00f3;
}
}
{
int32_t L_24 = ___start0;
bool L_25;
L_25 = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(__this, L_24, ((int32_t)58), NULL);
if (!L_25)
{
goto IL_00ca;
}
}
{
int32_t L_26 = ___start0;
___start0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
int32_t L_27 = ___start0;
int32_t L_28 = __this->____end_11;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_27, 1))) >= ((int32_t)L_28)))
{
goto IL_00f3;
}
}
{
int32_t L_29 = ___start0;
int32_t* L_30 = (&__this->___ZoneMinute_8);
bool L_31;
L_31 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, L_29, L_30, NULL);
if (!L_31)
{
goto IL_00f3;
}
}
{
int32_t L_32 = __this->___ZoneMinute_8;
if ((((int32_t)L_32) > ((int32_t)((int32_t)99))))
{
goto IL_00f3;
}
}
{
int32_t L_33 = ___start0;
___start0 = ((int32_t)il2cpp_codegen_add(L_33, 2));
goto IL_00f3;
}
IL_00ca:
{
int32_t L_34 = ___start0;
int32_t L_35 = __this->____end_11;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_34, 1))) >= ((int32_t)L_35)))
{
goto IL_00f3;
}
}
{
int32_t L_36 = ___start0;
int32_t* L_37 = (&__this->___ZoneMinute_8);
bool L_38;
L_38 = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(__this, L_36, L_37, NULL);
if (!L_38)
{
goto IL_00f3;
}
}
{
int32_t L_39 = __this->___ZoneMinute_8;
if ((((int32_t)L_39) > ((int32_t)((int32_t)99))))
{
goto IL_00f3;
}
}
{
int32_t L_40 = ___start0;
___start0 = ((int32_t)il2cpp_codegen_add(L_40, 2));
}
IL_00f3:
{
int32_t L_41 = ___start0;
int32_t L_42 = __this->____end_11;
return (bool)((((int32_t)L_41) == ((int32_t)L_42))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool DateTimeParser_ParseZone_m4CEBD1A881CB114B6EB7D8050F44EA265A260642_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_ParseZone_m4CEBD1A881CB114B6EB7D8050F44EA265A260642(_thisAdjusted, ___start0, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse4Digit(System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse4Digit_mC5F981E6CD7CD915FEA858DE77A04AEC04AF4D86 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = __this->____end_11;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 3))) >= ((int32_t)L_1)))
{
goto IL_0079;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->____text_10;
int32_t L_3 = ___start0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, ((int32_t)48)));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->____text_10;
int32_t L_7 = ___start0;
NullCheck(L_6);
int32_t L_8 = ((int32_t)il2cpp_codegen_add(L_7, 1));
uint16_t L_9 = (uint16_t)(L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, ((int32_t)48)));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->____text_10;
int32_t L_11 = ___start0;
NullCheck(L_10);
int32_t L_12 = ((int32_t)il2cpp_codegen_add(L_11, 2));
uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, ((int32_t)48)));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->____text_10;
int32_t L_15 = ___start0;
NullCheck(L_14);
int32_t L_16 = ((int32_t)il2cpp_codegen_add(L_15, 3));
uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, ((int32_t)48)));
int32_t L_18 = V_0;
if ((((int32_t)0) > ((int32_t)L_18)))
{
goto IL_0079;
}
}
{
int32_t L_19 = V_0;
if ((((int32_t)L_19) >= ((int32_t)((int32_t)10))))
{
goto IL_0079;
}
}
{
int32_t L_20 = V_1;
if ((((int32_t)0) > ((int32_t)L_20)))
{
goto IL_0079;
}
}
{
int32_t L_21 = V_1;
if ((((int32_t)L_21) >= ((int32_t)((int32_t)10))))
{
goto IL_0079;
}
}
{
int32_t L_22 = V_2;
if ((((int32_t)0) > ((int32_t)L_22)))
{
goto IL_0079;
}
}
{
int32_t L_23 = V_2;
if ((((int32_t)L_23) >= ((int32_t)((int32_t)10))))
{
goto IL_0079;
}
}
{
int32_t L_24 = V_3;
if ((((int32_t)0) > ((int32_t)L_24)))
{
goto IL_0079;
}
}
{
int32_t L_25 = V_3;
if ((((int32_t)L_25) >= ((int32_t)((int32_t)10))))
{
goto IL_0079;
}
}
{
int32_t* L_26 = ___num1;
int32_t L_27 = V_0;
int32_t L_28 = V_1;
int32_t L_29 = V_2;
int32_t L_30 = V_3;
*((int32_t*)L_26) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_27, ((int32_t)10))), L_28)), ((int32_t)10))), L_29)), ((int32_t)10))), L_30));
return (bool)1;
}
IL_0079:
{
int32_t* L_31 = ___num1;
*((int32_t*)L_31) = (int32_t)0;
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_Parse4Digit_mC5F981E6CD7CD915FEA858DE77A04AEC04AF4D86_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_Parse4Digit_mC5F981E6CD7CD915FEA858DE77A04AEC04AF4D86(_thisAdjusted, ___start0, ___num1, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse2Digit(System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___start0;
int32_t L_1 = __this->____end_11;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 1))) >= ((int32_t)L_1)))
{
goto IL_0041;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->____text_10;
int32_t L_3 = ___start0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, ((int32_t)48)));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->____text_10;
int32_t L_7 = ___start0;
NullCheck(L_6);
int32_t L_8 = ((int32_t)il2cpp_codegen_add(L_7, 1));
uint16_t L_9 = (uint16_t)(L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, ((int32_t)48)));
int32_t L_10 = V_0;
if ((((int32_t)0) > ((int32_t)L_10)))
{
goto IL_0041;
}
}
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) >= ((int32_t)((int32_t)10))))
{
goto IL_0041;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)0) > ((int32_t)L_12)))
{
goto IL_0041;
}
}
{
int32_t L_13 = V_1;
if ((((int32_t)L_13) >= ((int32_t)((int32_t)10))))
{
goto IL_0041;
}
}
{
int32_t* L_14 = ___num1;
int32_t L_15 = V_0;
int32_t L_16 = V_1;
*((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_15, ((int32_t)10))), L_16));
return (bool)1;
}
IL_0041:
{
int32_t* L_17 = ___num1;
*((int32_t*)L_17) = (int32_t)0;
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_Parse2Digit_mF1031EB57E34571DA339FB7B1AE09268293F2633(_thisAdjusted, ___start0, ___num1, method);
return _returnValue;
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseChar(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___start0;
int32_t L_1 = __this->____end_11;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0015;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->____text_10;
int32_t L_3 = ___start0;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
Il2CppChar L_6 = ___ch1;
return (bool)((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0);
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F_AdjustorThunk (RuntimeObject* __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method)
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246*>(__this + _offset);
bool _returnValue;
_returnValue = DateTimeParser_ParseChar_m69C950529AC35A4734A1DCA09ED004ADDDE9452F(_thisAdjusted, ___start0, ___ch1, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils__cctor_m7CBF91287CFE1F78A5DB4B979C321B1CEBF6B760 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____DD3AEFEADB1CD615F3017763F1568179FEE640B0_17_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____E92B39D8233061927D9ACDE54665E68E7535635A_19_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___InitialJavaScriptDateTicks_0 = ((int64_t)621355968000000000LL);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____E92B39D8233061927D9ACDE54665E68E7535635A_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL);
((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth365_7 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth365_7), (void*)L_1);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = L_3;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____DD3AEFEADB1CD615F3017763F1568179FEE640B0_17_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_4, L_5, NULL);
((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth366_8 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth366_8), (void*)L_4);
return;
}
}
// System.TimeSpan Newtonsoft.Json.Utilities.DateTimeUtils::GetUtcOffset(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0;
L_0 = TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___d0;
NullCheck(L_0);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2;
L_2 = TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0(L_0, L_1, NULL);
return L_2;
}
}
// System.Xml.XmlDateTimeSerializationMode Newtonsoft.Json.Utilities.DateTimeUtils::ToSerializationMode(System.DateTimeKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_ToSerializationMode_m15A9BD3C2566B79A88A915187DE6BB7CE0FAEDA5 (int32_t ___kind0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___kind0;
switch (L_0)
{
case 0:
{
goto IL_0016;
}
case 1:
{
goto IL_0018;
}
case 2:
{
goto IL_0014;
}
}
}
{
goto IL_001a;
}
IL_0014:
{
return (int32_t)(0);
}
IL_0016:
{
return (int32_t)(2);
}
IL_0018:
{
return (int32_t)(1);
}
IL_001a:
{
int32_t L_1 = ___kind0;
int32_t L_2 = L_1;
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeKind_t3AD6DA06BEF8955A740777163FFB481C19089BBC_il2cpp_TypeInfo_var)), &L_2);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4;
L_4 = MiscellaneousUtils_CreateArgumentOutOfRangeException_m79874B152C4F585038C18860400FB99D5809C61A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral414EEEFF5F961B9740DE01D5EC1AC2F0F745095E)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral513340C13770DA3BCCC1E8CBDCD957EAAB92BD90)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeUtils_ToSerializationMode_m15A9BD3C2566B79A88A915187DE6BB7CE0FAEDA5_RuntimeMethod_var)));
}
}
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::EnsureDateTime(System.DateTime,Newtonsoft.Json.DateTimeZoneHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, int32_t ___timeZone1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___timeZone1;
switch (L_0)
{
case 0:
{
goto IL_0018;
}
case 1:
{
goto IL_0022;
}
case 2:
{
goto IL_002c;
}
case 3:
{
goto IL_0048;
}
}
}
{
goto IL_003d;
}
IL_0018:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___value0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
L_2 = DateTimeUtils_SwitchToLocalTime_m190062F7FACC2955702CC88018916D6C03209FCA(L_1, NULL);
___value0 = L_2;
goto IL_0048;
}
IL_0022:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___value0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
L_4 = DateTimeUtils_SwitchToUtcTime_m29D75B8F26FEE0075979761574DDBC2F21F8A821(L_3, NULL);
___value0 = L_4;
goto IL_0048;
}
IL_002c:
{
int64_t L_5;
L_5 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___value0), NULL);
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&___value0), L_5, 0, NULL);
goto IL_0048;
}
IL_003d:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31A818CB76EAE1A4A09297F7BFAD5D4AE41446DD)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837_RuntimeMethod_var)));
}
IL_0048:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ___value0;
return L_7;
}
}
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToLocalTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_SwitchToLocalTime_m190062F7FACC2955702CC88018916D6C03209FCA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___value0), NULL);
V_0 = L_0;
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_001c;
}
case 1:
{
goto IL_002a;
}
case 2:
{
goto IL_0032;
}
}
}
{
goto IL_0034;
}
IL_001c:
{
int64_t L_2;
L_2 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___value0), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3;
memset((&L_3), 0, sizeof(L_3));
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_3), L_2, 2, /*hidden argument*/NULL);
return L_3;
}
IL_002a:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
L_4 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&___value0), NULL);
return L_4;
}
IL_0032:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___value0;
return L_5;
}
IL_0034:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___value0;
return L_6;
}
}
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToUtcTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_SwitchToUtcTime_m29D75B8F26FEE0075979761574DDBC2F21F8A821 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___value0), NULL);
V_0 = L_0;
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_001c;
}
case 1:
{
goto IL_002a;
}
case 2:
{
goto IL_002c;
}
}
}
{
goto IL_0034;
}
IL_001c:
{
int64_t L_2;
L_2 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___value0), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3;
memset((&L_3), 0, sizeof(L_3));
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_3), L_2, 1, /*hidden argument*/NULL);
return L_3;
}
IL_002a:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___value0;
return L_4;
}
IL_002c:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
L_5 = DateTime_ToUniversalTime_m52CA1EAD0BE0A357BCACC38747ECA4A8810155A9((&___value0), NULL);
return L_5;
}
IL_0034:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___value0;
return L_6;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ToUniversalTicks_m056F64EA26410C886596EADBD1CC2AD59A6B9D0C (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
{
goto IL_0012;
}
}
{
int64_t L_1;
L_1 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL);
return L_1;
}
IL_0012:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = ___dateTime0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___dateTime0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4;
L_4 = DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E(L_3, NULL);
int64_t L_5;
L_5 = DateTimeUtils_ToUniversalTicks_mAF9B56F55FBBE8D2416CD3D65E41FC2D4C3A9A0E(L_2, L_4, NULL);
return L_5;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ToUniversalTicks_mAF9B56F55FBBE8D2416CD3D65E41FC2D4C3A9A0E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0;
L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0024;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___dateTime0;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33;
bool L_3;
L_3 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_1, L_2, NULL);
if (L_3)
{
goto IL_0024;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___dateTime0;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
bool L_6;
L_6 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_4, L_5, NULL);
if (!L_6)
{
goto IL_002c;
}
}
IL_0024:
{
int64_t L_7;
L_7 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL);
return L_7;
}
IL_002c:
{
int64_t L_8;
L_8 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL);
int64_t L_9;
L_9 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___offset1), NULL);
V_0 = ((int64_t)il2cpp_codegen_subtract(L_8, L_9));
int64_t L_10 = V_0;
if ((((int64_t)L_10) <= ((int64_t)((int64_t)3155378975999999999LL))))
{
goto IL_0052;
}
}
{
return ((int64_t)3155378975999999999LL);
}
IL_0052:
{
int64_t L_11 = V_0;
if ((((int64_t)L_11) >= ((int64_t)((int64_t)0))))
{
goto IL_005a;
}
}
{
return ((int64_t)0);
}
IL_005a:
{
int64_t L_12 = V_0;
return L_12;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m1A78A1FC9604E80121288A6985CEF352038067C2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___offset1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_2;
L_2 = DateTimeUtils_ToUniversalTicks_mAF9B56F55FBBE8D2416CD3D65E41FC2D4C3A9A0E(L_0, L_1, NULL);
int64_t L_3;
L_3 = DateTimeUtils_UniversialTicksToJavaScriptTicks_mA15CDCA6BE0EDC76C741CD0389326DBEA6949796(L_2, NULL);
return L_3;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ConvertDateTimeToJavaScriptTicks_mA24B7EE9CF3C9F3F1DA10687A637B39EAA6B4277 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m8B6566AC54130989488A438E1145011B92E1F0D3(L_0, (bool)1, NULL);
return L_1;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m8B6566AC54130989488A438E1145011B92E1F0D3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, bool ___convertToUtc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t G_B3_0 = 0;
{
bool L_0 = ___convertToUtc1;
if (L_0)
{
goto IL_000c;
}
}
{
int64_t L_1;
L_1 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL);
G_B3_0 = L_1;
goto IL_0012;
}
IL_000c:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = ___dateTime0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_3;
L_3 = DateTimeUtils_ToUniversalTicks_m056F64EA26410C886596EADBD1CC2AD59A6B9D0C(L_2, NULL);
G_B3_0 = L_3;
}
IL_0012:
{
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_4;
L_4 = DateTimeUtils_UniversialTicksToJavaScriptTicks_mA15CDCA6BE0EDC76C741CD0389326DBEA6949796(G_B3_0, NULL);
return L_4;
}
}
// System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::UniversialTicksToJavaScriptTicks(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtils_UniversialTicksToJavaScriptTicks_mA15CDCA6BE0EDC76C741CD0389326DBEA6949796 (int64_t ___universialTicks0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___universialTicks0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_1 = ((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___InitialJavaScriptDateTicks_0;
return ((int64_t)(((int64_t)il2cpp_codegen_subtract(L_0, L_1))/((int64_t)((int32_t)10000))));
}
}
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::ConvertJavaScriptTicksToDateTime(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_ConvertJavaScriptTicksToDateTime_m06106AA819E24221772E74B545C218B6B4270E60 (int64_t ___javaScriptTicks0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___javaScriptTicks0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_1 = ((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___InitialJavaScriptDateTicks_0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
memset((&L_2), 0, sizeof(L_2));
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_2), ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply(L_0, ((int64_t)((int32_t)10000)))), L_1)), 1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeIso(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeIso_m1297115F8CC0DDFCAE526C838783117C3E2D6903 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int32_t ___dateTimeZoneHandling1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 V_0;
memset((&V_0), 0, sizeof(V_0));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
memset((&V_1), 0, sizeof(V_1));
int64_t V_2 = 0;
int32_t V_3 = 0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4;
memset((&V_4), 0, sizeof(V_4));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_5;
memset((&V_5), 0, sizeof(V_5));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_6;
memset((&V_6), 0, sizeof(V_6));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_7;
memset((&V_7), 0, sizeof(V_7));
{
il2cpp_codegen_initobj((&V_0), sizeof(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0;
L_0 = StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline((&___text0), NULL);
int32_t L_1;
L_1 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___text0), NULL);
int32_t L_2;
L_2 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___text0), NULL);
bool L_3;
L_3 = DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091((&V_0), L_0, L_1, L_2, NULL);
if (L_3)
{
goto IL_002f;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_4 = ___dt2;
il2cpp_codegen_initobj(L_4, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
return (bool)0;
}
IL_002f:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTimeUtils_CreateDateTime_m4231C3E5B128BDA26A6E2D792B4C16280DE9DB44(L_5, NULL);
V_1 = L_6;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_7 = V_0;
int32_t L_8 = L_7.___Zone_9;
V_3 = L_8;
int32_t L_9 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, 1)))
{
case 0:
{
goto IL_0056;
}
case 1:
{
goto IL_006a;
}
case 2:
{
goto IL_00f5;
}
}
}
{
goto IL_0178;
}
IL_0056:
{
int64_t L_10;
L_10 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_1), NULL);
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&V_1), L_10, 1, NULL);
goto IL_0178;
}
IL_006a:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_11 = V_0;
int32_t L_12 = L_11.___ZoneHour_7;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_13 = V_0;
int32_t L_14 = L_13.___ZoneMinute_8;
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_4), L_12, L_14, 0, NULL);
int64_t L_15;
L_15 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_1), NULL);
int64_t L_16;
L_16 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_4), NULL);
V_2 = ((int64_t)il2cpp_codegen_add(L_15, L_16));
int64_t L_17 = V_2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33;
V_5 = L_18;
int64_t L_19;
L_19 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
if ((((int64_t)L_17) > ((int64_t)L_19)))
{
goto IL_00b5;
}
}
{
int64_t L_20 = V_2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21;
memset((&L_21), 0, sizeof(L_21));
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_21), L_20, 1, /*hidden argument*/NULL);
V_5 = L_21;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22;
L_22 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_5), NULL);
V_1 = L_22;
goto IL_0178;
}
IL_00b5:
{
int64_t L_23 = V_2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_25;
L_25 = DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E(L_24, NULL);
V_6 = L_25;
int64_t L_26;
L_26 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_6), NULL);
V_2 = ((int64_t)il2cpp_codegen_add(L_23, L_26));
int64_t L_27 = V_2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33;
V_5 = L_28;
int64_t L_29;
L_29 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
if ((((int64_t)L_27) <= ((int64_t)L_29)))
{
goto IL_00e7;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33;
V_5 = L_30;
int64_t L_31;
L_31 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
V_2 = L_31;
}
IL_00e7:
{
int64_t L_32 = V_2;
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&V_1), L_32, 2, NULL);
goto IL_0178;
}
IL_00f5:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_33 = V_0;
int32_t L_34 = L_33.___ZoneHour_7;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_35 = V_0;
int32_t L_36 = L_35.___ZoneMinute_8;
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_7), L_34, L_36, 0, NULL);
int64_t L_37;
L_37 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_1), NULL);
int64_t L_38;
L_38 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_7), NULL);
V_2 = ((int64_t)il2cpp_codegen_subtract(L_37, L_38));
int64_t L_39 = V_2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
V_5 = L_40;
int64_t L_41;
L_41 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
if ((((int64_t)L_39) < ((int64_t)L_41)))
{
goto IL_013d;
}
}
{
int64_t L_42 = V_2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43;
memset((&L_43), 0, sizeof(L_43));
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_43), L_42, 1, /*hidden argument*/NULL);
V_5 = L_43;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_44;
L_44 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_5), NULL);
V_1 = L_44;
goto IL_0178;
}
IL_013d:
{
int64_t L_45 = V_2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47;
L_47 = DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E(L_46, NULL);
V_6 = L_47;
int64_t L_48;
L_48 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_6), NULL);
V_2 = ((int64_t)il2cpp_codegen_add(L_45, L_48));
int64_t L_49 = V_2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_50 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
V_5 = L_50;
int64_t L_51;
L_51 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
if ((((int64_t)L_49) >= ((int64_t)L_51)))
{
goto IL_016f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
V_5 = L_52;
int64_t L_53;
L_53 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_5), NULL);
V_2 = L_53;
}
IL_016f:
{
int64_t L_54 = V_2;
DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&V_1), L_54, 2, NULL);
}
IL_0178:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_55 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_56 = V_1;
int32_t L_57 = ___dateTimeZoneHandling1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_58;
L_58 = DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837(L_56, L_57, NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_55 = L_58;
return (bool)1;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetIso(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetIso_mBB92BE406C120E1766360B5CA9677255B02579F7 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 V_0;
memset((&V_0), 0, sizeof(V_0));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
memset((&V_1), 0, sizeof(V_1));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2;
memset((&V_2), 0, sizeof(V_2));
int64_t V_3 = 0;
int32_t V_4 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0;
L_0 = StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline((&___text0), NULL);
int32_t L_1;
L_1 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___text0), NULL);
int32_t L_2;
L_2 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___text0), NULL);
bool L_3;
L_3 = DateTimeParser_Parse_m23985D38D15F4AC3CF47CFF85341AE406A302091((&V_0), L_0, L_1, L_2, NULL);
if (L_3)
{
goto IL_002f;
}
}
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_4 = ___dt1;
il2cpp_codegen_initobj(L_4, sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
return (bool)0;
}
IL_002f:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTimeUtils_CreateDateTime_m4231C3E5B128BDA26A6E2D792B4C16280DE9DB44(L_5, NULL);
V_1 = L_6;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_7 = V_0;
int32_t L_8 = L_7.___Zone_9;
V_4 = L_8;
int32_t L_9 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, 1)))
{
case 0:
{
goto IL_0055;
}
case 1:
{
goto IL_0060;
}
case 2:
{
goto IL_0078;
}
}
}
{
goto IL_008e;
}
IL_0055:
{
TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&V_2), ((int64_t)0), NULL);
goto IL_009a;
}
IL_0060:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_10 = V_0;
int32_t L_11 = L_10.___ZoneHour_7;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_12 = V_0;
int32_t L_13 = L_12.___ZoneMinute_8;
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_2), ((-L_11)), ((-L_13)), 0, NULL);
goto IL_009a;
}
IL_0078:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_14 = V_0;
int32_t L_15 = L_14.___ZoneHour_7;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_16 = V_0;
int32_t L_17 = L_16.___ZoneMinute_8;
TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_2), L_15, L_17, 0, NULL);
goto IL_009a;
}
IL_008e:
{
il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var);
TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_18;
L_18 = TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = V_1;
NullCheck(L_18);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20;
L_20 = TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0(L_18, L_19, NULL);
V_2 = L_20;
}
IL_009a:
{
int64_t L_21;
L_21 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_1), NULL);
int64_t L_22;
L_22 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_2), NULL);
V_3 = ((int64_t)il2cpp_codegen_subtract(L_21, L_22));
int64_t L_23 = V_3;
if ((((int64_t)L_23) < ((int64_t)((int64_t)0))))
{
goto IL_00bb;
}
}
{
int64_t L_24 = V_3;
if ((((int64_t)L_24) <= ((int64_t)((int64_t)3155378975999999999LL))))
{
goto IL_00c4;
}
}
IL_00bb:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_25 = ___dt1;
il2cpp_codegen_initobj(L_25, sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
return (bool)0;
}
IL_00c4:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_26 = ___dt1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27 = V_1;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_28 = V_2;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_29;
memset((&L_29), 0, sizeof(L_29));
DateTimeOffset__ctor_m6E6938BD1F5EEE0F96247339B75FB7CEF3665FDC((&L_29), L_27, L_28, /*hidden argument*/NULL);
*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)L_26 = L_29;
return (bool)1;
}
}
// System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::CreateDateTime(Newtonsoft.Json.Utilities.DateTimeParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeUtils_CreateDateTime_m4231C3E5B128BDA26A6E2D792B4C16280DE9DB44 (DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 ___dateTimeParser0, const RuntimeMethod* method)
{
bool V_0 = false;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
memset((&V_1), 0, sizeof(V_1));
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_0 = ___dateTimeParser0;
int32_t L_1 = L_0.___Hour_3;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)24)))))
{
goto IL_0016;
}
}
{
V_0 = (bool)1;
(&___dateTimeParser0)->___Hour_3 = 0;
goto IL_0018;
}
IL_0016:
{
V_0 = (bool)0;
}
IL_0018:
{
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_2 = ___dateTimeParser0;
int32_t L_3 = L_2.___Year_0;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_4 = ___dateTimeParser0;
int32_t L_5 = L_4.___Month_1;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_6 = ___dateTimeParser0;
int32_t L_7 = L_6.___Day_2;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_8 = ___dateTimeParser0;
int32_t L_9 = L_8.___Hour_3;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_10 = ___dateTimeParser0;
int32_t L_11 = L_10.___Minute_4;
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_12 = ___dateTimeParser0;
int32_t L_13 = L_12.___Second_5;
DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_1), L_3, L_5, L_7, L_9, L_11, L_13, NULL);
DateTimeParser_tBDDA41C4734ACD3EAF17233DBFC7B26E0AAFE246 L_14 = ___dateTimeParser0;
int32_t L_15 = L_14.___Fraction_6;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16;
L_16 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_1), ((int64_t)L_15), NULL);
V_1 = L_16;
bool L_17 = V_0;
if (!L_17)
{
goto IL_0066;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18;
L_18 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_1), (1.0), NULL);
V_1 = L_18;
}
IL_0066:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = V_1;
return L_19;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTime_mEC59F5A8892355DECAB855A697E51662EC377A06 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___s0, int32_t ___dateTimeZoneHandling1, String_t* ___dateFormatString2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00b7;
}
}
{
int32_t L_1;
L_1 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___s0), NULL);
V_0 = L_1;
int32_t L_2 = V_0;
Il2CppChar L_3;
L_3 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), L_2, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)47)))))
{
goto IL_0053;
}
}
{
int32_t L_4;
L_4 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_4) < ((int32_t)((int32_t)9))))
{
goto IL_0094;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_5 = ___s0;
bool L_6;
L_6 = StringReferenceExtensions_StartsWith_mDD8F61D9394049D6AF09C454C0D06C08C857ADE2(L_5, _stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE, NULL);
if (!L_6)
{
goto IL_0094;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_7 = ___s0;
bool L_8;
L_8 = StringReferenceExtensions_EndsWith_mF4622B786A7EADB04011C8B8A37A60F915DC1DA4(L_7, _stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A, NULL);
if (!L_8)
{
goto IL_0094;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_9 = ___s0;
int32_t L_10 = ___dateTimeZoneHandling1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_11 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_12;
L_12 = DateTimeUtils_TryParseDateTimeMicrosoft_mEE89A737A22D755CDD42EC91192143824FDA0839(L_9, L_10, L_11, NULL);
if (!L_12)
{
goto IL_0094;
}
}
{
return (bool)1;
}
IL_0053:
{
int32_t L_13;
L_13 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_13) < ((int32_t)((int32_t)19))))
{
goto IL_0094;
}
}
{
int32_t L_14;
L_14 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_14) > ((int32_t)((int32_t)40))))
{
goto IL_0094;
}
}
{
int32_t L_15 = V_0;
Il2CppChar L_16;
L_16 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), L_15, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_17;
L_17 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_16, NULL);
if (!L_17)
{
goto IL_0094;
}
}
{
int32_t L_18 = V_0;
Il2CppChar L_19;
L_19 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), ((int32_t)il2cpp_codegen_add(L_18, ((int32_t)10))), NULL);
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)84)))))
{
goto IL_0094;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_20 = ___s0;
int32_t L_21 = ___dateTimeZoneHandling1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_22 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_23;
L_23 = DateTimeUtils_TryParseDateTimeIso_m1297115F8CC0DDFCAE526C838783117C3E2D6903(L_20, L_21, L_22, NULL);
if (!L_23)
{
goto IL_0094;
}
}
{
return (bool)1;
}
IL_0094:
{
String_t* L_24 = ___dateFormatString2;
bool L_25;
L_25 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_24, NULL);
if (L_25)
{
goto IL_00b7;
}
}
{
String_t* L_26;
L_26 = StringReference_ToString_m14E995A62CEC0B0C1313E51D01878B015EB38EF6((&___s0), NULL);
int32_t L_27 = ___dateTimeZoneHandling1;
String_t* L_28 = ___dateFormatString2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_29 = ___culture3;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_30 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_31;
L_31 = DateTimeUtils_TryParseDateTimeExact_m738712576F6A272BF0D26F9E695743104438AB10(L_26, L_27, L_28, L_29, L_30, NULL);
if (!L_31)
{
goto IL_00b7;
}
}
{
return (bool)1;
}
IL_00b7:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_32 = ___dt4;
il2cpp_codegen_initobj(L_32, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(System.String,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTime_m191055AD2AD3975DE504533AF6F0F07486594F53 (String_t* ___s0, int32_t ___dateTimeZoneHandling1, String_t* ___dateFormatString2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA39757A73A79D79EBCD4B77A227F5DE53C1068B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_00d5;
}
}
{
String_t* L_2 = ___s0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)47)))))
{
goto IL_0061;
}
}
{
String_t* L_4 = ___s0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if ((((int32_t)L_5) < ((int32_t)((int32_t)9))))
{
goto IL_00be;
}
}
{
String_t* L_6 = ___s0;
NullCheck(L_6);
bool L_7;
L_7 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_6, _stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE, 4, NULL);
if (!L_7)
{
goto IL_00be;
}
}
{
String_t* L_8 = ___s0;
NullCheck(L_8);
bool L_9;
L_9 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_8, _stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A, 4, NULL);
if (!L_9)
{
goto IL_00be;
}
}
{
String_t* L_10 = ___s0;
NullCheck(L_10);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11;
L_11 = String_ToCharArray_m0699A92AA3E744229EF29CB9D943C47DF4FE5B46(L_10, NULL);
String_t* L_12 = ___s0;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_14;
memset((&L_14), 0, sizeof(L_14));
StringReference__ctor_mCAEF5A34A8FD029BA4399BDEAD6B9AB67515A5B2((&L_14), L_11, 0, L_13, /*hidden argument*/NULL);
int32_t L_15 = ___dateTimeZoneHandling1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_17;
L_17 = DateTimeUtils_TryParseDateTimeMicrosoft_mEE89A737A22D755CDD42EC91192143824FDA0839(L_14, L_15, L_16, NULL);
if (!L_17)
{
goto IL_00be;
}
}
{
return (bool)1;
}
IL_0061:
{
String_t* L_18 = ___s0;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
if ((((int32_t)L_19) < ((int32_t)((int32_t)19))))
{
goto IL_00be;
}
}
{
String_t* L_20 = ___s0;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if ((((int32_t)L_21) > ((int32_t)((int32_t)40))))
{
goto IL_00be;
}
}
{
String_t* L_22 = ___s0;
NullCheck(L_22);
Il2CppChar L_23;
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, 0, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_23, NULL);
if (!L_24)
{
goto IL_00be;
}
}
{
String_t* L_25 = ___s0;
NullCheck(L_25);
Il2CppChar L_26;
L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_25, ((int32_t)10), NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)84)))))
{
goto IL_00be;
}
}
{
String_t* L_27 = ___s0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_28;
L_28 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_29 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
bool L_30;
L_30 = DateTime_TryParseExact_m524A3BFC07243B2BE4BF406CCE59595878F78CCE(L_27, _stringLiteralA39757A73A79D79EBCD4B77A227F5DE53C1068B7, L_28, ((int32_t)128), L_29, NULL);
if (!L_30)
{
goto IL_00be;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_31 = ___dt4;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_32 = ___dt4;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_32);
int32_t L_34 = ___dateTimeZoneHandling1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35;
L_35 = DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837(L_33, L_34, NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_31 = L_35;
return (bool)1;
}
IL_00be:
{
String_t* L_36 = ___dateFormatString2;
bool L_37;
L_37 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_36, NULL);
if (L_37)
{
goto IL_00d5;
}
}
{
String_t* L_38 = ___s0;
int32_t L_39 = ___dateTimeZoneHandling1;
String_t* L_40 = ___dateFormatString2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_41 = ___culture3;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_42 = ___dt4;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_43;
L_43 = DateTimeUtils_TryParseDateTimeExact_m738712576F6A272BF0D26F9E695743104438AB10(L_38, L_39, L_40, L_41, L_42, NULL);
if (!L_43)
{
goto IL_00d5;
}
}
{
return (bool)1;
}
IL_00d5:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_44 = ___dt4;
il2cpp_codegen_initobj(L_44, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffset(Newtonsoft.Json.Utilities.StringReference,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffset_mEA4AC9469E7956D1EDE271E677AAC39C4A307EA4 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___s0, String_t* ___dateFormatString1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00b1;
}
}
{
int32_t L_1;
L_1 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___s0), NULL);
V_0 = L_1;
int32_t L_2 = V_0;
Il2CppChar L_3;
L_3 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), L_2, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)47)))))
{
goto IL_0051;
}
}
{
int32_t L_4;
L_4 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_4) < ((int32_t)((int32_t)9))))
{
goto IL_0090;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_5 = ___s0;
bool L_6;
L_6 = StringReferenceExtensions_StartsWith_mDD8F61D9394049D6AF09C454C0D06C08C857ADE2(L_5, _stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE, NULL);
if (!L_6)
{
goto IL_0090;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_7 = ___s0;
bool L_8;
L_8 = StringReferenceExtensions_EndsWith_mF4622B786A7EADB04011C8B8A37A60F915DC1DA4(L_7, _stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A, NULL);
if (!L_8)
{
goto IL_0090;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_9 = ___s0;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_10 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_11;
L_11 = DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC14977B7915B5B1EEE1B3D95EE1A4DE4634084A4(L_9, L_10, NULL);
if (!L_11)
{
goto IL_0090;
}
}
{
return (bool)1;
}
IL_0051:
{
int32_t L_12;
L_12 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_12) < ((int32_t)((int32_t)19))))
{
goto IL_0090;
}
}
{
int32_t L_13;
L_13 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___s0), NULL);
if ((((int32_t)L_13) > ((int32_t)((int32_t)40))))
{
goto IL_0090;
}
}
{
int32_t L_14 = V_0;
Il2CppChar L_15;
L_15 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), L_14, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_15, NULL);
if (!L_16)
{
goto IL_0090;
}
}
{
int32_t L_17 = V_0;
Il2CppChar L_18;
L_18 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___s0), ((int32_t)il2cpp_codegen_add(L_17, ((int32_t)10))), NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)84)))))
{
goto IL_0090;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_19 = ___s0;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_20 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_21;
L_21 = DateTimeUtils_TryParseDateTimeOffsetIso_mBB92BE406C120E1766360B5CA9677255B02579F7(L_19, L_20, NULL);
if (!L_21)
{
goto IL_0090;
}
}
{
return (bool)1;
}
IL_0090:
{
String_t* L_22 = ___dateFormatString1;
bool L_23;
L_23 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_22, NULL);
if (L_23)
{
goto IL_00b1;
}
}
{
String_t* L_24;
L_24 = StringReference_ToString_m14E995A62CEC0B0C1313E51D01878B015EB38EF6((&___s0), NULL);
String_t* L_25 = ___dateFormatString1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_26 = ___culture2;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_27 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_28;
L_28 = DateTimeUtils_TryParseDateTimeOffsetExact_m7D043249C3C5C47267FC1B188B2A3A868D3E7290(L_24, L_25, L_26, L_27, NULL);
if (!L_28)
{
goto IL_00b1;
}
}
{
return (bool)1;
}
IL_00b1:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_29 = ___dt3;
il2cpp_codegen_initobj(L_29, sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffset(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffset_mEDD80F223DF51052E84B616DC6A922FAC3E9AF8E (String_t* ___s0, String_t* ___dateFormatString1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA39757A73A79D79EBCD4B77A227F5DE53C1068B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if ((((int32_t)L_1) <= ((int32_t)0)))
{
goto IL_00d6;
}
}
{
String_t* L_2 = ___s0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)47)))))
{
goto IL_005f;
}
}
{
String_t* L_4 = ___s0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if ((((int32_t)L_5) < ((int32_t)((int32_t)9))))
{
goto IL_00c1;
}
}
{
String_t* L_6 = ___s0;
NullCheck(L_6);
bool L_7;
L_7 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_6, _stringLiteralE29B72726D571803459FE2DDAAE5ED51F73A4FFE, 4, NULL);
if (!L_7)
{
goto IL_00c1;
}
}
{
String_t* L_8 = ___s0;
NullCheck(L_8);
bool L_9;
L_9 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_8, _stringLiteral6E3D2163CA71B9485E650E0EEB373DB76E0B967A, 4, NULL);
if (!L_9)
{
goto IL_00c1;
}
}
{
String_t* L_10 = ___s0;
NullCheck(L_10);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11;
L_11 = String_ToCharArray_m0699A92AA3E744229EF29CB9D943C47DF4FE5B46(L_10, NULL);
String_t* L_12 = ___s0;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_14;
memset((&L_14), 0, sizeof(L_14));
StringReference__ctor_mCAEF5A34A8FD029BA4399BDEAD6B9AB67515A5B2((&L_14), L_11, 0, L_13, /*hidden argument*/NULL);
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_15 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_16;
L_16 = DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC14977B7915B5B1EEE1B3D95EE1A4DE4634084A4(L_14, L_15, NULL);
if (!L_16)
{
goto IL_00c1;
}
}
{
return (bool)1;
}
IL_005f:
{
String_t* L_17 = ___s0;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
if ((((int32_t)L_18) < ((int32_t)((int32_t)19))))
{
goto IL_00c1;
}
}
{
String_t* L_19 = ___s0;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
if ((((int32_t)L_20) > ((int32_t)((int32_t)40))))
{
goto IL_00c1;
}
}
{
String_t* L_21 = ___s0;
NullCheck(L_21);
Il2CppChar L_22;
L_22 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_21, 0, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_23;
L_23 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_22, NULL);
if (!L_23)
{
goto IL_00c1;
}
}
{
String_t* L_24 = ___s0;
NullCheck(L_24);
Il2CppChar L_25;
L_25 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, ((int32_t)10), NULL);
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)84)))))
{
goto IL_00c1;
}
}
{
String_t* L_26 = ___s0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_27;
L_27 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_28 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
bool L_29;
L_29 = DateTimeOffset_TryParseExact_m7ED35991FAE98C6A0BD626D627AA043B80A340C4(L_26, _stringLiteralA39757A73A79D79EBCD4B77A227F5DE53C1068B7, L_27, ((int32_t)128), L_28, NULL);
if (!L_29)
{
goto IL_00c1;
}
}
{
String_t* L_30 = ___s0;
NullCheck(L_30);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31;
L_31 = String_ToCharArray_m0699A92AA3E744229EF29CB9D943C47DF4FE5B46(L_30, NULL);
String_t* L_32 = ___s0;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_34;
memset((&L_34), 0, sizeof(L_34));
StringReference__ctor_mCAEF5A34A8FD029BA4399BDEAD6B9AB67515A5B2((&L_34), L_31, 0, L_33, /*hidden argument*/NULL);
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_35 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_36;
L_36 = DateTimeUtils_TryParseDateTimeOffsetIso_mBB92BE406C120E1766360B5CA9677255B02579F7(L_34, L_35, NULL);
if (!L_36)
{
goto IL_00c1;
}
}
{
return (bool)1;
}
IL_00c1:
{
String_t* L_37 = ___dateFormatString1;
bool L_38;
L_38 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_37, NULL);
if (L_38)
{
goto IL_00d6;
}
}
{
String_t* L_39 = ___s0;
String_t* L_40 = ___dateFormatString1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_41 = ___culture2;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_42 = ___dt3;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_43;
L_43 = DateTimeUtils_TryParseDateTimeOffsetExact_m7D043249C3C5C47267FC1B188B2A3A868D3E7290(L_39, L_40, L_41, L_42, NULL);
if (!L_43)
{
goto IL_00d6;
}
}
{
return (bool)1;
}
IL_00d6:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_44 = ___dt3;
il2cpp_codegen_initobj(L_44, sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseMicrosoftDate(Newtonsoft.Json.Utilities.StringReference,System.Int64&,System.TimeSpan&,System.DateTimeKind&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseMicrosoftDate_m45B19AD0487A8CD8B3BF73002442C8143F404120 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int64_t* ___ticks1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___offset2, int32_t* ___kind3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t* L_0 = ___kind3;
*((int32_t*)L_0) = (int32_t)1;
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_1 = ___text0;
int32_t L_2;
L_2 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___text0), NULL);
int32_t L_3;
L_3 = StringReferenceExtensions_IndexOf_mA49ED79D062900147DE734CC6631F8397E7EE89C(L_1, ((int32_t)43), 7, ((int32_t)il2cpp_codegen_subtract(L_2, 8)), NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_002d;
}
}
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_5 = ___text0;
int32_t L_6;
L_6 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___text0), NULL);
int32_t L_7;
L_7 = StringReferenceExtensions_IndexOf_mA49ED79D062900147DE734CC6631F8397E7EE89C(L_5, ((int32_t)45), 7, ((int32_t)il2cpp_codegen_subtract(L_6, 8)), NULL);
V_0 = L_7;
}
IL_002d:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)(-1))))
{
goto IL_004c;
}
}
{
int32_t* L_9 = ___kind3;
*((int32_t*)L_9) = (int32_t)2;
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_10 = ___text0;
int32_t L_11 = V_0;
int32_t L_12;
L_12 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___text0), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_13 = ___offset2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_14;
L_14 = DateTimeUtils_TryReadOffset_mB619571E3240ADC0685D53C4D8166350C13B7AA8(L_10, ((int32_t)il2cpp_codegen_add(L_11, L_12)), L_13, NULL);
if (L_14)
{
goto IL_0061;
}
}
{
int64_t* L_15 = ___ticks1;
*((int64_t*)L_15) = (int64_t)((int64_t)0);
return (bool)0;
}
IL_004c:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_16 = ___offset2;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19;
*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_16 = L_17;
int32_t L_18;
L_18 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___text0), NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_18, 2));
}
IL_0061:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19;
L_19 = StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline((&___text0), NULL);
int32_t L_20;
L_20 = StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline((&___text0), NULL);
int32_t L_21 = V_0;
int64_t* L_22 = ___ticks1;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_23;
L_23 = ConvertUtils_Int64TryParse_m1EA37290CAB28B9BDD22888990F8E0E9850E8438(L_19, ((int32_t)il2cpp_codegen_add(6, L_20)), ((int32_t)il2cpp_codegen_subtract(L_21, 6)), L_22, NULL);
return (bool)((((int32_t)L_23) == ((int32_t)1))? 1 : 0);
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeMicrosoft(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeMicrosoft_mEE89A737A22D755CDD42EC91192143824FDA0839 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, int32_t ___dateTimeZoneHandling1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2;
memset((&V_2), 0, sizeof(V_2));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3;
memset((&V_3), 0, sizeof(V_3));
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_0 = ___text0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_1;
L_1 = DateTimeUtils_TryParseMicrosoftDate_m45B19AD0487A8CD8B3BF73002442C8143F404120(L_0, (&V_0), (&V_3), (&V_1), NULL);
if (L_1)
{
goto IL_0017;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_2 = ___dt2;
il2cpp_codegen_initobj(L_2, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
return (bool)0;
}
IL_0017:
{
int64_t L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
L_4 = DateTimeUtils_ConvertJavaScriptTicksToDateTime_m06106AA819E24221772E74B545C218B6B4270E60(L_3, NULL);
V_2 = L_4;
int32_t L_5 = V_1;
if (!L_5)
{
goto IL_0027;
}
}
{
int32_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)2)))
{
goto IL_003c;
}
}
{
goto IL_004b;
}
IL_0027:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_7 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8;
L_8 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_2), NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9;
L_9 = DateTime_SpecifyKind_mDDC07FD5DC16F2EC56ECBDB8F58E1C5FBDF426B4(L_8, 0, NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_7 = L_9;
goto IL_0052;
}
IL_003c:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_10 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11;
L_11 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_2), NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_10 = L_11;
goto IL_0052;
}
IL_004b:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_12 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = V_2;
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_12 = L_13;
}
IL_0052:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_15 = ___dt2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = (*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_15);
int32_t L_17 = ___dateTimeZoneHandling1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18;
L_18 = DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837(L_16, L_17, NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_14 = L_18;
return (bool)1;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeExact(System.String,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeExact_m738712576F6A272BF0D26F9E695743104438AB10 (String_t* ___text0, int32_t ___dateTimeZoneHandling1, String_t* ___dateFormatString2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dt4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
memset((&V_0), 0, sizeof(V_0));
{
String_t* L_0 = ___text0;
String_t* L_1 = ___dateFormatString2;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___culture3;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
bool L_3;
L_3 = DateTime_TryParseExact_m524A3BFC07243B2BE4BF406CCE59595878F78CCE(L_0, L_1, L_2, ((int32_t)128), (&V_0), NULL);
if (!L_3)
{
goto IL_0023;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = V_0;
int32_t L_5 = ___dateTimeZoneHandling1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTimeUtils_EnsureDateTime_m5E553913ADE441BBA1B99CE6B1F4918111909837(L_4, L_5, NULL);
V_0 = L_6;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_7 = ___dt4;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = V_0;
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_7 = L_8;
return (bool)1;
}
IL_0023:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_9 = ___dt4;
il2cpp_codegen_initobj(L_9, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetMicrosoft(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC14977B7915B5B1EEE1B3D95EE1A4DE4634084A4 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___text0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1;
memset((&V_1), 0, sizeof(V_1));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4;
memset((&V_4), 0, sizeof(V_4));
{
StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C L_0 = ___text0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
bool L_1;
L_1 = DateTimeUtils_TryParseMicrosoftDate_m45B19AD0487A8CD8B3BF73002442C8143F404120(L_0, (&V_0), (&V_1), (&V_3), NULL);
if (L_1)
{
goto IL_0025;
}
}
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_2 = ___dt1;
il2cpp_codegen_initobj((&V_4), sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = V_4;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_4;
L_4 = DateTimeOffset_op_Implicit_m54F09DA78E92FAF940CA62C888F12553ABD9968F(L_3, NULL);
*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)L_2 = L_4;
return (bool)0;
}
IL_0025:
{
int64_t L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTimeUtils_ConvertJavaScriptTicksToDateTime_m06106AA819E24221772E74B545C218B6B4270E60(L_5, NULL);
V_2 = L_6;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_7 = ___dt1;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = V_1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9;
L_9 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_2), L_8, NULL);
V_4 = L_9;
int64_t L_10;
L_10 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_4), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = V_1;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DateTimeOffset__ctor_m81DCBFF0B9D7029AD6B8B80EA4CB8846387DFB9A((&L_12), L_10, L_11, /*hidden argument*/NULL);
*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)L_7 = L_12;
return (bool)1;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetExact(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryParseDateTimeOffsetExact_m7D043249C3C5C47267FC1B188B2A3A868D3E7290 (String_t* ___text0, String_t* ___dateFormatString1, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture2, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* ___dt3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
String_t* L_0 = ___text0;
String_t* L_1 = ___dateFormatString1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___culture2;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
bool L_3;
L_3 = DateTimeOffset_TryParseExact_m7ED35991FAE98C6A0BD626D627AA043B80A340C4(L_0, L_1, L_2, ((int32_t)128), (&V_0), NULL);
if (!L_3)
{
goto IL_001a;
}
}
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_4 = ___dt3;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_5 = V_0;
*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)L_4 = L_5;
return (bool)1;
}
IL_001a:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* L_6 = ___dt3;
il2cpp_codegen_initobj(L_6, sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryReadOffset(Newtonsoft.Json.Utilities.StringReference,System.Int32,System.TimeSpan&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeUtils_TryReadOffset_mB619571E3240ADC0685D53C4D8166350C13B7AA8 (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C ___offsetText0, int32_t ___startIndex1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___offset2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___startIndex1;
Il2CppChar L_1;
L_1 = StringReference_get_Item_mF157FD35EDF25DC3FB3291BA8A7ACA6A49791EBD((&___offsetText0), L_0, NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)45)))? 1 : 0);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2;
L_2 = StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline((&___offsetText0), NULL);
int32_t L_3 = ___startIndex1;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = ConvertUtils_Int32TryParse_m27D6FEF87EDF6A5A835E12774A5CE9BAA952D266(L_2, ((int32_t)il2cpp_codegen_add(L_3, 1)), 2, (&V_1), NULL);
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_002b;
}
}
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_5 = ___offset2;
il2cpp_codegen_initobj(L_5, sizeof(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A));
return (bool)0;
}
IL_002b:
{
V_2 = 0;
int32_t L_6;
L_6 = StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline((&___offsetText0), NULL);
int32_t L_7 = ___startIndex1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7))) <= ((int32_t)5)))
{
goto IL_0057;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8;
L_8 = StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline((&___offsetText0), NULL);
int32_t L_9 = ___startIndex1;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_10;
L_10 = ConvertUtils_Int32TryParse_m27D6FEF87EDF6A5A835E12774A5CE9BAA952D266(L_8, ((int32_t)il2cpp_codegen_add(L_9, 3)), 2, (&V_2), NULL);
if ((((int32_t)L_10) == ((int32_t)1)))
{
goto IL_0057;
}
}
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_11 = ___offset2;
il2cpp_codegen_initobj(L_11, sizeof(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A));
return (bool)0;
}
IL_0057:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_12 = ___offset2;
int32_t L_13 = V_1;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14;
L_14 = TimeSpan_FromHours_mE752300A91D97AB8CCC53CB38547BBEFF601E2C6(((double)L_13), NULL);
int32_t L_15 = V_2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16;
L_16 = TimeSpan_FromMinutes_m6A205525E41E41D13637359BA49AC7F3B23F714E(((double)L_15), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17;
L_17 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_14, L_16, NULL);
*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_12 = L_17;
bool L_18 = V_0;
if (!L_18)
{
goto IL_007f;
}
}
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_19 = ___offset2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_20 = ___offset2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21;
L_21 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4(L_20, NULL);
*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)L_19 = L_21;
}
IL_007f:
{
return (bool)1;
}
}
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(System.IO.TextWriter,System.DateTime,Newtonsoft.Json.DateFormatHandling,System.String,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_WriteDateTimeString_m5E82F196A664738C299B84F2721FE7CDF1069B71 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value1, int32_t ___format2, String_t* ___formatString3, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
int32_t V_1 = 0;
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_2;
memset((&V_2), 0, sizeof(V_2));
{
String_t* L_0 = ___formatString3;
bool L_1;
L_1 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_0, NULL);
if (!L_1)
{
goto IL_0034;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
V_0 = L_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___value1;
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272));
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_5 = V_2;
int32_t L_6;
L_6 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___value1), NULL);
int32_t L_7 = ___format2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = DateTimeUtils_WriteDateTimeString_m19D81D01AA0A6AA38AF2EB7CCA304B2ED67E18F5(L_3, 0, L_4, L_5, L_6, L_7, NULL);
V_1 = L_8;
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_0;
int32_t L_11 = V_1;
NullCheck(L_9);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_9, L_10, 0, L_11);
return;
}
IL_0034:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = ___writer0;
String_t* L_13 = ___formatString3;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14 = ___culture4;
String_t* L_15;
L_15 = DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00((&___value1), L_13, L_14, NULL);
NullCheck(L_12);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_12, L_15);
return;
}
}
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(System.Char[],System.Int32,System.DateTime,System.Nullable`1<System.TimeSpan>,System.DateTimeKind,Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDateTimeString_m19D81D01AA0A6AA38AF2EB7CCA304B2ED67E18F5 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value2, Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 ___offset3, int32_t ___kind4, int32_t ___format5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87B9EC17BC187A319013ECB41F98E776B6D3C055);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF5EC9F3FBEC4F37FF4D501E053433EDF958A566);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1;
memset((&V_1), 0, sizeof(V_1));
int64_t V_2 = 0;
String_t* V_3 = NULL;
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_4;
memset((&V_4), 0, sizeof(V_4));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
int32_t G_B16_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B16_1 = NULL;
int32_t G_B15_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B15_1 = NULL;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B17_0;
memset((&G_B17_0), 0, sizeof(G_B17_0));
int32_t G_B17_1 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B17_2 = NULL;
{
int32_t L_0 = ___start1;
V_0 = L_0;
int32_t L_1 = ___format5;
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_00b6;
}
}
{
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_2 = ___offset3;
V_4 = L_2;
bool L_3;
L_3 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_4), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var);
if (L_3)
{
goto IL_001e;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5;
L_5 = DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E(L_4, NULL);
G_B4_0 = L_5;
goto IL_0025;
}
IL_001e:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6;
L_6 = Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_inline((&V_4), Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_RuntimeMethod_var);
G_B4_0 = L_6;
}
IL_0025:
{
V_1 = G_B4_0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ___value2;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int64_t L_9;
L_9 = DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m1A78A1FC9604E80121288A6985CEF352038067C2(L_7, L_8, NULL);
V_2 = L_9;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___chars0;
int32_t L_11 = V_0;
NullCheck(_stringLiteralDF5EC9F3FBEC4F37FF4D501E053433EDF958A566);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(_stringLiteralDF5EC9F3FBEC4F37FF4D501E053433EDF958A566, 0, L_10, L_11, 7, NULL);
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 7));
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13;
L_13 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_14;
L_14 = Int64_ToString_m5250B67D3E89B8EB829FB26136E744F1F141B7FD((&V_2), L_13, NULL);
V_3 = L_14;
String_t* L_15 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___chars0;
int32_t L_17 = V_0;
String_t* L_18 = V_3;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
NullCheck(L_15);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_15, 0, L_16, L_17, L_19, NULL);
int32_t L_20 = V_0;
String_t* L_21 = V_3;
NullCheck(L_21);
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
V_0 = ((int32_t)il2cpp_codegen_add(L_20, L_22));
int32_t L_23 = ___kind4;
if (!L_23)
{
goto IL_0070;
}
}
{
int32_t L_24 = ___kind4;
if ((((int32_t)L_24) == ((int32_t)2)))
{
goto IL_0097;
}
}
{
goto IL_00a2;
}
IL_0070:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_25 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33;
bool L_27;
L_27 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_25, L_26, NULL);
if (!L_27)
{
goto IL_00a2;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
bool L_30;
L_30 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_28, L_29, NULL);
if (!L_30)
{
goto IL_00a2;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = ___chars0;
int32_t L_32 = V_0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_33 = V_1;
int32_t L_34 = ___format5;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_35;
L_35 = DateTimeUtils_WriteDateTimeOffset_m529B0BE3016F8BAACDCAEF49D2EE9E9114D6B142(L_31, L_32, L_33, L_34, NULL);
V_0 = L_35;
goto IL_00a2;
}
IL_0097:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = ___chars0;
int32_t L_37 = V_0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38 = V_1;
int32_t L_39 = ___format5;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_40;
L_40 = DateTimeUtils_WriteDateTimeOffset_m529B0BE3016F8BAACDCAEF49D2EE9E9114D6B142(L_36, L_37, L_38, L_39, NULL);
V_0 = L_40;
}
IL_00a2:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = ___chars0;
int32_t L_42 = V_0;
NullCheck(_stringLiteral87B9EC17BC187A319013ECB41F98E776B6D3C055);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(_stringLiteral87B9EC17BC187A319013ECB41F98E776B6D3C055, 0, L_41, L_42, 3, NULL);
int32_t L_43 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_43, 3));
goto IL_00f9;
}
IL_00b6:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_44 = ___chars0;
int32_t L_45 = V_0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_47;
L_47 = DateTimeUtils_WriteDefaultIsoDate_m5F11454A171878E50CB08D39AA7843D72FB8FD48(L_44, L_45, L_46, NULL);
V_0 = L_47;
int32_t L_48 = ___kind4;
if ((((int32_t)L_48) == ((int32_t)1)))
{
goto IL_00f0;
}
}
{
int32_t L_49 = ___kind4;
if ((!(((uint32_t)L_49) == ((uint32_t)2))))
{
goto IL_00f9;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_50 = ___chars0;
int32_t L_51 = V_0;
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_52 = ___offset3;
V_4 = L_52;
bool L_53;
L_53 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_4), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var);
G_B15_0 = L_51;
G_B15_1 = L_50;
if (L_53)
{
G_B16_0 = L_51;
G_B16_1 = L_50;
goto IL_00df;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_54 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_55;
L_55 = DateTimeUtils_GetUtcOffset_m387D9E0C303AF65DA6C9C4846C61A6C2D34B584E(L_54, NULL);
G_B17_0 = L_55;
G_B17_1 = G_B15_0;
G_B17_2 = G_B15_1;
goto IL_00e6;
}
IL_00df:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_56;
L_56 = Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_inline((&V_4), Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_RuntimeMethod_var);
G_B17_0 = L_56;
G_B17_1 = G_B16_0;
G_B17_2 = G_B16_1;
}
IL_00e6:
{
int32_t L_57 = ___format5;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_58;
L_58 = DateTimeUtils_WriteDateTimeOffset_m529B0BE3016F8BAACDCAEF49D2EE9E9114D6B142(G_B17_2, G_B17_1, G_B17_0, L_57, NULL);
V_0 = L_58;
goto IL_00f9;
}
IL_00f0:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = ___chars0;
int32_t L_60 = V_0;
int32_t L_61 = L_60;
V_0 = ((int32_t)il2cpp_codegen_add(L_61, 1));
NullCheck(L_59);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(L_61), (Il2CppChar)((int32_t)90));
}
IL_00f9:
{
int32_t L_62 = V_0;
return L_62;
}
}
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDefaultIsoDate(System.Char[],System.Int32,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDefaultIsoDate_m5F11454A171878E50CB08D39AA7843D72FB8FD48 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dt2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
V_0 = ((int32_t)19);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dt2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTimeUtils_GetDateValues_m337852D54E4FE48840796024EB475AC69EC9A24B(L_0, (&V_1), (&V_2), (&V_3), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___chars0;
int32_t L_2 = ___start1;
int32_t L_3 = V_1;
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_1, L_2, L_3, 4, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ___chars0;
int32_t L_5 = ___start1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_5, 4))), (Il2CppChar)((int32_t)45));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___chars0;
int32_t L_7 = ___start1;
int32_t L_8 = V_2;
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_6, ((int32_t)il2cpp_codegen_add(L_7, 5)), L_8, 2, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___chars0;
int32_t L_10 = ___start1;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_10, 7))), (Il2CppChar)((int32_t)45));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___chars0;
int32_t L_12 = ___start1;
int32_t L_13 = V_3;
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_11, ((int32_t)il2cpp_codegen_add(L_12, 8)), L_13, 2, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = ___chars0;
int32_t L_15 = ___start1;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_15, ((int32_t)10)))), (Il2CppChar)((int32_t)84));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___chars0;
int32_t L_17 = ___start1;
int32_t L_18;
L_18 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&___dt2), NULL);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_16, ((int32_t)il2cpp_codegen_add(L_17, ((int32_t)11))), L_18, 2, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = ___chars0;
int32_t L_20 = ___start1;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_20, ((int32_t)13)))), (Il2CppChar)((int32_t)58));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = ___chars0;
int32_t L_22 = ___start1;
int32_t L_23;
L_23 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&___dt2), NULL);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_21, ((int32_t)il2cpp_codegen_add(L_22, ((int32_t)14))), L_23, 2, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = ___chars0;
int32_t L_25 = ___start1;
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_25, ((int32_t)16)))), (Il2CppChar)((int32_t)58));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = ___chars0;
int32_t L_27 = ___start1;
int32_t L_28;
L_28 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&___dt2), NULL);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_26, ((int32_t)il2cpp_codegen_add(L_27, ((int32_t)17))), L_28, 2, NULL);
int64_t L_29;
L_29 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dt2), NULL);
V_4 = ((int32_t)((int64_t)(L_29%((int64_t)((int32_t)10000000)))));
int32_t L_30 = V_4;
if (!L_30)
{
goto IL_00d5;
}
}
{
V_5 = 7;
goto IL_00b1;
}
IL_00a4:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract(L_31, 1));
int32_t L_32 = V_4;
V_4 = ((int32_t)(L_32/((int32_t)10)));
}
IL_00b1:
{
int32_t L_33 = V_4;
if (!((int32_t)(L_33%((int32_t)10))))
{
goto IL_00a4;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = ___chars0;
int32_t L_35 = ___start1;
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_35, ((int32_t)19)))), (Il2CppChar)((int32_t)46));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = ___chars0;
int32_t L_37 = ___start1;
int32_t L_38 = V_4;
int32_t L_39 = V_5;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_36, ((int32_t)il2cpp_codegen_add(L_37, ((int32_t)20))), L_38, L_39, NULL);
int32_t L_40 = V_0;
int32_t L_41 = V_5;
V_0 = ((int32_t)il2cpp_codegen_add(L_40, ((int32_t)il2cpp_codegen_add(L_41, 1))));
}
IL_00d5:
{
int32_t L_42 = ___start1;
int32_t L_43 = V_0;
return ((int32_t)il2cpp_codegen_add(L_42, L_43));
}
}
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::CopyIntToCharArray(System.Char[],System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, int32_t ___value2, int32_t ___digits3, const RuntimeMethod* method)
{
{
goto IL_0015;
}
IL_0002:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___chars0;
int32_t L_1 = ___start1;
int32_t L_2 = ___digits3;
int32_t L_3 = ___value2;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(L_1, L_2))), (Il2CppChar)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_3%((int32_t)10))), ((int32_t)48)))));
int32_t L_4 = ___value2;
___value2 = ((int32_t)(L_4/((int32_t)10)));
}
IL_0015:
{
int32_t L_5 = ___digits3;
int32_t L_6 = L_5;
___digits3 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
if (L_6)
{
goto IL_0002;
}
}
{
return;
}
}
// System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffset(System.Char[],System.Int32,System.TimeSpan,Newtonsoft.Json.DateFormatHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeUtils_WriteDateTimeOffset_m529B0BE3016F8BAACDCAEF49D2EE9E9114D6B142 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars0, int32_t ___start1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset2, int32_t ___format3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B2_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B2_1 = NULL;
int32_t G_B1_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B3_2 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___chars0;
int32_t L_1 = ___start1;
int32_t L_2 = L_1;
___start1 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int64_t L_3;
L_3 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___offset2), NULL);
G_B1_0 = L_2;
G_B1_1 = L_0;
if ((((int64_t)L_3) >= ((int64_t)((int64_t)0))))
{
G_B2_0 = L_2;
G_B2_1 = L_0;
goto IL_0016;
}
}
{
G_B3_0 = ((int32_t)45);
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0018;
}
IL_0016:
{
G_B3_0 = ((int32_t)43);
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0018:
{
NullCheck(G_B3_2);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (Il2CppChar)G_B3_0);
int32_t L_4;
L_4 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&___offset2), NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_5;
L_5 = il2cpp_codegen_abs(L_4);
V_0 = L_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___chars0;
int32_t L_7 = ___start1;
int32_t L_8 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_6, L_7, L_8, 2, NULL);
int32_t L_9 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_9, 2));
int32_t L_10 = ___format3;
if (L_10)
{
goto IL_0041;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___chars0;
int32_t L_12 = ___start1;
int32_t L_13 = L_12;
___start1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppChar)((int32_t)58));
}
IL_0041:
{
int32_t L_14;
L_14 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&___offset2), NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_15;
L_15 = il2cpp_codegen_abs(L_14);
V_1 = L_15;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___chars0;
int32_t L_17 = ___start1;
int32_t L_18 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTimeUtils_CopyIntToCharArray_mA58F5B20B4466D53117F4ED7CC6A1910477B0E91(L_16, L_17, L_18, 2, NULL);
int32_t L_19 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_19, 2));
int32_t L_20 = ___start1;
return L_20;
}
}
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffsetString(System.IO.TextWriter,System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling,System.String,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_WriteDateTimeOffsetString_m012644D84C5B7073D9D3BC60BFCCFD274CBEF622 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___value1, int32_t ___format2, String_t* ___formatString3, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B3_1 = NULL;
int32_t G_B2_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B2_1 = NULL;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
int32_t G_B4_1 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B4_2 = NULL;
{
String_t* L_0 = ___formatString3;
bool L_1;
L_1 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_0, NULL);
if (!L_1)
{
goto IL_0043;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
V_0 = L_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_0;
int32_t L_4 = ___format2;
G_B2_0 = 0;
G_B2_1 = L_3;
if (!L_4)
{
G_B3_0 = 0;
G_B3_1 = L_3;
goto IL_001e;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
L_5 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&___value1), NULL);
G_B4_0 = L_5;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_0025;
}
IL_001e:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTimeOffset_get_DateTime_mDF6DC57E7A5647D8B964D3FD5B6855E7D66EF324((&___value1), NULL);
G_B4_0 = L_6;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_0025:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7;
L_7 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4((&___value1), NULL);
Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_8;
memset((&L_8), 0, sizeof(L_8));
Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&L_8), L_7, /*hidden argument*/Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var);
int32_t L_9 = ___format2;
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
int32_t L_10;
L_10 = DateTimeUtils_WriteDateTimeString_m19D81D01AA0A6AA38AF2EB7CCA304B2ED67E18F5(G_B4_2, G_B4_1, G_B4_0, L_8, 2, L_9, NULL);
V_1 = L_10;
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_0;
int32_t L_13 = V_1;
NullCheck(L_11);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_11, L_12, 0, L_13);
return;
}
IL_0043:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_14 = ___writer0;
String_t* L_15 = ___formatString3;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_16 = ___culture4;
String_t* L_17;
L_17 = DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281((&___value1), L_15, L_16, NULL);
NullCheck(L_14);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_14, L_17);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.DateTimeUtils::GetDateValues(System.DateTime,System.Int32&,System.Int32&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeUtils_GetDateValues_m337852D54E4FE48840796024EB475AC69EC9A24B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___td0, int32_t* ___year1, int32_t* ___month2, int32_t* ___day3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_5 = NULL;
int32_t V_6 = 0;
int32_t G_B9_0 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* G_B12_0 = NULL;
{
int64_t L_0;
L_0 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___td0), NULL);
V_0 = ((int32_t)((int64_t)(L_0/((int64_t)864000000000LL))));
int32_t L_1 = V_0;
V_1 = ((int32_t)(L_1/((int32_t)146097)));
int32_t L_2 = V_0;
int32_t L_3 = V_1;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, ((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)146097)))));
int32_t L_4 = V_0;
V_2 = ((int32_t)(L_4/((int32_t)36524)));
int32_t L_5 = V_2;
if ((!(((uint32_t)L_5) == ((uint32_t)4))))
{
goto IL_0033;
}
}
{
V_2 = 3;
}
IL_0033:
{
int32_t L_6 = V_0;
int32_t L_7 = V_2;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, ((int32_t)il2cpp_codegen_multiply(L_7, ((int32_t)36524)))));
int32_t L_8 = V_0;
V_3 = ((int32_t)(L_8/((int32_t)1461)));
int32_t L_9 = V_0;
int32_t L_10 = V_3;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)il2cpp_codegen_multiply(L_10, ((int32_t)1461)))));
int32_t L_11 = V_0;
V_4 = ((int32_t)(L_11/((int32_t)365)));
int32_t L_12 = V_4;
if ((!(((uint32_t)L_12) == ((uint32_t)4))))
{
goto IL_0060;
}
}
{
V_4 = 3;
}
IL_0060:
{
int32_t* L_13 = ___year1;
int32_t L_14 = V_1;
int32_t L_15 = V_2;
int32_t L_16 = V_3;
int32_t L_17 = V_4;
*((int32_t*)L_13) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_14, ((int32_t)400))), ((int32_t)il2cpp_codegen_multiply(L_15, ((int32_t)100))))), ((int32_t)il2cpp_codegen_multiply(L_16, 4)))), L_17)), 1));
int32_t L_18 = V_0;
int32_t L_19 = V_4;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_18, ((int32_t)il2cpp_codegen_multiply(L_19, ((int32_t)365)))));
int32_t L_20 = V_4;
if ((!(((uint32_t)L_20) == ((uint32_t)3))))
{
goto IL_0095;
}
}
{
int32_t L_21 = V_3;
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)24)))))
{
goto IL_0092;
}
}
{
int32_t L_22 = V_2;
G_B9_0 = ((((int32_t)L_22) == ((int32_t)3))? 1 : 0);
goto IL_0096;
}
IL_0092:
{
G_B9_0 = 1;
goto IL_0096;
}
IL_0095:
{
G_B9_0 = 0;
}
IL_0096:
{
if (G_B9_0)
{
goto IL_009f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = ((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth365_7;
G_B12_0 = L_23;
goto IL_00a4;
}
IL_009f:
{
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_24 = ((DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_StaticFields*)il2cpp_codegen_static_fields_for(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var))->___DaysToMonth366_8;
G_B12_0 = L_24;
}
IL_00a4:
{
V_5 = G_B12_0;
int32_t L_25 = V_0;
V_6 = ((int32_t)(L_25>>6));
goto IL_00b3;
}
IL_00ad:
{
int32_t L_26 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_00b3:
{
int32_t L_27 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_28 = V_5;
int32_t L_29 = V_6;
NullCheck(L_28);
int32_t L_30 = L_29;
int32_t L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
if ((((int32_t)L_27) >= ((int32_t)L_31)))
{
goto IL_00ad;
}
}
{
int32_t* L_32 = ___month2;
int32_t L_33 = V_6;
*((int32_t*)L_32) = (int32_t)L_33;
int32_t* L_34 = ___day3;
int32_t L_35 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = V_5;
int32_t L_37 = V_6;
NullCheck(L_36);
int32_t L_38 = ((int32_t)il2cpp_codegen_subtract(L_37, 1));
int32_t L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
*((int32_t*)L_34) = (int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_35, L_39)), 1));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.IEnumerable`1<System.String> Newtonsoft.Json.Utilities.DynamicUtils::GetDynamicMemberNames(System.Dynamic.IDynamicMetaObjectProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DynamicUtils_GetDynamicMemberNames_mA186A0D92EB32983AAAE6D227B0397A79262D7E8 (RuntimeObject* ___dynamicProvider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDynamicMetaObjectProvider_t4593D4AE2D3360E67AF686D7D889F51FF9BEDC9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___dynamicProvider0;
RuntimeObject* L_1 = ___dynamicProvider0;
il2cpp_codegen_runtime_class_init_inline(Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_il2cpp_TypeInfo_var);
ConstantExpression_t4BE6B7DFD889CC0EA42B45C32BD511F2764E1547* L_2;
L_2 = Expression_Constant_m5D3728BC22F16A217945079B390E6E622BA5904D(L_1, NULL);
NullCheck(L_0);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_3;
L_3 = InterfaceFuncInvoker1< DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* >::Invoke(0 /* System.Dynamic.DynamicMetaObject System.Dynamic.IDynamicMetaObjectProvider::GetMetaObject(System.Linq.Expressions.Expression) */, IDynamicMetaObjectProvider_t4593D4AE2D3360E67AF686D7D889F51FF9BEDC9D_il2cpp_TypeInfo_var, L_0, L_2);
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(16 /* System.Collections.Generic.IEnumerable`1<System.String> System.Dynamic.DynamicMetaObject::GetDynamicMemberNames() */, L_3);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____init_9;
if (L_0)
{
goto IL_0063;
}
}
{
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = il2cpp_codegen_get_type(_stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE, (bool)0, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08_RuntimeMethod_var);
bool L_2;
L_2 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_1, (Type_t*)NULL, NULL);
if (!L_2)
{
goto IL_0034;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_3;
L_3 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_4;
L_4 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9F6437DFCF367019BCABE14E230D6D210AF41505)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_5);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08_RuntimeMethod_var)));
}
IL_0034:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
RuntimeObject* L_7;
L_7 = BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479(L_6, NULL);
((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getCSharpArgumentInfoArray_5 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getCSharpArgumentInfoArray_5), (void*)L_7);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)3);
RuntimeObject* L_10;
L_10 = BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479(L_9, NULL);
((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setCSharpArgumentInfoArray_6 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setCSharpArgumentInfoArray_6), (void*)L_10);
BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25(NULL);
((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____init_9 = (bool)1;
}
IL_0063:
{
return;
}
}
// System.Object Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::CreateSharpArgumentInfoArray(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___values0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18758AA8E5FA243D1B2431D03A55ED42516F8AF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42559C2140EDFAB50DB6AE7DCF62B93B4DA42968);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1A212DEDA96849ABCCDF1D53E590A0248230435);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
Type_t* V_1 = NULL;
RuntimeArray* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_0;
L_0 = il2cpp_codegen_get_type(_stringLiteral18758AA8E5FA243D1B2431D03A55ED42516F8AF3, Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var, BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479_RuntimeMethod_var);
V_0 = L_0;
Type_t* L_1;
L_1 = il2cpp_codegen_get_type(_stringLiteralD1A212DEDA96849ABCCDF1D53E590A0248230435, Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var, BinderWrapper_CreateSharpArgumentInfoArray_mA1D03D8D72368EFCE31A076AA3D8F65EC488C479_RuntimeMethod_var);
V_1 = L_1;
Type_t* L_2 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = ___values0;
NullCheck(L_3);
RuntimeArray* L_4;
L_4 = Array_CreateInstance_m40F80F4A7A05B492BC5A19CEFB7F9AE8641FDE2C(L_2, ((int32_t)(((RuntimeArray*)L_3)->max_length)), NULL);
V_2 = L_4;
V_3 = 0;
goto IL_006a;
}
IL_0024:
{
Type_t* L_5 = V_0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_6 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = L_6;
Type_t* L_8 = V_1;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_8);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_9 = L_7;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_11;
L_11 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_10, NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_11);
NullCheck(L_5);
MethodInfo_t* L_12;
L_12 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_5, _stringLiteral42559C2140EDFAB50DB6AE7DCF62B93B4DA42968, L_9, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13;
int32_t L_15 = 0;
RuntimeObject* L_16 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_16);
NullCheck(L_12);
RuntimeObject* L_17;
L_17 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_12, NULL, L_14, NULL);
V_4 = L_17;
RuntimeArray* L_18 = V_2;
RuntimeObject* L_19 = V_4;
int32_t L_20 = V_3;
NullCheck(L_18);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_18, L_19, L_20, NULL);
int32_t L_21 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_21, 1));
}
IL_006a:
{
int32_t L_22 = V_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = ___values0;
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))
{
goto IL_0024;
}
}
{
RuntimeArray* L_24 = V_2;
return L_24;
}
}
// System.Void Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::CreateMemberCalls()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral148D879740EE71DEE70EA413F9D574F5B36E9578);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18758AA8E5FA243D1B2431D03A55ED42516F8AF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC39D82415A21DB974A9227D1080814A472716CD9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0E616973F967C7FC677A64CF4080530C0989A71);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
Type_t* V_3 = NULL;
MethodInfo_t* V_4 = NULL;
MethodInfo_t* V_5 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_0;
L_0 = il2cpp_codegen_get_type(_stringLiteral18758AA8E5FA243D1B2431D03A55ED42516F8AF3, (bool)1, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25_RuntimeMethod_var);
V_0 = L_0;
Type_t* L_1;
L_1 = il2cpp_codegen_get_type(_stringLiteralC39D82415A21DB974A9227D1080814A472716CD9, (bool)1, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25_RuntimeMethod_var);
V_1 = L_1;
Type_t* L_2;
L_2 = il2cpp_codegen_get_type(_stringLiteral95C03133F4713428827F5F53293CEB9A34BD8AFE, (bool)1, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, BinderWrapper_CreateMemberCalls_mBEC4F0904E52E99452BC06B68D9C894083E04B25_RuntimeMethod_var);
V_2 = L_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var) };
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_5 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_6 = L_5;
Type_t* L_7 = V_0;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_7);
NullCheck(L_4);
Type_t* L_8;
L_8 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_4, L_6);
V_3 = L_8;
Type_t* L_9 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_10 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)4);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_11 = L_10;
Type_t* L_12 = V_1;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_12);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = L_11;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t* L_15;
L_15 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_14, NULL);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_15);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = L_13;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
Type_t* L_18;
L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_18);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t*)L_18);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = L_16;
Type_t* L_20 = V_3;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (Type_t*)L_20);
NullCheck(L_9);
MethodInfo_t* L_21;
L_21 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_9, _stringLiteralF0E616973F967C7FC677A64CF4080530C0989A71, L_19, NULL);
V_4 = L_21;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_22;
L_22 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_23 = V_4;
NullCheck(L_22);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_24;
L_24 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_22, L_23);
((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getMemberCall_7 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getMemberCall_7), (void*)L_24);
Type_t* L_25 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)4);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_27 = L_26;
Type_t* L_28 = V_1;
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_28);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_28);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_29 = L_27;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t* L_31;
L_31 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_30, NULL);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_31);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_31);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_32 = L_29;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
Type_t* L_34;
L_34 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_33, NULL);
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_34);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t*)L_34);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_35 = L_32;
Type_t* L_36 = V_3;
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_36);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(3), (Type_t*)L_36);
NullCheck(L_25);
MethodInfo_t* L_37;
L_37 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_25, _stringLiteral148D879740EE71DEE70EA413F9D574F5B36E9578, L_35, NULL);
V_5 = L_37;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_38;
L_38 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_39 = V_5;
NullCheck(L_38);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_40;
L_40 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_38, L_39);
((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setMemberCall_8 = L_40;
Il2CppCodeGenWriteBarrier((void**)(&((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setMemberCall_8), (void*)L_40);
return;
}
}
// System.Runtime.CompilerServices.CallSiteBinder Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::GetMember(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F* BinderWrapper_GetMember_m447679B13ED699F863B9E3CBDE773E2C85EC5153 (String_t* ___name0, Type_t* ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08(NULL);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getMemberCall_7;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
int32_t L_3 = 0;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_2;
String_t* L_6 = ___name0;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_5;
Type_t* L_8 = ___context1;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_8);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_7;
RuntimeObject* L_10 = ((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____getCSharpArgumentInfoArray_5;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_10);
NullCheck(L_0);
RuntimeObject* L_11;
L_11 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, NULL, L_9, NULL);
return ((CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F*)CastclassClass((RuntimeObject*)L_11, CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_il2cpp_TypeInfo_var));
}
}
// System.Runtime.CompilerServices.CallSiteBinder Newtonsoft.Json.Utilities.DynamicUtils/BinderWrapper::SetMember(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F* BinderWrapper_SetMember_m83363492762E6D6074990A00D7EE52B83B57D0BD (String_t* ___name0, Type_t* ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
BinderWrapper_Init_m1C53289015570838467B3CA07AD532E032C19C08(NULL);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setMemberCall_8;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
int32_t L_3 = 0;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_2;
String_t* L_6 = ___name0;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_6);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_5;
Type_t* L_8 = ___context1;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_8);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_7;
RuntimeObject* L_10 = ((BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_StaticFields*)il2cpp_codegen_static_fields_for(BinderWrapper_tB510C00F4C72B15BF27DD61B3E21CCA2DAFD0261_il2cpp_TypeInfo_var))->____setCSharpArgumentInfoArray_6;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_10);
NullCheck(L_0);
RuntimeObject* L_11;
L_11 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, NULL, L_9, NULL);
return ((CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F*)CastclassClass((RuntimeObject*)L_11, CallSiteBinder_tAFC922BA1DD2D1AEF6BC2742E0E375F936D5059F_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.NoThrowGetBinderMember::.ctor(System.Dynamic.GetMemberBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoThrowGetBinderMember__ctor_m4B7A265E422C43D477097714EA9398C64AC7E30C (NoThrowGetBinderMember_t9AB4335A1986006E9CE9EA2F76B26037E412E90D* __this, GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* ___innerBinder0, const RuntimeMethod* method)
{
{
GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* L_0 = ___innerBinder0;
NullCheck(L_0);
String_t* L_1;
L_1 = GetMemberBinder_get_Name_mCE0671772897ED1E0575E3BE2C06CAB8D52019C4_inline(L_0, NULL);
GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* L_2 = ___innerBinder0;
NullCheck(L_2);
bool L_3;
L_3 = GetMemberBinder_get_IgnoreCase_mB2924A5209BB108C50B5DDB5C8B2C781F34631CD_inline(L_2, NULL);
GetMemberBinder__ctor_m3CB795552FE62FB770DE0F3926E152CB4BFAC298(__this, L_1, L_3, NULL);
GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* L_4 = ___innerBinder0;
__this->____innerBinder_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____innerBinder_4), (void*)L_4);
return;
}
}
// System.Dynamic.DynamicMetaObject Newtonsoft.Json.Utilities.NoThrowGetBinderMember::FallbackGetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* NoThrowGetBinderMember_FallbackGetMember_mB3F4B90AD1E6DB35BD0743518F078E5AFEAE3CCB (NoThrowGetBinderMember_t9AB4335A1986006E9CE9EA2F76B26037E412E90D* __this, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* ___target0, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* ___errorSuggestion1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_ArrayEmpty_TisDynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_m8DFC5CFD1B0AFBAD1118857F2FDF2B99B40EA0ED_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* V_0 = NULL;
{
GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* L_0 = __this->____innerBinder_4;
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_1 = ___target0;
DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* L_2;
L_2 = CollectionUtils_ArrayEmpty_TisDynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_m8DFC5CFD1B0AFBAD1118857F2FDF2B99B40EA0ED_inline(CollectionUtils_ArrayEmpty_TisDynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_m8DFC5CFD1B0AFBAD1118857F2FDF2B99B40EA0ED_RuntimeMethod_var);
NullCheck(L_0);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_3;
L_3 = VirtualFuncInvoker2< DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*, DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* >::Invoke(7 /* System.Dynamic.DynamicMetaObject System.Dynamic.DynamicMetaObjectBinder::Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]) */, L_0, L_1, L_2);
V_0 = L_3;
NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A* L_4 = (NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A*)il2cpp_codegen_object_new(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
NullCheck(L_4);
NoThrowExpressionVisitor__ctor_mE60E1F560B471945B1BC836FFBFE1CF736BF7A2C(L_4, NULL);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_5 = V_0;
NullCheck(L_5);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_6;
L_6 = DynamicMetaObject_get_Expression_mC74F5FF9AC58E0F938C2C15CA0B32CE999EEA7F4_inline(L_5, NULL);
NullCheck(L_4);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_7;
L_7 = VirtualFuncInvoker1< Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785*, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* >::Invoke(4 /* System.Linq.Expressions.Expression System.Linq.Expressions.ExpressionVisitor::Visit(System.Linq.Expressions.Expression) */, L_4, L_6);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_8 = V_0;
NullCheck(L_8);
BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* L_9;
L_9 = DynamicMetaObject_get_Restrictions_mC56A7B16011CB2E190394A71B37293BDAC8CBF68_inline(L_8, NULL);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_10 = (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*)il2cpp_codegen_object_new(DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_il2cpp_TypeInfo_var);
NullCheck(L_10);
DynamicMetaObject__ctor_m3A410E35A61623019D223D58673E0A38550EF12A(L_10, L_7, L_9, NULL);
return L_10;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.NoThrowSetBinderMember::.ctor(System.Dynamic.SetMemberBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoThrowSetBinderMember__ctor_mD686C0B64F49A2B5022D7FCFFC835699F887617B (NoThrowSetBinderMember_t2A08A7A6DC7581F640C7AECC9A15D4AC8F9197E2* __this, SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* ___innerBinder0, const RuntimeMethod* method)
{
{
SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* L_0 = ___innerBinder0;
NullCheck(L_0);
String_t* L_1;
L_1 = SetMemberBinder_get_Name_mE683668DE73BFB110F155E377E26B506960A7B42_inline(L_0, NULL);
SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* L_2 = ___innerBinder0;
NullCheck(L_2);
bool L_3;
L_3 = SetMemberBinder_get_IgnoreCase_m41897B494A2B432A9D7C437C9C54AC51853E33AB_inline(L_2, NULL);
SetMemberBinder__ctor_m57A59B263345A045AC30EECAE7D683B535FDCF56(__this, L_1, L_3, NULL);
SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* L_4 = ___innerBinder0;
__this->____innerBinder_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____innerBinder_4), (void*)L_4);
return;
}
}
// System.Dynamic.DynamicMetaObject Newtonsoft.Json.Utilities.NoThrowSetBinderMember::FallbackSetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* NoThrowSetBinderMember_FallbackSetMember_m3DFDD024EE34B2375B221B7F546148110A5E9B70 (NoThrowSetBinderMember_t2A08A7A6DC7581F640C7AECC9A15D4AC8F9197E2* __this, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* ___target0, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* ___value1, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* ___errorSuggestion2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* V_0 = NULL;
{
SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* L_0 = __this->____innerBinder_4;
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_1 = ___target0;
DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* L_2 = (DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50*)(DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50*)SZArrayNew(DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50_il2cpp_TypeInfo_var, (uint32_t)1);
DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* L_3 = L_2;
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_4 = ___value1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*)L_4);
NullCheck(L_0);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_5;
L_5 = VirtualFuncInvoker2< DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*, DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*, DynamicMetaObjectU5BU5D_t3DD53865D0D7B6997BD3523C5F828FA40C419E50* >::Invoke(7 /* System.Dynamic.DynamicMetaObject System.Dynamic.DynamicMetaObjectBinder::Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]) */, L_0, L_1, L_3);
V_0 = L_5;
NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A* L_6 = (NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A*)il2cpp_codegen_object_new(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
NullCheck(L_6);
NoThrowExpressionVisitor__ctor_mE60E1F560B471945B1BC836FFBFE1CF736BF7A2C(L_6, NULL);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_7 = V_0;
NullCheck(L_7);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_8;
L_8 = DynamicMetaObject_get_Expression_mC74F5FF9AC58E0F938C2C15CA0B32CE999EEA7F4_inline(L_7, NULL);
NullCheck(L_6);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_9;
L_9 = VirtualFuncInvoker1< Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785*, Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* >::Invoke(4 /* System.Linq.Expressions.Expression System.Linq.Expressions.ExpressionVisitor::Visit(System.Linq.Expressions.Expression) */, L_6, L_8);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_10 = V_0;
NullCheck(L_10);
BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* L_11;
L_11 = DynamicMetaObject_get_Restrictions_mC56A7B16011CB2E190394A71B37293BDAC8CBF68_inline(L_10, NULL);
DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* L_12 = (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825*)il2cpp_codegen_object_new(DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825_il2cpp_TypeInfo_var);
NullCheck(L_12);
DynamicMetaObject__ctor_m3A410E35A61623019D223D58673E0A38550EF12A(L_12, L_9, L_11, NULL);
return L_12;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Expressions.Expression Newtonsoft.Json.Utilities.NoThrowExpressionVisitor::VisitConditional(System.Linq.Expressions.ConditionalExpression)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* NoThrowExpressionVisitor_VisitConditional_mA5F064153C66B27CC01C7ED41F355C2677C71DC6 (NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A* __this, ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* L_0 = ___node0;
NullCheck(L_0);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_1;
L_1 = ConditionalExpression_get_IfFalse_mEA6C2752B55A2D84A53DF36CD8C1E43244C99CA9(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Linq.Expressions.ExpressionType System.Linq.Expressions.Expression::get_NodeType() */, L_1);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)60)))))
{
goto IL_002b;
}
}
{
ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* L_3 = ___node0;
NullCheck(L_3);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_4;
L_4 = ConditionalExpression_get_Test_mFEB910B9D8397F9B9C54950355860E948E47A144_inline(L_3, NULL);
ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* L_5 = ___node0;
NullCheck(L_5);
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_6;
L_6 = ConditionalExpression_get_IfTrue_mEE0343EC7D38FD9712A72428B32B873CE10A140E_inline(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
RuntimeObject* L_7 = ((NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_StaticFields*)il2cpp_codegen_static_fields_for(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var))->___ErrorResult_0;
il2cpp_codegen_runtime_class_init_inline(Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785_il2cpp_TypeInfo_var);
ConstantExpression_t4BE6B7DFD889CC0EA42B45C32BD511F2764E1547* L_8;
L_8 = Expression_Constant_m5D3728BC22F16A217945079B390E6E622BA5904D(L_7, NULL);
ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* L_9;
L_9 = Expression_Condition_m0835FE3C5B514D2EA9588F1147E0BB365ACD6996(L_4, L_6, L_8, NULL);
return L_9;
}
IL_002b:
{
ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* L_10 = ___node0;
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_11;
L_11 = ExpressionVisitor_VisitConditional_m2BB93A86981B731959195912EB5891D7BD1BD0DA(__this, L_10, NULL);
return L_11;
}
}
// System.Void Newtonsoft.Json.Utilities.NoThrowExpressionVisitor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoThrowExpressionVisitor__ctor_mE60E1F560B471945B1BC836FFBFE1CF736BF7A2C (NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A* __this, const RuntimeMethod* method)
{
{
ExpressionVisitor__ctor_m2974B344C35DD823BDA6D6313DAE4C7F64541393(__this, NULL);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.NoThrowExpressionVisitor::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoThrowExpressionVisitor__cctor_m1EBFEAAE4D312122F05F1E1796477F8459AA18C7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_StaticFields*)il2cpp_codegen_static_fields_for(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var))->___ErrorResult_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_StaticFields*)il2cpp_codegen_static_fields_for(NoThrowExpressionVisitor_t5A6F7708B58559D52455733FF483488A0B43356A_il2cpp_TypeInfo_var))->___ErrorResult_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.EnumInfo::.ctor(System.Boolean,System.UInt64[],System.String[],System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumInfo__ctor_m81F36D62F4703ECB5C7DDD56A03097764285078A (EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* __this, bool ___isFlags0, UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* ___values1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___names2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___resolvedNames3, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
bool L_0 = ___isFlags0;
__this->___IsFlags_0 = L_0;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_1 = ___values1;
__this->___Values_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Values_1), (void*)L_1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ___names2;
__this->___Names_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Names_2), (void*)L_2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___resolvedNames3;
__this->___ResolvedNames_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ResolvedNames_3), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.Utilities.EnumInfo Newtonsoft.Json.Utilities.EnumUtils::InitializeValuesAndNames(Newtonsoft.Json.Utilities.StructMultiKey`2<System.Type,Newtonsoft.Json.Serialization.NamingStrategy>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* EnumUtils_InitializeValuesAndNames_m847EC3AB49A276D98633E6B487B67449500BBC00 (StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_IndexOf_TisString_t_m93EC6BFDB1B64AB4C48C7329B99C061D2F350EA2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Cast_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_m2B55B1DE3CF4EA5A87FE61C7480A7AADDCF53288_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_TisString_t_m493F02D888EF35B0C6658E01CD9B62FE4B38BE9F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_SingleOrDefault_TisString_t_mB6F747A3C3592CB658649586468A3371D267EBA7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CInitializeValuesAndNamesU3Eb__3_0_m094403C76746F0AD39E77D84EAC601B7373FCEF4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* V_3 = NULL;
bool V_4 = false;
int32_t V_5 = 0;
String_t* V_6 = NULL;
FieldInfo_t* V_7 = NULL;
String_t* V_8 = NULL;
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* G_B2_0 = NULL;
RuntimeObject* G_B2_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B4_0 = NULL;
int32_t G_B9_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B9_1 = NULL;
int32_t G_B8_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B8_1 = NULL;
String_t* G_B10_0 = NULL;
int32_t G_B10_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B10_2 = NULL;
{
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_0 = ___key0;
Type_t* L_1 = L_0.___Value1_0;
V_0 = L_1;
Type_t* L_2 = V_0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3;
L_3 = Enum_GetNames_mA16B3D5DABC2AE21290B05053660F925DBFF6D94(L_2, NULL);
V_1 = L_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_1;
NullCheck(L_4);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)));
V_2 = L_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = V_1;
NullCheck(L_6);
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_7 = (UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299*)(UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299*)SZArrayNew(UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)));
V_3 = L_7;
V_5 = 0;
goto IL_00e9;
}
IL_0028:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = V_1;
int32_t L_9 = V_5;
NullCheck(L_8);
int32_t L_10 = L_9;
String_t* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_6 = L_11;
Type_t* L_12 = V_0;
String_t* L_13 = V_6;
NullCheck(L_12);
FieldInfo_t* L_14;
L_14 = VirtualFuncInvoker2< FieldInfo_t*, String_t*, int32_t >::Invoke(87 /* System.Reflection.FieldInfo System.Type::GetField(System.String,System.Reflection.BindingFlags) */, L_12, L_13, ((int32_t)56));
V_7 = L_14;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_15 = V_3;
int32_t L_16 = V_5;
FieldInfo_t* L_17 = V_7;
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_17, NULL);
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
uint64_t L_19;
L_19 = EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC(L_18, NULL);
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (uint64_t)L_19);
FieldInfo_t* L_20 = V_7;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_22;
L_22 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_21, NULL);
NullCheck(L_20);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23;
L_23 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_20, L_22, (bool)1);
RuntimeObject* L_24;
L_24 = Enumerable_Cast_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_m2B55B1DE3CF4EA5A87FE61C7480A7AADDCF53288((RuntimeObject*)L_23, Enumerable_Cast_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_m2B55B1DE3CF4EA5A87FE61C7480A7AADDCF53288_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var);
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* L_25 = ((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9__3_0_1;
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* L_26 = L_25;
G_B2_0 = L_26;
G_B2_1 = L_24;
if (L_26)
{
G_B3_0 = L_26;
G_B3_1 = L_24;
goto IL_0081;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var);
U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* L_27 = ((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* L_28 = (Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08*)il2cpp_codegen_object_new(Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08_il2cpp_TypeInfo_var);
NullCheck(L_28);
Func_2__ctor_m25D7CCCB2BC4A2036F633BA4E85C313162806D89(L_28, L_27, (intptr_t)((void*)U3CU3Ec_U3CInitializeValuesAndNamesU3Eb__3_0_m094403C76746F0AD39E77D84EAC601B7373FCEF4_RuntimeMethod_var), NULL);
Func_2_t04296EDDD4FC93CC773D1DA8D05ADAE3084C2C08* L_29 = L_28;
((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9__3_0_1 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9__3_0_1), (void*)L_29);
G_B3_0 = L_29;
G_B3_1 = G_B2_1;
}
IL_0081:
{
RuntimeObject* L_30;
L_30 = Enumerable_Select_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_TisString_t_m493F02D888EF35B0C6658E01CD9B62FE4B38BE9F(G_B3_1, G_B3_0, Enumerable_Select_TisEnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F_TisString_t_m493F02D888EF35B0C6658E01CD9B62FE4B38BE9F_RuntimeMethod_var);
String_t* L_31;
L_31 = Enumerable_SingleOrDefault_TisString_t_mB6F747A3C3592CB658649586468A3371D267EBA7(L_30, Enumerable_SingleOrDefault_TisString_t_mB6F747A3C3592CB658649586468A3371D267EBA7_RuntimeMethod_var);
String_t* L_32 = L_31;
V_4 = (bool)((!(((RuntimeObject*)(String_t*)L_32) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
String_t* L_33 = L_32;
G_B4_0 = L_33;
if (L_33)
{
G_B5_0 = L_33;
goto IL_0097;
}
}
{
String_t* L_34 = V_6;
G_B5_0 = L_34;
}
IL_0097:
{
V_8 = G_B5_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = V_2;
String_t* L_36 = V_8;
int32_t L_37 = V_5;
int32_t L_38;
L_38 = Array_IndexOf_TisString_t_m93EC6BFDB1B64AB4C48C7329B99C061D2F350EA2(L_35, L_36, 0, L_37, Array_IndexOf_TisString_t_m93EC6BFDB1B64AB4C48C7329B99C061D2F350EA2_RuntimeMethod_var);
if ((((int32_t)L_38) == ((int32_t)(-1))))
{
goto IL_00c4;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_39;
L_39 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_40 = V_8;
Type_t* L_41 = V_0;
NullCheck(L_41);
String_t* L_42;
L_42 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_41);
String_t* L_43;
L_43 = StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDD57D1C5935A294D52FBA3188055CCFAB409389F)), L_39, L_40, L_42, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_44 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_44);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_44, L_43, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_InitializeValuesAndNames_m847EC3AB49A276D98633E6B487B67449500BBC00_RuntimeMethod_var)));
}
IL_00c4:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = V_2;
int32_t L_46 = V_5;
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_47 = ___key0;
NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* L_48 = L_47.___Value2_1;
G_B8_0 = L_46;
G_B8_1 = L_45;
if (L_48)
{
G_B9_0 = L_46;
G_B9_1 = L_45;
goto IL_00d3;
}
}
{
String_t* L_49 = V_8;
G_B10_0 = L_49;
G_B10_1 = G_B8_0;
G_B10_2 = G_B8_1;
goto IL_00e2;
}
IL_00d3:
{
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_50 = ___key0;
NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* L_51 = L_50.___Value2_1;
String_t* L_52 = V_8;
bool L_53 = V_4;
NullCheck(L_51);
String_t* L_54;
L_54 = VirtualFuncInvoker2< String_t*, String_t*, bool >::Invoke(4 /* System.String Newtonsoft.Json.Serialization.NamingStrategy::GetPropertyName(System.String,System.Boolean) */, L_51, L_52, L_53);
G_B10_0 = L_54;
G_B10_1 = G_B9_0;
G_B10_2 = G_B9_1;
}
IL_00e2:
{
NullCheck(G_B10_2);
ArrayElementTypeCheck (G_B10_2, G_B10_0);
(G_B10_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B10_1), (String_t*)G_B10_0);
int32_t L_55 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_55, 1));
}
IL_00e9:
{
int32_t L_56 = V_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_57 = V_1;
NullCheck(L_57);
if ((((int32_t)L_56) < ((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length)))))
{
goto IL_0028;
}
}
{
Type_t* L_58 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast<intptr_t> (FlagsAttribute_t902A411320FCE075B57DB7157C695B392C610D1D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_60;
L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL);
NullCheck(L_58);
bool L_61;
L_61 = VirtualFuncInvoker2< bool, Type_t*, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_58, L_60, (bool)0);
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_62 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_63 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_64 = V_2;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_65 = (EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571*)il2cpp_codegen_object_new(EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571_il2cpp_TypeInfo_var);
NullCheck(L_65);
EnumInfo__ctor_m81F36D62F4703ECB5C7DDD56A03097764285078A(L_65, L_61, L_62, L_63, L_64, NULL);
return L_65;
}
}
// System.Boolean Newtonsoft.Json.Utilities.EnumUtils::TryToString(System.Type,System.Object,System.Boolean,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumUtils_TryToString_m195F8025A433F041A41AB525C4C3020B6C5CA7C8 (Type_t* ___enumType0, RuntimeObject* ___value1, bool ___camelCase2, String_t** ___name3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B2_0 = NULL;
Type_t* G_B2_1 = NULL;
RuntimeObject* G_B1_0 = NULL;
Type_t* G_B1_1 = NULL;
CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8* G_B3_0 = NULL;
RuntimeObject* G_B3_1 = NULL;
Type_t* G_B3_2 = NULL;
{
Type_t* L_0 = ___enumType0;
RuntimeObject* L_1 = ___value1;
bool L_2 = ___camelCase2;
G_B1_0 = L_1;
G_B1_1 = L_0;
if (L_2)
{
G_B2_0 = L_1;
G_B2_1 = L_0;
goto IL_0008;
}
}
{
G_B3_0 = ((CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8*)(NULL));
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_000d;
}
IL_0008:
{
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8* L_3 = ((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->____camelCaseNamingStrategy_3;
G_B3_0 = L_3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_000d:
{
String_t** L_4 = ___name3;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
bool L_5;
L_5 = EnumUtils_TryToString_m454C0BD5EA39A454B73BF95A2C8FFB5833021DBB(G_B3_2, G_B3_1, G_B3_0, L_4, NULL);
return L_5;
}
}
// System.Boolean Newtonsoft.Json.Utilities.EnumUtils::TryToString(System.Type,System.Object,Newtonsoft.Json.Serialization.NamingStrategy,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumUtils_TryToString_m454C0BD5EA39A454B73BF95A2C8FFB5833021DBB (Type_t* ___enumType0, RuntimeObject* ___value1, NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* ___namingStrategy2, String_t** ___name3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* V_0 = NULL;
uint64_t V_1 = 0;
int32_t V_2 = 0;
{
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* L_0 = ((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->___ValuesAndNamesPerEnum_2;
Type_t* L_1 = ___enumType0;
NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* L_2 = ___namingStrategy2;
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_3;
memset((&L_3), 0, sizeof(L_3));
StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2((&L_3), L_1, L_2, /*hidden argument*/StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
NullCheck(L_0);
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_4;
L_4 = ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33(L_0, L_3, ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
V_0 = L_4;
RuntimeObject* L_5 = ___value1;
uint64_t L_6;
L_6 = EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC(L_5, NULL);
V_1 = L_6;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_7 = V_0;
NullCheck(L_7);
bool L_8 = L_7->___IsFlags_0;
if (L_8)
{
goto IL_0043;
}
}
{
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_9 = V_0;
NullCheck(L_9);
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_10 = L_9->___Values_1;
uint64_t L_11 = V_1;
int32_t L_12;
L_12 = Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1(L_10, L_11, Array_BinarySearch_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_m45828578831A4F29E3A8D1611D143F5EAA10DCF1_RuntimeMethod_var);
V_2 = L_12;
int32_t L_13 = V_2;
if ((((int32_t)L_13) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
String_t** L_14 = ___name3;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_15 = V_0;
NullCheck(L_15);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15->___ResolvedNames_3;
int32_t L_17 = V_2;
NullCheck(L_16);
int32_t L_18 = L_17;
String_t* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
*((RuntimeObject**)L_14) = (RuntimeObject*)L_19;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_19);
return (bool)1;
}
IL_003e:
{
String_t** L_20 = ___name3;
*((RuntimeObject**)L_20) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
IL_0043:
{
String_t** L_21 = ___name3;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_22 = V_0;
uint64_t L_23 = V_1;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
String_t* L_24;
L_24 = EnumUtils_InternalFlagsFormat_m10EF3FA6B5A3AA6F61EF0A686AAAF041F28C9827(L_22, L_23, NULL);
*((RuntimeObject**)L_21) = (RuntimeObject*)L_24;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_21, (void*)(RuntimeObject*)L_24);
String_t** L_25 = ___name3;
String_t* L_26 = *((String_t**)L_25);
return (bool)((!(((RuntimeObject*)(String_t*)L_26) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.String Newtonsoft.Json.Utilities.EnumUtils::InternalFlagsFormat(Newtonsoft.Json.Utilities.EnumInfo,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumUtils_InternalFlagsFormat_m10EF3FA6B5A3AA6F61EF0A686AAAF041F28C9827 (EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* ___entry0, uint64_t ___result1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* V_1 = NULL;
int32_t V_2 = 0;
StringBuilder_t* V_3 = NULL;
bool V_4 = false;
uint64_t V_5 = 0;
String_t* V_6 = NULL;
String_t* V_7 = NULL;
{
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_0 = ___entry0;
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0->___ResolvedNames_3;
V_0 = L_1;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_2 = ___entry0;
NullCheck(L_2);
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_3 = L_2->___Values_1;
V_1 = L_3;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_4 = V_1;
NullCheck(L_4);
V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 1));
StringBuilder_t* L_5 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_5);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_5, NULL);
V_3 = L_5;
V_4 = (bool)1;
uint64_t L_6 = ___result1;
V_5 = L_6;
goto IL_0062;
}
IL_0022:
{
int32_t L_7 = V_2;
if (L_7)
{
goto IL_002a;
}
}
{
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_8 = V_1;
int32_t L_9 = V_2;
NullCheck(L_8);
int32_t L_10 = L_9;
int64_t L_11 = (int64_t)(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
if (!L_11)
{
goto IL_0066;
}
}
IL_002a:
{
uint64_t L_12 = ___result1;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_13 = V_1;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
int64_t L_16 = (int64_t)(L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_17 = V_1;
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = L_18;
int64_t L_20 = (int64_t)(L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
if ((!(((uint64_t)((int64_t)((int64_t)L_12&L_16))) == ((uint64_t)L_20))))
{
goto IL_005e;
}
}
{
uint64_t L_21 = ___result1;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_22 = V_1;
int32_t L_23 = V_2;
NullCheck(L_22);
int32_t L_24 = L_23;
int64_t L_25 = (int64_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
___result1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_21, L_25));
bool L_26 = V_4;
if (L_26)
{
goto IL_004c;
}
}
{
StringBuilder_t* L_27 = V_3;
NullCheck(L_27);
StringBuilder_t* L_28;
L_28 = StringBuilder_Insert_mEA426100381DD65FB6A891BA28B5F1208BEDDD29(L_27, 0, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
}
IL_004c:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = V_0;
int32_t L_30 = V_2;
NullCheck(L_29);
int32_t L_31 = L_30;
String_t* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_7 = L_32;
StringBuilder_t* L_33 = V_3;
String_t* L_34 = V_7;
NullCheck(L_33);
StringBuilder_t* L_35;
L_35 = StringBuilder_Insert_mEA426100381DD65FB6A891BA28B5F1208BEDDD29(L_33, 0, L_34, NULL);
V_4 = (bool)0;
}
IL_005e:
{
int32_t L_36 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_36, 1));
}
IL_0062:
{
int32_t L_37 = V_2;
if ((((int32_t)L_37) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_0066:
{
uint64_t L_38 = ___result1;
if (!L_38)
{
goto IL_006e;
}
}
{
V_6 = (String_t*)NULL;
goto IL_008f;
}
IL_006e:
{
uint64_t L_39 = V_5;
if (L_39)
{
goto IL_0087;
}
}
{
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_40 = V_1;
NullCheck(L_40);
if (!(((RuntimeArray*)L_40)->max_length))
{
goto IL_0082;
}
}
{
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_41 = V_1;
NullCheck(L_41);
int32_t L_42 = 0;
int64_t L_43 = (int64_t)(L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
if (L_43)
{
goto IL_0082;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_44 = V_0;
NullCheck(L_44);
int32_t L_45 = 0;
String_t* L_46 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
V_6 = L_46;
goto IL_008f;
}
IL_0082:
{
V_6 = (String_t*)NULL;
goto IL_008f;
}
IL_0087:
{
StringBuilder_t* L_47 = V_3;
NullCheck(L_47);
String_t* L_48;
L_48 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_47);
V_6 = L_48;
}
IL_008f:
{
String_t* L_49 = V_6;
return L_49;
}
}
// Newtonsoft.Json.Utilities.EnumInfo Newtonsoft.Json.Utilities.EnumUtils::GetEnumValuesAndNames(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* EnumUtils_GetEnumValuesAndNames_mE0CF94379B9794E79B693F555D87686C37638BF8 (Type_t* ___enumType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* L_0 = ((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->___ValuesAndNamesPerEnum_2;
Type_t* L_1 = ___enumType0;
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_2;
memset((&L_2), 0, sizeof(L_2));
StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2((&L_2), L_1, (NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50*)NULL, /*hidden argument*/StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
NullCheck(L_0);
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_3;
L_3 = ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33(L_0, L_2, ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
return L_3;
}
}
// System.UInt64 Newtonsoft.Json.Utilities.EnumUtils::ToUInt64(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
{
RuntimeObject* L_0 = ___value0;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = ConvertUtils_GetTypeCode_m81D45C5E7E6FDEA8B00CE19B5CC8BE488ADC1474(L_1, (&V_1), NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 2)))
{
case 0:
{
goto IL_0091;
}
case 1:
{
goto IL_00b7;
}
case 2:
{
goto IL_0074;
}
case 3:
{
goto IL_00b7;
}
case 4:
{
goto IL_0064;
}
case 5:
{
goto IL_00b7;
}
case 6:
{
goto IL_0081;
}
case 7:
{
goto IL_00b7;
}
case 8:
{
goto IL_0089;
}
case 9:
{
goto IL_00b7;
}
case 10:
{
goto IL_00a1;
}
case 11:
{
goto IL_00b7;
}
case 12:
{
goto IL_006c;
}
case 13:
{
goto IL_00b7;
}
case 14:
{
goto IL_0099;
}
case 15:
{
goto IL_00b7;
}
case 16:
{
goto IL_00b0;
}
case 17:
{
goto IL_00b7;
}
case 18:
{
goto IL_00a9;
}
}
}
{
goto IL_00b7;
}
IL_0064:
{
RuntimeObject* L_4 = ___value0;
return ((int64_t)((*(int8_t*)((int8_t*)(int8_t*)UnBox(L_4, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var)))));
}
IL_006c:
{
RuntimeObject* L_5 = ___value0;
return ((int64_t)(uint64_t)((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_5, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))));
}
IL_0074:
{
RuntimeObject* L_6 = ___value0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_7;
L_7 = Convert_ToByte_mF977257DBAD4FAD9FF78232B33DF37121800834D(((*(bool*)((bool*)(bool*)UnBox(L_6, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))), NULL);
return ((int64_t)(uint64_t)L_7);
}
IL_0081:
{
RuntimeObject* L_8 = ___value0;
return ((int64_t)((*(int16_t*)((int16_t*)(int16_t*)UnBox(L_8, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var)))));
}
IL_0089:
{
RuntimeObject* L_9 = ___value0;
return ((int64_t)(uint64_t)((*(uint16_t*)((uint16_t*)(uint16_t*)UnBox(L_9, UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)))));
}
IL_0091:
{
RuntimeObject* L_10 = ___value0;
return ((int64_t)(uint64_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_10, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))));
}
IL_0099:
{
RuntimeObject* L_11 = ___value0;
return ((int64_t)(uint64_t)((*(uint32_t*)((uint32_t*)(uint32_t*)UnBox(L_11, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))));
}
IL_00a1:
{
RuntimeObject* L_12 = ___value0;
return ((int64_t)((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_12, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))));
}
IL_00a9:
{
RuntimeObject* L_13 = ___value0;
return ((*(uint64_t*)((uint64_t*)(uint64_t*)UnBox(L_13, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))));
}
IL_00b0:
{
RuntimeObject* L_14 = ___value0;
return ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_14, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))));
}
IL_00b7:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE086D2006B6AA983B2956137EB1F59EE455C2B86)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_ToUInt64_mB5225B585CCEA8D3BA89002BDA1DF513C9F930DC_RuntimeMethod_var)));
}
}
// System.Object Newtonsoft.Json.Utilities.EnumUtils::ParseEnum(System.Type,Newtonsoft.Json.Serialization.NamingStrategy,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352 (Type_t* ___enumType0, NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* ___namingStrategy1, String_t* ___value2, bool ___disallowNumber3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD0928C03BDC2C023E2CF3BC347393F87144F9F8);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* V_2 = NULL;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
uint64_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
Type_t* V_9 = NULL;
RuntimeObject* V_10 = NULL;
int32_t V_11 = 0;
int32_t V_12 = 0;
int32_t V_13 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
Type_t* L_0 = ___enumType0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralAD0928C03BDC2C023E2CF3BC347393F87144F9F8, NULL);
String_t* L_1 = ___value2;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, NULL);
Type_t* L_2 = ___enumType0;
bool L_3;
L_3 = TypeExtensions_IsEnum_m8FA65C0E930492403B47210901174D660CB274A4(L_2, NULL);
if (L_3)
{
goto IL_002e;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7EB1862B8007FB96FDB5E7E0F2669BF5F89537DC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD0928C03BDC2C023E2CF3BC347393F87144F9F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352_RuntimeMethod_var)));
}
IL_002e:
{
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* L_5 = ((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->___ValuesAndNamesPerEnum_2;
Type_t* L_6 = ___enumType0;
NamingStrategy_tB85DD4A9F6C33F668AF7273D3B5193ABC4617D50* L_7 = ___namingStrategy1;
StructMultiKey_2_t9FB148F2A8EBC3FFB18FB69FDB4EBB5E77237C2D L_8;
memset((&L_8), 0, sizeof(L_8));
StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2((&L_8), L_6, L_7, /*hidden argument*/StructMultiKey_2__ctor_mDC81C173F7165BA01ACD177AD27AF97350A390B2_RuntimeMethod_var);
NullCheck(L_5);
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_9;
L_9 = ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33(L_5, L_8, ThreadSafeStore_2_Get_m02A8F1F28D12DCAB5369B500A598B82F3007CC33_RuntimeMethod_var);
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_10 = L_9;
NullCheck(L_10);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10->___Names_2;
V_0 = L_11;
EnumInfo_t786CA2C24EE84B1EC2F48E8448A3A0AC6F842571* L_12 = L_10;
NullCheck(L_12);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12->___ResolvedNames_3;
V_1 = L_13;
NullCheck(L_12);
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_14 = L_12->___Values_1;
V_2 = L_14;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = V_1;
String_t* L_16 = ___value2;
String_t* L_17 = ___value2;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_19;
L_19 = EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C(L_15, L_16, 0, L_18, 4, NULL);
V_3 = L_19;
bool L_20;
L_20 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_3), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_20)
{
goto IL_007c;
}
}
{
Type_t* L_21 = ___enumType0;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_22 = V_2;
int32_t L_23;
L_23 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_3), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
NullCheck(L_22);
int32_t L_24 = L_23;
int64_t L_25 = (int64_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_26;
L_26 = Enum_ToObject_m5F3E7A43003C9B3CD35925F8F659A6EDABD79DC8(L_21, L_25, NULL);
return L_26;
}
IL_007c:
{
V_4 = (-1);
V_8 = 0;
goto IL_009f;
}
IL_0084:
{
String_t* L_27 = ___value2;
int32_t L_28 = V_8;
NullCheck(L_27);
Il2CppChar L_29;
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, L_28, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_30;
L_30 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_29, NULL);
if (L_30)
{
goto IL_0099;
}
}
{
int32_t L_31 = V_8;
V_4 = L_31;
goto IL_00a9;
}
IL_0099:
{
int32_t L_32 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_009f:
{
int32_t L_33 = V_8;
String_t* L_34 = ___value2;
NullCheck(L_34);
int32_t L_35;
L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL);
if ((((int32_t)L_33) < ((int32_t)L_35)))
{
goto IL_0084;
}
}
IL_00a9:
{
int32_t L_36 = V_4;
if ((!(((uint32_t)L_36) == ((uint32_t)(-1)))))
{
goto IL_00b9;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_37 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_37);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C7B0A231B92371DBD368FFCAD12A986962E0D02)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352_RuntimeMethod_var)));
}
IL_00b9:
{
String_t* L_38 = ___value2;
int32_t L_39 = V_4;
NullCheck(L_38);
Il2CppChar L_40;
L_40 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_38, L_39, NULL);
V_5 = L_40;
Il2CppChar L_41 = V_5;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_42;
L_42 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_41, NULL);
if (L_42)
{
goto IL_00d8;
}
}
{
Il2CppChar L_43 = V_5;
if ((((int32_t)L_43) == ((int32_t)((int32_t)45))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_44 = V_5;
if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)43)))))
{
goto IL_0125;
}
}
IL_00d8:
{
Type_t* L_45 = ___enumType0;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
Type_t* L_46;
L_46 = Enum_GetUnderlyingType_m82EA340BC4D4652783F7D2408BF02A945F0F90DE(L_45, NULL);
V_9 = L_46;
String_t* L_47 = ___value2;
NullCheck(L_47);
String_t* L_48;
L_48 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_47, NULL);
___value2 = L_48;
V_10 = NULL;
}
try
{// begin try (depth: 1)
String_t* L_49 = ___value2;
Type_t* L_50 = V_9;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_51;
L_51 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
RuntimeObject* L_52;
L_52 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_49, L_50, L_51, NULL);
V_10 = L_52;
goto IL_00ff;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00fc;
}
throw e;
}
CATCH_00fc:
{// begin catch(System.FormatException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00ff;
}// end catch (depth: 1)
IL_00ff:
{
RuntimeObject* L_53 = V_10;
if (!L_53)
{
goto IL_0125;
}
}
{
bool L_54 = ___disallowNumber3;
if (!L_54)
{
goto IL_011c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_55;
L_55 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_56 = ___value2;
String_t* L_57;
L_57 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3B6BB5E3798289880FD394AEC70B6ABE7FD1033)), L_55, L_56, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_58 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_58);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_58, L_57, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352_RuntimeMethod_var)));
}
IL_011c:
{
Type_t* L_59 = ___enumType0;
RuntimeObject* L_60 = V_10;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_61;
L_61 = Enum_ToObject_m6AC36749AA2CE7BCC5416CA230C0E5B4BDCFF4DB(L_59, L_60, NULL);
return L_61;
}
IL_0125:
{
V_6 = ((int64_t)0);
int32_t L_62 = V_4;
V_7 = L_62;
goto IL_0213;
}
IL_0132:
{
String_t* L_63 = ___value2;
int32_t L_64 = V_7;
NullCheck(L_63);
int32_t L_65;
L_65 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_63, ((int32_t)44), L_64, NULL);
V_11 = L_65;
int32_t L_66 = V_11;
if ((!(((uint32_t)L_66) == ((uint32_t)(-1)))))
{
goto IL_014b;
}
}
{
String_t* L_67 = ___value2;
NullCheck(L_67);
int32_t L_68;
L_68 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_67, NULL);
V_11 = L_68;
}
IL_014b:
{
int32_t L_69 = V_11;
V_12 = L_69;
goto IL_0157;
}
IL_0151:
{
int32_t L_70 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_70, 1));
}
IL_0157:
{
int32_t L_71 = V_7;
int32_t L_72 = V_11;
if ((((int32_t)L_71) >= ((int32_t)L_72)))
{
goto IL_0174;
}
}
{
String_t* L_73 = ___value2;
int32_t L_74 = V_7;
NullCheck(L_73);
Il2CppChar L_75;
L_75 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_73, L_74, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_76;
L_76 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_75, NULL);
if (L_76)
{
goto IL_0151;
}
}
{
goto IL_0174;
}
IL_016e:
{
int32_t L_77 = V_12;
V_12 = ((int32_t)il2cpp_codegen_subtract(L_77, 1));
}
IL_0174:
{
int32_t L_78 = V_12;
int32_t L_79 = V_7;
if ((((int32_t)L_78) <= ((int32_t)L_79)))
{
goto IL_018b;
}
}
{
String_t* L_80 = ___value2;
int32_t L_81 = V_12;
NullCheck(L_80);
Il2CppChar L_82;
L_82 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_80, ((int32_t)il2cpp_codegen_subtract(L_81, 1)), NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_83;
L_83 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_82, NULL);
if (L_83)
{
goto IL_016e;
}
}
IL_018b:
{
int32_t L_84 = V_12;
int32_t L_85 = V_7;
V_13 = ((int32_t)il2cpp_codegen_subtract(L_84, L_85));
String_t* L_86 = ___value2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_88 = V_1;
int32_t L_89 = V_7;
int32_t L_90 = V_13;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_91;
L_91 = EnumUtils_MatchName_m6A0E35FEF84B5013903F0CDD1E086174E64D6DE1(L_86, L_87, L_88, L_89, L_90, 4, NULL);
V_3 = L_91;
bool L_92;
L_92 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_3), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_92)
{
goto IL_01b7;
}
}
{
String_t* L_93 = ___value2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_94 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_95 = V_1;
int32_t L_96 = V_7;
int32_t L_97 = V_13;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_98;
L_98 = EnumUtils_MatchName_m6A0E35FEF84B5013903F0CDD1E086174E64D6DE1(L_93, L_94, L_95, L_96, L_97, 5, NULL);
V_3 = L_98;
}
IL_01b7:
{
bool L_99;
L_99 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_3), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_99)
{
goto IL_01ff;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_100 = V_1;
String_t* L_101 = ___value2;
String_t* L_102 = ___value2;
NullCheck(L_102);
int32_t L_103;
L_103 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_102, NULL);
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_104;
L_104 = EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C(L_100, L_101, 0, L_103, 5, NULL);
V_3 = L_104;
bool L_105;
L_105 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_3), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_105)
{
goto IL_01e9;
}
}
{
Type_t* L_106 = ___enumType0;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_107 = V_2;
int32_t L_108;
L_108 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_3), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
NullCheck(L_107);
int32_t L_109 = L_108;
int64_t L_110 = (int64_t)(L_107)->GetAt(static_cast<il2cpp_array_size_t>(L_109));
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_111;
L_111 = Enum_ToObject_m5F3E7A43003C9B3CD35925F8F659A6EDABD79DC8(L_106, L_110, NULL);
return L_111;
}
IL_01e9:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_112;
L_112 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_113 = ___value2;
String_t* L_114;
L_114 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral61792A94CAAE6F418C961B460FC78E84493C1A53)), L_112, L_113, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_115 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_115);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_115, L_114, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_115, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumUtils_ParseEnum_m2030E0F62BF5CA9D3A779C110C096F1752C6B352_RuntimeMethod_var)));
}
IL_01ff:
{
uint64_t L_116 = V_6;
UInt64U5BU5D_tAB1A62450AC0899188486EDB9FC066B8BEED9299* L_117 = V_2;
int32_t L_118;
L_118 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&V_3), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
NullCheck(L_117);
int32_t L_119 = L_118;
int64_t L_120 = (int64_t)(L_117)->GetAt(static_cast<il2cpp_array_size_t>(L_119));
V_6 = ((int64_t)((int64_t)L_116|L_120));
int32_t L_121 = V_11;
V_7 = ((int32_t)il2cpp_codegen_add(L_121, 1));
}
IL_0213:
{
int32_t L_122 = V_7;
String_t* L_123 = ___value2;
NullCheck(L_123);
int32_t L_124;
L_124 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_123, NULL);
if ((((int32_t)L_122) <= ((int32_t)L_124)))
{
goto IL_0132;
}
}
{
Type_t* L_125 = ___enumType0;
uint64_t L_126 = V_6;
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
RuntimeObject* L_127;
L_127 = Enum_ToObject_m5F3E7A43003C9B3CD35925F8F659A6EDABD79DC8(L_125, L_126, NULL);
return L_127;
}
}
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.EnumUtils::MatchName(System.String,System.String[],System.String[],System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 EnumUtils_MatchName_m6A0E35FEF84B5013903F0CDD1E086174E64D6DE1 (String_t* ___value0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___enumNames1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___resolvedNames2, int32_t ___valueIndex3, int32_t ___valueSubstringLength4, int32_t ___comparison5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_0;
memset((&V_0), 0, sizeof(V_0));
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___resolvedNames2;
String_t* L_1 = ___value0;
int32_t L_2 = ___valueIndex3;
int32_t L_3 = ___valueSubstringLength4;
int32_t L_4 = ___comparison5;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_5;
L_5 = EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C(L_0, L_1, L_2, L_3, L_4, NULL);
V_0 = L_5;
bool L_6;
L_6 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_0), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_6)
{
goto IL_0023;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = ___enumNames1;
String_t* L_8 = ___value0;
int32_t L_9 = ___valueIndex3;
int32_t L_10 = ___valueSubstringLength4;
int32_t L_11 = ___comparison5;
il2cpp_codegen_runtime_class_init_inline(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_12;
L_12 = EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C(L_7, L_8, L_9, L_10, L_11, NULL);
V_0 = L_12;
}
IL_0023:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_13 = V_0;
return L_13;
}
}
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.EnumUtils::FindIndexByName(System.String[],System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 EnumUtils_FindIndexByName_mA1EC6955E5D86582BDA7DA143F909AAE6AC2E95C (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___enumNames0, String_t* ___value1, int32_t ___valueIndex2, int32_t ___valueSubstringLength3, int32_t ___comparison4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1;
memset((&V_1), 0, sizeof(V_1));
{
V_0 = 0;
goto IL_002a;
}
IL_0004:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___enumNames0;
int32_t L_1 = V_0;
NullCheck(L_0);
int32_t L_2 = L_1;
String_t* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
int32_t L_5 = ___valueSubstringLength3;
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
{
goto IL_0026;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = ___enumNames0;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
String_t* L_10 = ___value1;
int32_t L_11 = ___valueIndex2;
int32_t L_12 = ___valueSubstringLength3;
int32_t L_13 = ___comparison4;
int32_t L_14;
L_14 = String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA(L_9, 0, L_10, L_11, L_12, L_13, NULL);
if (L_14)
{
goto IL_0026;
}
}
{
int32_t L_15 = V_0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_16;
memset((&L_16), 0, sizeof(L_16));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_16), L_15, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
return L_16;
}
IL_0026:
{
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_002a:
{
int32_t L_18 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = ___enumNames0;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
{
goto IL_0004;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_20 = V_1;
return L_20;
}
}
// System.Void Newtonsoft.Json.Utilities.EnumUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumUtils__cctor_mE1C8A473E32EE5668B74AB637BD1344C1D08C2F5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_InitializeValuesAndNames_m847EC3AB49A276D98633E6B487B67449500BBC00_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2__ctor_m268D655240D6A1AA432C1156AC2C3927E86DD8B8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C* L_0 = (Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C*)il2cpp_codegen_object_new(Func_2_t8982CCE09BBD586D213A8A6F9271A9C8B6F66F7C_il2cpp_TypeInfo_var);
NullCheck(L_0);
Func_2__ctor_mBF572B6F62CA735C7C45DEDFC75F0839A6247612(L_0, NULL, (intptr_t)((void*)EnumUtils_InitializeValuesAndNames_m847EC3AB49A276D98633E6B487B67449500BBC00_RuntimeMethod_var), NULL);
ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2* L_1 = (ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2*)il2cpp_codegen_object_new(ThreadSafeStore_2_tBEB18D194F1BD52F8291850269F8611CAD6087F2_il2cpp_TypeInfo_var);
NullCheck(L_1);
ThreadSafeStore_2__ctor_m268D655240D6A1AA432C1156AC2C3927E86DD8B8(L_1, L_0, ThreadSafeStore_2__ctor_m268D655240D6A1AA432C1156AC2C3927E86DD8B8_RuntimeMethod_var);
((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->___ValuesAndNamesPerEnum_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->___ValuesAndNamesPerEnum_2), (void*)L_1);
CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8* L_2 = (CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8*)il2cpp_codegen_object_new(CamelCaseNamingStrategy_tCD17472E129D8769696271E3785AC5FA29DE6DB8_il2cpp_TypeInfo_var);
NullCheck(L_2);
CamelCaseNamingStrategy__ctor_mF8654DDF11007C1CA79C1152B59BD07B3EF088E1(L_2, NULL);
((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->____camelCaseNamingStrategy_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_StaticFields*)il2cpp_codegen_static_fields_for(EnumUtils_t82B7A52C1A6C3C71912D9194157A653B9E227BE2_il2cpp_TypeInfo_var))->____camelCaseNamingStrategy_3), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m8A8A59F80223173D09EA27C2A54D8098E930821F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* L_0 = (U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A*)il2cpp_codegen_object_new(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_mB8204CC34DACDED611AAD8DB38DBFE4D17601831(L_0, NULL);
((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mB8204CC34DACDED611AAD8DB38DBFE4D17601831 (U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String Newtonsoft.Json.Utilities.EnumUtils/<>c::<InitializeValuesAndNames>b__3_0(System.Runtime.Serialization.EnumMemberAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CInitializeValuesAndNamesU3Eb__3_0_m094403C76746F0AD39E77D84EAC601B7373FCEF4 (U3CU3Ec_tD681B370A69AEC21C13653948AA94CAEAB5BFF9A* __this, EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F* ___a0, const RuntimeMethod* method)
{
{
EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F* L_0 = ___a0;
NullCheck(L_0);
String_t* L_1;
L_1 = EnumMemberAttribute_get_Value_mB41126B613B9FD1CD8A05D08FCEC4B6663864BE9_inline(L_0, NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.FSharpFunction::.ctor(System.Object,Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpFunction__ctor_m3F5A2832EC500F2DD4CD1B50F05BCCFE9DFB3AC0 (FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF* __this, RuntimeObject* ___instance0, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___invoker1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___instance0;
__this->____instance_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____instance_0), (void*)L_0);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_1 = ___invoker1;
__this->____invoker_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____invoker_1), (void*)L_1);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.FSharpFunction::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FSharpFunction_Invoke_mBBC941CEBBA5D16985370F95BC36079E32C09111 (FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->____invoker_1;
RuntimeObject* L_1 = __this->____instance_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___args0;
NullCheck(L_0);
RuntimeObject* L_3;
L_3 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, L_1, L_2, NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::.ctor(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils__ctor_m9824778422EAFFB89C8FC8176D0EF2A0A68A7047 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Assembly_t* ___fsharpCoreAssembly0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m32BD6DDB95C1A7C8375054C51A260ACACF14F021_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral01385C410406BC5C6E613A5C7CEFFAADC5A9E11D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03240CCFCA588F834F0D4346FC80A8CB5E79695D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1706A972A45E7E0E7BC14717526F35BAE9546192);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral191622F509097F2FCB595D5FC78BA99C9F397DDE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31782CD9A6A47475536890B41BD5A172BFBA9D7C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38D3180E9C0FF991B68A4FB4936D05239A551CBD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral620393CAA7436A70D33A45431FDCF0685865506A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64CC8687188AD60D21B4B3FCE3779CED9FA4BCF9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B678D52DFE1E770472694B755712C0213F5B1E1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70A44463260654A02F64C384069FD48D9C0271C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F8D72E59DAFDA9FEDE3FA132F4A524660A67F46);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA37E350E730B9C7E6ACED476C06361A729F5D9F2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1BADF651F72DA9740CFF018B33A84A8FE0940FC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC9FEEC3BAA682D77E77837073F55B25B8BC10BA4);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t* V_0 = NULL;
MethodInfo_t* V_1 = NULL;
Type_t* V_2 = NULL;
Type_t* V_3 = NULL;
Type_t* V_4 = NULL;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Assembly_t* L_0 = ___fsharpCoreAssembly0;
FSharpUtils_set_FSharpCoreAssembly_m32C9B6A87994E00C34378B4B7C39B2E26C0C6506_inline(__this, L_0, NULL);
Assembly_t* L_1 = ___fsharpCoreAssembly0;
NullCheck(L_1);
Type_t* L_2;
L_2 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_1, _stringLiteral191622F509097F2FCB595D5FC78BA99C9F397DDE);
Type_t* L_3 = L_2;
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
MethodInfo_t* L_4;
L_4 = FSharpUtils_GetMethodWithNonPublicFallback_m2487A2B48B9588492F576FC401765638D1AD7B20(L_3, _stringLiteral31782CD9A6A47475536890B41BD5A172BFBA9D7C, ((int32_t)24), NULL);
V_0 = L_4;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_5;
L_5 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_6 = V_0;
NullCheck(L_5);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_7;
L_7 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_5, L_6);
FSharpUtils_set_IsUnion_m8FCC8731B64FE062A4E1D311940B5F5B599A0A3A_inline(__this, L_7, NULL);
MethodInfo_t* L_8;
L_8 = FSharpUtils_GetMethodWithNonPublicFallback_m2487A2B48B9588492F576FC401765638D1AD7B20(L_3, _stringLiteral6B678D52DFE1E770472694B755712C0213F5B1E1, ((int32_t)24), NULL);
V_1 = L_8;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_9;
L_9 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_10 = V_1;
NullCheck(L_9);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_11;
L_11 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_9, L_10);
FSharpUtils_set_GetUnionCases_m6149ED7891791ABDC0D92F829F7089FD24BD9700_inline(__this, L_11, NULL);
Assembly_t* L_12 = ___fsharpCoreAssembly0;
NullCheck(L_12);
Type_t* L_13;
L_13 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_12, _stringLiteral03240CCFCA588F834F0D4346FC80A8CB5E79695D);
V_2 = L_13;
Type_t* L_14 = V_2;
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_15;
L_15 = FSharpUtils_CreateFSharpFuncCall_m89DB18871762C3640D3900F009AE2E66361229DB(L_14, _stringLiteral70A44463260654A02F64C384069FD48D9C0271C4, NULL);
FSharpUtils_set_PreComputeUnionTagReader_m847B8584BDDE2A8A3CF3C3F67E256D86FC3E5EBC_inline(__this, L_15, NULL);
Type_t* L_16 = V_2;
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_17;
L_17 = FSharpUtils_CreateFSharpFuncCall_m89DB18871762C3640D3900F009AE2E66361229DB(L_16, _stringLiteralC9FEEC3BAA682D77E77837073F55B25B8BC10BA4, NULL);
FSharpUtils_set_PreComputeUnionReader_m9DB56755B6E02862BC06346DE42EFB80F20BE07D_inline(__this, L_17, NULL);
Type_t* L_18 = V_2;
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_19;
L_19 = FSharpUtils_CreateFSharpFuncCall_m89DB18871762C3640D3900F009AE2E66361229DB(L_18, _stringLiteral38D3180E9C0FF991B68A4FB4936D05239A551CBD, NULL);
FSharpUtils_set_PreComputeUnionConstructor_mA9DBD858EA7027535AA2B08A9BA72A051FBA517D_inline(__this, L_19, NULL);
Assembly_t* L_20 = ___fsharpCoreAssembly0;
NullCheck(L_20);
Type_t* L_21;
L_21 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_20, _stringLiteral1706A972A45E7E0E7BC14717526F35BAE9546192);
V_3 = L_21;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_22;
L_22 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
Type_t* L_23 = V_3;
NullCheck(L_23);
PropertyInfo_t* L_24;
L_24 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_23, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, NULL);
NullCheck(L_22);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_25;
L_25 = GenericVirtualFuncInvoker1< Func_2_tACBF5A1656250800CE861707354491F0611F6624*, PropertyInfo_t* >::Invoke(ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m32BD6DDB95C1A7C8375054C51A260ACACF14F021_RuntimeMethod_var, L_22, L_24);
FSharpUtils_set_GetUnionCaseInfoName_mFA1AF36D4D226B197D5A30F741FA99D340053863_inline(__this, L_25, NULL);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_26;
L_26 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
Type_t* L_27 = V_3;
NullCheck(L_27);
PropertyInfo_t* L_28;
L_28 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_27, _stringLiteral9F8D72E59DAFDA9FEDE3FA132F4A524660A67F46, NULL);
NullCheck(L_26);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_29;
L_29 = GenericVirtualFuncInvoker1< Func_2_tACBF5A1656250800CE861707354491F0611F6624*, PropertyInfo_t* >::Invoke(ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m32BD6DDB95C1A7C8375054C51A260ACACF14F021_RuntimeMethod_var, L_26, L_28);
FSharpUtils_set_GetUnionCaseInfoTag_m03CFCF109DAE145593C6DAAF4E0415C4F12F389B_inline(__this, L_29, NULL);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_30;
L_30 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
Type_t* L_31 = V_3;
NullCheck(L_31);
PropertyInfo_t* L_32;
L_32 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_31, _stringLiteral620393CAA7436A70D33A45431FDCF0685865506A, NULL);
NullCheck(L_30);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_33;
L_33 = GenericVirtualFuncInvoker1< Func_2_tACBF5A1656250800CE861707354491F0611F6624*, PropertyInfo_t* >::Invoke(ReflectionDelegateFactory_CreateGet_TisRuntimeObject_m32BD6DDB95C1A7C8375054C51A260ACACF14F021_RuntimeMethod_var, L_30, L_32);
FSharpUtils_set_GetUnionCaseInfoDeclaringType_mDBBCAAB7E10D51DF946D4D7D6FFF052DC1640AA5_inline(__this, L_33, NULL);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_34;
L_34 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
Type_t* L_35 = V_3;
NullCheck(L_35);
MethodInfo_t* L_36;
L_36 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_35, _stringLiteralA37E350E730B9C7E6ACED476C06361A729F5D9F2, NULL);
NullCheck(L_34);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_37;
L_37 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_34, L_36);
FSharpUtils_set_GetUnionCaseInfoFields_m0A5E55FD9DFC698AD9FF477B2BE107CE0ECF3BDD_inline(__this, L_37, NULL);
Assembly_t* L_38 = ___fsharpCoreAssembly0;
NullCheck(L_38);
Type_t* L_39;
L_39 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_38, _stringLiteral01385C410406BC5C6E613A5C7CEFFAADC5A9E11D);
V_4 = L_39;
Type_t* L_40 = V_4;
NullCheck(L_40);
MethodInfo_t* L_41;
L_41 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_40, _stringLiteral64CC8687188AD60D21B4B3FCE3779CED9FA4BCF9, NULL);
__this->____ofSeq_2 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ofSeq_2), (void*)L_41);
Assembly_t* L_42 = ___fsharpCoreAssembly0;
NullCheck(L_42);
Type_t* L_43;
L_43 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_42, _stringLiteralB1BADF651F72DA9740CFF018B33A84A8FE0940FC);
__this->____mapType_3 = L_43;
Il2CppCodeGenWriteBarrier((void**)(&__this->____mapType_3), (void*)L_43);
return;
}
}
// Newtonsoft.Json.Utilities.FSharpUtils Newtonsoft.Json.Utilities.FSharpUtils::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* FSharpUtils_get_Instance_m5F3FC2AA4FD4D99C02E289F8982CC553F4CAF26C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* L_0 = ((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->____instance_1;
return L_0;
}
}
// System.Reflection.Assembly Newtonsoft.Json.Utilities.FSharpUtils::get_FSharpCoreAssembly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t* FSharpUtils_get_FSharpCoreAssembly_m0B312E1F665D5E3B6C7D05245C4C08E27F551DDD (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = __this->___U3CFSharpCoreAssemblyU3Ek__BackingField_4;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_FSharpCoreAssembly(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_FSharpCoreAssembly_m32C9B6A87994E00C34378B4B7C39B2E26C0C6506 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Assembly_t* ___value0, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = ___value0;
__this->___U3CFSharpCoreAssemblyU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CFSharpCoreAssemblyU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_IsUnion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_IsUnion_m9DBA5ADCE4DBEDE57DFC7387543669CF3E537D50 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CIsUnionU3Ek__BackingField_5;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_IsUnion(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_IsUnion_m8FCC8731B64FE062A4E1D311940B5F5B599A0A3A (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CIsUnionU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CIsUnionU3Ek__BackingField_5), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_GetUnionCases()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_GetUnionCases_m41654D6B50C83E160A5485B6F05C31615B1C0C66 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CGetUnionCasesU3Ek__BackingField_6;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCases(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCases_m6149ED7891791ABDC0D92F829F7089FD24BD9700 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CGetUnionCasesU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCasesU3Ek__BackingField_6), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_PreComputeUnionTagReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_PreComputeUnionTagReader_m3B004699CDA4A6218B19A396C60ABDF61B719E22 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CPreComputeUnionTagReaderU3Ek__BackingField_7;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionTagReader(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionTagReader_m847B8584BDDE2A8A3CF3C3F67E256D86FC3E5EBC (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionTagReaderU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionTagReaderU3Ek__BackingField_7), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_PreComputeUnionReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_PreComputeUnionReader_m7B85548672EAF763ED190432186900B07C03B96D (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CPreComputeUnionReaderU3Ek__BackingField_8;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionReader(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionReader_m9DB56755B6E02862BC06346DE42EFB80F20BE07D (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionReaderU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionReaderU3Ek__BackingField_8), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_PreComputeUnionConstructor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_PreComputeUnionConstructor_mA8C31559BF645D86DF485D56FD7110840A5429E6 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CPreComputeUnionConstructorU3Ek__BackingField_9;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_PreComputeUnionConstructor(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionConstructor_mA9DBD858EA7027535AA2B08A9BA72A051FBA517D (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionConstructorU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionConstructorU3Ek__BackingField_9), (void*)L_0);
return;
}
}
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_GetUnionCaseInfoDeclaringType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* FSharpUtils_get_GetUnionCaseInfoDeclaringType_mD042155742397F0C1FD2F2FE5330AD5548A73BDF (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = __this->___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoDeclaringType(System.Func`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoDeclaringType_mDBBCAAB7E10D51DF946D4D7D6FFF052DC1640AA5 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10), (void*)L_0);
return;
}
}
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_GetUnionCaseInfoName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* FSharpUtils_get_GetUnionCaseInfoName_mBD93F397896A65760977B75C9053D46B72C96F9B (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = __this->___U3CGetUnionCaseInfoNameU3Ek__BackingField_11;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoName(System.Func`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoName_mFA1AF36D4D226B197D5A30F741FA99D340053863 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoNameU3Ek__BackingField_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoNameU3Ek__BackingField_11), (void*)L_0);
return;
}
}
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_GetUnionCaseInfoTag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* FSharpUtils_get_GetUnionCaseInfoTag_m783C81309261A923FEAE089EF77FE1DE9A5CCEE1 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = __this->___U3CGetUnionCaseInfoTagU3Ek__BackingField_12;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoTag(System.Func`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoTag_m03CFCF109DAE145593C6DAAF4E0415C4F12F389B (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoTagU3Ek__BackingField_12 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoTagU3Ek__BackingField_12), (void*)L_0);
return;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::get_GetUnionCaseInfoFields()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_get_GetUnionCaseInfoFields_m268BA1CAA945135DD93E62EBF8BFC74A142890C4 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::set_GetUnionCaseInfoFields(Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoFields_m0A5E55FD9DFC698AD9FF477B2BE107CE0ECF3BDD (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13), (void*)L_0);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::EnsureInitialized(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils_EnsureInitialized_m293D36484C9224B86D9AD1F09BBE95DBC6EF8F63 (Assembly_t* ___fsharpCoreAssembly0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* L_0 = ((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->____instance_1;
if (L_0)
{
goto IL_0035;
}
}
{
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = ((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->___Lock_0;
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002b:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* L_5 = ((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->____instance_1;
if (L_5)
{
goto IL_0029_1;
}
}
{
Assembly_t* L_6 = ___fsharpCoreAssembly0;
FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* L_7 = (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD*)il2cpp_codegen_object_new(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
NullCheck(L_7);
FSharpUtils__ctor_m9824778422EAFFB89C8FC8176D0EF2A0A68A7047(L_7, L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->____instance_1 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->____instance_1), (void*)L_7);
}
IL_0029_1:
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Reflection.MethodInfo Newtonsoft.Json.Utilities.FSharpUtils::GetMethodWithNonPublicFallback(System.Type,System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* FSharpUtils_GetMethodWithNonPublicFallback_m2487A2B48B9588492F576FC401765638D1AD7B20 (Type_t* ___type0, String_t* ___methodName1, int32_t ___bindingFlags2, const RuntimeMethod* method)
{
MethodInfo_t* V_0 = NULL;
{
Type_t* L_0 = ___type0;
String_t* L_1 = ___methodName1;
int32_t L_2 = ___bindingFlags2;
NullCheck(L_0);
MethodInfo_t* L_3;
L_3 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(L_0, L_1, L_2, NULL);
V_0 = L_3;
MethodInfo_t* L_4 = V_0;
bool L_5;
L_5 = MethodInfo_op_Equality_m3F6B020142F59A9A1549CEB6C7A43798FBA18BEB(L_4, (MethodInfo_t*)NULL, NULL);
if (!L_5)
{
goto IL_0026;
}
}
{
int32_t L_6 = ___bindingFlags2;
if ((((int32_t)((int32_t)((int32_t)L_6&((int32_t)32)))) == ((int32_t)((int32_t)32))))
{
goto IL_0026;
}
}
{
Type_t* L_7 = ___type0;
String_t* L_8 = ___methodName1;
int32_t L_9 = ___bindingFlags2;
NullCheck(L_7);
MethodInfo_t* L_10;
L_10 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(L_7, L_8, ((int32_t)((int32_t)L_9|((int32_t)32))), NULL);
V_0 = L_10;
}
IL_0026:
{
MethodInfo_t* L_11 = V_0;
return L_11;
}
}
// Newtonsoft.Json.Utilities.MethodCall`2<System.Object,System.Object> Newtonsoft.Json.Utilities.FSharpUtils::CreateFSharpFuncCall(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* FSharpUtils_CreateFSharpFuncCall_m89DB18871762C3640D3900F009AE2E66361229DB (Type_t* ___type0, String_t* ___methodName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass52_0_U3CCreateFSharpFuncCallU3Eb__0_m06C44C8B966AF2E0B02A18152C20071D4E87EFF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7A66F857F6E3FCCC482964755DB79017BF35DD2);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t* V_0 = NULL;
MethodInfo_t* V_1 = NULL;
{
U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* L_0 = (U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass52_0__ctor_m73649FD95CB401FD15A813F7D11B75B6E3B85913(L_0, NULL);
Type_t* L_1 = ___type0;
String_t* L_2 = ___methodName1;
il2cpp_codegen_runtime_class_init_inline(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
MethodInfo_t* L_3;
L_3 = FSharpUtils_GetMethodWithNonPublicFallback_m2487A2B48B9588492F576FC401765638D1AD7B20(L_1, L_2, ((int32_t)24), NULL);
V_0 = L_3;
MethodInfo_t* L_4 = V_0;
NullCheck(L_4);
Type_t* L_5;
L_5 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_4);
NullCheck(L_5);
MethodInfo_t* L_6;
L_6 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(L_5, _stringLiteralD7A66F857F6E3FCCC482964755DB79017BF35DD2, ((int32_t)20), NULL);
V_1 = L_6;
U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* L_7 = L_0;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_8;
L_8 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_9 = V_0;
NullCheck(L_8);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_10;
L_10 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_8, L_9);
NullCheck(L_7);
L_7->___call_0 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___call_0), (void*)L_10);
U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* L_11 = L_7;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_12;
L_12 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_13 = V_1;
NullCheck(L_12);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_14;
L_14 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_12, L_13);
NullCheck(L_11);
L_11->___invoke_1 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&L_11->___invoke_1), (void*)L_14);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_15 = (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*)il2cpp_codegen_object_new(MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270_il2cpp_TypeInfo_var);
NullCheck(L_15);
MethodCall_2__ctor_m57E69722197F6AF8DF4EC46673E3A867CFC312A1(L_15, L_11, (intptr_t)((void*)U3CU3Ec__DisplayClass52_0_U3CCreateFSharpFuncCallU3Eb__0_m06C44C8B966AF2E0B02A18152C20071D4E87EFF9_RuntimeMethod_var), NULL);
return L_15;
}
}
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.FSharpUtils::CreateSeq(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* FSharpUtils_CreateSeq_m671159ACCF354B563AED3ABBD860F83DE215B1B3 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t* V_0 = NULL;
{
MethodInfo_t* L_0 = __this->____ofSeq_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_1 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2 = L_1;
Type_t* L_3 = ___t0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_3);
NullCheck(L_0);
MethodInfo_t* L_4;
L_4 = VirtualFuncInvoker1< MethodInfo_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(43 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_0, L_2);
V_0 = L_4;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_5;
L_5 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_6 = V_0;
NullCheck(L_5);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_7;
L_7 = VirtualFuncInvoker1< ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*, MethodBase_t* >::Invoke(5 /* Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_5, L_6);
return L_7;
}
}
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.FSharpUtils::CreateMap(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* FSharpUtils_CreateMap_m0A85763A75D928C1AC2EA38AA051072236A1ABF5 (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Type_t* ___keyType0, Type_t* ___valueType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75A5AEBF062DA407173D89C0450A43389571E01F);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
NullCheck(L_1);
MethodInfo_t* L_2;
L_2 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_1, _stringLiteral75A5AEBF062DA407173D89C0450A43389571E01F, NULL);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_4 = L_3;
Type_t* L_5 = ___keyType0;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_5);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_6 = L_4;
Type_t* L_7 = ___valueType1;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_7);
NullCheck(L_2);
MethodInfo_t* L_8;
L_8 = VirtualFuncInvoker1< MethodInfo_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(43 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_2, L_6);
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_8, __this, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
return ((ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*)Castclass((RuntimeObject*)L_9, ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var));
}
}
// System.Void Newtonsoft.Json.Utilities.FSharpUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FSharpUtils__cctor_mF677AE88A376F47C818549758F531E7463D41391 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->___Lock_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_StaticFields*)il2cpp_codegen_static_fields_for(FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD_il2cpp_TypeInfo_var))->___Lock_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass52_0__ctor_m73649FD95CB401FD15A813F7D11B75B6E3B85913 (U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.FSharpUtils/<>c__DisplayClass52_0::<CreateFSharpFuncCall>b__0(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass52_0_U3CCreateFSharpFuncCallU3Eb__0_m06C44C8B966AF2E0B02A18152C20071D4E87EFF9 (U3CU3Ec__DisplayClass52_0_t494ABFF32EA6A0057FC7110CC1EB87E4C1364DE1* __this, RuntimeObject* ___target0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___call_0;
RuntimeObject* L_1 = ___target0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___args1;
NullCheck(L_0);
RuntimeObject* L_3;
L_3 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, L_1, L_2, NULL);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_4 = __this->___invoke_1;
FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF* L_5 = (FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF*)il2cpp_codegen_object_new(FSharpFunction_t0E774A1B668FEBC728E9C664A2A4A58A409EF6DF_il2cpp_TypeInfo_var);
NullCheck(L_5);
FSharpFunction__ctor_m3F5A2832EC500F2DD4CD1B50F05BCCFE9DFB3AC0(L_5, L_3, L_4, NULL);
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::TryBuildImmutableForArrayContract(System.Type,System.Type,System.Type&,Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableCollectionsUtils_TryBuildImmutableForArrayContract_mC9D30C31505970671F5BF09945D42741851FD62E (Type_t* ___underlyingType0, Type_t* ___collectionItemType1, Type_t** ___createdType2, ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** ___parameterizedCreator3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t43CC133C289457C636A18BA4D471FC2B56544421_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTryBuildImmutableForArrayContractU3Eb__24_1_m88FDE7068D7B6A2BBAF169D2574228AF6E7E79E8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass24_0_U3CTryBuildImmutableForArrayContractU3Eb__0_mEC530CF3F21F1F546A1B73254999DC322BC95469_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* V_0 = NULL;
Type_t* V_1 = NULL;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* V_2 = NULL;
Type_t* V_3 = NULL;
Type_t* V_4 = NULL;
MethodInfo_t* V_5 = NULL;
MethodInfo_t* V_6 = NULL;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* G_B6_0 = NULL;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* G_B6_1 = NULL;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* G_B5_0 = NULL;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* G_B5_1 = NULL;
{
Type_t* L_0 = ___underlyingType0;
bool L_1;
L_1 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_0, NULL);
if (!L_1)
{
goto IL_00e5;
}
}
{
U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* L_2 = (U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C_il2cpp_TypeInfo_var);
NullCheck(L_2);
U3CU3Ec__DisplayClass24_0__ctor_mE93486FA25CF4BBE9D2A622047ED6A25D581DEAE(L_2, NULL);
V_0 = L_2;
Type_t* L_3 = ___underlyingType0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3);
V_1 = L_4;
U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* L_5 = V_0;
Type_t* L_6 = V_1;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_6);
NullCheck(L_5);
L_5->___name_0 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___name_0), (void*)L_7);
il2cpp_codegen_runtime_class_init_inline(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var);
RuntimeObject* L_8 = ((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___ArrayContractImmutableCollectionDefinitions_16;
U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* L_9 = V_0;
Func_2_t43CC133C289457C636A18BA4D471FC2B56544421* L_10 = (Func_2_t43CC133C289457C636A18BA4D471FC2B56544421*)il2cpp_codegen_object_new(Func_2_t43CC133C289457C636A18BA4D471FC2B56544421_il2cpp_TypeInfo_var);
NullCheck(L_10);
Func_2__ctor_m3029E36C9D6AEF0C92CBFDB1E370E8C107A25E0C(L_10, L_9, (intptr_t)((void*)U3CU3Ec__DisplayClass24_0_U3CTryBuildImmutableForArrayContractU3Eb__0_mEC530CF3F21F1F546A1B73254999DC322BC95469_RuntimeMethod_var), NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_11;
L_11 = Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2(L_8, L_10, Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2_RuntimeMethod_var);
V_2 = L_11;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_12 = V_2;
if (!L_12)
{
goto IL_00e5;
}
}
{
Type_t* L_13 = V_1;
Assembly_t* L_14;
L_14 = TypeExtensions_Assembly_m901B83746B4750709ADEA60C943F38FFAF68ECE9(L_13, NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_15 = V_2;
NullCheck(L_15);
String_t* L_16;
L_16 = ImmutableCollectionTypeInfo_get_CreatedTypeName_mB6C5E4C0083F30B8A3E973B27B1743BA72E01688_inline(L_15, NULL);
NullCheck(L_14);
Type_t* L_17;
L_17 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_14, L_16);
V_3 = L_17;
Type_t* L_18 = V_1;
Assembly_t* L_19;
L_19 = TypeExtensions_Assembly_m901B83746B4750709ADEA60C943F38FFAF68ECE9(L_18, NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = ImmutableCollectionTypeInfo_get_BuilderTypeName_m45D8747B2EECD911E9B60C009A1E6A5FA2CC0416_inline(L_20, NULL);
NullCheck(L_19);
Type_t* L_22;
L_22 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_19, L_21);
V_4 = L_22;
Type_t* L_23 = V_3;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_23, (Type_t*)NULL, NULL);
if (!L_24)
{
goto IL_00e5;
}
}
{
Type_t* L_25 = V_4;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_26;
L_26 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_25, (Type_t*)NULL, NULL);
if (!L_26)
{
goto IL_00e5;
}
}
{
Type_t* L_27 = V_4;
NullCheck(L_27);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_28;
L_28 = Type_GetMethods_m5D4A53D1E667CF33173EEA37D0111FE92A572559(L_27, NULL);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_29 = ((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__24_1_1;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_30 = L_29;
G_B5_0 = L_30;
G_B5_1 = L_28;
if (L_30)
{
G_B6_0 = L_30;
G_B6_1 = L_28;
goto IL_009f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* L_31 = ((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_32 = (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*)il2cpp_codegen_object_new(Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
NullCheck(L_32);
Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0(L_32, L_31, (intptr_t)((void*)U3CU3Ec_U3CTryBuildImmutableForArrayContractU3Eb__24_1_m88FDE7068D7B6A2BBAF169D2574228AF6E7E79E8_RuntimeMethod_var), NULL);
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_33 = L_32;
((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__24_1_1 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__24_1_1), (void*)L_33);
G_B6_0 = L_33;
G_B6_1 = G_B5_1;
}
IL_009f:
{
MethodInfo_t* L_34;
L_34 = Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2((RuntimeObject*)G_B6_1, G_B6_0, Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2_RuntimeMethod_var);
V_5 = L_34;
MethodInfo_t* L_35 = V_5;
bool L_36;
L_36 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_35, (MethodInfo_t*)NULL, NULL);
if (!L_36)
{
goto IL_00e5;
}
}
{
Type_t** L_37 = ___createdType2;
Type_t* L_38 = V_3;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_39 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_40 = L_39;
Type_t* L_41 = ___collectionItemType1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_41);
NullCheck(L_38);
Type_t* L_42;
L_42 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_38, L_40);
*((RuntimeObject**)L_37) = (RuntimeObject*)L_42;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_37, (void*)(RuntimeObject*)L_42);
MethodInfo_t* L_43 = V_5;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_44 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_45 = L_44;
Type_t* L_46 = ___collectionItemType1;
NullCheck(L_45);
ArrayElementTypeCheck (L_45, L_46);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_46);
NullCheck(L_43);
MethodInfo_t* L_47;
L_47 = VirtualFuncInvoker1< MethodInfo_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(43 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_43, L_45);
V_6 = L_47;
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** L_48 = ___parameterizedCreator3;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_49;
L_49 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_50 = V_6;
NullCheck(L_49);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_51;
L_51 = VirtualFuncInvoker1< ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*, MethodBase_t* >::Invoke(5 /* Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_49, L_50);
*((RuntimeObject**)L_48) = (RuntimeObject*)L_51;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_48, (void*)(RuntimeObject*)L_51);
return (bool)1;
}
IL_00e5:
{
Type_t** L_52 = ___createdType2;
*((RuntimeObject**)L_52) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_52, (void*)(RuntimeObject*)NULL);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** L_53 = ___parameterizedCreator3;
*((RuntimeObject**)L_53) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_53, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::TryBuildImmutableForDictionaryContract(System.Type,System.Type,System.Type,System.Type&,Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableCollectionsUtils_TryBuildImmutableForDictionaryContract_m7492B3497B52FFCD5763038565A6ABA97100FC13 (Type_t* ___underlyingType0, Type_t* ___keyItemType1, Type_t* ___valueItemType2, Type_t** ___createdType3, ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** ___parameterizedCreator4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t43CC133C289457C636A18BA4D471FC2B56544421_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTryBuildImmutableForDictionaryContractU3Eb__25_1_m0F4967ED757066E35638957B1A5E543DAEA6838B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass25_0_U3CTryBuildImmutableForDictionaryContractU3Eb__0_m412979D45F5113B92ABF38A419D3800331C9437D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* V_0 = NULL;
Type_t* V_1 = NULL;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* V_2 = NULL;
Type_t* V_3 = NULL;
Type_t* V_4 = NULL;
MethodInfo_t* V_5 = NULL;
MethodInfo_t* V_6 = NULL;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* G_B6_0 = NULL;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* G_B6_1 = NULL;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* G_B5_0 = NULL;
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* G_B5_1 = NULL;
{
Type_t* L_0 = ___underlyingType0;
bool L_1;
L_1 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_0, NULL);
if (!L_1)
{
goto IL_00ee;
}
}
{
U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* L_2 = (U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0_il2cpp_TypeInfo_var);
NullCheck(L_2);
U3CU3Ec__DisplayClass25_0__ctor_m812DC34DD88D28C881C83A50505ACA112EC48285(L_2, NULL);
V_0 = L_2;
Type_t* L_3 = ___underlyingType0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3);
V_1 = L_4;
U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* L_5 = V_0;
Type_t* L_6 = V_1;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_6);
NullCheck(L_5);
L_5->___name_0 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&L_5->___name_0), (void*)L_7);
il2cpp_codegen_runtime_class_init_inline(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var);
RuntimeObject* L_8 = ((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___DictionaryContractImmutableCollectionDefinitions_22;
U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* L_9 = V_0;
Func_2_t43CC133C289457C636A18BA4D471FC2B56544421* L_10 = (Func_2_t43CC133C289457C636A18BA4D471FC2B56544421*)il2cpp_codegen_object_new(Func_2_t43CC133C289457C636A18BA4D471FC2B56544421_il2cpp_TypeInfo_var);
NullCheck(L_10);
Func_2__ctor_m3029E36C9D6AEF0C92CBFDB1E370E8C107A25E0C(L_10, L_9, (intptr_t)((void*)U3CU3Ec__DisplayClass25_0_U3CTryBuildImmutableForDictionaryContractU3Eb__0_m412979D45F5113B92ABF38A419D3800331C9437D_RuntimeMethod_var), NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_11;
L_11 = Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2(L_8, L_10, Enumerable_FirstOrDefault_TisImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_mB388FAD4658E605CBE182A4FF8909D234888E3F2_RuntimeMethod_var);
V_2 = L_11;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_12 = V_2;
if (!L_12)
{
goto IL_00ee;
}
}
{
Type_t* L_13 = V_1;
Assembly_t* L_14;
L_14 = TypeExtensions_Assembly_m901B83746B4750709ADEA60C943F38FFAF68ECE9(L_13, NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_15 = V_2;
NullCheck(L_15);
String_t* L_16;
L_16 = ImmutableCollectionTypeInfo_get_CreatedTypeName_mB6C5E4C0083F30B8A3E973B27B1743BA72E01688_inline(L_15, NULL);
NullCheck(L_14);
Type_t* L_17;
L_17 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_14, L_16);
V_3 = L_17;
Type_t* L_18 = V_1;
Assembly_t* L_19;
L_19 = TypeExtensions_Assembly_m901B83746B4750709ADEA60C943F38FFAF68ECE9(L_18, NULL);
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_20 = V_2;
NullCheck(L_20);
String_t* L_21;
L_21 = ImmutableCollectionTypeInfo_get_BuilderTypeName_m45D8747B2EECD911E9B60C009A1E6A5FA2CC0416_inline(L_20, NULL);
NullCheck(L_19);
Type_t* L_22;
L_22 = VirtualFuncInvoker1< Type_t*, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_19, L_21);
V_4 = L_22;
Type_t* L_23 = V_3;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_23, (Type_t*)NULL, NULL);
if (!L_24)
{
goto IL_00ee;
}
}
{
Type_t* L_25 = V_4;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_26;
L_26 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_25, (Type_t*)NULL, NULL);
if (!L_26)
{
goto IL_00ee;
}
}
{
Type_t* L_27 = V_4;
NullCheck(L_27);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_28;
L_28 = Type_GetMethods_m5D4A53D1E667CF33173EEA37D0111FE92A572559(L_27, NULL);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_29 = ((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__25_1_2;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_30 = L_29;
G_B5_0 = L_30;
G_B5_1 = L_28;
if (L_30)
{
G_B6_0 = L_30;
G_B6_1 = L_28;
goto IL_009f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* L_31 = ((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_32 = (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*)il2cpp_codegen_object_new(Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
NullCheck(L_32);
Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0(L_32, L_31, (intptr_t)((void*)U3CU3Ec_U3CTryBuildImmutableForDictionaryContractU3Eb__25_1_m0F4967ED757066E35638957B1A5E543DAEA6838B_RuntimeMethod_var), NULL);
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_33 = L_32;
((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__25_1_2 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9__25_1_2), (void*)L_33);
G_B6_0 = L_33;
G_B6_1 = G_B5_1;
}
IL_009f:
{
MethodInfo_t* L_34;
L_34 = Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2((RuntimeObject*)G_B6_1, G_B6_0, Enumerable_FirstOrDefault_TisMethodInfo_t_mE47F4F82BD148A0812281046A0459C4B2A2295E2_RuntimeMethod_var);
V_5 = L_34;
MethodInfo_t* L_35 = V_5;
bool L_36;
L_36 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_35, (MethodInfo_t*)NULL, NULL);
if (!L_36)
{
goto IL_00ee;
}
}
{
Type_t** L_37 = ___createdType3;
Type_t* L_38 = V_3;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_39 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_40 = L_39;
Type_t* L_41 = ___keyItemType1;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, L_41);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_41);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_42 = L_40;
Type_t* L_43 = ___valueItemType2;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_43);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_43);
NullCheck(L_38);
Type_t* L_44;
L_44 = VirtualFuncInvoker1< Type_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(125 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_38, L_42);
*((RuntimeObject**)L_37) = (RuntimeObject*)L_44;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_37, (void*)(RuntimeObject*)L_44);
MethodInfo_t* L_45 = V_5;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_46 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_47 = L_46;
Type_t* L_48 = ___keyItemType1;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_48);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_48);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_49 = L_47;
Type_t* L_50 = ___valueItemType2;
NullCheck(L_49);
ArrayElementTypeCheck (L_49, L_50);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_50);
NullCheck(L_45);
MethodInfo_t* L_51;
L_51 = VirtualFuncInvoker1< MethodInfo_t*, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(43 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_45, L_49);
V_6 = L_51;
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** L_52 = ___parameterizedCreator4;
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_53;
L_53 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
MethodInfo_t* L_54 = V_6;
NullCheck(L_53);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_55;
L_55 = VirtualFuncInvoker1< ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*, MethodBase_t* >::Invoke(5 /* Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_53, L_54);
*((RuntimeObject**)L_52) = (RuntimeObject*)L_55;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_52, (void*)(RuntimeObject*)L_55);
return (bool)1;
}
IL_00ee:
{
Type_t** L_56 = ___createdType3;
*((RuntimeObject**)L_56) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_56, (void*)(RuntimeObject*)NULL);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901** L_57 = ___parameterizedCreator4;
*((RuntimeObject**)L_57) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_57, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionsUtils__cctor_m63843AB16C26FF93051D149C28AEAE8671E7E969 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0970355F339FE6FF1C222547CF241398A1C378A9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral136926B654432552F29A067979EE9E9D569C7895);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35DE67C929967618347FCE340E2E87102A932FEB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49AA63440730594CB862C148C034957D190DBB80);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59E5E11BFC1B758617E7403A28E45E8E18562B95);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral678C8068977C934D424C4D57A19F629825D2A4BB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6933B3473F816EDB2EEF7A7CEF6EFA018D17C6B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A0B34AAFB24E098ABCB1BE882BD0878913C3D28);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CC89AE92D5E497F1202B3C349634C66958E8423);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72D121639A07E322A737215D5BD5E08E4194BC92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87C02C6ED924DBDF9E706ECBA4CF02938714E608);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8B4B3F4658F5299CF25AA8C483513A423A6C1E5D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F5D597C1F916FE878F01CF7090052DBF4EE07E1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA52838C9E06400FD794AE6DF33C5AE83BE60D878);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAEAF54173166405B926BB5574839DE67CA541AB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC89ED2A5E7C138031837DF70004D15D0B608F982);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD26DE29642C27888155DD7EC5F53F6D1A55BA2D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDB0068F06DC4CE0D4EC2AC5016BF557B2BA6EE7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEE3B7AB722A7F6C702B293A2D07B91E051ECD568);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF125FE9766275C94D708AE1B19214A966542F343);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4755C417A8BAD97BCCC04B580B977A4D1964112);
s_Il2CppMethodInitialized = true;
}
{
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_0 = (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158*)il2cpp_codegen_object_new(List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C(L_0, List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_1 = L_0;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_2 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_2);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_2, _stringLiteralDDB0068F06DC4CE0D4EC2AC5016BF557B2BA6EE7, _stringLiteral0970355F339FE6FF1C222547CF241398A1C378A9, _stringLiteralF125FE9766275C94D708AE1B19214A966542F343, NULL);
NullCheck(L_1);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_1, L_2, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_3 = L_1;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_4 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_4);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_4, _stringLiteral0970355F339FE6FF1C222547CF241398A1C378A9, _stringLiteral0970355F339FE6FF1C222547CF241398A1C378A9, _stringLiteralF125FE9766275C94D708AE1B19214A966542F343, NULL);
NullCheck(L_3);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_3, L_4, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_5 = L_3;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_6 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_6);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_6, _stringLiteral6933B3473F816EDB2EEF7A7CEF6EFA018D17C6B3, _stringLiteralAAEAF54173166405B926BB5574839DE67CA541AB, _stringLiteralCD26DE29642C27888155DD7EC5F53F6D1A55BA2D, NULL);
NullCheck(L_5);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_5, L_6, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_7 = L_5;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_8 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_8);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_8, _stringLiteralAAEAF54173166405B926BB5574839DE67CA541AB, _stringLiteralAAEAF54173166405B926BB5574839DE67CA541AB, _stringLiteralCD26DE29642C27888155DD7EC5F53F6D1A55BA2D, NULL);
NullCheck(L_7);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_7, L_8, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_9 = L_7;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_10 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_10);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_10, _stringLiteral49AA63440730594CB862C148C034957D190DBB80, _stringLiteralF4755C417A8BAD97BCCC04B580B977A4D1964112, _stringLiteral136926B654432552F29A067979EE9E9D569C7895, NULL);
NullCheck(L_9);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_9, L_10, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_11 = L_9;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_12 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_12);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_12, _stringLiteralF4755C417A8BAD97BCCC04B580B977A4D1964112, _stringLiteralF4755C417A8BAD97BCCC04B580B977A4D1964112, _stringLiteral136926B654432552F29A067979EE9E9D569C7895, NULL);
NullCheck(L_11);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_11, L_12, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_13 = L_11;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_14 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_14);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_14, _stringLiteralEE3B7AB722A7F6C702B293A2D07B91E051ECD568, _stringLiteralC89ED2A5E7C138031837DF70004D15D0B608F982, _stringLiteral6CC89AE92D5E497F1202B3C349634C66958E8423, NULL);
NullCheck(L_13);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_13, L_14, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_15 = L_13;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_16 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_16);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_16, _stringLiteral8B4B3F4658F5299CF25AA8C483513A423A6C1E5D, _stringLiteral8B4B3F4658F5299CF25AA8C483513A423A6C1E5D, _stringLiteral87C02C6ED924DBDF9E706ECBA4CF02938714E608, NULL);
NullCheck(L_15);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_15, L_16, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_17 = L_15;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_18 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_18);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_18, _stringLiteralC89ED2A5E7C138031837DF70004D15D0B608F982, _stringLiteralC89ED2A5E7C138031837DF70004D15D0B608F982, _stringLiteral6CC89AE92D5E497F1202B3C349634C66958E8423, NULL);
NullCheck(L_17);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_17, L_18, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_19 = L_17;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_20 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_20);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_20, _stringLiteral59E5E11BFC1B758617E7403A28E45E8E18562B95, _stringLiteral59E5E11BFC1B758617E7403A28E45E8E18562B95, _stringLiteral6A0B34AAFB24E098ABCB1BE882BD0878913C3D28, NULL);
NullCheck(L_19);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_19, L_20, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___ArrayContractImmutableCollectionDefinitions_16 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___ArrayContractImmutableCollectionDefinitions_16), (void*)L_19);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_21 = (List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158*)il2cpp_codegen_object_new(List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158_il2cpp_TypeInfo_var);
NullCheck(L_21);
List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C(L_21, List_1__ctor_m16A856143E3E04EB291D14B030D3EC3D8258B92C_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_22 = L_21;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_23 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_23);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_23, _stringLiteral72D121639A07E322A737215D5BD5E08E4194BC92, _stringLiteral678C8068977C934D424C4D57A19F629825D2A4BB, _stringLiteralA52838C9E06400FD794AE6DF33C5AE83BE60D878, NULL);
NullCheck(L_22);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_22, L_23, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_24 = L_22;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_25 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_25);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_25, _stringLiteral35DE67C929967618347FCE340E2E87102A932FEB, _stringLiteral35DE67C929967618347FCE340E2E87102A932FEB, _stringLiteral9F5D597C1F916FE878F01CF7090052DBF4EE07E1, NULL);
NullCheck(L_24);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_24, L_25, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
List_1_t13ECF8EAA6B8903942757EF5071E8854606E7158* L_26 = L_24;
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_27 = (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685*)il2cpp_codegen_object_new(ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685_il2cpp_TypeInfo_var);
NullCheck(L_27);
ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0(L_27, _stringLiteral678C8068977C934D424C4D57A19F629825D2A4BB, _stringLiteral678C8068977C934D424C4D57A19F629825D2A4BB, _stringLiteralA52838C9E06400FD794AE6DF33C5AE83BE60D878, NULL);
NullCheck(L_26);
List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_inline(L_26, L_27, List_1_Add_m4B5073C9156CF06BB08DD7600F15EB0DA757E9CD_RuntimeMethod_var);
((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___DictionaryContractImmutableCollectionDefinitions_22 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&((ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableCollectionsUtils_t3766E9FECC75398C42A32E710F21B64E297CBB5D_il2cpp_TypeInfo_var))->___DictionaryContractImmutableCollectionDefinitions_22), (void*)L_26);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo__ctor_m92D05C5D6AF5D361C52EF0921BB42849EE1B79D0 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___contractTypeName0, String_t* ___createdTypeName1, String_t* ___builderTypeName2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___contractTypeName0;
ImmutableCollectionTypeInfo_set_ContractTypeName_m47BA9C385AB128EE5E9738349A9E03A8EEAF3031_inline(__this, L_0, NULL);
String_t* L_1 = ___createdTypeName1;
ImmutableCollectionTypeInfo_set_CreatedTypeName_mDD7FC89BF73B105C1D0B1E3636015595A61BFF28_inline(__this, L_1, NULL);
String_t* L_2 = ___builderTypeName2;
ImmutableCollectionTypeInfo_set_BuilderTypeName_mF5E3F9EC7F19DC62CC67FC65D15E5FE7E0B6390E_inline(__this, L_2, NULL);
return;
}
}
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_ContractTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_ContractTypeName_m8D183787036FB024B123860C9BBC82DB9567E1FE (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CContractTypeNameU3Ek__BackingField_0;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_ContractTypeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_ContractTypeName_m47BA9C385AB128EE5E9738349A9E03A8EEAF3031 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CContractTypeNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CContractTypeNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_CreatedTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_CreatedTypeName_mB6C5E4C0083F30B8A3E973B27B1743BA72E01688 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCreatedTypeNameU3Ek__BackingField_1;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_CreatedTypeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_CreatedTypeName_mDD7FC89BF73B105C1D0B1E3636015595A61BFF28 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CCreatedTypeNameU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCreatedTypeNameU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.String Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::get_BuilderTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_BuilderTypeName_m45D8747B2EECD911E9B60C009A1E6A5FA2CC0416 (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CBuilderTypeNameU3Ek__BackingField_2;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo::set_BuilderTypeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_BuilderTypeName_mF5E3F9EC7F19DC62CC67FC65D15E5FE7E0B6390E (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CBuilderTypeNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBuilderTypeNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass24_0__ctor_mE93486FA25CF4BBE9D2A622047ED6A25D581DEAE (U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass24_0::<TryBuildImmutableForArrayContract>b__0(Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass24_0_U3CTryBuildImmutableForArrayContractU3Eb__0_mEC530CF3F21F1F546A1B73254999DC322BC95469 (U3CU3Ec__DisplayClass24_0_t4C0F65AAF334BD9AAFA10CFFFBBE80C3316BD73C* __this, ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* ___d0, const RuntimeMethod* method)
{
{
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_0 = ___d0;
NullCheck(L_0);
String_t* L_1;
L_1 = ImmutableCollectionTypeInfo_get_ContractTypeName_m8D183787036FB024B123860C9BBC82DB9567E1FE_inline(L_0, NULL);
String_t* L_2 = __this->___name_0;
bool L_3;
L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m9E0C5A3456573E287435F14D42A29347C4BB510C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* L_0 = (U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F*)il2cpp_codegen_object_new(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m791091B0F758FEF9EABB77C82005842468057948(L_0, NULL);
((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m791091B0F758FEF9EABB77C82005842468057948 (U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::<TryBuildImmutableForArrayContract>b__24_1(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTryBuildImmutableForArrayContractU3Eb__24_1_m88FDE7068D7B6A2BBAF169D2574228AF6E7E79E8 (U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* __this, MethodInfo_t* ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1071603CBA2BD3C11874C92C7C0DB97BF5899046);
s_Il2CppMethodInitialized = true;
}
{
MethodInfo_t* L_0 = ___m0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, _stringLiteral1071603CBA2BD3C11874C92C7C0DB97BF5899046, NULL);
if (!L_2)
{
goto IL_001e;
}
}
{
MethodInfo_t* L_3 = ___m0;
NullCheck(L_3);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_4;
L_4 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_3);
NullCheck(L_4);
return (bool)((((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))) == ((int32_t)1))? 1 : 0);
}
IL_001e:
{
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c::<TryBuildImmutableForDictionaryContract>b__25_1(System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTryBuildImmutableForDictionaryContractU3Eb__25_1_m0F4967ED757066E35638957B1A5E543DAEA6838B (U3CU3Ec_t6D397D1012EE9F37D61AD8571C3697181FE33D7F* __this, MethodInfo_t* ___m0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1071603CBA2BD3C11874C92C7C0DB97BF5899046);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_0 = NULL;
{
MethodInfo_t* L_0 = ___m0;
NullCheck(L_0);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_1;
L_1 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0);
V_0 = L_1;
MethodInfo_t* L_2 = ___m0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2);
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, _stringLiteral1071603CBA2BD3C11874C92C7C0DB97BF5899046, NULL);
if (!L_4)
{
goto IL_004b;
}
}
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_5 = V_0;
NullCheck(L_5);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))) == ((uint32_t)1))))
{
goto IL_004b;
}
}
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = 0;
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_8);
Type_t* L_9;
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(11 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_8);
bool L_10;
L_10 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_9, NULL);
if (!L_10)
{
goto IL_004b;
}
}
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = 0;
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_13);
Type_t* L_14;
L_14 = VirtualFuncInvoker0< Type_t* >::Invoke(11 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_13);
NullCheck(L_14);
Type_t* L_15;
L_15 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_14);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_17;
L_17 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_16, NULL);
bool L_18;
L_18 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_15, L_17, NULL);
return L_18;
}
IL_004b:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass25_0__ctor_m812DC34DD88D28C881C83A50505ACA112EC48285 (U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/<>c__DisplayClass25_0::<TryBuildImmutableForDictionaryContract>b__0(Newtonsoft.Json.Utilities.ImmutableCollectionsUtils/ImmutableCollectionTypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass25_0_U3CTryBuildImmutableForDictionaryContractU3Eb__0_m412979D45F5113B92ABF38A419D3800331C9437D (U3CU3Ec__DisplayClass25_0_tD553F3ED1B9B146D1318FEEC9983051A41710EE0* __this, ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* ___d0, const RuntimeMethod* method)
{
{
ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* L_0 = ___d0;
NullCheck(L_0);
String_t* L_1;
L_1 = ImmutableCollectionTypeInfo_get_ContractTypeName_m8D183787036FB024B123860C9BBC82DB9567E1FE_inline(L_0, NULL);
String_t* L_2 = __this->___name_0;
bool L_3;
L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, L_2, NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char[] Newtonsoft.Json.Utilities.BufferUtils::RentBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* BufferUtils_RentBuffer_m70AF45505A9D28EA1A35B54194A366F69112DB9D (RuntimeObject* ___bufferPool0, int32_t ___minSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___bufferPool0;
if (L_0)
{
goto IL_000a;
}
}
{
int32_t L_1 = ___minSize1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)L_1);
return L_2;
}
IL_000a:
{
RuntimeObject* L_3 = ___bufferPool0;
int32_t L_4 = ___minSize1;
NullCheck(L_3);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5;
L_5 = InterfaceFuncInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t >::Invoke(0 /* T[] Newtonsoft.Json.IArrayPool`1<System.Char>::Rent(System.Int32) */, IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var, L_3, L_4);
return L_5;
}
}
// System.Void Newtonsoft.Json.Utilities.BufferUtils::ReturnBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferUtils_ReturnBuffer_m4E16405935FE4EAAC437FDA5221F38E9E89CD797 (RuntimeObject* ___bufferPool0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___bufferPool0;
if (!L_0)
{
goto IL_000a;
}
}
{
RuntimeObject* L_1 = ___bufferPool0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer1;
NullCheck(L_1);
InterfaceActionInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(1 /* System.Void Newtonsoft.Json.IArrayPool`1<System.Char>::Return(T[]) */, IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var, L_1, L_2);
}
IL_000a:
{
return;
}
}
// System.Char[] Newtonsoft.Json.Utilities.BufferUtils::EnsureBufferSize(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32,System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* BufferUtils_EnsureBufferSize_m5FEFC50FA57014231E3AADA7BB534A0B8FC62A42 (RuntimeObject* ___bufferPool0, int32_t ___size1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___bufferPool0;
if (L_0)
{
goto IL_000a;
}
}
{
int32_t L_1 = ___size1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)L_1);
return L_2;
}
IL_000a:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___buffer2;
if (!L_3)
{
goto IL_0014;
}
}
{
RuntimeObject* L_4 = ___bufferPool0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = ___buffer2;
NullCheck(L_4);
InterfaceActionInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(1 /* System.Void Newtonsoft.Json.IArrayPool`1<System.Char>::Return(T[]) */, IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var, L_4, L_5);
}
IL_0014:
{
RuntimeObject* L_6 = ___bufferPool0;
int32_t L_7 = ___size1;
NullCheck(L_6);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8;
L_8 = InterfaceFuncInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t >::Invoke(0 /* T[] Newtonsoft.Json.IArrayPool`1<System.Char>::Rent(System.Int32) */, IArrayPool_1_t5EA5B0C4FD1E47DB5E30F9B7802F3D7E181E10F6_il2cpp_TypeInfo_var, L_6, L_7);
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JavaScriptUtils__cctor_m5EF7F60CD154ECD1B54141DDE85F13BB7020059D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tC9B15468F509008C580ED71459A502B60CE0346B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____D40004AB0E92BF6C8DFE481B56BE3D04ABDA76EB_15_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
Il2CppChar V_3 = 0x0;
Il2CppChar V_4 = 0x0;
Il2CppChar V_5 = 0x0;
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___SingleQuoteCharEscapeFlags_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___SingleQuoteCharEscapeFlags_0), (void*)L_0);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___DoubleQuoteCharEscapeFlags_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___DoubleQuoteCharEscapeFlags_1), (void*)L_1);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___HtmlCharEscapeFlags_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___HtmlCharEscapeFlags_2), (void*)L_2);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_3 = (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7*)il2cpp_codegen_object_new(List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7_il2cpp_TypeInfo_var);
NullCheck(L_3);
List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82(L_3, List_1__ctor_mC679EFF5E634878F1897D71DC5160A96EA719E82_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_4 = L_3;
NullCheck(L_4);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_4, ((int32_t)10), List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_5 = L_4;
NullCheck(L_5);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_5, ((int32_t)13), List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_6 = L_5;
NullCheck(L_6);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_6, ((int32_t)9), List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_7 = L_6;
NullCheck(L_7);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_7, ((int32_t)92), List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_8 = L_7;
NullCheck(L_8);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_8, ((int32_t)12), List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* L_9 = L_8;
NullCheck(L_9);
List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_inline(L_9, 8, List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_RuntimeMethod_var);
V_0 = L_9;
V_1 = 0;
goto IL_0072;
}
IL_0066:
{
RuntimeObject* L_10 = V_0;
int32_t L_11 = V_1;
NullCheck(L_10);
InterfaceActionInvoker1< Il2CppChar >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Char>::Add(T) */, ICollection_1_tC9B15468F509008C580ED71459A502B60CE0346B_il2cpp_TypeInfo_var, L_10, ((int32_t)(uint16_t)L_11));
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0072:
{
int32_t L_13 = V_1;
if ((((int32_t)L_13) < ((int32_t)((int32_t)32))))
{
goto IL_0066;
}
}
{
RuntimeObject* L_14 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
RuntimeObject* L_17;
L_17 = Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1(L_14, (RuntimeObject*)L_16, Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_RuntimeMethod_var);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05_il2cpp_TypeInfo_var, L_17);
V_2 = L_18;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a9:
{// begin finally (depth: 1)
{
RuntimeObject* L_19 = V_2;
if (!L_19)
{
goto IL_00b2;
}
}
{
RuntimeObject* L_20 = V_2;
NullCheck(L_20);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_20);
}
IL_00b2:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_009f_1;
}
IL_0090_1:
{
RuntimeObject* L_21 = V_2;
NullCheck(L_21);
Il2CppChar L_22;
L_22 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8_il2cpp_TypeInfo_var, L_21);
V_3 = L_22;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_23 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___SingleQuoteCharEscapeFlags_0;
Il2CppChar L_24 = V_3;
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (bool)1);
}
IL_009f_1:
{
RuntimeObject* L_25 = V_2;
NullCheck(L_25);
bool L_26;
L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_0090_1;
}
}
{
goto IL_00b3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b3:
{
RuntimeObject* L_27 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = L_28;
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)34));
RuntimeObject* L_30;
L_30 = Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1(L_27, (RuntimeObject*)L_29, Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_RuntimeMethod_var);
NullCheck(L_30);
RuntimeObject* L_31;
L_31 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05_il2cpp_TypeInfo_var, L_30);
V_2 = L_31;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e7:
{// begin finally (depth: 1)
{
RuntimeObject* L_32 = V_2;
if (!L_32)
{
goto IL_00f0;
}
}
{
RuntimeObject* L_33 = V_2;
NullCheck(L_33);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_33);
}
IL_00f0:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00dd_1;
}
IL_00cc_1:
{
RuntimeObject* L_34 = V_2;
NullCheck(L_34);
Il2CppChar L_35;
L_35 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8_il2cpp_TypeInfo_var, L_34);
V_4 = L_35;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_36 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___DoubleQuoteCharEscapeFlags_1;
Il2CppChar L_37 = V_4;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (bool)1);
}
IL_00dd_1:
{
RuntimeObject* L_38 = V_2;
NullCheck(L_38);
bool L_39;
L_39 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_38);
if (L_39)
{
goto IL_00cc_1;
}
}
{
goto IL_00f1;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f1:
{
RuntimeObject* L_40 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)5);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_42 = L_41;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_43 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t2100A0BC4744267E7860382071B8C5AC5C15E6CD____D40004AB0E92BF6C8DFE481B56BE3D04ABDA76EB_15_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_42, L_43, NULL);
RuntimeObject* L_44;
L_44 = Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1(L_40, (RuntimeObject*)L_42, Enumerable_Union_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m4BDDD0A7DB5BA79F412482616E6ECD9C384979F1_RuntimeMethod_var);
NullCheck(L_44);
RuntimeObject* L_45;
L_45 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Char>::GetEnumerator() */, IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05_il2cpp_TypeInfo_var, L_44);
V_2 = L_45;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_012b:
{// begin finally (depth: 1)
{
RuntimeObject* L_46 = V_2;
if (!L_46)
{
goto IL_0134;
}
}
{
RuntimeObject* L_47 = V_2;
NullCheck(L_47);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_47);
}
IL_0134:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0121_1;
}
IL_0110_1:
{
RuntimeObject* L_48 = V_2;
NullCheck(L_48);
Il2CppChar L_49;
L_49 = InterfaceFuncInvoker0< Il2CppChar >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Char>::get_Current() */, IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8_il2cpp_TypeInfo_var, L_48);
V_5 = L_49;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_50 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___HtmlCharEscapeFlags_2;
Il2CppChar L_51 = V_5;
NullCheck(L_50);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(L_51), (bool)1);
}
IL_0121_1:
{
RuntimeObject* L_52 = V_2;
NullCheck(L_52);
bool L_53;
L_53 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_52);
if (L_53)
{
goto IL_0110_1;
}
}
{
goto IL_0135;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0135:
{
return;
}
}
// System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::GetCharEscapeFlags(Newtonsoft.Json.StringEscapeHandling,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* JavaScriptUtils_GetCharEscapeFlags_mA0157C8EFFFF7C9A981C976B017D9D81947BD54A (int32_t ___stringEscapeHandling0, Il2CppChar ___quoteChar1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___stringEscapeHandling0;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___HtmlCharEscapeFlags_2;
return L_1;
}
IL_000a:
{
Il2CppChar L_2 = ___quoteChar1;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)34)))))
{
goto IL_0015;
}
}
{
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___DoubleQuoteCharEscapeFlags_1;
return L_3;
}
IL_0015:
{
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = ((JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_StaticFields*)il2cpp_codegen_static_fields_for(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var))->___SingleQuoteCharEscapeFlags_0;
return L_4;
}
}
// System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils::ShouldEscapeJavaScriptString(System.String,System.Boolean[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JavaScriptUtils_ShouldEscapeJavaScriptString_m05023DD95764506CA6C54AF2D9D785442016DC9A (String_t* ___s0, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
V_0 = 0;
goto IL_0022;
}
IL_0009:
{
String_t* L_1 = ___s0;
int32_t L_2 = V_0;
NullCheck(L_1);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
V_1 = L_3;
Il2CppChar L_4 = V_1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = ___charEscapeFlags1;
NullCheck(L_5);
if ((((int32_t)L_4) >= ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))
{
goto IL_001c;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = ___charEscapeFlags1;
Il2CppChar L_7 = V_1;
NullCheck(L_6);
Il2CppChar L_8 = L_7;
uint8_t L_9 = (uint8_t)(L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
if (!L_9)
{
goto IL_001e;
}
}
IL_001c:
{
return (bool)1;
}
IL_001e:
{
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0022:
{
int32_t L_11 = V_0;
String_t* L_12 = ___s0;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0009;
}
}
{
return (bool)0;
}
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptString(System.IO.TextWriter,System.String,System.Char,System.Boolean,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JavaScriptUtils_WriteEscapedJavaScriptString_m9338E7B75DEE50EF9042E3B8D83B6BAE947F264C (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, Il2CppChar ___delimiter2, bool ___appendDelimiters3, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags4, int32_t ___stringEscapeHandling5, RuntimeObject* ___bufferPool6, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** ___writeBuffer7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15196F05B117690F3E12E56AA0C43803EA0D2A46);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
String_t* V_4 = NULL;
bool V_5 = false;
int32_t V_6 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_7 = NULL;
int32_t G_B47_0 = 0;
int32_t G_B46_0 = 0;
int32_t G_B48_0 = 0;
int32_t G_B48_1 = 0;
int32_t G_B51_0 = 0;
{
bool L_0 = ___appendDelimiters3;
if (!L_0)
{
goto IL_000a;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer0;
Il2CppChar L_2 = ___delimiter2;
NullCheck(L_1);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_1, L_2);
}
IL_000a:
{
String_t* L_3 = ___s1;
bool L_4;
L_4 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_3, NULL);
if (L_4)
{
goto IL_027d;
}
}
{
String_t* L_5 = ___s1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = ___charEscapeFlags4;
int32_t L_7 = ___stringEscapeHandling5;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = JavaScriptUtils_FirstCharToEscape_mB7CFDEC6E9E0C4493019F89D3A81EDCD7A3E1252(L_5, L_6, L_7, NULL);
V_0 = L_8;
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)(-1)))))
{
goto IL_0030;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_10 = ___writer0;
String_t* L_11 = ___s1;
NullCheck(L_10);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_10, L_11);
goto IL_027d;
}
IL_0030:
{
int32_t L_12 = V_0;
if (!L_12)
{
goto IL_0065;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_13 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_13);
if (!L_14)
{
goto IL_0040;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_15 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_15);
NullCheck(L_16);
int32_t L_17 = V_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))) >= ((int32_t)L_17)))
{
goto IL_004e;
}
}
IL_0040:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_18 = ___writeBuffer7;
RuntimeObject* L_19 = ___bufferPool6;
int32_t L_20 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_21 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_21);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23;
L_23 = BufferUtils_EnsureBufferSize_m5FEFC50FA57014231E3AADA7BB534A0B8FC62A42(L_19, L_20, L_22, NULL);
*((RuntimeObject**)L_18) = (RuntimeObject*)L_23;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_18, (void*)(RuntimeObject*)L_23);
}
IL_004e:
{
String_t* L_24 = ___s1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_25 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_26 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_25);
int32_t L_27 = V_0;
NullCheck(L_24);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_24, 0, L_26, 0, L_27, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_28 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_29 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_29);
int32_t L_31 = V_0;
NullCheck(L_28);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_28, L_30, 0, L_31);
}
IL_0065:
{
int32_t L_32 = V_0;
V_2 = L_32;
goto IL_0232;
}
IL_006c:
{
String_t* L_33 = ___s1;
int32_t L_34 = V_2;
NullCheck(L_33);
Il2CppChar L_35;
L_35 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_33, L_34, NULL);
V_3 = L_35;
Il2CppChar L_36 = V_3;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_37 = ___charEscapeFlags4;
NullCheck(L_37);
if ((((int32_t)L_36) >= ((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length)))))
{
goto IL_0084;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_38 = ___charEscapeFlags4;
Il2CppChar L_39 = V_3;
NullCheck(L_38);
Il2CppChar L_40 = L_39;
uint8_t L_41 = (uint8_t)(L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
if (!L_41)
{
goto IL_022e;
}
}
IL_0084:
{
Il2CppChar L_42 = V_3;
if ((!(((uint32_t)L_42) <= ((uint32_t)((int32_t)92)))))
{
goto IL_00b0;
}
}
{
Il2CppChar L_43 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_43, 8)))
{
case 0:
{
goto IL_00fa;
}
case 1:
{
goto IL_00ca;
}
case 2:
{
goto IL_00d6;
}
case 3:
{
goto IL_012a;
}
case 4:
{
goto IL_00ee;
}
case 5:
{
goto IL_00e2;
}
}
}
{
Il2CppChar L_44 = V_3;
if ((((int32_t)L_44) == ((int32_t)((int32_t)92))))
{
goto IL_0106;
}
}
{
goto IL_012a;
}
IL_00b0:
{
Il2CppChar L_45 = V_3;
if ((((int32_t)L_45) == ((int32_t)((int32_t)133))))
{
goto IL_010f;
}
}
{
Il2CppChar L_46 = V_3;
if ((((int32_t)L_46) == ((int32_t)((int32_t)8232))))
{
goto IL_0118;
}
}
{
Il2CppChar L_47 = V_3;
if ((((int32_t)L_47) == ((int32_t)((int32_t)8233))))
{
goto IL_0121;
}
}
{
goto IL_012a;
}
IL_00ca:
{
V_4 = _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462;
goto IL_018c;
}
IL_00d6:
{
V_4 = _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51;
goto IL_018c;
}
IL_00e2:
{
V_4 = _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F;
goto IL_018c;
}
IL_00ee:
{
V_4 = _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122;
goto IL_018c;
}
IL_00fa:
{
V_4 = _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9;
goto IL_018c;
}
IL_0106:
{
V_4 = _stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE;
goto IL_018c;
}
IL_010f:
{
V_4 = _stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67;
goto IL_018c;
}
IL_0118:
{
V_4 = _stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894;
goto IL_018c;
}
IL_0121:
{
V_4 = _stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B;
goto IL_018c;
}
IL_012a:
{
Il2CppChar L_48 = V_3;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_49 = ___charEscapeFlags4;
NullCheck(L_49);
if ((((int32_t)L_48) < ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
{
goto IL_0136;
}
}
{
int32_t L_50 = ___stringEscapeHandling5;
if ((!(((uint32_t)L_50) == ((uint32_t)1))))
{
goto IL_0189;
}
}
IL_0136:
{
Il2CppChar L_51 = V_3;
if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)39)))))
{
goto IL_0149;
}
}
{
int32_t L_52 = ___stringEscapeHandling5;
if ((((int32_t)L_52) == ((int32_t)2)))
{
goto IL_0149;
}
}
{
V_4 = _stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC;
goto IL_018c;
}
IL_0149:
{
Il2CppChar L_53 = V_3;
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)34)))))
{
goto IL_015c;
}
}
{
int32_t L_54 = ___stringEscapeHandling5;
if ((((int32_t)L_54) == ((int32_t)2)))
{
goto IL_015c;
}
}
{
V_4 = _stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD;
goto IL_018c;
}
IL_015c:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_55 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_56 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_55);
if (!L_56)
{
goto IL_0169;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_57 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_58 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_57);
NullCheck(L_58);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_58)->max_length))) >= ((int32_t)6)))
{
goto IL_0177;
}
}
IL_0169:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_59 = ___writeBuffer7;
RuntimeObject* L_60 = ___bufferPool6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_61 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_62 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_61);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63;
L_63 = BufferUtils_EnsureBufferSize_m5FEFC50FA57014231E3AADA7BB534A0B8FC62A42(L_60, 6, L_62, NULL);
*((RuntimeObject**)L_59) = (RuntimeObject*)L_63;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_59, (void*)(RuntimeObject*)L_63);
}
IL_0177:
{
Il2CppChar L_64 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_65 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_66 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_65);
StringUtils_ToCharAsUnicode_mBA860BE84C473B842533B2CE9C41261B1DE71220(L_64, L_66, NULL);
V_4 = _stringLiteral15196F05B117690F3E12E56AA0C43803EA0D2A46;
goto IL_018c;
}
IL_0189:
{
V_4 = (String_t*)NULL;
}
IL_018c:
{
String_t* L_67 = V_4;
if (!L_67)
{
goto IL_022e;
}
}
{
String_t* L_68 = V_4;
bool L_69;
L_69 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_68, _stringLiteral15196F05B117690F3E12E56AA0C43803EA0D2A46, 4, NULL);
V_5 = L_69;
int32_t L_70 = V_2;
int32_t L_71 = V_0;
if ((((int32_t)L_70) <= ((int32_t)L_71)))
{
goto IL_0211;
}
}
{
int32_t L_72 = V_2;
int32_t L_73 = V_0;
bool L_74 = V_5;
G_B46_0 = ((int32_t)il2cpp_codegen_subtract(L_72, L_73));
if (L_74)
{
G_B47_0 = ((int32_t)il2cpp_codegen_subtract(L_72, L_73));
goto IL_01b0;
}
}
{
G_B48_0 = 0;
G_B48_1 = G_B46_0;
goto IL_01b1;
}
IL_01b0:
{
G_B48_0 = 6;
G_B48_1 = G_B47_0;
}
IL_01b1:
{
V_1 = ((int32_t)il2cpp_codegen_add(G_B48_1, G_B48_0));
bool L_75 = V_5;
if (L_75)
{
goto IL_01ba;
}
}
{
G_B51_0 = 0;
goto IL_01bb;
}
IL_01ba:
{
G_B51_0 = 6;
}
IL_01bb:
{
V_6 = G_B51_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_76 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_77 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_76);
if (!L_77)
{
goto IL_01ca;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_78 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_78);
NullCheck(L_79);
int32_t L_80 = V_1;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_79)->max_length))) >= ((int32_t)L_80)))
{
goto IL_01f2;
}
}
IL_01ca:
{
RuntimeObject* L_81 = ___bufferPool6;
int32_t L_82 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_83;
L_83 = BufferUtils_RentBuffer_m70AF45505A9D28EA1A35B54194A366F69112DB9D(L_81, L_82, NULL);
V_7 = L_83;
bool L_84 = V_5;
if (!L_84)
{
goto IL_01e3;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_85 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_86 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_85);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_87 = V_7;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_86, (RuntimeArray*)L_87, 6, NULL);
}
IL_01e3:
{
RuntimeObject* L_88 = ___bufferPool6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_89 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_90 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_89);
BufferUtils_ReturnBuffer_m4E16405935FE4EAAC437FDA5221F38E9E89CD797(L_88, L_90, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_91 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_92 = V_7;
*((RuntimeObject**)L_91) = (RuntimeObject*)L_92;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_91, (void*)(RuntimeObject*)L_92);
}
IL_01f2:
{
String_t* L_93 = ___s1;
int32_t L_94 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_95 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_96 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_95);
int32_t L_97 = V_6;
int32_t L_98 = V_1;
int32_t L_99 = V_6;
NullCheck(L_93);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_93, L_94, L_96, L_97, ((int32_t)il2cpp_codegen_subtract(L_98, L_99)), NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_100 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_101 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_102 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_101);
int32_t L_103 = V_6;
int32_t L_104 = V_1;
int32_t L_105 = V_6;
NullCheck(L_100);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_100, L_102, L_103, ((int32_t)il2cpp_codegen_subtract(L_104, L_105)));
}
IL_0211:
{
int32_t L_106 = V_2;
V_0 = ((int32_t)il2cpp_codegen_add(L_106, 1));
bool L_107 = V_5;
if (L_107)
{
goto IL_0223;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_108 = ___writer0;
String_t* L_109 = V_4;
NullCheck(L_108);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_108, L_109);
goto IL_022e;
}
IL_0223:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_110 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_111 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_112 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_111);
NullCheck(L_110);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_110, L_112, 0, 6);
}
IL_022e:
{
int32_t L_113 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_113, 1));
}
IL_0232:
{
int32_t L_114 = V_2;
String_t* L_115 = ___s1;
NullCheck(L_115);
int32_t L_116;
L_116 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_115, NULL);
if ((((int32_t)L_114) < ((int32_t)L_116)))
{
goto IL_006c;
}
}
{
String_t* L_117 = ___s1;
NullCheck(L_117);
int32_t L_118;
L_118 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_117, NULL);
int32_t L_119 = V_0;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_118, L_119));
int32_t L_120 = V_1;
if ((((int32_t)L_120) <= ((int32_t)0)))
{
goto IL_027d;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_121 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_122 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_121);
if (!L_122)
{
goto IL_0258;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_123 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_124 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_123);
NullCheck(L_124);
int32_t L_125 = V_1;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_124)->max_length))) >= ((int32_t)L_125)))
{
goto IL_0266;
}
}
IL_0258:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_126 = ___writeBuffer7;
RuntimeObject* L_127 = ___bufferPool6;
int32_t L_128 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_129 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_130 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_129);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131;
L_131 = BufferUtils_EnsureBufferSize_m5FEFC50FA57014231E3AADA7BB534A0B8FC62A42(L_127, L_128, L_130, NULL);
*((RuntimeObject**)L_126) = (RuntimeObject*)L_131;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_126, (void*)(RuntimeObject*)L_131);
}
IL_0266:
{
String_t* L_132 = ___s1;
int32_t L_133 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_134 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_135 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_134);
int32_t L_136 = V_1;
NullCheck(L_132);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_132, L_133, L_135, 0, L_136, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_137 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB** L_138 = ___writeBuffer7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_139 = *((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB**)L_138);
int32_t L_140 = V_1;
NullCheck(L_137);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(15 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, L_137, L_139, 0, L_140);
}
IL_027d:
{
bool L_141 = ___appendDelimiters3;
if (!L_141)
{
goto IL_0287;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_142 = ___writer0;
Il2CppChar L_143 = ___delimiter2;
NullCheck(L_142);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_142, L_143);
}
IL_0287:
{
return;
}
}
// System.String Newtonsoft.Json.Utilities.JavaScriptUtils::ToEscapedJavaScriptString(System.String,System.Char,System.Boolean,Newtonsoft.Json.StringEscapeHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JavaScriptUtils_ToEscapedJavaScriptString_mDF6BEF818E063F21A6FE3A8C681F501975B159EE (String_t* ___value0, Il2CppChar ___delimiter1, bool ___appendDelimiters2, int32_t ___stringEscapeHandling3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
String_t* V_3 = NULL;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___stringEscapeHandling3;
Il2CppChar L_1 = ___delimiter1;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2;
L_2 = JavaScriptUtils_GetCharEscapeFlags_mA0157C8EFFFF7C9A981C976B017D9D81947BD54A(L_0, L_1, NULL);
V_0 = L_2;
String_t* L_3 = ___value0;
if (L_3)
{
goto IL_000f;
}
}
{
G_B3_0 = ((int32_t)16);
goto IL_0015;
}
IL_000f:
{
String_t* L_4 = ___value0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
G_B3_0 = L_5;
}
IL_0015:
{
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_6;
L_6 = StringUtils_CreateStringWriter_m330EDE0346AA3FE3FAB24D6F8C475226C2BA60DF(G_B3_0, NULL);
V_1 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0034:
{// begin finally (depth: 1)
{
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_7 = V_1;
if (!L_7)
{
goto IL_003d;
}
}
{
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_8 = V_1;
NullCheck(L_8);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
V_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_9 = V_1;
String_t* L_10 = ___value0;
Il2CppChar L_11 = ___delimiter1;
bool L_12 = ___appendDelimiters2;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_13 = V_0;
int32_t L_14 = ___stringEscapeHandling3;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
JavaScriptUtils_WriteEscapedJavaScriptString_m9338E7B75DEE50EF9042E3B8D83B6BAE947F264C(L_9, L_10, L_11, L_12, L_13, L_14, (RuntimeObject*)NULL, (&V_2), NULL);
StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* L_15 = V_1;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_3 = L_16;
goto IL_003e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
String_t* L_17 = V_3;
return L_17;
}
}
// System.Int32 Newtonsoft.Json.Utilities.JavaScriptUtils::FirstCharToEscape(System.String,System.Boolean[],Newtonsoft.Json.StringEscapeHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JavaScriptUtils_FirstCharToEscape_mB7CFDEC6E9E0C4493019F89D3A81EDCD7A3E1252 (String_t* ___s0, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags1, int32_t ___stringEscapeHandling2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
{
V_0 = 0;
goto IL_003d;
}
IL_0004:
{
String_t* L_0 = ___s0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
V_1 = L_2;
Il2CppChar L_3 = V_1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = ___charEscapeFlags1;
NullCheck(L_4);
if ((((int32_t)L_3) >= ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))
{
goto IL_0019;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = ___charEscapeFlags1;
Il2CppChar L_6 = V_1;
NullCheck(L_5);
Il2CppChar L_7 = L_6;
uint8_t L_8 = (uint8_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
if (!L_8)
{
goto IL_0039;
}
}
{
int32_t L_9 = V_0;
return L_9;
}
IL_0019:
{
int32_t L_10 = ___stringEscapeHandling2;
if ((!(((uint32_t)L_10) == ((uint32_t)1))))
{
goto IL_001f;
}
}
{
int32_t L_11 = V_0;
return L_11;
}
IL_001f:
{
Il2CppChar L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)133))))
{
goto IL_0037;
}
}
{
Il2CppChar L_13 = V_1;
if ((((int32_t)L_13) == ((int32_t)((int32_t)8232))))
{
goto IL_0037;
}
}
{
Il2CppChar L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)8233)))))
{
goto IL_0039;
}
}
IL_0037:
{
int32_t L_15 = V_0;
return L_15;
}
IL_0039:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_003d:
{
int32_t L_17 = V_0;
String_t* L_18 = ___s0;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
if ((!(((uint32_t)L_17) == ((uint32_t)L_19))))
{
goto IL_0004;
}
}
{
return (-1);
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringAsync(System.IO.TextWriter,System.String,System.Char,System.Boolean,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringAsync_m69A37174A2DB846019DA1A1C9AC90A94C12E0330 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, Il2CppChar ___delimiter2, bool ___appendDelimiters3, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags4, int32_t ___stringEscapeHandling5, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client6, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer7, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* G_B7_0 = NULL;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* G_B6_0 = NULL;
{
bool L_0;
L_0 = CancellationToken_get_IsCancellationRequested_m9744F7A1A82946FDD1DC68E905F1ED826471D350((&___cancellationToken8), NULL);
if (!L_0)
{
goto IL_0011;
}
}
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken8;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2;
L_2 = AsyncUtils_FromCanceled_m7831A30D4DFD802C8A5464E73BEE1F4E93911B1E(L_1, NULL);
return L_2;
}
IL_0011:
{
bool L_3 = ___appendDelimiters3;
if (!L_3)
{
goto IL_0027;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_4 = ___writer0;
String_t* L_5 = ___s1;
Il2CppChar L_6 = ___delimiter2;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_7 = ___charEscapeFlags4;
int32_t L_8 = ___stringEscapeHandling5;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_9 = ___client6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___writeBuffer7;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_11 = ___cancellationToken8;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_12;
L_12 = JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_m3FC5E2AFECA835F8CEC47ADC20810630F59DC8D2(L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, NULL);
return L_12;
}
IL_0027:
{
String_t* L_13 = ___s1;
bool L_14;
L_14 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_13, NULL);
if (!L_14)
{
goto IL_0040;
}
}
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_15 = ___cancellationToken8;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_16;
L_16 = AsyncUtils_CancelIfRequestedAsync_mB9A37A491FB2ACA89CBD016AE01943177F960BAC(L_15, NULL);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_17 = L_16;
G_B6_0 = L_17;
if (L_17)
{
G_B7_0 = L_17;
goto IL_003f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_18 = ((AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_StaticFields*)il2cpp_codegen_static_fields_for(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var))->___CompletedTask_2;
G_B7_0 = L_18;
}
IL_003f:
{
return G_B7_0;
}
IL_0040:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_19 = ___writer0;
String_t* L_20 = ___s1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_21 = ___charEscapeFlags4;
int32_t L_22 = ___stringEscapeHandling5;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_23 = ___client6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = ___writeBuffer7;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_25 = ___cancellationToken8;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_26;
L_26 = JavaScriptUtils_WriteEscapedJavaScriptStringWithoutDelimitersAsync_mD4A1A0202BAAD748B9979B30B24A526A0F7AD3F3(L_19, L_20, L_21, L_22, L_23, L_24, L_25, NULL);
return L_26;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithDelimitersAsync(System.IO.TextWriter,System.String,System.Char,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_m3FC5E2AFECA835F8CEC47ADC20810630F59DC8D2 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, Il2CppChar ___delimiter2, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags3, int32_t ___stringEscapeHandling4, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client5, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer6, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* V_0 = NULL;
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___writer0;
Il2CppChar L_1 = ___delimiter2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_2 = ___cancellationToken7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
L_3 = AsyncUtils_WriteAsync_m5AAF72F0AFB81C71CAD40D2A02BFE861DCFA8E98(L_0, L_1, L_2, NULL);
V_0 = L_3;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_4 = V_0;
bool L_5;
L_5 = AsyncUtils_IsCompletedSucessfully_m97657301273FA0A88B58B195D01F780211F97FEA(L_4, NULL);
if (L_5)
{
goto IL_0025;
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_6 = V_0;
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = ___writer0;
String_t* L_8 = ___s1;
Il2CppChar L_9 = ___delimiter2;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_10 = ___charEscapeFlags3;
int32_t L_11 = ___stringEscapeHandling4;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_12 = ___client5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ___writeBuffer6;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_14 = ___cancellationToken7;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_15;
L_15 = JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_mD37D01A8978247A7AA39338A5F0036C286C00BF8(L_6, L_7, L_8, L_9, L_10, L_11, L_12, L_13, L_14, NULL);
return L_15;
}
IL_0025:
{
String_t* L_16 = ___s1;
bool L_17;
L_17 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_16, NULL);
if (L_17)
{
goto IL_0050;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_18 = ___writer0;
String_t* L_19 = ___s1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_20 = ___charEscapeFlags3;
int32_t L_21 = ___stringEscapeHandling4;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_22 = ___client5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = ___writeBuffer6;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_24 = ___cancellationToken7;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_25;
L_25 = JavaScriptUtils_WriteEscapedJavaScriptStringWithoutDelimitersAsync_mD4A1A0202BAAD748B9979B30B24A526A0F7AD3F3(L_18, L_19, L_20, L_21, L_22, L_23, L_24, NULL);
V_0 = L_25;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_26 = V_0;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
bool L_27;
L_27 = AsyncUtils_IsCompletedSucessfully_m97657301273FA0A88B58B195D01F780211F97FEA(L_26, NULL);
if (!L_27)
{
goto IL_0050;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_28 = ___writer0;
Il2CppChar L_29 = ___delimiter2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_30 = ___cancellationToken7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_31;
L_31 = AsyncUtils_WriteAsync_m5AAF72F0AFB81C71CAD40D2A02BFE861DCFA8E98(L_28, L_29, L_30, NULL);
return L_31;
}
IL_0050:
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_32 = V_0;
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_33 = ___writer0;
Il2CppChar L_34 = ___delimiter2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_35 = ___cancellationToken7;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_36;
L_36 = JavaScriptUtils_WriteCharAsync_mF4073AFB49BDB105FC18F70AA07CC83D47E45BC6(L_32, L_33, L_34, L_35, NULL);
return L_36;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithDelimitersAsync(System.Threading.Tasks.Task,System.IO.TextWriter,System.String,System.Char,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithDelimitersAsync_mD37D01A8978247A7AA39338A5F0036C286C00BF8 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer1, String_t* ___s2, Il2CppChar ___delimiter3, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags4, int32_t ___stringEscapeHandling5, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client6, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer7, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C V_0;
memset((&V_0), 0, sizeof(V_0));
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = ___task0;
(&V_0)->___task_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___task_2), (void*)L_0);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer1;
(&V_0)->___writer_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___writer_4), (void*)L_1);
String_t* L_2 = ___s2;
(&V_0)->___s_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___s_3), (void*)L_2);
Il2CppChar L_3 = ___delimiter3;
(&V_0)->___delimiter_10 = L_3;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = ___charEscapeFlags4;
(&V_0)->___charEscapeFlags_5 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___charEscapeFlags_5), (void*)L_4);
int32_t L_5 = ___stringEscapeHandling5;
(&V_0)->___stringEscapeHandling_6 = L_5;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_6 = ___client6;
(&V_0)->___client_7 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___client_7), (void*)L_6);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___writeBuffer7;
(&V_0)->___writeBuffer_8 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___writeBuffer_8), (void*)L_7);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_8 = ___cancellationToken8;
(&V_0)->___cancellationToken_9 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_9))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_9;
L_9 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_9;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C L_10 = V_0;
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_11 = L_10.___U3CU3Et__builder_1;
V_1 = L_11;
AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489((&V_1), (&V_0), AsyncTaskMethodBuilder_Start_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_m3468A4F66BC553DCA8047F78D63317634B016489_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_12 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_13;
L_13 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_12, NULL);
return L_13;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteCharAsync(System.Threading.Tasks.Task,System.IO.TextWriter,System.Char,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteCharAsync_mF4073AFB49BDB105FC18F70AA07CC83D47E45BC6 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___task0, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer1, Il2CppChar ___c2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620 V_0;
memset((&V_0), 0, sizeof(V_0));
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = ___task0;
(&V_0)->___task_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___task_2), (void*)L_0);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___writer1;
(&V_0)->___writer_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___writer_3), (void*)L_1);
Il2CppChar L_2 = ___c2;
(&V_0)->___c_4 = L_2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_3 = ___cancellationToken3;
(&V_0)->___cancellationToken_5 = L_3;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_5))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_4;
L_4 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620 L_5 = V_0;
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_6 = L_5.___U3CU3Et__builder_1;
V_1 = L_6;
AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92((&V_1), (&V_0), AsyncTaskMethodBuilder_Start_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_mECA5A865A34D937DDA94163A21A17DA8AA278E92_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_7 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_8;
L_8 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_7, NULL);
return L_8;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptStringWithoutDelimitersAsync(System.IO.TextWriter,System.String,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteEscapedJavaScriptStringWithoutDelimitersAsync_mD4A1A0202BAAD748B9979B30B24A526A0F7AD3F3 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags2, int32_t ___stringEscapeHandling3, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client4, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer5, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___s1;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = ___charEscapeFlags2;
int32_t L_2 = ___stringEscapeHandling3;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = JavaScriptUtils_FirstCharToEscape_mB7CFDEC6E9E0C4493019F89D3A81EDCD7A3E1252(L_0, L_1, L_2, NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)(-1))))
{
goto IL_001e;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = ___writer0;
String_t* L_6 = ___s1;
int32_t L_7 = V_0;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = ___charEscapeFlags2;
int32_t L_9 = ___stringEscapeHandling3;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_10 = ___client4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___writeBuffer5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_12 = ___cancellationToken6;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_13;
L_13 = JavaScriptUtils_WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync_m610721C42EFF218016EB7BFEAD199843E142DF18(L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, NULL);
return L_13;
}
IL_001e:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_14 = ___writer0;
String_t* L_15 = ___s1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_16 = ___cancellationToken6;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_17;
L_17 = AsyncUtils_WriteAsync_mD9EEB8C0D7E532FCCF17707C702A61DB60030F2D(L_14, L_15, L_16, NULL);
return L_17;
}
}
// System.Threading.Tasks.Task Newtonsoft.Json.Utilities.JavaScriptUtils::WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync(System.IO.TextWriter,System.String,System.Int32,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.JsonTextWriter,System.Char[],System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* JavaScriptUtils_WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync_m610721C42EFF218016EB7BFEAD199843E142DF18 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, String_t* ___s1, int32_t ___lastWritePosition2, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___charEscapeFlags3, int32_t ___stringEscapeHandling4, JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* ___client5, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeBuffer6, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833 V_0;
memset((&V_0), 0, sizeof(V_0));
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 V_1;
memset((&V_1), 0, sizeof(V_1));
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___writer0;
(&V_0)->___writer_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___writer_6), (void*)L_0);
String_t* L_1 = ___s1;
(&V_0)->___s_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___s_5), (void*)L_1);
int32_t L_2 = ___lastWritePosition2;
(&V_0)->___lastWritePosition_3 = L_2;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = ___charEscapeFlags3;
(&V_0)->___charEscapeFlags_8 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___charEscapeFlags_8), (void*)L_3);
int32_t L_4 = ___stringEscapeHandling4;
(&V_0)->___stringEscapeHandling_9 = L_4;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_5 = ___client5;
(&V_0)->___client_4 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___client_4), (void*)L_5);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___writeBuffer6;
(&V_0)->___writeBuffer_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___writeBuffer_2), (void*)L_6);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_7 = ___cancellationToken7;
(&V_0)->___cancellationToken_7 = L_7;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_7))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_8;
L_8 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833 L_9 = V_0;
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_10 = L_9.___U3CU3Et__builder_1;
V_1 = L_10;
AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B((&V_1), (&V_0), AsyncTaskMethodBuilder_Start_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_mD344D5EC936DF63F591EC037C4AFD6DEA7F54F7B_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_11 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_12;
L_12 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_11, NULL);
return L_12;
}
}
// System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils::TryGetDateFromConstructorJson(Newtonsoft.Json.JsonReader,System.DateTime&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JavaScriptUtils_TryGetDateFromConstructorJson_m7A084779C4A32389CFBF614EB0D271888ED998DC (JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* ___reader0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* ___dateTime1, String_t** ___errorMessage2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF9D88C946600C782EE786A252258C0AA97BD019A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22FE8CF0CFDCCDB13208BCC31E8BD10F478125DC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B32DCC9DD9FF2ED15F20D20FBEEE7EB511CC73C);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 V_1;
memset((&V_1), 0, sizeof(V_1));
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* V_2 = NULL;
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 V_3;
memset((&V_3), 0, sizeof(V_3));
String_t* G_B4_0 = NULL;
String_t** G_B4_1 = NULL;
String_t* G_B3_0 = NULL;
String_t** G_B3_1 = NULL;
int32_t G_B19_0 = 0;
int32_t G_B19_1 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B19_2 = NULL;
int32_t G_B18_0 = 0;
int32_t G_B18_1 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B18_2 = NULL;
int32_t G_B20_0 = 0;
int32_t G_B20_1 = 0;
int32_t G_B20_2 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B20_3 = NULL;
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_0 = ___dateTime1;
il2cpp_codegen_initobj(L_0, sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
String_t** L_1 = ___errorMessage2;
*((RuntimeObject**)L_1) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL);
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_2 = ___reader0;
String_t** L_3 = ___errorMessage2;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
bool L_4;
L_4 = JavaScriptUtils_TryGetDateConstructorValue_m575CC5ED6E8509AE22E21ACDB3F436E3F058A8D8(L_2, (&V_0), L_3, NULL);
if (!L_4)
{
goto IL_001e;
}
}
{
bool L_5;
L_5 = Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_inline((&V_0), Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_RuntimeMethod_var);
if (L_5)
{
goto IL_002d;
}
}
IL_001e:
{
String_t** L_6 = ___errorMessage2;
String_t** L_7 = ___errorMessage2;
String_t* L_8 = *((String_t**)L_7);
String_t* L_9 = L_8;
G_B3_0 = L_9;
G_B3_1 = L_6;
if (L_9)
{
G_B4_0 = L_9;
G_B4_1 = L_6;
goto IL_002a;
}
}
{
G_B4_0 = _stringLiteral22FE8CF0CFDCCDB13208BCC31E8BD10F478125DC;
G_B4_1 = G_B3_1;
}
IL_002a:
{
*((RuntimeObject**)G_B4_1) = (RuntimeObject*)G_B4_0;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B4_1, (void*)(RuntimeObject*)G_B4_0);
return (bool)0;
}
IL_002d:
{
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_10 = ___reader0;
String_t** L_11 = ___errorMessage2;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
bool L_12;
L_12 = JavaScriptUtils_TryGetDateConstructorValue_m575CC5ED6E8509AE22E21ACDB3F436E3F058A8D8(L_10, (&V_1), L_11, NULL);
if (L_12)
{
goto IL_003a;
}
}
{
return (bool)0;
}
IL_003a:
{
bool L_13;
L_13 = Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_inline((&V_1), Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_RuntimeMethod_var);
if (!L_13)
{
goto IL_0101;
}
}
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_14 = (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*)il2cpp_codegen_object_new(List_1_tF9D88C946600C782EE786A252258C0AA97BD019A_il2cpp_TypeInfo_var);
NullCheck(L_14);
List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75(L_14, List_1__ctor_m2EBA73E03CE51821DFC1880E09649FFBFC3ABA75_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_15 = L_14;
int64_t L_16;
L_16 = Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC((&V_0), Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var);
NullCheck(L_15);
List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_inline(L_15, L_16, List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_17 = L_15;
int64_t L_18;
L_18 = Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC((&V_1), Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var);
NullCheck(L_17);
List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_inline(L_17, L_18, List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var);
V_2 = L_17;
}
IL_0066:
{
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_19 = ___reader0;
String_t** L_20 = ___errorMessage2;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
bool L_21;
L_21 = JavaScriptUtils_TryGetDateConstructorValue_m575CC5ED6E8509AE22E21ACDB3F436E3F058A8D8(L_19, (&V_3), L_20, NULL);
if (L_21)
{
goto IL_0073;
}
}
{
return (bool)0;
}
IL_0073:
{
bool L_22;
L_22 = Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_inline((&V_3), Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_RuntimeMethod_var);
if (!L_22)
{
goto IL_008b;
}
}
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_23 = V_2;
int64_t L_24;
L_24 = Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC((&V_3), Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var);
NullCheck(L_23);
List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_inline(L_23, L_24, List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var);
goto IL_0066;
}
IL_008b:
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_25 = V_2;
NullCheck(L_25);
int32_t L_26;
L_26 = List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_inline(L_25, List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_RuntimeMethod_var);
if ((((int32_t)L_26) <= ((int32_t)7)))
{
goto IL_00a5;
}
}
{
String_t** L_27 = ___errorMessage2;
*((RuntimeObject**)L_27) = (RuntimeObject*)_stringLiteral6B32DCC9DD9FF2ED15F20D20FBEEE7EB511CC73C;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_27, (void*)(RuntimeObject*)_stringLiteral6B32DCC9DD9FF2ED15F20D20FBEEE7EB511CC73C);
return (bool)0;
}
IL_009d:
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_28 = V_2;
NullCheck(L_28);
List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_inline(L_28, ((int64_t)0), List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_RuntimeMethod_var);
}
IL_00a5:
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_29 = V_2;
NullCheck(L_29);
int32_t L_30;
L_30 = List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_inline(L_29, List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_RuntimeMethod_var);
if ((((int32_t)L_30) < ((int32_t)7)))
{
goto IL_009d;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_31 = ___dateTime1;
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_32 = V_2;
NullCheck(L_32);
int64_t L_33;
L_33 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_32, 0, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_34 = V_2;
NullCheck(L_34);
int64_t L_35;
L_35 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_34, 1, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_36 = V_2;
NullCheck(L_36);
int64_t L_37;
L_37 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_36, 2, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
G_B18_0 = ((int32_t)il2cpp_codegen_add(((int32_t)L_35), 1));
G_B18_1 = ((int32_t)L_33);
G_B18_2 = L_31;
if (!L_37)
{
G_B19_0 = ((int32_t)il2cpp_codegen_add(((int32_t)L_35), 1));
G_B19_1 = ((int32_t)L_33);
G_B19_2 = L_31;
goto IL_00d4;
}
}
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_38 = V_2;
NullCheck(L_38);
int64_t L_39;
L_39 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_38, 2, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
G_B20_0 = ((int32_t)L_39);
G_B20_1 = G_B18_0;
G_B20_2 = G_B18_1;
G_B20_3 = G_B18_2;
goto IL_00d5;
}
IL_00d4:
{
G_B20_0 = 1;
G_B20_1 = G_B19_0;
G_B20_2 = G_B19_1;
G_B20_3 = G_B19_2;
}
IL_00d5:
{
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_40 = V_2;
NullCheck(L_40);
int64_t L_41;
L_41 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_40, 3, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_42 = V_2;
NullCheck(L_42);
int64_t L_43;
L_43 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_42, 4, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_44 = V_2;
NullCheck(L_44);
int64_t L_45;
L_45 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_44, 5, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* L_46 = V_2;
NullCheck(L_46);
int64_t L_47;
L_47 = List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD(L_46, 6, List_1_get_Item_m83A927A531097BB02EAEC9E5AD4B32C1499B55FD_RuntimeMethod_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48;
memset((&L_48), 0, sizeof(L_48));
DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&L_48), G_B20_2, G_B20_1, G_B20_0, ((int32_t)L_41), ((int32_t)L_43), ((int32_t)L_45), ((int32_t)L_47), /*hidden argument*/NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)G_B20_3 = L_48;
goto IL_0113;
}
IL_0101:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_49 = ___dateTime1;
int64_t L_50;
L_50 = Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC((&V_0), Nullable_1_get_Value_mB475257F3012818AAA61B72B67DA701FACE716DC_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(DateTimeUtils_t08EF5030CF29329A3646A81F48D1F440A6234121_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51;
L_51 = DateTimeUtils_ConvertJavaScriptTicksToDateTime_m06106AA819E24221772E74B545C218B6B4270E60(L_50, NULL);
*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)L_49 = L_51;
}
IL_0113:
{
return (bool)1;
}
}
// System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils::TryGetDateConstructorValue(Newtonsoft.Json.JsonReader,System.Nullable`1<System.Int64>&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JavaScriptUtils_TryGetDateConstructorValue_m575CC5ED6E8509AE22E21ACDB3F436E3F058A8D8 (JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* ___reader0, Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* ___integer1, String_t** ___errorMessage2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonToken_t00B2B3F98FB3E9A8DE72409901BED1C7F1670BD5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral430C3C837CDA74A5A4A5D54034073F1C15382393);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76EE5B8D032C95BE563A920FDFAD51C49E21E8AA);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* L_0 = ___integer1;
il2cpp_codegen_initobj(L_0, sizeof(Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17));
String_t** L_1 = ___errorMessage2;
*((RuntimeObject**)L_1) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL);
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_2 = ___reader0;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean Newtonsoft.Json.JsonReader::Read() */, L_2);
if (L_3)
{
goto IL_001b;
}
}
{
String_t** L_4 = ___errorMessage2;
*((RuntimeObject**)L_4) = (RuntimeObject*)_stringLiteral430C3C837CDA74A5A4A5D54034073F1C15382393;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)_stringLiteral430C3C837CDA74A5A4A5D54034073F1C15382393);
return (bool)0;
}
IL_001b:
{
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_5 = ___reader0;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::get_TokenType() */, L_5);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)15)))))
{
goto IL_0027;
}
}
{
return (bool)1;
}
IL_0027:
{
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_7 = ___reader0;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::get_TokenType() */, L_7);
if ((((int32_t)L_8) == ((int32_t)7)))
{
goto IL_0052;
}
}
{
String_t** L_9 = ___errorMessage2;
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_10 = ___reader0;
NullCheck(L_10);
int32_t L_11;
L_11 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::get_TokenType() */, L_10);
V_0 = L_11;
Il2CppFakeBox<int32_t> L_12(JsonToken_t00B2B3F98FB3E9A8DE72409901BED1C7F1670BD5_il2cpp_TypeInfo_var, (&V_0));
String_t* L_13;
L_13 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_12), NULL);
String_t* L_14;
L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral76EE5B8D032C95BE563A920FDFAD51C49E21E8AA, L_13, NULL);
*((RuntimeObject**)L_9) = (RuntimeObject*)L_14;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_9, (void*)(RuntimeObject*)L_14);
return (bool)0;
}
IL_0052:
{
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* L_15 = ___integer1;
JsonReader_tB90522FA9D4C1C218A3F2C529A27D95123847765* L_16 = ___reader0;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(17 /* System.Object Newtonsoft.Json.JsonReader::get_Value() */, L_16);
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 L_18;
memset((&L_18), 0, sizeof(L_18));
Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1((&L_18), ((*(int64_t*)((int64_t*)(int64_t*)UnBox(L_17, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))), /*hidden argument*/Nullable_1__ctor_m117BE9EF6DBC76B088B52AFB80634B9195D384A1_RuntimeMethod_var);
*(Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*)L_15 = L_18;
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_MoveNext_m1F0023CC8038B6BFCFE9D6A4832749C676F1B287 (U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_1;
memset((&V_1), 0, sizeof(V_1));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_2;
memset((&V_2), 0, sizeof(V_2));
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_005a_1;
}
case 1:
{
goto IL_00f7_1;
}
case 2:
{
goto IL_0163_1;
}
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2 = __this->___task_2;
NullCheck(L_2);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_3;
L_3 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_2, (bool)0, NULL);
V_2 = L_3;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_4;
L_4 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_2), NULL);
V_1 = L_4;
bool L_5;
L_5 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_1), NULL);
if (L_5)
{
goto IL_0076_1;
}
}
{
int32_t L_6 = 0;
V_0 = L_6;
__this->___U3CU3E1__state_0 = L_6;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_7 = V_1;
__this->___U3CU3Eu__1_11 = L_7;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_11))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_8 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B(L_8, (&V_1), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_RuntimeMethod_var);
goto IL_01b2;
}
IL_005a_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_9 = __this->___U3CU3Eu__1_11;
V_1 = L_9;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_10 = (&__this->___U3CU3Eu__1_11);
il2cpp_codegen_initobj(L_10, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_11 = (-1);
V_0 = L_11;
__this->___U3CU3E1__state_0 = L_11;
}
IL_0076_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_1), NULL);
String_t* L_12 = __this->___s_3;
bool L_13;
L_13 = StringUtils_IsNullOrEmpty_m7BEB87E7D51C30DF1FE699A9FF85F2194006EA8B(L_12, NULL);
if (L_13)
{
goto IL_011a_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_14 = __this->___writer_4;
String_t* L_15 = __this->___s_3;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_16 = __this->___charEscapeFlags_5;
int32_t L_17 = __this->___stringEscapeHandling_6;
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_18 = __this->___client_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___writeBuffer_8;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_20 = __this->___cancellationToken_9;
il2cpp_codegen_runtime_class_init_inline(JavaScriptUtils_t41F94ACD19AD4866BBC370C0C6A45522105B9DEF_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_21;
L_21 = JavaScriptUtils_WriteEscapedJavaScriptStringWithoutDelimitersAsync_mD4A1A0202BAAD748B9979B30B24A526A0F7AD3F3(L_14, L_15, L_16, L_17, L_18, L_19, L_20, NULL);
NullCheck(L_21);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_21, (bool)0, NULL);
V_2 = L_22;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_2), NULL);
V_1 = L_23;
bool L_24;
L_24 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_1), NULL);
if (L_24)
{
goto IL_0113_1;
}
}
{
int32_t L_25 = 1;
V_0 = L_25;
__this->___U3CU3E1__state_0 = L_25;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_26 = V_1;
__this->___U3CU3Eu__1_11 = L_26;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_11))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_27 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B(L_27, (&V_1), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_RuntimeMethod_var);
goto IL_01b2;
}
IL_00f7_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_28 = __this->___U3CU3Eu__1_11;
V_1 = L_28;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_29 = (&__this->___U3CU3Eu__1_11);
il2cpp_codegen_initobj(L_29, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_30 = (-1);
V_0 = L_30;
__this->___U3CU3E1__state_0 = L_30;
}
IL_0113_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_1), NULL);
}
IL_011a_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_31 = __this->___writer_4;
Il2CppChar L_32 = __this->___delimiter_10;
NullCheck(L_31);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_33;
L_33 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, Il2CppChar >::Invoke(47 /* System.Threading.Tasks.Task System.IO.TextWriter::WriteAsync(System.Char) */, L_31, L_32);
NullCheck(L_33);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_34;
L_34 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_33, (bool)0, NULL);
V_2 = L_34;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_35;
L_35 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_2), NULL);
V_1 = L_35;
bool L_36;
L_36 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_1), NULL);
if (L_36)
{
goto IL_017f_1;
}
}
{
int32_t L_37 = 2;
V_0 = L_37;
__this->___U3CU3E1__state_0 = L_37;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_38 = V_1;
__this->___U3CU3Eu__1_11 = L_38;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_11))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_39 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B(L_39, (&V_1), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C_mA3A2B22C9A4A73FAD2919E378BEEB320958A989B_RuntimeMethod_var);
goto IL_01b2;
}
IL_0163_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_40 = __this->___U3CU3Eu__1_11;
V_1 = L_40;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_41 = (&__this->___U3CU3Eu__1_11);
il2cpp_codegen_initobj(L_41, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_42 = (-1);
V_0 = L_42;
__this->___U3CU3E1__state_0 = L_42;
}
IL_017f_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_1), NULL);
goto IL_019f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0188;
}
throw e;
}
CATCH_0188:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_43 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_44 = V_3;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_43, L_44, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01b2;
}// end catch (depth: 1)
IL_019f:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_45 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_45, NULL);
}
IL_01b2:
{
return;
}
}
IL2CPP_EXTERN_C void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_MoveNext_m1F0023CC8038B6BFCFE9D6A4832749C676F1B287_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C*>(__this + _offset);
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_MoveNext_m1F0023CC8038B6BFCFE9D6A4832749C676F1B287(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteEscapedJavaScriptStringWithDelimitersAsync>d__13::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_SetStateMachine_mB623CD0E2849F843B39C92F351AC22766698299F (U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_SetStateMachine_mB623CD0E2849F843B39C92F351AC22766698299F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_tD91A3EF387291672518E47ED1A82CCCA9567085C*>(__this + _offset);
U3CWriteEscapedJavaScriptStringWithDelimitersAsyncU3Ed__13_SetStateMachine_mB623CD0E2849F843B39C92F351AC22766698299F(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteCharAsyncU3Ed__14_MoveNext_m24DBE91A18E8765D61C74B90F8A644E4B9CF5B9C (U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_1;
memset((&V_1), 0, sizeof(V_1));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_2;
memset((&V_2), 0, sizeof(V_2));
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0052_1;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_00c4_1;
}
}
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3 = __this->___task_2;
NullCheck(L_3);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_4;
L_4 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_3, (bool)0, NULL);
V_2 = L_4;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_5;
L_5 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_2), NULL);
V_1 = L_5;
bool L_6;
L_6 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_1), NULL);
if (L_6)
{
goto IL_006e_1;
}
}
{
int32_t L_7 = 0;
V_0 = L_7;
__this->___U3CU3E1__state_0 = L_7;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_8 = V_1;
__this->___U3CU3Eu__1_6 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_9 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A(L_9, (&V_1), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_RuntimeMethod_var);
goto IL_0113;
}
IL_0052_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_10 = __this->___U3CU3Eu__1_6;
V_1 = L_10;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_11 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_11, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_12 = (-1);
V_0 = L_12;
__this->___U3CU3E1__state_0 = L_12;
}
IL_006e_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_1), NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_13 = __this->___writer_3;
Il2CppChar L_14 = __this->___c_4;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_15 = __this->___cancellationToken_5;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_16;
L_16 = AsyncUtils_WriteAsync_m5AAF72F0AFB81C71CAD40D2A02BFE861DCFA8E98(L_13, L_14, L_15, NULL);
NullCheck(L_16);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_17;
L_17 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_16, (bool)0, NULL);
V_2 = L_17;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18;
L_18 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_2), NULL);
V_1 = L_18;
bool L_19;
L_19 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_1), NULL);
if (L_19)
{
goto IL_00e0_1;
}
}
{
int32_t L_20 = 1;
V_0 = L_20;
__this->___U3CU3E1__state_0 = L_20;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_21 = V_1;
__this->___U3CU3Eu__1_6 = L_21;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_22 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A(L_22, (&V_1), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620_m8EEA664E1634803B608D1A2027857A7C31A2D00A_RuntimeMethod_var);
goto IL_0113;
}
IL_00c4_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23 = __this->___U3CU3Eu__1_6;
V_1 = L_23;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_24 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_24, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_25 = (-1);
V_0 = L_25;
__this->___U3CU3E1__state_0 = L_25;
}
IL_00e0_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_1), NULL);
goto IL_0100;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00e9;
}
throw e;
}
CATCH_00e9:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_26 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_27 = V_3;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_26, L_27, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0113;
}// end catch (depth: 1)
IL_0100:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_28 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_28, NULL);
}
IL_0113:
{
return;
}
}
IL2CPP_EXTERN_C void U3CWriteCharAsyncU3Ed__14_MoveNext_m24DBE91A18E8765D61C74B90F8A644E4B9CF5B9C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620*>(__this + _offset);
U3CWriteCharAsyncU3Ed__14_MoveNext_m24DBE91A18E8765D61C74B90F8A644E4B9CF5B9C(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteCharAsync>d__14::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteCharAsyncU3Ed__14_SetStateMachine_mDE0204B52F4E8966CCA96B7B0F64A469AAA7672F (U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CWriteCharAsyncU3Ed__14_SetStateMachine_mDE0204B52F4E8966CCA96B7B0F64A469AAA7672F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteCharAsyncU3Ed__14_tEB70FA20D347BF6E46D805F150027B906B231620*>(__this + _offset);
U3CWriteCharAsyncU3Ed__14_SetStateMachine_mDE0204B52F4E8966CCA96B7B0F64A469AAA7672F(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_MoveNext_m2357A9EB077FAFB2B9056ECDC02B336FA5434EE6 (U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_3;
memset((&V_3), 0, sizeof(V_3));
Il2CppChar V_4 = 0x0;
int32_t V_5 = 0;
int32_t V_6 = 0;
Exception_t* V_7 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B44_0 = 0;
int32_t G_B43_0 = 0;
int32_t G_B45_0 = 0;
int32_t G_B45_1 = 0;
int32_t G_B48_0 = 0;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
}
try
{// begin try (depth: 1)
{
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_00ce_1;
}
case 1:
{
goto IL_0374_1;
}
case 2:
{
goto IL_03ff_1;
}
case 3:
{
goto IL_0478_1;
}
case 4:
{
goto IL_056b_1;
}
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___writeBuffer_2;
if (!L_2)
{
goto IL_0039_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___writeBuffer_2;
NullCheck(L_3);
int32_t L_4 = __this->___lastWritePosition_3;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))) >= ((int32_t)L_4)))
{
goto IL_0051_1;
}
}
IL_0039_1:
{
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_5 = __this->___client_4;
int32_t L_6 = __this->___lastWritePosition_3;
NullCheck(L_5);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7;
L_7 = JsonTextWriter_EnsureWriteBuffer_mE8C7CC5551A901519F380130617EC2B9CB9DEF1E(L_5, L_6, 6, NULL);
__this->___writeBuffer_2 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_2), (void*)L_7);
}
IL_0051_1:
{
int32_t L_8 = __this->___lastWritePosition_3;
if (!L_8)
{
goto IL_00f1_1;
}
}
{
String_t* L_9 = __this->___s_5;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___writeBuffer_2;
int32_t L_11 = __this->___lastWritePosition_3;
NullCheck(L_9);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_9, 0, L_10, 0, L_11, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = __this->___writer_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___writeBuffer_2;
int32_t L_14 = __this->___lastWritePosition_3;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_15 = __this->___cancellationToken_7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_16;
L_16 = AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC(L_12, L_13, 0, L_14, L_15, NULL);
NullCheck(L_16);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_17;
L_17 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_16, (bool)0, NULL);
V_3 = L_17;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18;
L_18 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_18;
bool L_19;
L_19 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_19)
{
goto IL_00ea_1;
}
}
{
int32_t L_20 = 0;
V_0 = L_20;
__this->___U3CU3E1__state_0 = L_20;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_21 = V_2;
__this->___U3CU3Eu__1_12 = L_21;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_12))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_22 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208(L_22, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
goto IL_05bc;
}
IL_00ce_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23 = __this->___U3CU3Eu__1_12;
V_2 = L_23;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_24 = (&__this->___U3CU3Eu__1_12);
il2cpp_codegen_initobj(L_24, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_25 = (-1);
V_0 = L_25;
__this->___U3CU3E1__state_0 = L_25;
}
IL_00ea_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_00f1_1:
{
__this->___U3CisEscapedUnicodeTextU3E5__2_10 = (bool)0;
__this->___U3CescapedValueU3E5__3_11 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)(String_t*)NULL);
int32_t L_26 = __this->___lastWritePosition_3;
__this->___U3CiU3E5__4_13 = L_26;
goto IL_04b4_1;
}
IL_0110_1:
{
String_t* L_27 = __this->___s_5;
int32_t L_28 = __this->___U3CiU3E5__4_13;
NullCheck(L_27);
Il2CppChar L_29;
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, L_28, NULL);
V_4 = L_29;
Il2CppChar L_30 = V_4;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_31 = __this->___charEscapeFlags_8;
NullCheck(L_31);
if ((((int32_t)L_30) >= ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_013d_1;
}
}
{
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_32 = __this->___charEscapeFlags_8;
Il2CppChar L_33 = V_4;
NullCheck(L_32);
Il2CppChar L_34 = L_33;
uint8_t L_35 = (uint8_t)(L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
if (!L_35)
{
goto IL_04a2_1;
}
}
IL_013d_1:
{
Il2CppChar L_36 = V_4;
if ((!(((uint32_t)L_36) <= ((uint32_t)((int32_t)92)))))
{
goto IL_016f_1;
}
}
{
Il2CppChar L_37 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_37, 8)))
{
case 0:
{
goto IL_01d5_1;
}
case 1:
{
goto IL_0195_1;
}
case 2:
{
goto IL_01a5_1;
}
case 3:
{
goto IL_0225_1;
}
case 4:
{
goto IL_01c5_1;
}
case 5:
{
goto IL_01b5_1;
}
}
}
{
Il2CppChar L_38 = V_4;
if ((((int32_t)L_38) == ((int32_t)((int32_t)92))))
{
goto IL_01e5_1;
}
}
{
goto IL_0225_1;
}
IL_016f_1:
{
Il2CppChar L_39 = V_4;
if ((((int32_t)L_39) == ((int32_t)((int32_t)133))))
{
goto IL_01f5_1;
}
}
{
Il2CppChar L_40 = V_4;
if ((((int32_t)L_40) == ((int32_t)((int32_t)8232))))
{
goto IL_0205_1;
}
}
{
Il2CppChar L_41 = V_4;
if ((((int32_t)L_41) == ((int32_t)((int32_t)8233))))
{
goto IL_0215_1;
}
}
{
goto IL_0225_1;
}
IL_0195_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
goto IL_02a7_1;
}
IL_01a5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
goto IL_02a7_1;
}
IL_01b5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
goto IL_02a7_1;
}
IL_01c5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
goto IL_02a7_1;
}
IL_01d5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
goto IL_02a7_1;
}
IL_01e5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE);
goto IL_02a7_1;
}
IL_01f5_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralDD132AF56450B39BE9268B0F2850CC239DB8CD67);
goto IL_02a7_1;
}
IL_0205_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralD489269E8E1F5DAC95F746BB35583B31B03CA894);
goto IL_02a7_1;
}
IL_0215_1:
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteral26624E47EFBA198B8A9D8F24D36ED1F5C840F72B);
goto IL_02a7_1;
}
IL_0225_1:
{
Il2CppChar L_42 = V_4;
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_43 = __this->___charEscapeFlags_8;
NullCheck(L_43);
if ((((int32_t)L_42) < ((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))
{
goto IL_023d_1;
}
}
{
int32_t L_44 = __this->___stringEscapeHandling_9;
if ((!(((uint32_t)L_44) == ((uint32_t)1))))
{
goto IL_04a2_1;
}
}
IL_023d_1:
{
Il2CppChar L_45 = V_4;
if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)39)))))
{
goto IL_0259_1;
}
}
{
int32_t L_46 = __this->___stringEscapeHandling_9;
if ((((int32_t)L_46) == ((int32_t)2)))
{
goto IL_0259_1;
}
}
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteralB5B495EDB26BE29412F98C033B0AB96D0CF3DABC);
goto IL_02a7_1;
}
IL_0259_1:
{
Il2CppChar L_47 = V_4;
if ((!(((uint32_t)L_47) == ((uint32_t)((int32_t)34)))))
{
goto IL_0275_1;
}
}
{
int32_t L_48 = __this->___stringEscapeHandling_9;
if ((((int32_t)L_48) == ((int32_t)2)))
{
goto IL_0275_1;
}
}
{
__this->___U3CescapedValueU3E5__3_11 = _stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CescapedValueU3E5__3_11), (void*)_stringLiteral848E5ED630B3142F565DD995C6E8D30187ED33CD);
goto IL_02a7_1;
}
IL_0275_1:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_49 = __this->___writeBuffer_2;
NullCheck(L_49);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length))) >= ((int32_t)6)))
{
goto IL_0293_1;
}
}
{
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_50 = __this->___client_4;
NullCheck(L_50);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51;
L_51 = JsonTextWriter_EnsureWriteBuffer_mE8C7CC5551A901519F380130617EC2B9CB9DEF1E(L_50, 6, 0, NULL);
__this->___writeBuffer_2 = L_51;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_2), (void*)L_51);
}
IL_0293_1:
{
Il2CppChar L_52 = V_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_53 = __this->___writeBuffer_2;
StringUtils_ToCharAsUnicode_mBA860BE84C473B842533B2CE9C41261B1DE71220(L_52, L_53, NULL);
__this->___U3CisEscapedUnicodeTextU3E5__2_10 = (bool)1;
}
IL_02a7_1:
{
int32_t L_54 = __this->___U3CiU3E5__4_13;
int32_t L_55 = __this->___lastWritePosition_3;
if ((((int32_t)L_54) <= ((int32_t)L_55)))
{
goto IL_0397_1;
}
}
{
int32_t L_56 = __this->___U3CiU3E5__4_13;
int32_t L_57 = __this->___lastWritePosition_3;
bool L_58 = __this->___U3CisEscapedUnicodeTextU3E5__2_10;
G_B43_0 = ((int32_t)il2cpp_codegen_subtract(L_56, L_57));
if (L_58)
{
G_B44_0 = ((int32_t)il2cpp_codegen_subtract(L_56, L_57));
goto IL_02d0_1;
}
}
{
G_B45_0 = 0;
G_B45_1 = G_B43_0;
goto IL_02d1_1;
}
IL_02d0_1:
{
G_B45_0 = 6;
G_B45_1 = G_B44_0;
}
IL_02d1_1:
{
V_1 = ((int32_t)il2cpp_codegen_add(G_B45_1, G_B45_0));
bool L_59 = __this->___U3CisEscapedUnicodeTextU3E5__2_10;
if (L_59)
{
goto IL_02de_1;
}
}
{
G_B48_0 = 0;
goto IL_02df_1;
}
IL_02de_1:
{
G_B48_0 = 6;
}
IL_02df_1:
{
V_5 = G_B48_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = __this->___writeBuffer_2;
NullCheck(L_60);
int32_t L_61 = V_1;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_60)->max_length))) >= ((int32_t)L_61)))
{
goto IL_02ff_1;
}
}
{
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_62 = __this->___client_4;
int32_t L_63 = V_1;
NullCheck(L_62);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64;
L_64 = JsonTextWriter_EnsureWriteBuffer_mE8C7CC5551A901519F380130617EC2B9CB9DEF1E(L_62, L_63, 6, NULL);
__this->___writeBuffer_2 = L_64;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_2), (void*)L_64);
}
IL_02ff_1:
{
String_t* L_65 = __this->___s_5;
int32_t L_66 = __this->___lastWritePosition_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_67 = __this->___writeBuffer_2;
int32_t L_68 = V_5;
int32_t L_69 = V_1;
int32_t L_70 = V_5;
NullCheck(L_65);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_65, L_66, L_67, L_68, ((int32_t)il2cpp_codegen_subtract(L_69, L_70)), NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_71 = __this->___writer_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_72 = __this->___writeBuffer_2;
int32_t L_73 = V_5;
int32_t L_74 = V_1;
int32_t L_75 = V_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_76 = __this->___cancellationToken_7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_77;
L_77 = AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC(L_71, L_72, L_73, ((int32_t)il2cpp_codegen_subtract(L_74, L_75)), L_76, NULL);
NullCheck(L_77);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_78;
L_78 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_77, (bool)0, NULL);
V_3 = L_78;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_79;
L_79 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_79;
bool L_80;
L_80 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_80)
{
goto IL_0390_1;
}
}
{
int32_t L_81 = 1;
V_0 = L_81;
__this->___U3CU3E1__state_0 = L_81;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_82 = V_2;
__this->___U3CU3Eu__1_12 = L_82;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_12))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_83 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208(L_83, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
goto IL_05bc;
}
IL_0374_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_84 = __this->___U3CU3Eu__1_12;
V_2 = L_84;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_85 = (&__this->___U3CU3Eu__1_12);
il2cpp_codegen_initobj(L_85, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_86 = (-1);
V_0 = L_86;
__this->___U3CU3E1__state_0 = L_86;
}
IL_0390_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_0397_1:
{
int32_t L_87 = __this->___U3CiU3E5__4_13;
__this->___lastWritePosition_3 = ((int32_t)il2cpp_codegen_add(L_87, 1));
bool L_88 = __this->___U3CisEscapedUnicodeTextU3E5__2_10;
if (L_88)
{
goto IL_0424_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_89 = __this->___writer_6;
String_t* L_90 = __this->___U3CescapedValueU3E5__3_11;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_91 = __this->___cancellationToken_7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_92;
L_92 = AsyncUtils_WriteAsync_mD9EEB8C0D7E532FCCF17707C702A61DB60030F2D(L_89, L_90, L_91, NULL);
NullCheck(L_92);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_93;
L_93 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_92, (bool)0, NULL);
V_3 = L_93;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_94;
L_94 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_94;
bool L_95;
L_95 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_95)
{
goto IL_041b_1;
}
}
{
int32_t L_96 = 2;
V_0 = L_96;
__this->___U3CU3E1__state_0 = L_96;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_97 = V_2;
__this->___U3CU3Eu__1_12 = L_97;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_12))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_98 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208(L_98, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
goto IL_05bc;
}
IL_03ff_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_99 = __this->___U3CU3Eu__1_12;
V_2 = L_99;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_100 = (&__this->___U3CU3Eu__1_12);
il2cpp_codegen_initobj(L_100, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_101 = (-1);
V_0 = L_101;
__this->___U3CU3E1__state_0 = L_101;
}
IL_041b_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
goto IL_04a2_1;
}
IL_0424_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_102 = __this->___writer_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_103 = __this->___writeBuffer_2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_104 = __this->___cancellationToken_7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_105;
L_105 = AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC(L_102, L_103, 0, 6, L_104, NULL);
NullCheck(L_105);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_106;
L_106 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_105, (bool)0, NULL);
V_3 = L_106;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_107;
L_107 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_107;
bool L_108;
L_108 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_108)
{
goto IL_0494_1;
}
}
{
int32_t L_109 = 3;
V_0 = L_109;
__this->___U3CU3E1__state_0 = L_109;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_110 = V_2;
__this->___U3CU3Eu__1_12 = L_110;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_12))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_111 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208(L_111, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
goto IL_05bc;
}
IL_0478_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_112 = __this->___U3CU3Eu__1_12;
V_2 = L_112;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_113 = (&__this->___U3CU3Eu__1_12);
il2cpp_codegen_initobj(L_113, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_114 = (-1);
V_0 = L_114;
__this->___U3CU3E1__state_0 = L_114;
}
IL_0494_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
__this->___U3CisEscapedUnicodeTextU3E5__2_10 = (bool)0;
}
IL_04a2_1:
{
int32_t L_115 = __this->___U3CiU3E5__4_13;
V_6 = L_115;
int32_t L_116 = V_6;
__this->___U3CiU3E5__4_13 = ((int32_t)il2cpp_codegen_add(L_116, 1));
}
IL_04b4_1:
{
int32_t L_117 = __this->___U3CiU3E5__4_13;
String_t* L_118 = __this->___s_5;
NullCheck(L_118);
int32_t L_119;
L_119 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_118, NULL);
if ((((int32_t)L_117) < ((int32_t)L_119)))
{
goto IL_0110_1;
}
}
{
String_t* L_120 = __this->___s_5;
NullCheck(L_120);
int32_t L_121;
L_121 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_120, NULL);
int32_t L_122 = __this->___lastWritePosition_3;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_121, L_122));
int32_t L_123 = V_1;
if (!L_123)
{
goto IL_058e_1;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_124 = __this->___writeBuffer_2;
NullCheck(L_124);
int32_t L_125 = V_1;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_124)->max_length))) >= ((int32_t)L_125)))
{
goto IL_0501_1;
}
}
{
JsonTextWriter_t8A730143EFDFE2A07F31B3C4DB82061A883A60F4* L_126 = __this->___client_4;
int32_t L_127 = V_1;
NullCheck(L_126);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_128;
L_128 = JsonTextWriter_EnsureWriteBuffer_mE8C7CC5551A901519F380130617EC2B9CB9DEF1E(L_126, L_127, 0, NULL);
__this->___writeBuffer_2 = L_128;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_2), (void*)L_128);
}
IL_0501_1:
{
String_t* L_129 = __this->___s_5;
int32_t L_130 = __this->___lastWritePosition_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = __this->___writeBuffer_2;
int32_t L_132 = V_1;
NullCheck(L_129);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_129, L_130, L_131, 0, L_132, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_133 = __this->___writer_6;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_134 = __this->___writeBuffer_2;
int32_t L_135 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_136 = __this->___cancellationToken_7;
il2cpp_codegen_runtime_class_init_inline(AsyncUtils_t2172E6EFE7AF89193B0556B417E8A4430C28A7FC_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_137;
L_137 = AsyncUtils_WriteAsync_m3B7D7403D521D4D3B3D703ABC3D102122CC241BC(L_133, L_134, 0, L_135, L_136, NULL);
NullCheck(L_137);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_138;
L_138 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_137, (bool)0, NULL);
V_3 = L_138;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_139;
L_139 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_3), NULL);
V_2 = L_139;
bool L_140;
L_140 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_2), NULL);
if (L_140)
{
goto IL_0587_1;
}
}
{
int32_t L_141 = 4;
V_0 = L_141;
__this->___U3CU3E1__state_0 = L_141;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_142 = V_2;
__this->___U3CU3Eu__1_12 = L_142;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_12))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_143 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208(L_143, (&V_2), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833_m616580BE7C97D1A378CD112214B6A5405EB8D208_RuntimeMethod_var);
goto IL_05bc;
}
IL_056b_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_144 = __this->___U3CU3Eu__1_12;
V_2 = L_144;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_145 = (&__this->___U3CU3Eu__1_12);
il2cpp_codegen_initobj(L_145, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_146 = (-1);
V_0 = L_146;
__this->___U3CU3E1__state_0 = L_146;
}
IL_0587_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_2), NULL);
}
IL_058e_1:
{
goto IL_05a9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0590;
}
throw e;
}
CATCH_0590:
{// begin catch(System.Exception)
V_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_147 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_148 = V_7;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_147, L_148, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_05bc;
}// end catch (depth: 1)
IL_05a9:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_149 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_149, NULL);
}
IL_05bc:
{
return;
}
}
IL2CPP_EXTERN_C void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_MoveNext_m2357A9EB077FAFB2B9056ECDC02B336FA5434EE6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833*>(__this + _offset);
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_MoveNext_m2357A9EB077FAFB2B9056ECDC02B336FA5434EE6(_thisAdjusted, method);
}
// System.Void Newtonsoft.Json.Utilities.JavaScriptUtils/<WriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsync>d__16::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_SetStateMachine_m184438C5CBD3B40B165B630E5118283CD854C06B (U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_SetStateMachine_m184438C5CBD3B40B165B630E5118283CD854C06B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_tEAB471171AD1403C53BAD4D803B1D3099E9F9833*>(__this + _offset);
U3CWriteDefinitelyEscapedJavaScriptStringWithoutDelimitersAsyncU3Ed__16_SetStateMachine_m184438C5CBD3B40B165B630E5118283CD854C06B(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsEndToken(Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonTokenUtils_IsEndToken_m0CB368E75F2DD55EB327FEBFD2DD9B5213A8359B (int32_t ___token0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___token0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)13)))) <= ((uint32_t)2))))
{
goto IL_0009;
}
}
{
return (bool)1;
}
IL_0009:
{
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsStartToken(Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonTokenUtils_IsStartToken_m758236BBCA0E9391401D583F690F90CA3FD62D86 (int32_t ___token0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___token0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1))) <= ((uint32_t)2))))
{
goto IL_0008;
}
}
{
return (bool)1;
}
IL_0008:
{
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsPrimitiveToken(Newtonsoft.Json.JsonToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JsonTokenUtils_IsPrimitiveToken_m98B1B260A486820D52E43B411B1655C15BFF9AEA (int32_t ___token0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___token0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 7))) > ((uint32_t)5))))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___token0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)16)))) <= ((uint32_t)1))))
{
goto IL_000f;
}
}
IL_000d:
{
return (bool)1;
}
IL_000f:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.Utilities.ReflectionDelegateFactory Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* LateBoundReflectionDelegateFactory_get_Instance_m5E8E05AAAC01023BF0AF5CAD63F81C2410A4C1B8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var);
LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* L_0 = ((LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_StaticFields*)il2cpp_codegen_static_fields_for(LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var))->____instance_0;
return L_0;
}
}
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* LateBoundReflectionDelegateFactory_CreateParameterizedConstructor_mA59A94C702D443557FDAE92AF35A64E2DA92CF4F (LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* __this, MethodBase_t* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m4F59643C7CFE3C66AC0076F949501A04920F7FF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m14BA5C3056EE694ECC9A796EC7E3F298DCA685A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* V_0 = NULL;
{
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_0 = (U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass3_0__ctor_m312F08F4C3CEBC38A926FB5F2A0C119D462FEB6F(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_1 = V_0;
MethodBase_t* L_2 = ___method0;
NullCheck(L_1);
L_1->___method_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___method_1), (void*)L_2);
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_3 = V_0;
NullCheck(L_3);
MethodBase_t* L_4 = L_3->___method_1;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_4, _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF, NULL);
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_5 = V_0;
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_6 = V_0;
NullCheck(L_6);
MethodBase_t* L_7 = L_6->___method_1;
NullCheck(L_5);
L_5->___c_0 = ((ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB*)IsInstClass((RuntimeObject*)L_7, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&L_5->___c_0), (void*)((ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB*)IsInstClass((RuntimeObject*)L_7, ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var)));
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_8 = V_0;
NullCheck(L_8);
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_9 = L_8->___c_0;
if (!L_9)
{
goto IL_0043;
}
}
{
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_10 = V_0;
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_11 = (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*)il2cpp_codegen_object_new(ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
NullCheck(L_11);
ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D(L_11, L_10, (intptr_t)((void*)U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m4F59643C7CFE3C66AC0076F949501A04920F7FF9_RuntimeMethod_var), NULL);
return L_11;
}
IL_0043:
{
U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* L_12 = V_0;
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_13 = (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*)il2cpp_codegen_object_new(ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
NullCheck(L_13);
ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D(L_13, L_12, (intptr_t)((void*)U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m14BA5C3056EE694ECC9A796EC7E3F298DCA685A2_RuntimeMethod_var), NULL);
return L_13;
}
}
// System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LateBoundReflectionDelegateFactory__ctor_m98CE81BFFF3C34914C11A9167881DBD651793C5F (LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* __this, const RuntimeMethod* method)
{
{
ReflectionDelegateFactory__ctor_mE9385422DDFE3B3AED392895D925ABF922D1048F(__this, NULL);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LateBoundReflectionDelegateFactory__cctor_mEB866558886FC1CE5094D772A174D149DB3CA057 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64* L_0 = (LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64*)il2cpp_codegen_object_new(LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var);
NullCheck(L_0);
LateBoundReflectionDelegateFactory__ctor_m98CE81BFFF3C34914C11A9167881DBD651793C5F(L_0, NULL);
((LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_StaticFields*)il2cpp_codegen_static_fields_for(LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var))->____instance_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_StaticFields*)il2cpp_codegen_static_fields_for(LateBoundReflectionDelegateFactory_t70C271888C6C9F59A4A1D8454B10D3FA5D452B64_il2cpp_TypeInfo_var))->____instance_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass3_0__ctor_m312F08F4C3CEBC38A926FB5F2A0C119D462FEB6F (U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::<CreateParameterizedConstructor>b__0(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m4F59643C7CFE3C66AC0076F949501A04920F7FF9 (U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___a0, const RuntimeMethod* method)
{
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_0 = __this->___c_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___a0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = ConstructorInfo_Invoke_m15FDF2B682BD01CC934BE4D314EF2193103CECFE(L_0, L_1, NULL);
return L_2;
}
}
// System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::<CreateParameterizedConstructor>b__1(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m14BA5C3056EE694ECC9A796EC7E3F298DCA685A2 (U3CU3Ec__DisplayClass3_0_t6228E726F6E749FBE0D3BC6C013EF0CF35FEB9CC* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___a0, const RuntimeMethod* method)
{
{
MethodBase_t* L_0 = __this->___method_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___a0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_0, NULL, L_1, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 Newtonsoft.Json.Utilities.MathUtils::IntLength(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MathUtils_IntLength_mBAFEF09419CEA67F2644A0723D668BE4E6400DE0 (uint64_t ___i0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___i0;
if ((!(((uint64_t)L_0) < ((uint64_t)((int64_t)10000000000LL)))))
{
goto IL_006d;
}
}
{
uint64_t L_1 = ___i0;
if ((!(((uint64_t)L_1) < ((uint64_t)((int64_t)((int32_t)10))))))
{
goto IL_0014;
}
}
{
return 1;
}
IL_0014:
{
uint64_t L_2 = ___i0;
if ((!(((uint64_t)L_2) < ((uint64_t)((int64_t)((int32_t)100))))))
{
goto IL_001c;
}
}
{
return 2;
}
IL_001c:
{
uint64_t L_3 = ___i0;
if ((!(((uint64_t)L_3) < ((uint64_t)((int64_t)((int32_t)1000))))))
{
goto IL_0027;
}
}
{
return 3;
}
IL_0027:
{
uint64_t L_4 = ___i0;
if ((!(((uint64_t)L_4) < ((uint64_t)((int64_t)((int32_t)10000))))))
{
goto IL_0032;
}
}
{
return 4;
}
IL_0032:
{
uint64_t L_5 = ___i0;
if ((!(((uint64_t)L_5) < ((uint64_t)((int64_t)((int32_t)100000))))))
{
goto IL_003d;
}
}
{
return 5;
}
IL_003d:
{
uint64_t L_6 = ___i0;
if ((!(((uint64_t)L_6) < ((uint64_t)((int64_t)((int32_t)1000000))))))
{
goto IL_0048;
}
}
{
return 6;
}
IL_0048:
{
uint64_t L_7 = ___i0;
if ((!(((uint64_t)L_7) < ((uint64_t)((int64_t)((int32_t)10000000))))))
{
goto IL_0053;
}
}
{
return 7;
}
IL_0053:
{
uint64_t L_8 = ___i0;
if ((!(((uint64_t)L_8) < ((uint64_t)((int64_t)((int32_t)100000000))))))
{
goto IL_005e;
}
}
{
return 8;
}
IL_005e:
{
uint64_t L_9 = ___i0;
if ((!(((uint64_t)L_9) < ((uint64_t)((int64_t)((int32_t)1000000000))))))
{
goto IL_006a;
}
}
{
return ((int32_t)9);
}
IL_006a:
{
return ((int32_t)10);
}
IL_006d:
{
uint64_t L_10 = ___i0;
if ((!(((uint64_t)L_10) < ((uint64_t)((int64_t)100000000000LL)))))
{
goto IL_007c;
}
}
{
return ((int32_t)11);
}
IL_007c:
{
uint64_t L_11 = ___i0;
if ((!(((uint64_t)L_11) < ((uint64_t)((int64_t)1000000000000LL)))))
{
goto IL_008b;
}
}
{
return ((int32_t)12);
}
IL_008b:
{
uint64_t L_12 = ___i0;
if ((!(((uint64_t)L_12) < ((uint64_t)((int64_t)10000000000000LL)))))
{
goto IL_009a;
}
}
{
return ((int32_t)13);
}
IL_009a:
{
uint64_t L_13 = ___i0;
if ((!(((uint64_t)L_13) < ((uint64_t)((int64_t)100000000000000LL)))))
{
goto IL_00a9;
}
}
{
return ((int32_t)14);
}
IL_00a9:
{
uint64_t L_14 = ___i0;
if ((!(((uint64_t)L_14) < ((uint64_t)((int64_t)1000000000000000LL)))))
{
goto IL_00b8;
}
}
{
return ((int32_t)15);
}
IL_00b8:
{
uint64_t L_15 = ___i0;
if ((!(((uint64_t)L_15) < ((uint64_t)((int64_t)10000000000000000LL)))))
{
goto IL_00c7;
}
}
{
return ((int32_t)16);
}
IL_00c7:
{
uint64_t L_16 = ___i0;
if ((!(((uint64_t)L_16) < ((uint64_t)((int64_t)100000000000000000LL)))))
{
goto IL_00d6;
}
}
{
return ((int32_t)17);
}
IL_00d6:
{
uint64_t L_17 = ___i0;
if ((!(((uint64_t)L_17) < ((uint64_t)((int64_t)1000000000000000000LL)))))
{
goto IL_00e5;
}
}
{
return ((int32_t)18);
}
IL_00e5:
{
uint64_t L_18 = ___i0;
if ((!(((uint64_t)L_18) < ((uint64_t)((int64_t)-8446744073709551616LL)))))
{
goto IL_00f4;
}
}
{
return ((int32_t)19);
}
IL_00f4:
{
return ((int32_t)20);
}
}
// System.Char Newtonsoft.Json.Utilities.MathUtils::IntToHex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MathUtils_IntToHex_m6F604121BFD3739ADC21BA3931C954959FB169DA (int32_t ___n0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___n0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)9))))
{
goto IL_000b;
}
}
{
int32_t L_1 = ___n0;
return ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(L_1, ((int32_t)48))));
}
IL_000b:
{
int32_t L_2 = ___n0;
return ((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_2, ((int32_t)10))), ((int32_t)97))));
}
}
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.MathUtils::Min(System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 MathUtils_Min_m6A55B49A825F494B29B1EFFFBB4CFA4EB2650541 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___val10, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___val21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___val10), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_0)
{
goto IL_000b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_1 = ___val21;
return L_1;
}
IL_000b:
{
bool L_2;
L_2 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___val21), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_2)
{
goto IL_0016;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___val10;
return L_3;
}
IL_0016:
{
int32_t L_4;
L_4 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&___val10), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_5;
L_5 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&___val21), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_6;
L_6 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(L_4, L_5, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_7;
memset((&L_7), 0, sizeof(L_7));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_7), L_6, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
return L_7;
}
}
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.MathUtils::Max(System.Nullable`1<System.Int32>,System.Nullable`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 MathUtils_Max_m9E7271076B5D38EC8C9E2A607BE67E73849C5547 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___val10, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___val21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___val10), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_0)
{
goto IL_000b;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_1 = ___val21;
return L_1;
}
IL_000b:
{
bool L_2;
L_2 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___val21), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (L_2)
{
goto IL_0016;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___val10;
return L_3;
}
IL_0016:
{
int32_t L_4;
L_4 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&___val10), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_5;
L_5 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&___val21), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_6;
L_6 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_4, L_5, NULL);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_7;
memset((&L_7), 0, sizeof(L_7));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_7), L_6, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
return L_7;
}
}
// System.Nullable`1<System.Double> Newtonsoft.Json.Utilities.MathUtils::Max(System.Nullable`1<System.Double>,System.Nullable`1<System.Double>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 MathUtils_Max_m880E380FE2883B8592FB5CE882E02B3D93112D01 (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___val10, Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 ___val21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_inline((&___val10), Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_RuntimeMethod_var);
if (L_0)
{
goto IL_000b;
}
}
{
Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 L_1 = ___val21;
return L_1;
}
IL_000b:
{
bool L_2;
L_2 = Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_inline((&___val21), Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_RuntimeMethod_var);
if (L_2)
{
goto IL_0016;
}
}
{
Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 L_3 = ___val10;
return L_3;
}
IL_0016:
{
double L_4;
L_4 = Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_inline((&___val10), Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_RuntimeMethod_var);
double L_5;
L_5 = Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_inline((&___val21), Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_6;
L_6 = Math_Max_mD1AD971AB9981B8A59BC5B5BEB7DD6A5A5E82AD6(L_4, L_5, NULL);
Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165 L_7;
memset((&L_7), 0, sizeof(L_7));
Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF((&L_7), L_6, /*hidden argument*/Nullable_1__ctor_mDE3158DD99CA7E1775A8BA276E428AF808AB8FBF_RuntimeMethod_var);
return L_7;
}
}
// System.Boolean Newtonsoft.Json.Utilities.MathUtils::ApproxEquals(System.Double,System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MathUtils_ApproxEquals_m5BB082BFDF0563E620BC47ECF1D73C6EC32FBA71 (double ___d10, double ___d21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
double V_1 = 0.0;
{
double L_0 = ___d10;
double L_1 = ___d21;
if ((!(((double)L_0) == ((double)L_1))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
double L_2 = ___d10;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_3;
L_3 = fabs(L_2);
double L_4 = ___d21;
double L_5;
L_5 = fabs(L_4);
V_0 = ((double)il2cpp_codegen_multiply(((double)il2cpp_codegen_add(((double)il2cpp_codegen_add(L_3, L_5)), (10.0))), (2.2204460492503131E-16)));
double L_6 = ___d10;
double L_7 = ___d21;
V_1 = ((double)il2cpp_codegen_subtract(L_6, L_7));
double L_8 = V_0;
double L_9 = V_1;
if ((!(((double)((-L_8))) < ((double)L_9))))
{
goto IL_0036;
}
}
{
double L_10 = V_0;
double L_11 = V_1;
return (bool)((((double)L_10) > ((double)L_11))? 1 : 0);
}
IL_0036:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.MiscellaneousUtils::Assert(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MiscellaneousUtils_Assert_m95865B49B8BF67DC77B947019094343D381A3E67 (bool ___condition0, String_t* ___message1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.MiscellaneousUtils::ValueEquals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MiscellaneousUtils_ValueEquals_mDADB1231350C6CF51C58E0E94CD3BA7C23D12A9C (RuntimeObject* ___objA0, RuntimeObject* ___objB1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject* L_0 = ___objA0;
RuntimeObject* L_1 = ___objB1;
if ((!(((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_1))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject* L_2 = ___objA0;
if (!L_2)
{
goto IL_000c;
}
}
{
RuntimeObject* L_3 = ___objB1;
if (L_3)
{
goto IL_000e;
}
}
IL_000c:
{
return (bool)0;
}
IL_000e:
{
RuntimeObject* L_4 = ___objA0;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
RuntimeObject* L_6 = ___objB1;
NullCheck(L_6);
Type_t* L_7;
L_7 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_8;
L_8 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_5, L_7, NULL);
if (!L_8)
{
goto IL_009e;
}
}
{
RuntimeObject* L_9 = ___objA0;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_10;
L_10 = ConvertUtils_IsInteger_m0647676958090E61BC6031DE800DC1BEC9C8063D(L_9, NULL);
if (!L_10)
{
goto IL_0050;
}
}
{
RuntimeObject* L_11 = ___objB1;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
bool L_12;
L_12 = ConvertUtils_IsInteger_m0647676958090E61BC6031DE800DC1BEC9C8063D(L_11, NULL);
if (!L_12)
{
goto IL_0050;
}
}
{
RuntimeObject* L_13 = ___objA0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14;
L_14 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_15;
L_15 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_13, L_14, NULL);
V_0 = L_15;
RuntimeObject* L_16 = ___objB1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_17;
L_17 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_18;
L_18 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_16, L_17, NULL);
bool L_19;
L_19 = Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A((&V_0), L_18, NULL);
return L_19;
}
IL_0050:
{
RuntimeObject* L_20 = ___objA0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_20, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0068;
}
}
{
RuntimeObject* L_21 = ___objA0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_21, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
goto IL_0068;
}
}
{
RuntimeObject* L_22 = ___objA0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_22, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_009c;
}
}
IL_0068:
{
RuntimeObject* L_23 = ___objB1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_23, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0080;
}
}
{
RuntimeObject* L_24 = ___objB1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_24, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
goto IL_0080;
}
}
{
RuntimeObject* L_25 = ___objB1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_25, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_009c;
}
}
IL_0080:
{
RuntimeObject* L_26 = ___objA0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_27;
L_27 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_28;
L_28 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_26, L_27, NULL);
RuntimeObject* L_29 = ___objB1;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_30;
L_30 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
double L_31;
L_31 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_29, L_30, NULL);
bool L_32;
L_32 = MathUtils_ApproxEquals_m5BB082BFDF0563E620BC47ECF1D73C6EC32FBA71(L_28, L_31, NULL);
return L_32;
}
IL_009c:
{
return (bool)0;
}
IL_009e:
{
RuntimeObject* L_33 = ___objA0;
RuntimeObject* L_34 = ___objB1;
NullCheck(L_33);
bool L_35;
L_35 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_33, L_34);
return L_35;
}
}
// System.ArgumentOutOfRangeException Newtonsoft.Json.Utilities.MiscellaneousUtils::CreateArgumentOutOfRangeException(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* MiscellaneousUtils_CreateArgumentOutOfRangeException_m79874B152C4F585038C18860400FB99D5809C61A (String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___message2;
String_t* L_1;
L_1 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2;
L_2 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_3 = ___actualValue1;
String_t* L_4;
L_4 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A, L_2, L_3, NULL);
String_t* L_5;
L_5 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_0, L_1, L_4, NULL);
V_0 = L_5;
String_t* L_6 = ___paramName0;
String_t* L_7 = V_0;
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var);
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_8, L_6, L_7, NULL);
return L_8;
}
}
// System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::ToString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MiscellaneousUtils_ToString_m3ADF3DDB2211A918349275D5E25AD00DE1CD952E (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return _stringLiteralC1BB8AE9BFE937FA87BF5CDF9AAF5F7EF548A581;
}
IL_0009:
{
RuntimeObject* L_1 = ___value0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (L_2)
{
goto IL_001a;
}
}
{
RuntimeObject* L_3 = ___value0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3);
return L_4;
}
IL_001a:
{
String_t* L_5 = V_0;
String_t* L_6;
L_6 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, L_5, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
return L_6;
}
}
// System.Int32 Newtonsoft.Json.Utilities.MiscellaneousUtils::ByteArrayCompare(System.Byte[],System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MiscellaneousUtils_ByteArrayCompare_m8F4AD4755C2A9F7724AD8970CD0FB9BA566AA3DE (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___a10, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___a21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___a10;
NullCheck(L_0);
V_1 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___a21;
NullCheck(L_1);
int32_t L_2;
L_2 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_1), ((int32_t)(((RuntimeArray*)L_1)->max_length)), NULL);
V_0 = L_2;
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_0014;
}
}
{
int32_t L_4 = V_0;
return L_4;
}
IL_0014:
{
V_2 = 0;
goto IL_0031;
}
IL_0018:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___a10;
int32_t L_6 = V_2;
NullCheck(L_5);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___a21;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
int32_t L_11;
L_11 = Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8(((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))), L_10, NULL);
V_3 = L_11;
int32_t L_12 = V_3;
if (!L_12)
{
goto IL_002d;
}
}
{
int32_t L_13 = V_3;
return L_13;
}
IL_002d:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0031:
{
int32_t L_15 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___a10;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0018;
}
}
{
return 0;
}
}
// System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::GetPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MiscellaneousUtils_GetPrefix_m45A910FD0A5FBC96A5425EDC5BD480F788777D2F (String_t* ___qualifiedName0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___qualifiedName0;
MiscellaneousUtils_GetQualifiedNameParts_m8E9F6FFFCF8FEBDE012CB76946FE7257F2A3E05B(L_0, (&V_0), (&V_1), NULL);
String_t* L_1 = V_0;
return L_1;
}
}
// System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::GetLocalName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MiscellaneousUtils_GetLocalName_m67E79C85879C593A495B45A2655330C659A294DD (String_t* ___qualifiedName0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___qualifiedName0;
MiscellaneousUtils_GetQualifiedNameParts_m8E9F6FFFCF8FEBDE012CB76946FE7257F2A3E05B(L_0, (&V_1), (&V_0), NULL);
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void Newtonsoft.Json.Utilities.MiscellaneousUtils::GetQualifiedNameParts(System.String,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MiscellaneousUtils_GetQualifiedNameParts_m8E9F6FFFCF8FEBDE012CB76946FE7257F2A3E05B (String_t* ___qualifiedName0, String_t** ___prefix1, String_t** ___localName2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___qualifiedName0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)58), NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_001b;
}
}
{
int32_t L_3 = V_0;
if (!L_3)
{
goto IL_001b;
}
}
{
String_t* L_4 = ___qualifiedName0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
int32_t L_6 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_5, 1))) == ((uint32_t)L_6))))
{
goto IL_0022;
}
}
IL_001b:
{
String_t** L_7 = ___prefix1;
*((RuntimeObject**)L_7) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL);
String_t** L_8 = ___localName2;
String_t* L_9 = ___qualifiedName0;
*((RuntimeObject**)L_8) = (RuntimeObject*)L_9;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_9);
return;
}
IL_0022:
{
String_t** L_10 = ___prefix1;
String_t* L_11 = ___qualifiedName0;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13;
L_13 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_11, 0, L_12, NULL);
*((RuntimeObject**)L_10) = (RuntimeObject*)L_13;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_10, (void*)(RuntimeObject*)L_13);
String_t** L_14 = ___localName2;
String_t* L_15 = ___qualifiedName0;
int32_t L_16 = V_0;
NullCheck(L_15);
String_t* L_17;
L_17 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_15, ((int32_t)il2cpp_codegen_add(L_16, 1)), NULL);
*((RuntimeObject**)L_14) = (RuntimeObject*)L_17;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_17);
return;
}
}
// System.Text.RegularExpressions.RegexOptions Newtonsoft.Json.Utilities.MiscellaneousUtils::GetRegexOptions(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MiscellaneousUtils_GetRegexOptions_m4DE8BD002164FF826B113EB3D41B2C5810C9799A (String_t* ___optionsText0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
{
V_0 = 0;
V_1 = 0;
goto IL_0046;
}
IL_0006:
{
String_t* L_0 = ___optionsText0;
int32_t L_1 = V_1;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
V_2 = L_2;
Il2CppChar L_3 = V_2;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)109)))))
{
goto IL_001f;
}
}
{
Il2CppChar L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)((int32_t)105))))
{
goto IL_002b;
}
}
{
Il2CppChar L_5 = V_2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)109))))
{
goto IL_0031;
}
}
{
goto IL_0042;
}
IL_001f:
{
Il2CppChar L_6 = V_2;
if ((((int32_t)L_6) == ((int32_t)((int32_t)115))))
{
goto IL_0037;
}
}
{
Il2CppChar L_7 = V_2;
if ((((int32_t)L_7) == ((int32_t)((int32_t)120))))
{
goto IL_003e;
}
}
{
goto IL_0042;
}
IL_002b:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)((int32_t)L_8|1));
goto IL_0042;
}
IL_0031:
{
int32_t L_9 = V_0;
V_0 = ((int32_t)((int32_t)L_9|2));
goto IL_0042;
}
IL_0037:
{
int32_t L_10 = V_0;
V_0 = ((int32_t)((int32_t)L_10|((int32_t)16)));
goto IL_0042;
}
IL_003e:
{
int32_t L_11 = V_0;
V_0 = ((int32_t)((int32_t)L_11|4));
}
IL_0042:
{
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0046:
{
int32_t L_13 = V_1;
String_t* L_14 = ___optionsText0;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_0006;
}
}
{
int32_t L_16 = V_0;
return L_16;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ReflectionDelegateFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionDelegateFactory__ctor_mE9385422DDFE3B3AED392895D925ABF922D1048F (ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type Newtonsoft.Json.Utilities.ReflectionMember::get_MemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionMember_get_MemberType_m434D9AB83992981B6F6E5E0641CEA721A590F664 (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CMemberTypeU3Ek__BackingField_0;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_MemberType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionMember_set_MemberType_m910CD710E590680C35E3663BDC07074A691C4CF3 (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CMemberTypeU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CMemberTypeU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::get_Getter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* ReflectionMember_get_Getter_mED1E4624E99FB9D6DDF293693EFFBF3DA290DE83 (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = __this->___U3CGetterU3Ek__BackingField_1;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Getter(System.Func`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionMember_set_Getter_m75ECB835C1A8B2DD3E802D1631B32D3B6CA75187 (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetterU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetterU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Action`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::get_Setter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ReflectionMember_get_Setter_mBBFE1CEC2ABEB9C80FA03A3C36D1978B3EE0B02E (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_0 = __this->___U3CSetterU3Ek__BackingField_2;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Setter(System.Action`2<System.Object,System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionMember_set_Setter_m7B146640EE159DD3226E47E5383DFD8AD5A1E715 (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ___value0, const RuntimeMethod* method)
{
{
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_0 = ___value0;
__this->___U3CSetterU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSetterU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionMember::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionMember__ctor_m8ACC777354B64FC9082AAA4783F0C89B885CC62F (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionObject::get_Creator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* ReflectionObject_get_Creator_mFE215FC9C57548498D71EE5B13DB60FBED70074C (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, const RuntimeMethod* method)
{
{
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_0 = __this->___U3CCreatorU3Ek__BackingField_0;
return L_0;
}
}
// System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember> Newtonsoft.Json.Utilities.ReflectionObject::get_Members()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8 (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CMembersU3Ek__BackingField_1;
return L_0;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionObject::.ctor(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionObject__ctor_mEE5253686B45684A82239A32221C61B597A544CF (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* ___creator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m4438CC0F2FC3FBD7CDF900B58B9726DAB7734F29_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2* L_0 = (Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2*)il2cpp_codegen_object_new(Dictionary_2_t595A37C4731C201927A465F6884E71BB34571FC2_il2cpp_TypeInfo_var);
NullCheck(L_0);
Dictionary_2__ctor_m4438CC0F2FC3FBD7CDF900B58B9726DAB7734F29(L_0, Dictionary_2__ctor_m4438CC0F2FC3FBD7CDF900B58B9726DAB7734F29_RuntimeMethod_var);
__this->___U3CMembersU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CMembersU3Ek__BackingField_1), (void*)L_0);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_1 = ___creator0;
__this->___U3CCreatorU3Ek__BackingField_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCreatorU3Ek__BackingField_0), (void*)L_1);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.ReflectionObject::GetValue(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionObject_GetValue_m16C7AF8473ED05865B899DCE08826438E9381D10 (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, RuntimeObject* ___target0, String_t* ___member1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline(__this, NULL);
String_t* L_1 = ___member1;
NullCheck(L_0);
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_2;
L_2 = InterfaceFuncInvoker1< ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E*, String_t* >::Invoke(0 /* TValue System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>::get_Item(TKey) */, IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var, L_0, L_1);
NullCheck(L_2);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_3;
L_3 = ReflectionMember_get_Getter_mED1E4624E99FB9D6DDF293693EFFBF3DA290DE83_inline(L_2, NULL);
RuntimeObject* L_4 = ___target0;
NullCheck(L_3);
RuntimeObject* L_5;
L_5 = Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline(L_3, L_4, NULL);
return L_5;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionObject::SetValue(System.Object,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionObject_SetValue_mB0DF7D7CD5BBAAF2464C90E40A81D5CEC81927D4 (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, RuntimeObject* ___target0, String_t* ___member1, RuntimeObject* ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline(__this, NULL);
String_t* L_1 = ___member1;
NullCheck(L_0);
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_2;
L_2 = InterfaceFuncInvoker1< ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E*, String_t* >::Invoke(0 /* TValue System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>::get_Item(TKey) */, IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var, L_0, L_1);
NullCheck(L_2);
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_3;
L_3 = ReflectionMember_get_Setter_mBBFE1CEC2ABEB9C80FA03A3C36D1978B3EE0B02E_inline(L_2, NULL);
RuntimeObject* L_4 = ___target0;
RuntimeObject* L_5 = ___value2;
NullCheck(L_3);
Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_inline(L_3, L_4, L_5, NULL);
return;
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionObject::GetType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionObject_GetType_mB739C18B776ADC78FCAA3513AE4D4EE73B91ECDC (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, String_t* ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline(__this, NULL);
String_t* L_1 = ___member0;
NullCheck(L_0);
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_2;
L_2 = InterfaceFuncInvoker1< ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E*, String_t* >::Invoke(0 /* TValue System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>::get_Item(TKey) */, IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var, L_0, L_1);
NullCheck(L_2);
Type_t* L_3;
L_3 = ReflectionMember_get_MemberType_m434D9AB83992981B6F6E5E0641CEA721A590F664_inline(L_2, NULL);
return L_3;
}
}
// Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Utilities.ReflectionObject::Create(System.Type,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* ReflectionObject_Create_m43C2854F5D2941DBFBBBF8A82ECDC594CBF74C27 (Type_t* ___t0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___memberNames1, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___t0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___memberNames1;
ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* L_2;
L_2 = ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B(L_0, (MethodBase_t*)NULL, L_1, NULL);
return L_2;
}
}
// Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Utilities.ReflectionObject::Create(System.Type,System.Reflection.MethodBase,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B (Type_t* ___t0, MethodBase_t* ___creator1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___memberNames2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Single_TisMemberInfo_t_mB6594B8029304236D3761A7E89953F0836DBABD4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tACBF5A1656250800CE861707354491F0611F6624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_m97F48FA3BBEA455B8C2E41A4B298832D91AABA02_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_U3CCreateU3Eb__0_m165CCA9929F1E05297BD67D26940CD560A6C2B50_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_1_U3CCreateU3Eb__1_m43E4ED9B8F7BD25B22AA33A41820B0D7C70236F7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_2_U3CCreateU3Eb__2_mE683DC668B67B2C51DE440313E8E813F472E2F0D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* V_0 = NULL;
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* V_1 = NULL;
ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* V_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_3 = NULL;
int32_t V_4 = 0;
String_t* V_5 = NULL;
MemberInfo_t* V_6 = NULL;
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* V_7 = NULL;
MethodInfo_t* V_8 = NULL;
int32_t V_9 = 0;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_10 = NULL;
U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* V_11 = NULL;
U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* V_12 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* G_B7_0 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* G_B6_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(JsonTypeReflector_t367C9968A0B763401F51F0A38B6CCA19EDC92A35_il2cpp_TypeInfo_var);
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_0;
L_0 = JsonTypeReflector_get_ReflectionDelegateFactory_m08F43D5E4AEF6B3EDF0C40ED3ACCCE468EF9117D(NULL);
V_0 = L_0;
V_1 = (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*)NULL;
MethodBase_t* L_1 = ___creator1;
bool L_2;
L_2 = MethodBase_op_Inequality_m867339DE9EBA4C07B538DEA80722A9B9EB95349C(L_1, (MethodBase_t*)NULL, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_3 = V_0;
MethodBase_t* L_4 = ___creator1;
NullCheck(L_3);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_5;
L_5 = VirtualFuncInvoker1< ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*, MethodBase_t* >::Invoke(5 /* Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase) */, L_3, L_4);
V_1 = L_5;
goto IL_0042;
}
IL_001b:
{
Type_t* L_6 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_7;
L_7 = ReflectionUtils_HasDefaultConstructor_mD7D5EBDA81654EC3F035F696815D061A2D1DCD41(L_6, (bool)0, NULL);
if (!L_7)
{
goto IL_0042;
}
}
{
U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905* L_8 = (U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905_il2cpp_TypeInfo_var);
NullCheck(L_8);
U3CU3Ec__DisplayClass11_0__ctor_mDE0EA2D27D595C07B7821DA386BDC55E9A54BD41(L_8, NULL);
U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905* L_9 = L_8;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_10 = V_0;
Type_t* L_11 = ___t0;
NullCheck(L_10);
Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* L_12;
L_12 = GenericVirtualFuncInvoker1< Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4*, Type_t* >::Invoke(ReflectionDelegateFactory_CreateDefaultConstructor_TisRuntimeObject_m97F48FA3BBEA455B8C2E41A4B298832D91AABA02_RuntimeMethod_var, L_10, L_11);
NullCheck(L_9);
L_9->___ctor_0 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&L_9->___ctor_0), (void*)L_12);
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_13 = (ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901*)il2cpp_codegen_object_new(ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901_il2cpp_TypeInfo_var);
NullCheck(L_13);
ObjectConstructor_1__ctor_mA26D3B1F90CCDD109E0C0B5739FF3B6908916C9D(L_13, L_9, (intptr_t)((void*)U3CU3Ec__DisplayClass11_0_U3CCreateU3Eb__0_m165CCA9929F1E05297BD67D26940CD560A6C2B50_RuntimeMethod_var), NULL);
V_1 = L_13;
}
IL_0042:
{
ObjectConstructor_1_t6DD3EABA8E230C0DDF3C7DB24966AA8BF2290901* L_14 = V_1;
ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* L_15 = (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7*)il2cpp_codegen_object_new(ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7_il2cpp_TypeInfo_var);
NullCheck(L_15);
ReflectionObject__ctor_mEE5253686B45684A82239A32221C61B597A544CF(L_15, L_14, NULL);
V_2 = L_15;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = ___memberNames2;
V_3 = L_16;
V_4 = 0;
goto IL_01e2;
}
IL_0053:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = V_3;
int32_t L_18 = V_4;
NullCheck(L_17);
int32_t L_19 = L_18;
String_t* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_5 = L_20;
Type_t* L_21 = ___t0;
String_t* L_22 = V_5;
NullCheck(L_21);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_23;
L_23 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_21, L_22, ((int32_t)20));
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_24 = L_23;
NullCheck(L_24);
G_B6_0 = L_24;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))) == ((int32_t)1)))
{
G_B7_0 = L_24;
goto IL_0080;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_25;
L_25 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_26 = V_5;
String_t* L_27;
L_27 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral47464D6F4499EB8E220AD741CB115980E89554E2)), L_25, L_26, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_28 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_28);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_28, L_27, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B_RuntimeMethod_var)));
}
IL_0080:
{
MemberInfo_t* L_29;
L_29 = Enumerable_Single_TisMemberInfo_t_mB6594B8029304236D3761A7E89953F0836DBABD4((RuntimeObject*)G_B7_0, Enumerable_Single_TisMemberInfo_t_mB6594B8029304236D3761A7E89953F0836DBABD4_RuntimeMethod_var);
V_6 = L_29;
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_30 = (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E*)il2cpp_codegen_object_new(ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E_il2cpp_TypeInfo_var);
NullCheck(L_30);
ReflectionMember__ctor_m8ACC777354B64FC9082AAA4783F0C89B885CC62F(L_30, NULL);
V_7 = L_30;
MemberInfo_t* L_31 = V_6;
int32_t L_32;
L_32 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_31, NULL);
V_9 = L_32;
int32_t L_33 = V_9;
if ((((int32_t)L_33) == ((int32_t)4)))
{
goto IL_00aa;
}
}
{
int32_t L_34 = V_9;
if ((((int32_t)L_34) == ((int32_t)8)))
{
goto IL_00e5;
}
}
{
int32_t L_35 = V_9;
if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)16)))))
{
goto IL_0197;
}
}
IL_00aa:
{
MemberInfo_t* L_36 = V_6;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_37;
L_37 = ReflectionUtils_CanReadMemberValue_m3845F94C24ACD72B57E9492DEDE21A9EE6FEDD3F(L_36, (bool)0, NULL);
if (!L_37)
{
goto IL_00c3;
}
}
{
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_38 = V_7;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_39 = V_0;
MemberInfo_t* L_40 = V_6;
NullCheck(L_39);
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_41;
L_41 = ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1(L_39, L_40, ReflectionDelegateFactory_CreateGet_TisRuntimeObject_mFD0E7ED5D6C4166B456D854AC3CA169225E432F1_RuntimeMethod_var);
NullCheck(L_38);
ReflectionMember_set_Getter_m75ECB835C1A8B2DD3E802D1631B32D3B6CA75187_inline(L_38, L_41, NULL);
}
IL_00c3:
{
MemberInfo_t* L_42 = V_6;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_43;
L_43 = ReflectionUtils_CanSetMemberValue_m251A666D561999D6F4DDDB2DC2EA06A2CB99379C(L_42, (bool)0, (bool)0, NULL);
if (!L_43)
{
goto IL_01bf;
}
}
{
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_44 = V_7;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_45 = V_0;
MemberInfo_t* L_46 = V_6;
NullCheck(L_45);
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_47;
L_47 = ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B(L_45, L_46, ReflectionDelegateFactory_CreateSet_TisRuntimeObject_m120B1466B941D7DDDDAB17165F51BB6A29776A7B_RuntimeMethod_var);
NullCheck(L_44);
ReflectionMember_set_Setter_m7B146640EE159DD3226E47E5383DFD8AD5A1E715_inline(L_44, L_47, NULL);
goto IL_01bf;
}
IL_00e5:
{
MemberInfo_t* L_48 = V_6;
V_8 = ((MethodInfo_t*)CastclassClass((RuntimeObject*)L_48, MethodInfo_t_il2cpp_TypeInfo_var));
MethodInfo_t* L_49 = V_8;
NullCheck(L_49);
bool L_50;
L_50 = MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4(L_49, NULL);
if (!L_50)
{
goto IL_01bf;
}
}
{
MethodInfo_t* L_51 = V_8;
NullCheck(L_51);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_52;
L_52 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(16 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_51);
V_10 = L_52;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_53 = V_10;
NullCheck(L_53);
if ((((RuntimeArray*)L_53)->max_length))
{
goto IL_014c;
}
}
{
MethodInfo_t* L_54 = V_8;
NullCheck(L_54);
Type_t* L_55;
L_55 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_54);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_57;
L_57 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_56, NULL);
bool L_58;
L_58 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_55, L_57, NULL);
if (!L_58)
{
goto IL_014c;
}
}
{
U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* L_59 = (U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1_il2cpp_TypeInfo_var);
NullCheck(L_59);
U3CU3Ec__DisplayClass11_1__ctor_m6169E0434849D9ED136D6141B73F4ABEE4E4BCDD(L_59, NULL);
V_11 = L_59;
U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* L_60 = V_11;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_61 = V_0;
MethodInfo_t* L_62 = V_8;
NullCheck(L_61);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_63;
L_63 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_61, L_62);
NullCheck(L_60);
L_60->___call_0 = L_63;
Il2CppCodeGenWriteBarrier((void**)(&L_60->___call_0), (void*)L_63);
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_64 = V_7;
U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* L_65 = V_11;
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_66 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)il2cpp_codegen_object_new(Func_2_tACBF5A1656250800CE861707354491F0611F6624_il2cpp_TypeInfo_var);
NullCheck(L_66);
Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398(L_66, L_65, (intptr_t)((void*)U3CU3Ec__DisplayClass11_1_U3CCreateU3Eb__1_m43E4ED9B8F7BD25B22AA33A41820B0D7C70236F7_RuntimeMethod_var), NULL);
NullCheck(L_64);
ReflectionMember_set_Getter_m75ECB835C1A8B2DD3E802D1631B32D3B6CA75187_inline(L_64, L_66, NULL);
goto IL_01bf;
}
IL_014c:
{
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_67 = V_10;
NullCheck(L_67);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_67)->max_length))) == ((uint32_t)1))))
{
goto IL_01bf;
}
}
{
MethodInfo_t* L_68 = V_8;
NullCheck(L_68);
Type_t* L_69;
L_69 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_68);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_71;
L_71 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_70, NULL);
bool L_72;
L_72 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_69, L_71, NULL);
if (!L_72)
{
goto IL_01bf;
}
}
{
U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* L_73 = (U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937_il2cpp_TypeInfo_var);
NullCheck(L_73);
U3CU3Ec__DisplayClass11_2__ctor_m5A85F1706E4407709DEA499BA30BD02E67C83FAA(L_73, NULL);
V_12 = L_73;
U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* L_74 = V_12;
ReflectionDelegateFactory_t33E37F4C07B3A1F415AA97A5C5F7F5A1662A8574* L_75 = V_0;
MethodInfo_t* L_76 = V_8;
NullCheck(L_75);
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_77;
L_77 = GenericVirtualFuncInvoker1< MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270*, MethodBase_t* >::Invoke(ReflectionDelegateFactory_CreateMethodCall_TisRuntimeObject_m43750E6BEA80F52BB2D9C29578A9102160377762_RuntimeMethod_var, L_75, L_76);
NullCheck(L_74);
L_74->___call_0 = L_77;
Il2CppCodeGenWriteBarrier((void**)(&L_74->___call_0), (void*)L_77);
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_78 = V_7;
U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* L_79 = V_12;
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_80 = (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C*)il2cpp_codegen_object_new(Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C_il2cpp_TypeInfo_var);
NullCheck(L_80);
Action_2__ctor_m6A0E7FE9DF9AE6C4BEE58611CB55F64FC3D79052(L_80, L_79, (intptr_t)((void*)U3CU3Ec__DisplayClass11_2_U3CCreateU3Eb__2_mE683DC668B67B2C51DE440313E8E813F472E2F0D_RuntimeMethod_var), NULL);
NullCheck(L_78);
ReflectionMember_set_Setter_m7B146640EE159DD3226E47E5383DFD8AD5A1E715_inline(L_78, L_80, NULL);
goto IL_01bf;
}
IL_0197:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_81;
L_81 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
MemberInfo_t* L_82 = V_6;
int32_t L_83;
L_83 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_82, NULL);
int32_t L_84 = L_83;
RuntimeObject* L_85 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MemberTypes_t26BAB0893BEC9328F2F64E8BACDA967C445632E5_il2cpp_TypeInfo_var)), &L_84);
MemberInfo_t* L_86 = V_6;
NullCheck(L_86);
String_t* L_87;
L_87 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_86);
String_t* L_88;
L_88 = StringUtils_FormatWith_m95C836F93B24FE52E5E5B8AFD3B04822296BE501(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC17346629BDD1E4B02DEDA10A4D5C04D452E3078)), L_81, L_85, L_87, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_89 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_89);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_89, L_88, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_89, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionObject_Create_m85BCE02F4744544BDBC8B708432715D71256A37B_RuntimeMethod_var)));
}
IL_01bf:
{
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_90 = V_7;
MemberInfo_t* L_91 = V_6;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
Type_t* L_92;
L_92 = ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C(L_91, NULL);
NullCheck(L_90);
ReflectionMember_set_MemberType_m910CD710E590680C35E3663BDC07074A691C4CF3_inline(L_90, L_92, NULL);
ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* L_93 = V_2;
NullCheck(L_93);
RuntimeObject* L_94;
L_94 = ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline(L_93, NULL);
String_t* L_95 = V_5;
ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* L_96 = V_7;
NullCheck(L_94);
InterfaceActionInvoker2< String_t*, ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* >::Invoke(1 /* System.Void System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>::set_Item(TKey,TValue) */, IDictionary_2_tCDB8A1FE2EF87909AFBA2D9CB9C94756AE8A6EDC_il2cpp_TypeInfo_var, L_94, L_95, L_96);
int32_t L_97 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_97, 1));
}
IL_01e2:
{
int32_t L_98 = V_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_99 = V_3;
NullCheck(L_99);
if ((((int32_t)L_98) < ((int32_t)((int32_t)(((RuntimeArray*)L_99)->max_length)))))
{
goto IL_0053;
}
}
{
ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* L_100 = V_2;
return L_100;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_mDE0EA2D27D595C07B7821DA386BDC55E9A54BD41 (U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_0::<Create>b__0(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass11_0_U3CCreateU3Eb__0_m165CCA9929F1E05297BD67D26940CD560A6C2B50 (U3CU3Ec__DisplayClass11_0_tA3CA31AB3ECCC0392C8E3F0FC16BEA0D0BBA0905* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
{
Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* L_0 = __this->___ctor_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Func_1_Invoke_m1412272198DFA4066C83206E5B43353AF10A2EEE_inline(L_0, NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_1__ctor_m6169E0434849D9ED136D6141B73F4ABEE4E4BCDD (U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Object Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_1::<Create>b__1(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CU3Ec__DisplayClass11_1_U3CCreateU3Eb__1_m43E4ED9B8F7BD25B22AA33A41820B0D7C70236F7 (U3CU3Ec__DisplayClass11_1_t952F4FA75C8DD5CA1A0239AABCFE2A71175A4EC1* __this, RuntimeObject* ___target0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___call_0;
RuntimeObject* L_1 = ___target0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2;
L_2 = Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_inline(Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_RuntimeMethod_var);
NullCheck(L_0);
RuntimeObject* L_3;
L_3 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, L_1, L_2, NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_2__ctor_m5A85F1706E4407709DEA499BA30BD02E67C83FAA (U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass11_2::<Create>b__2(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_2_U3CCreateU3Eb__2_mE683DC668B67B2C51DE440313E8E813F472E2F0D (U3CU3Ec__DisplayClass11_2_t245E443B59B8FB76677DCF7BE6AB85DF3510C937* __this, RuntimeObject* ___target0, RuntimeObject* ___arg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = __this->___call_0;
RuntimeObject* L_1 = ___target0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2;
RuntimeObject* L_4 = ___arg1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
NullCheck(L_0);
RuntimeObject* L_5;
L_5 = MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_inline(L_0, L_1, L_3, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils__cctor_mCF71142617C825BBD8FD7EA3E1245E9C174A4C71 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_0 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->___EmptyTypes_2;
((ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_StaticFields*)il2cpp_codegen_static_fields_for(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var))->___EmptyTypes_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_StaticFields*)il2cpp_codegen_static_fields_for(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var))->___EmptyTypes_0), (void*)L_0);
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsVirtual(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsVirtual_mC331EA066BD75E22FB4E83C1ADF51C9D14D2CB44 (PropertyInfo_t* ___propertyInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBC35FFDE20578F35F7D80AA15EBCB02F42463C4);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t* V_0 = NULL;
{
PropertyInfo_t* L_0 = ___propertyInfo0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralFBC35FFDE20578F35F7D80AA15EBCB02F42463C4, NULL);
PropertyInfo_t* L_1 = ___propertyInfo0;
NullCheck(L_1);
MethodInfo_t* L_2;
L_2 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_1, (bool)1);
V_0 = L_2;
MethodInfo_t* L_3 = V_0;
bool L_4;
L_4 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_3, (MethodInfo_t*)NULL, NULL);
if (!L_4)
{
goto IL_0026;
}
}
{
MethodInfo_t* L_5 = V_0;
NullCheck(L_5);
bool L_6;
L_6 = MethodBase_get_IsVirtual_m2C0A566F37B666FDEE3066729AEACF336B342EC2(L_5, NULL);
if (!L_6)
{
goto IL_0026;
}
}
{
return (bool)1;
}
IL_0026:
{
PropertyInfo_t* L_7 = ___propertyInfo0;
NullCheck(L_7);
MethodInfo_t* L_8;
L_8 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(23 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_7, (bool)1);
V_0 = L_8;
MethodInfo_t* L_9 = V_0;
bool L_10;
L_10 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_9, (MethodInfo_t*)NULL, NULL);
if (!L_10)
{
goto IL_0041;
}
}
{
MethodInfo_t* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = MethodBase_get_IsVirtual_m2C0A566F37B666FDEE3066729AEACF336B342EC2(L_11, NULL);
if (!L_12)
{
goto IL_0041;
}
}
{
return (bool)1;
}
IL_0041:
{
return (bool)0;
}
}
// System.Reflection.MethodInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetBaseDefinition(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* ReflectionUtils_GetBaseDefinition_mF725A4FEEAA10EE60F8C529FDA8AEE6735C8BBBE (PropertyInfo_t* ___propertyInfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBC35FFDE20578F35F7D80AA15EBCB02F42463C4);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t* V_0 = NULL;
MethodInfo_t* G_B4_0 = NULL;
MethodInfo_t* G_B3_0 = NULL;
{
PropertyInfo_t* L_0 = ___propertyInfo0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralFBC35FFDE20578F35F7D80AA15EBCB02F42463C4, NULL);
PropertyInfo_t* L_1 = ___propertyInfo0;
NullCheck(L_1);
MethodInfo_t* L_2;
L_2 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_1, (bool)1);
V_0 = L_2;
MethodInfo_t* L_3 = V_0;
bool L_4;
L_4 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_3, (MethodInfo_t*)NULL, NULL);
if (!L_4)
{
goto IL_0023;
}
}
{
MethodInfo_t* L_5 = V_0;
NullCheck(L_5);
MethodInfo_t* L_6;
L_6 = VirtualFuncInvoker0< MethodInfo_t* >::Invoke(44 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseDefinition() */, L_5);
return L_6;
}
IL_0023:
{
PropertyInfo_t* L_7 = ___propertyInfo0;
NullCheck(L_7);
MethodInfo_t* L_8;
L_8 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(23 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_7, (bool)1);
MethodInfo_t* L_9 = L_8;
G_B3_0 = L_9;
if (L_9)
{
G_B4_0 = L_9;
goto IL_0030;
}
}
{
return (MethodInfo_t*)NULL;
}
IL_0030:
{
NullCheck(G_B4_0);
MethodInfo_t* L_10;
L_10 = VirtualFuncInvoker0< MethodInfo_t* >::Invoke(44 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetBaseDefinition() */, G_B4_0);
return L_10;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsPublic(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsPublic_mECFD8FF1C8082562F5BF92A423C8E72048E43298 (PropertyInfo_t* ___property0, const RuntimeMethod* method)
{
MethodInfo_t* V_0 = NULL;
MethodInfo_t* V_1 = NULL;
{
PropertyInfo_t* L_0 = ___property0;
NullCheck(L_0);
MethodInfo_t* L_1;
L_1 = PropertyInfo_GetGetMethod_mE0D6C0811D404DD977B53E68C0D36BA8CB889F74(L_0, NULL);
V_0 = L_1;
MethodInfo_t* L_2 = V_0;
bool L_3;
L_3 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_2, (MethodInfo_t*)NULL, NULL);
if (!L_3)
{
goto IL_001a;
}
}
{
MethodInfo_t* L_4 = V_0;
NullCheck(L_4);
bool L_5;
L_5 = MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4(L_4, NULL);
if (!L_5)
{
goto IL_001a;
}
}
{
return (bool)1;
}
IL_001a:
{
PropertyInfo_t* L_6 = ___property0;
NullCheck(L_6);
MethodInfo_t* L_7;
L_7 = PropertyInfo_GetSetMethod_mA16842ADAD11B6F70F4EDCA2805C999E378C4C8B(L_6, NULL);
V_1 = L_7;
MethodInfo_t* L_8 = V_1;
bool L_9;
L_9 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_8, (MethodInfo_t*)NULL, NULL);
if (!L_9)
{
goto IL_0034;
}
}
{
MethodInfo_t* L_10 = V_1;
NullCheck(L_10);
bool L_11;
L_11 = MethodBase_get_IsPublic_m471B6CEE0FF2B45843C1F314B624FC7968199AB4(L_10, NULL);
if (!L_11)
{
goto IL_0034;
}
}
{
return (bool)1;
}
IL_0034:
{
return (bool)0;
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_GetObjectType_m509A727ACFEDF3DE4EF246185EC5C69314F3020B (RuntimeObject* ___v0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___v0;
if (L_0)
{
goto IL_0005;
}
}
{
return (Type_t*)NULL;
}
IL_0005:
{
RuntimeObject* L_1 = ___v0;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
return L_2;
}
}
// System.String Newtonsoft.Json.Utilities.ReflectionUtils::GetTypeName(System.Type,Newtonsoft.Json.TypeNameAssemblyFormatHandling,Newtonsoft.Json.Serialization.ISerializationBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectionUtils_GetTypeName_mA48F1F0BD7B29AEE62ED0E0F65705B58AC377548 (Type_t* ___t0, int32_t ___assemblyFormat1, RuntimeObject* ___binder2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Type_t* L_0 = ___t0;
RuntimeObject* L_1 = ___binder2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = ReflectionUtils_GetFullyQualifiedTypeName_m826DB6266476EFB45F193B2AFAA39C57F65B41CD(L_0, L_1, NULL);
V_0 = L_2;
int32_t L_3 = ___assemblyFormat1;
if (!L_3)
{
goto IL_0011;
}
}
{
int32_t L_4 = ___assemblyFormat1;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
goto IL_001a;
}
IL_0011:
{
String_t* L_5 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
String_t* L_6;
L_6 = ReflectionUtils_RemoveAssemblyDetails_m3A8F7F5D44FF78FBA7E28A907BF8A677AC5881D8(L_5, NULL);
return L_6;
}
IL_0018:
{
String_t* L_7 = V_0;
return L_7;
}
IL_001a:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetTypeName_mA48F1F0BD7B29AEE62ED0E0F65705B58AC377548_RuntimeMethod_var)));
}
}
// System.String Newtonsoft.Json.Utilities.ReflectionUtils::GetFullyQualifiedTypeName(System.Type,Newtonsoft.Json.Serialization.ISerializationBinder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectionUtils_GetFullyQualifiedTypeName_m826DB6266476EFB45F193B2AFAA39C57F65B41CD (Type_t* ___t0, RuntimeObject* ___binder1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISerializationBinder_t3C8B850335FB40001C9201981439AE77B430031F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
{
RuntimeObject* L_0 = ___binder1;
if (!L_0)
{
goto IL_002a;
}
}
{
RuntimeObject* L_1 = ___binder1;
Type_t* L_2 = ___t0;
NullCheck(L_1);
InterfaceActionInvoker3< Type_t*, String_t**, String_t** >::Invoke(1 /* System.Void Newtonsoft.Json.Serialization.ISerializationBinder::BindToName(System.Type,System.String&,System.String&) */, ISerializationBinder_t3C8B850335FB40001C9201981439AE77B430031F_il2cpp_TypeInfo_var, L_1, L_2, (&V_0), (&V_1));
String_t* L_3 = V_1;
String_t* L_4 = V_0;
G_B2_0 = L_3;
if (!L_4)
{
G_B3_0 = L_3;
goto IL_001f;
}
}
{
String_t* L_5 = V_0;
String_t* L_6;
L_6 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, L_5, NULL);
G_B4_0 = L_6;
G_B4_1 = G_B2_0;
goto IL_0024;
}
IL_001f:
{
G_B4_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B4_1 = G_B3_0;
}
IL_0024:
{
String_t* L_7;
L_7 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(G_B4_1, G_B4_0, NULL);
return L_7;
}
IL_002a:
{
Type_t* L_8 = ___t0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_AssemblyQualifiedName() */, L_8);
return L_9;
}
}
// System.String Newtonsoft.Json.Utilities.ReflectionUtils::RemoveAssemblyDetails(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReflectionUtils_RemoveAssemblyDetails_m3A8F7F5D44FF78FBA7E28A907BF8A677AC5881D8 (String_t* ___fullyQualifiedTypeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
V_1 = (bool)0;
V_2 = (bool)0;
V_3 = 0;
goto IL_005c;
}
IL_000e:
{
String_t* L_1 = ___fullyQualifiedTypeName0;
int32_t L_2 = V_3;
NullCheck(L_1);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
V_4 = L_3;
Il2CppChar L_4 = V_4;
if ((((int32_t)L_4) == ((int32_t)((int32_t)44))))
{
goto IL_0038;
}
}
{
Il2CppChar L_5 = V_4;
if ((((int32_t)L_5) == ((int32_t)((int32_t)91))))
{
goto IL_0029;
}
}
{
Il2CppChar L_6 = V_4;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)93)))))
{
goto IL_004c;
}
}
IL_0029:
{
V_1 = (bool)0;
V_2 = (bool)0;
StringBuilder_t* L_7 = V_0;
Il2CppChar L_8 = V_4;
NullCheck(L_7);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, L_8, NULL);
goto IL_0058;
}
IL_0038:
{
bool L_10 = V_1;
if (L_10)
{
goto IL_0048;
}
}
{
V_1 = (bool)1;
StringBuilder_t* L_11 = V_0;
Il2CppChar L_12 = V_4;
NullCheck(L_11);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, L_12, NULL);
goto IL_0058;
}
IL_0048:
{
V_2 = (bool)1;
goto IL_0058;
}
IL_004c:
{
bool L_14 = V_2;
if (L_14)
{
goto IL_0058;
}
}
{
StringBuilder_t* L_15 = V_0;
Il2CppChar L_16 = V_4;
NullCheck(L_15);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_15, L_16, NULL);
}
IL_0058:
{
int32_t L_18 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_005c:
{
int32_t L_19 = V_3;
String_t* L_20 = ___fullyQualifiedTypeName0;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_000e;
}
}
{
StringBuilder_t* L_22 = V_0;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22);
return L_23;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::HasDefaultConstructor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_HasDefaultConstructor_mD7D5EBDA81654EC3F035F696815D061A2D1DCD41 (Type_t* ___t0, bool ___nonPublic1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___t0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2, NULL);
Type_t* L_1 = ___t0;
bool L_2;
L_2 = TypeExtensions_IsValueType_m22476DFC3DAFC7CC34E364C74CBDFFDBB7A6ED7A(L_1, NULL);
if (!L_2)
{
goto IL_0015;
}
}
{
return (bool)1;
}
IL_0015:
{
Type_t* L_3 = ___t0;
bool L_4 = ___nonPublic1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_5;
L_5 = ReflectionUtils_GetDefaultConstructor_m7A2041A7C1CDCA6467F40A99AC57E46F66931382(L_3, L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_il2cpp_TypeInfo_var);
bool L_6;
L_6 = ConstructorInfo_op_Inequality_m6D2C06D7D85103EA9EC958DC47DA4EB44122C614(L_5, (ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB*)NULL, NULL);
return L_6;
}
}
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ReflectionUtils_GetDefaultConstructor_m613893BE4C74F38D6603FFB22C2B1BD8ED57B4F3 (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_1;
L_1 = ReflectionUtils_GetDefaultConstructor_m7A2041A7C1CDCA6467F40A99AC57E46F66931382(L_0, (bool)0, NULL);
return L_1;
}
}
// System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* ReflectionUtils_GetDefaultConstructor_m7A2041A7C1CDCA6467F40A99AC57E46F66931382 (Type_t* ___t0, bool ___nonPublic1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_SingleOrDefault_TisConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_mFEA96B2B9A1EDE1ED75AD2FEDD232F5CCE8596FB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetDefaultConstructorU3Eb__11_0_m3FCCBCCB5BCA9281E1FBEC57599BE49657572B8D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* G_B4_0 = NULL;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* G_B4_1 = NULL;
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* G_B3_0 = NULL;
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* G_B3_1 = NULL;
{
V_0 = ((int32_t)20);
bool L_0 = ___nonPublic1;
if (!L_0)
{
goto IL_000b;
}
}
{
int32_t L_1 = V_0;
V_0 = ((int32_t)((int32_t)L_1|((int32_t)32)));
}
IL_000b:
{
Type_t* L_2 = ___t0;
int32_t L_3 = V_0;
NullCheck(L_2);
ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A* L_4;
L_4 = VirtualFuncInvoker1< ConstructorInfoU5BU5D_t515A0B944728842263B6033C9A62F6392C3BCD8A*, int32_t >::Invoke(82 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_2, L_3);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* L_5 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__11_0_1;
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* L_6 = L_5;
G_B3_0 = L_6;
G_B3_1 = L_4;
if (L_6)
{
G_B4_0 = L_6;
G_B4_1 = L_4;
goto IL_0031;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2* L_7 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* L_8 = (Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C*)il2cpp_codegen_object_new(Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C_il2cpp_TypeInfo_var);
NullCheck(L_8);
Func_2__ctor_m7871710CD540E478649F02E1BC07A13BF5D774D2(L_8, L_7, (intptr_t)((void*)U3CU3Ec_U3CGetDefaultConstructorU3Eb__11_0_m3FCCBCCB5BCA9281E1FBEC57599BE49657572B8D_RuntimeMethod_var), NULL);
Func_2_tF43743677DC8EC7ECF5575F75E3C0CB6CE4EE70C* L_9 = L_8;
((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__11_0_1 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__11_0_1), (void*)L_9);
G_B4_0 = L_9;
G_B4_1 = G_B3_1;
}
IL_0031:
{
ConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB* L_10;
L_10 = Enumerable_SingleOrDefault_TisConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_mFEA96B2B9A1EDE1ED75AD2FEDD232F5CCE8596FB((RuntimeObject*)G_B4_1, G_B4_0, Enumerable_SingleOrDefault_TisConstructorInfo_t1B5967EE7E5554272F79F8880183C70AD240EEEB_mFEA96B2B9A1EDE1ED75AD2FEDD232F5CCE8596FB_RuntimeMethod_var);
return L_10;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0 (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___t0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2, NULL);
Type_t* L_1 = ___t0;
bool L_2;
L_2 = TypeExtensions_IsValueType_m22476DFC3DAFC7CC34E364C74CBDFFDBB7A6ED7A(L_1, NULL);
if (!L_2)
{
goto IL_001a;
}
}
{
Type_t* L_3 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_4;
L_4 = ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A(L_3, NULL);
return L_4;
}
IL_001a:
{
return (bool)1;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___t0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral6B866DCFF4A3EC3D3C30879F029D88106601B1B2, NULL);
Type_t* L_1 = ___t0;
bool L_2;
L_2 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_1, NULL);
if (!L_2)
{
goto IL_0029;
}
}
{
Type_t* L_3 = ___t0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (Nullable_1_tCC12E6AC31BF7E862A033EBEFF48D5000D6291E6_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
bool L_7;
L_7 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_4, L_6, NULL);
return L_7;
}
IL_0029:
{
return (bool)0;
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotNullableType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_EnsureNotNullableType_m70CA474F8B064341609BCA41A8454880EF50219C (Type_t* ___t0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___t0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ReflectionUtils_IsNullableType_m170B49039B1C4700E10E979797730D6E772A9E3A(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
Type_t* L_2 = ___t0;
return L_2;
}
IL_000a:
{
Type_t* L_3 = ___t0;
Type_t* L_4;
L_4 = Nullable_GetUnderlyingType_m3162A4F48AE683C74A9419644E40C05595BA41E7(L_3, NULL);
return L_4;
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotByRefType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_EnsureNotByRefType_mB07FAAE464FC8C103B6BC03062ADCF3E5C1B0012 (Type_t* ___t0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___t0;
NullCheck(L_0);
bool L_1;
L_1 = Type_get_IsByRef_mA417B3C05E39BCF8F21A2B6437A1B41D3BE638A4(L_0, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
Type_t* L_2 = ___t0;
NullCheck(L_2);
bool L_3;
L_3 = Type_get_HasElementType_m44F9601E586D2EEA2EDB93FB81D1D80521C264EE(L_2, NULL);
if (L_3)
{
goto IL_0012;
}
}
IL_0010:
{
Type_t* L_4 = ___t0;
return L_4;
}
IL_0012:
{
Type_t* L_5 = ___t0;
NullCheck(L_5);
Type_t* L_6;
L_6 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_5);
return L_6;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsGenericDefinition_m13A33FA07A9680141F0DFE2209C857AD4B7E1B3E (Type_t* ___type0, Type_t* ___genericInterfaceDefinition1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
bool L_1;
L_1 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
Type_t* L_2 = ___type0;
NullCheck(L_2);
Type_t* L_3;
L_3 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2);
Type_t* L_4 = ___genericInterfaceDefinition1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_3, L_4, NULL);
return L_5;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_ImplementsGenericDefinition_m489A8822028619645D53225726EAC777F42572FC (Type_t* ___type0, Type_t* ___genericInterfaceDefinition1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
Type_t* L_0 = ___type0;
Type_t* L_1 = ___genericInterfaceDefinition1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_2;
L_2 = ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833(L_0, L_1, (&V_0), NULL);
return L_2;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833 (Type_t* ___type0, Type_t* ___genericInterfaceDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC517DF70D3D15D7959A6EE05667F9A868C1B438);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
int32_t V_2 = 0;
Type_t* V_3 = NULL;
Type_t* V_4 = NULL;
{
Type_t* L_0 = ___type0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, NULL);
Type_t* L_1 = ___genericInterfaceDefinition1;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteralFC517DF70D3D15D7959A6EE05667F9A868C1B438, NULL);
Type_t* L_2 = ___genericInterfaceDefinition1;
bool L_3;
L_3 = TypeExtensions_IsInterface_m4D973DDF986A880468989BCF6074CF83014FC4FC(L_2, NULL);
if (!L_3)
{
goto IL_0026;
}
}
{
Type_t* L_4 = ___genericInterfaceDefinition1;
bool L_5;
L_5 = TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E(L_4, NULL);
if (L_5)
{
goto IL_003c;
}
}
IL_0026:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_7 = ___genericInterfaceDefinition1;
String_t* L_8;
L_8 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BF3B27ED4B30446D57C1D67F48C33F813074AB2)), L_6, L_7, NULL);
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_9 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833_RuntimeMethod_var)));
}
IL_003c:
{
Type_t* L_10 = ___type0;
bool L_11;
L_11 = TypeExtensions_IsInterface_m4D973DDF986A880468989BCF6074CF83014FC4FC(L_10, NULL);
if (!L_11)
{
goto IL_0061;
}
}
{
Type_t* L_12 = ___type0;
bool L_13;
L_13 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_12, NULL);
if (!L_13)
{
goto IL_0061;
}
}
{
Type_t* L_14 = ___type0;
NullCheck(L_14);
Type_t* L_15;
L_15 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_14);
V_0 = L_15;
Type_t* L_16 = ___genericInterfaceDefinition1;
Type_t* L_17 = V_0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_18;
L_18 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_16, L_17, NULL);
if (!L_18)
{
goto IL_0061;
}
}
{
Type_t** L_19 = ___implementingType2;
Type_t* L_20 = ___type0;
*((RuntimeObject**)L_19) = (RuntimeObject*)L_20;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_19, (void*)(RuntimeObject*)L_20);
return (bool)1;
}
IL_0061:
{
Type_t* L_21 = ___type0;
NullCheck(L_21);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_22;
L_22 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(117 /* System.Type[] System.Type::GetInterfaces() */, L_21);
V_1 = L_22;
V_2 = 0;
goto IL_0093;
}
IL_006c:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_23 = V_1;
int32_t L_24 = V_2;
NullCheck(L_23);
int32_t L_25 = L_24;
Type_t* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
V_3 = L_26;
Type_t* L_27 = V_3;
bool L_28;
L_28 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_27, NULL);
if (!L_28)
{
goto IL_008f;
}
}
{
Type_t* L_29 = V_3;
NullCheck(L_29);
Type_t* L_30;
L_30 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_29);
V_4 = L_30;
Type_t* L_31 = ___genericInterfaceDefinition1;
Type_t* L_32 = V_4;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_33;
L_33 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_31, L_32, NULL);
if (!L_33)
{
goto IL_008f;
}
}
{
Type_t** L_34 = ___implementingType2;
Type_t* L_35 = V_3;
*((RuntimeObject**)L_34) = (RuntimeObject*)L_35;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_34, (void*)(RuntimeObject*)L_35);
return (bool)1;
}
IL_008f:
{
int32_t L_36 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_36, 1));
}
IL_0093:
{
int32_t L_37 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_38 = V_1;
NullCheck(L_38);
if ((((int32_t)L_37) < ((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))
{
goto IL_006c;
}
}
{
Type_t** L_39 = ___implementingType2;
*((RuntimeObject**)L_39) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_39, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinition_mA1A4D93148FE78ABA36F8B2688FB892C43B167B4 (Type_t* ___type0, Type_t* ___genericClassDefinition1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
Type_t* L_0 = ___type0;
Type_t* L_1 = ___genericClassDefinition1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_2;
L_2 = ReflectionUtils_InheritsGenericDefinition_mDAE5879664FA8FC7298CA6888E06ADAF71098A6D(L_0, L_1, (&V_0), NULL);
return L_2;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinition_mDAE5879664FA8FC7298CA6888E06ADAF71098A6D (Type_t* ___type0, Type_t* ___genericClassDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDF0BD6CCC5C35804BFE83E90FFF2E92AC4FE4B5);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, NULL);
Type_t* L_1 = ___genericClassDefinition1;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteralFDF0BD6CCC5C35804BFE83E90FFF2E92AC4FE4B5, NULL);
Type_t* L_2 = ___genericClassDefinition1;
bool L_3;
L_3 = TypeExtensions_IsClass_mA96FAA6108D1C44AF689FC78E8702BF604A113C4(L_2, NULL);
if (!L_3)
{
goto IL_0026;
}
}
{
Type_t* L_4 = ___genericClassDefinition1;
bool L_5;
L_5 = TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E(L_4, NULL);
if (L_5)
{
goto IL_003c;
}
}
IL_0026:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_7 = ___genericClassDefinition1;
String_t* L_8;
L_8 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88795AB13DE909B0C1686FB8EF79E69E5C7468DD)), L_6, L_7, NULL);
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_9 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_InheritsGenericDefinition_mDAE5879664FA8FC7298CA6888E06ADAF71098A6D_RuntimeMethod_var)));
}
IL_003c:
{
Type_t* L_10 = ___type0;
Type_t* L_11 = ___genericClassDefinition1;
Type_t** L_12 = ___implementingType2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_13;
L_13 = ReflectionUtils_InheritsGenericDefinitionInternal_m11701F7FE0AE5979A4FFBA851D5105109E76F8BA(L_10, L_11, L_12, NULL);
return L_13;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinitionInternal(System.Type,System.Type,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_InheritsGenericDefinitionInternal_m11701F7FE0AE5979A4FFBA851D5105109E76F8BA (Type_t* ___currentType0, Type_t* ___genericClassDefinition1, Type_t** ___implementingType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IL_0000:
{
Type_t* L_0 = ___currentType0;
bool L_1;
L_1 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_0, NULL);
if (!L_1)
{
goto IL_001b;
}
}
{
Type_t* L_2 = ___genericClassDefinition1;
Type_t* L_3 = ___currentType0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_2, L_4, NULL);
if (!L_5)
{
goto IL_001b;
}
}
{
Type_t** L_6 = ___implementingType2;
Type_t* L_7 = ___currentType0;
*((RuntimeObject**)L_6) = (RuntimeObject*)L_7;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)L_7);
return (bool)1;
}
IL_001b:
{
Type_t* L_8 = ___currentType0;
Type_t* L_9;
L_9 = TypeExtensions_BaseType_m3A8CEAA95DE0C84FD927DC6720CF30D5A8503B6C(L_8, NULL);
___currentType0 = L_9;
Type_t* L_10 = ___currentType0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_10, (Type_t*)NULL, NULL);
if (L_11)
{
goto IL_0000;
}
}
{
Type_t** L_12 = ___implementingType2;
*((RuntimeObject**)L_12) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_12, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetCollectionItemType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_GetCollectionItemType_m0447C32FB43702A2762B23AC204776A236FA0F2F (Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
{
Type_t* L_0 = ___type0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, NULL);
Type_t* L_1 = ___type0;
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL);
if (!L_2)
{
goto IL_001a;
}
}
{
Type_t* L_3 = ___type0;
NullCheck(L_3);
Type_t* L_4;
L_4 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_3);
return L_4;
}
IL_001a:
{
Type_t* L_5 = ___type0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6D39F4BC58A66D98BCEB112169CFDE48809FC555_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_8;
L_8 = ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833(L_5, L_7, (&V_0), NULL);
if (!L_8)
{
goto IL_0055;
}
}
{
Type_t* L_9 = V_0;
bool L_10;
L_10 = TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E(L_9, NULL);
if (!L_10)
{
goto IL_004c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11;
L_11 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_12 = ___type0;
String_t* L_13;
L_13 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0704E287A634839C36EEB4FAE5B1B02EF867D720)), L_11, L_12, NULL);
Exception_t* L_14 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_14);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_14, L_13, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetCollectionItemType_m0447C32FB43702A2762B23AC204776A236FA0F2F_RuntimeMethod_var)));
}
IL_004c:
{
Type_t* L_15 = V_0;
NullCheck(L_15);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16;
L_16 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_15);
NullCheck(L_16);
int32_t L_17 = 0;
Type_t* L_18 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
return L_18;
}
IL_0055:
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_20;
L_20 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_19, NULL);
Type_t* L_21 = ___type0;
NullCheck(L_20);
bool L_22;
L_22 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_20, L_21);
if (!L_22)
{
goto IL_0069;
}
}
{
return (Type_t*)NULL;
}
IL_0069:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_23;
L_23 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_24 = ___type0;
String_t* L_25;
L_25 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0704E287A634839C36EEB4FAE5B1B02EF867D720)), L_23, L_24, NULL);
Exception_t* L_26 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_26);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_26, L_25, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetCollectionItemType_m0447C32FB43702A2762B23AC204776A236FA0F2F_RuntimeMethod_var)));
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetDictionaryKeyValueTypes(System.Type,System.Type&,System.Type&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetDictionaryKeyValueTypes_mB6A24051AD3488EAE3DFF6B2C9645AB086E29191 (Type_t* ___dictionaryType0, Type_t** ___keyType1, Type_t** ___valueType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_2_t4F866F723F9E0A522C362494DC799D065D96C726_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82E99A9943FE83BB6FF531D461478CFD6B1EB4BD);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
{
Type_t* L_0 = ___dictionaryType0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral82E99A9943FE83BB6FF531D461478CFD6B1EB4BD, NULL);
Type_t* L_1 = ___dictionaryType0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (IDictionary_2_t4F866F723F9E0A522C362494DC799D065D96C726_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_4;
L_4 = ReflectionUtils_ImplementsGenericDefinition_m3D04593EC6B18DA2CDA01B75A4F715E720125833(L_1, L_3, (&V_0), NULL);
if (!L_4)
{
goto IL_004f;
}
}
{
Type_t* L_5 = V_0;
bool L_6;
L_6 = TypeExtensions_IsGenericTypeDefinition_m8AC0D404B3A188CB3DDA31502773EDBFB92FED9E(L_5, NULL);
if (!L_6)
{
goto IL_003d;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_7;
L_7 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_8 = ___dictionaryType0;
String_t* L_9;
L_9 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B98E8F57C9C64CD195937A838BC03FCA6DF6A71)), L_7, L_8, NULL);
Exception_t* L_10 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_10);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetDictionaryKeyValueTypes_mB6A24051AD3488EAE3DFF6B2C9645AB086E29191_RuntimeMethod_var)));
}
IL_003d:
{
Type_t* L_11 = V_0;
NullCheck(L_11);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_12;
L_12 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_11);
V_1 = L_12;
Type_t** L_13 = ___keyType1;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = 0;
Type_t* L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
*((RuntimeObject**)L_13) = (RuntimeObject*)L_16;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_16);
Type_t** L_17 = ___valueType2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_18 = V_1;
NullCheck(L_18);
int32_t L_19 = 1;
Type_t* L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
*((RuntimeObject**)L_17) = (RuntimeObject*)L_20;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_17, (void*)(RuntimeObject*)L_20);
return;
}
IL_004f:
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_22;
L_22 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_21, NULL);
Type_t* L_23 = ___dictionaryType0;
NullCheck(L_22);
bool L_24;
L_24 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_22, L_23);
if (!L_24)
{
goto IL_0068;
}
}
{
Type_t** L_25 = ___keyType1;
*((RuntimeObject**)L_25) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_25, (void*)(RuntimeObject*)NULL);
Type_t** L_26 = ___valueType2;
*((RuntimeObject**)L_26) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_26, (void*)(RuntimeObject*)NULL);
return;
}
IL_0068:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_27;
L_27 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
Type_t* L_28 = ___dictionaryType0;
String_t* L_29;
L_29 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B98E8F57C9C64CD195937A838BC03FCA6DF6A71)), L_27, L_28, NULL);
Exception_t* L_30 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
NullCheck(L_30);
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_30, L_29, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetDictionaryKeyValueTypes_mB6A24051AD3488EAE3DFF6B2C9645AB086E29191_RuntimeMethod_var)));
}
}
// System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberUnderlyingType(System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C (MemberInfo_t* ___member0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
MemberInfo_t* L_0 = ___member0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral4784CA4E159D86F8767CCC55143536AF34801074, NULL);
MemberInfo_t* L_1 = ___member0;
int32_t L_2;
L_2 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
if ((((int32_t)L_3) > ((int32_t)4)))
{
goto IL_0020;
}
}
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)2)))
{
goto IL_0043;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)4)))
{
goto IL_002b;
}
}
{
goto IL_005b;
}
IL_0020:
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)8)))
{
goto IL_004f;
}
}
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)16))))
{
goto IL_0037;
}
}
{
goto IL_005b;
}
IL_002b:
{
MemberInfo_t* L_8 = ___member0;
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var)));
Type_t* L_9;
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(17 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var)));
return L_9;
}
IL_0037:
{
MemberInfo_t* L_10 = ___member0;
NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_10, PropertyInfo_t_il2cpp_TypeInfo_var)));
Type_t* L_11;
L_11 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_10, PropertyInfo_t_il2cpp_TypeInfo_var)));
return L_11;
}
IL_0043:
{
MemberInfo_t* L_12 = ___member0;
NullCheck(((EventInfo_t*)CastclassClass((RuntimeObject*)L_12, EventInfo_t_il2cpp_TypeInfo_var)));
Type_t* L_13;
L_13 = VirtualFuncInvoker0< Type_t* >::Invoke(21 /* System.Type System.Reflection.EventInfo::get_EventHandlerType() */, ((EventInfo_t*)CastclassClass((RuntimeObject*)L_12, EventInfo_t_il2cpp_TypeInfo_var)));
return L_13;
}
IL_004f:
{
MemberInfo_t* L_14 = ___member0;
NullCheck(((MethodInfo_t*)CastclassClass((RuntimeObject*)L_14, MethodInfo_t_il2cpp_TypeInfo_var)));
Type_t* L_15;
L_15 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, ((MethodInfo_t*)CastclassClass((RuntimeObject*)L_14, MethodInfo_t_il2cpp_TypeInfo_var)));
return L_15;
}
IL_005b:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_16);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1F4D219C936F7DB413B4CEB44F4A08C41F37F504)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C_RuntimeMethod_var)));
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsByRefLikeType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsByRefLikeType_m0902E95EC25599F62A74B3743CDDB5946E62AEAA (Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61C85293E5A099C3EF346E1AADA08CBCA89DA3C6);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* V_0 = NULL;
int32_t V_1 = 0;
{
Type_t* L_0 = ___type0;
bool L_1;
L_1 = TypeExtensions_IsValueType_m22476DFC3DAFC7CC34E364C74CBDFFDBB7A6ED7A(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
Type_t* L_2 = ___type0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_3;
L_3 = ReflectionUtils_GetAttributes_mC731561D3A0317252C3D268A07312588DE64F468(L_2, (Type_t*)NULL, (bool)0, NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0037;
}
IL_0017:
{
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
Type_t* L_8;
L_8 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_7, NULL);
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_8);
bool L_10;
L_10 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_9, _stringLiteral61C85293E5A099C3EF346E1AADA08CBCA89DA3C6, 4, NULL);
if (!L_10)
{
goto IL_0033;
}
}
{
return (bool)1;
}
IL_0033:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0037:
{
int32_t L_12 = V_1;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_13 = V_0;
NullCheck(L_13);
if ((((int32_t)L_12) < ((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))
{
goto IL_0017;
}
}
{
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsIndexedProperty(System.Reflection.PropertyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsIndexedProperty_m80615E8EB93528571288175E54E156198FF53DA1 (PropertyInfo_t* ___property0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAF09A6BC0279473D57B36A82CF658E854D58181E);
s_Il2CppMethodInitialized = true;
}
{
PropertyInfo_t* L_0 = ___property0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralAF09A6BC0279473D57B36A82CF658E854D58181E, NULL);
PropertyInfo_t* L_1 = ___property0;
NullCheck(L_1);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_2;
L_2 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_1);
NullCheck(L_2);
return (bool)((!(((uint32_t)(((RuntimeArray*)L_2)->max_length)) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Object Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberValue(System.Reflection.MemberInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetMemberValue_m8ACCC6234EA3FA6A96DB8A89E555BFAED6381283 (MemberInfo_t* ___member0, RuntimeObject* ___target1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral320772EF40302B49A179DB96BAD02224E97B4018);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
MemberInfo_t* L_0 = ___member0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral4784CA4E159D86F8767CCC55143536AF34801074, NULL);
RuntimeObject* L_1 = ___target1;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018, NULL);
MemberInfo_t* L_2 = ___member0;
int32_t L_3;
L_3 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_2, NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)4)))
{
goto IL_0028;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)16))))
{
goto IL_0035;
}
}
{
goto IL_0063;
}
IL_0028:
{
MemberInfo_t* L_6 = ___member0;
RuntimeObject* L_7 = ___target1;
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_6, FieldInfo_t_il2cpp_TypeInfo_var)));
RuntimeObject* L_8;
L_8 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_6, FieldInfo_t_il2cpp_TypeInfo_var)), L_7);
return L_8;
}
IL_0035:
{
}
try
{// begin try (depth: 1)
MemberInfo_t* L_9 = ___member0;
RuntimeObject* L_10 = ___target1;
NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)));
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_1 = L_11;
goto IL_0083;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0046;
}
throw e;
}
CATCH_0046:
{// begin catch(System.Reflection.TargetParameterCountException)
V_2 = ((TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859*)IL2CPP_GET_ACTIVE_EXCEPTION(TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
MemberInfo_t* L_13 = ___member0;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13);
String_t* L_15;
L_15 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC831E4287EDA3A3A9B5B37A3194AA566D49E6CF)), L_12, L_14, NULL);
TargetParameterCountException_t06AE62DE58A6F9CAC9E33DBEFA5B224F08293859* L_16 = V_2;
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_17 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_17);
ArgumentException__ctor_mFDDC94E3C94B43E2DFBDA15DD749315C5B246512(L_17, L_15, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetMemberValue_m8ACCC6234EA3FA6A96DB8A89E555BFAED6381283_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0063:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_18;
L_18 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
MemberInfo_t* L_19 = ___member0;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_19);
String_t* L_21;
L_21 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8B1F87BF4C64319A8AA1DA5423C987A720C3CFF0)), L_18, L_20, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_22 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_22);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_22, L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_GetMemberValue_m8ACCC6234EA3FA6A96DB8A89E555BFAED6381283_RuntimeMethod_var)));
}
IL_0083:
{
RuntimeObject* L_23 = V_1;
return L_23;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_SetMemberValue_m2FD1F5AECF556297EDA6DC6F1C7BCB6F5E06CDA2 (MemberInfo_t* ___member0, RuntimeObject* ___target1, RuntimeObject* ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral320772EF40302B49A179DB96BAD02224E97B4018);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
MemberInfo_t* L_0 = ___member0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral4784CA4E159D86F8767CCC55143536AF34801074, NULL);
RuntimeObject* L_1 = ___target1;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_1, _stringLiteral320772EF40302B49A179DB96BAD02224E97B4018, NULL);
MemberInfo_t* L_2 = ___member0;
int32_t L_3;
L_3 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_2, NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)4)))
{
goto IL_0028;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)16))))
{
goto IL_0036;
}
}
{
goto IL_0045;
}
IL_0028:
{
MemberInfo_t* L_6 = ___member0;
RuntimeObject* L_7 = ___target1;
RuntimeObject* L_8 = ___value2;
NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_6, FieldInfo_t_il2cpp_TypeInfo_var)));
FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_6, FieldInfo_t_il2cpp_TypeInfo_var)), L_7, L_8, NULL);
return;
}
IL_0036:
{
MemberInfo_t* L_9 = ___member0;
RuntimeObject* L_10 = ___target1;
RuntimeObject* L_11 = ___value2;
NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)));
VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, L_11, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
return;
}
IL_0045:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
MemberInfo_t* L_13 = ___member0;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13);
String_t* L_15;
L_15 = StringUtils_FormatWith_m0A1ACFD32B2B62D93621E698CBCFF04722C3A4D5(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral847BDE321BACE58C20EACA226ABC5487CBF50A05)), L_12, L_14, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_16);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_16, L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4784CA4E159D86F8767CCC55143536AF34801074)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReflectionUtils_SetMemberValue_m2FD1F5AECF556297EDA6DC6F1C7BCB6F5E06CDA2_RuntimeMethod_var)));
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanReadMemberValue_m3845F94C24ACD72B57E9492DEDE21A9EE6FEDD3F (MemberInfo_t* ___member0, bool ___nonPublic1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FieldInfo_t* V_0 = NULL;
PropertyInfo_t* V_1 = NULL;
int32_t V_2 = 0;
{
MemberInfo_t* L_0 = ___member0;
int32_t L_1;
L_1 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_0, NULL);
V_2 = L_1;
int32_t L_2 = V_2;
if ((((int32_t)L_2) == ((int32_t)4)))
{
goto IL_0012;
}
}
{
int32_t L_3 = V_2;
if ((((int32_t)L_3) == ((int32_t)((int32_t)16))))
{
goto IL_002a;
}
}
{
goto IL_004e;
}
IL_0012:
{
MemberInfo_t* L_4 = ___member0;
V_0 = ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var));
bool L_5 = ___nonPublic1;
if (!L_5)
{
goto IL_001e;
}
}
{
return (bool)1;
}
IL_001e:
{
FieldInfo_t* L_6 = V_0;
NullCheck(L_6);
bool L_7;
L_7 = FieldInfo_get_IsPublic_m73C84BEEAE6C993FACC6199B81DBF2B80D3810E5(L_6, NULL);
if (!L_7)
{
goto IL_0028;
}
}
{
return (bool)1;
}
IL_0028:
{
return (bool)0;
}
IL_002a:
{
MemberInfo_t* L_8 = ___member0;
V_1 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_8, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_9 = V_1;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_9);
if (L_10)
{
goto IL_003b;
}
}
{
return (bool)0;
}
IL_003b:
{
bool L_11 = ___nonPublic1;
if (!L_11)
{
goto IL_0040;
}
}
{
return (bool)1;
}
IL_0040:
{
PropertyInfo_t* L_12 = V_1;
bool L_13 = ___nonPublic1;
NullCheck(L_12);
MethodInfo_t* L_14;
L_14 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod(System.Boolean) */, L_12, L_13);
bool L_15;
L_15 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_14, (MethodInfo_t*)NULL, NULL);
return L_15;
}
IL_004e:
{
return (bool)0;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_CanSetMemberValue_m251A666D561999D6F4DDDB2DC2EA06A2CB99379C (MemberInfo_t* ___member0, bool ___nonPublic1, bool ___canSetReadOnly2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FieldInfo_t* V_0 = NULL;
PropertyInfo_t* V_1 = NULL;
int32_t V_2 = 0;
{
MemberInfo_t* L_0 = ___member0;
int32_t L_1;
L_1 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_0, NULL);
V_2 = L_1;
int32_t L_2 = V_2;
if ((((int32_t)L_2) == ((int32_t)4)))
{
goto IL_0012;
}
}
{
int32_t L_3 = V_2;
if ((((int32_t)L_3) == ((int32_t)((int32_t)16))))
{
goto IL_0041;
}
}
{
goto IL_0065;
}
IL_0012:
{
MemberInfo_t* L_4 = ___member0;
V_0 = ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_4, FieldInfo_t_il2cpp_TypeInfo_var));
FieldInfo_t* L_5 = V_0;
NullCheck(L_5);
bool L_6;
L_6 = FieldInfo_get_IsLiteral_mBE7DDC6A709439F775873859C82BAAD1EEFF791A(L_5, NULL);
if (!L_6)
{
goto IL_0023;
}
}
{
return (bool)0;
}
IL_0023:
{
FieldInfo_t* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = FieldInfo_get_IsInitOnly_m476BB9325A68BDD56B088D3E8407F75FA1388ED9(L_7, NULL);
if (!L_8)
{
goto IL_0030;
}
}
{
bool L_9 = ___canSetReadOnly2;
if (L_9)
{
goto IL_0030;
}
}
{
return (bool)0;
}
IL_0030:
{
bool L_10 = ___nonPublic1;
if (!L_10)
{
goto IL_0035;
}
}
{
return (bool)1;
}
IL_0035:
{
FieldInfo_t* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = FieldInfo_get_IsPublic_m73C84BEEAE6C993FACC6199B81DBF2B80D3810E5(L_11, NULL);
if (!L_12)
{
goto IL_003f;
}
}
{
return (bool)1;
}
IL_003f:
{
return (bool)0;
}
IL_0041:
{
MemberInfo_t* L_13 = ___member0;
V_1 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_13, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_14 = V_1;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_14);
if (L_15)
{
goto IL_0052;
}
}
{
return (bool)0;
}
IL_0052:
{
bool L_16 = ___nonPublic1;
if (!L_16)
{
goto IL_0057;
}
}
{
return (bool)1;
}
IL_0057:
{
PropertyInfo_t* L_17 = V_1;
bool L_18 = ___nonPublic1;
NullCheck(L_17);
MethodInfo_t* L_19;
L_19 = VirtualFuncInvoker1< MethodInfo_t*, bool >::Invoke(23 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetSetMethod(System.Boolean) */, L_17, L_18);
bool L_20;
L_20 = MethodInfo_op_Inequality_m12A72321F9066269B34CD4062B224E1A20AC15EC(L_19, (MethodInfo_t*)NULL, NULL);
return L_20;
}
IL_0065:
{
return (bool)0;
}
}
// System.Collections.Generic.List`1<System.Reflection.MemberInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetFieldsAndProperties(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* ReflectionUtils_GetFieldsAndProperties_m6A54D3F526EBCD2C0DEAFFCDE2129DBBA03D7A75 (Type_t* ___type0, int32_t ___bindingAttr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Any_TisMemberInfo_t_mCD6D656C7D701A05B9B39CFD962AD3520F1FB490_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Count_TisMemberInfo_t_m29621F32121724ACF63D8E402ED67CA5E4F8EFC0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_First_TisMemberInfo_t_m01BAA12175FEE2329291832C52FAEB103CD37397_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_GroupBy_TisMemberInfo_t_TisString_t_m851AA14DB80DE7AF5D282E5D08CA6ECD04BF9D1D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t9BFC4EA32B04B96A5BB13A056B7E299ADC431143_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tB115F5F790744426D29118098864CADBAFD6E7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t17A98E9C91AD59AC8DCA7D9C70E659E9F6583901_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t9DFF5CCD2F9C4E5CAEEB028E6189933EE4E77294_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4C102B22A268A681BB63B27829B493E15936FA26_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetFieldsAndPropertiesU3Eb__31_0_mA7D173FAF9D7D5581A1CBCB17B30CB8065E6A102_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass31_0_U3CGetFieldsAndPropertiesU3Eb__1_m2BDDF6D8B65C4A7704AC3E983E1145FB5A188006_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58);
s_Il2CppMethodInitialized = true;
}
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* V_3 = NULL;
RuntimeObject* V_4 = NULL;
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* V_5 = NULL;
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* G_B2_0 = NULL;
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* G_B2_1 = NULL;
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* G_B1_0 = NULL;
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* G_B1_1 = NULL;
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_0 = (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*)il2cpp_codegen_object_new(List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A(L_0, List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A_RuntimeMethod_var);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_1 = L_0;
Type_t* L_2 = ___type0;
int32_t L_3 = ___bindingAttr1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
RuntimeObject* L_4;
L_4 = ReflectionUtils_GetFields_m50FD0565F40EB0966E0D6C9E0F25B8D63878DB90(L_2, L_3, NULL);
NullCheck(L_1);
List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341(L_1, L_4, List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341_RuntimeMethod_var);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_5 = L_1;
Type_t* L_6 = ___type0;
int32_t L_7 = ___bindingAttr1;
RuntimeObject* L_8;
L_8 = ReflectionUtils_GetProperties_m1BF5D5AB1FA2EF77CB86BFE0AC6F954624FB533E(L_6, L_7, NULL);
NullCheck(L_5);
List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341(L_5, L_8, List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341_RuntimeMethod_var);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_9 = L_5;
NullCheck(L_9);
int32_t L_10;
L_10 = List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_inline(L_9, List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_RuntimeMethod_var);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_11 = (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*)il2cpp_codegen_object_new(List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
NullCheck(L_11);
List_1__ctor_m4C102B22A268A681BB63B27829B493E15936FA26(L_11, L_10, List_1__ctor_m4C102B22A268A681BB63B27829B493E15936FA26_RuntimeMethod_var);
V_0 = L_11;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* L_12 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__31_0_2;
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* L_13 = L_12;
G_B1_0 = L_13;
G_B1_1 = L_9;
if (L_13)
{
G_B2_0 = L_13;
G_B2_1 = L_9;
goto IL_004a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2* L_14 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* L_15 = (Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335*)il2cpp_codegen_object_new(Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335_il2cpp_TypeInfo_var);
NullCheck(L_15);
Func_2__ctor_m699289F206947D3B203957AB5645799C51DB54C4(L_15, L_14, (intptr_t)((void*)U3CU3Ec_U3CGetFieldsAndPropertiesU3Eb__31_0_mA7D173FAF9D7D5581A1CBCB17B30CB8065E6A102_RuntimeMethod_var), NULL);
Func_2_t5529F3CE66777996A1DA0C848F9CABE581943335* L_16 = L_15;
((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__31_0_2 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__31_0_2), (void*)L_16);
G_B2_0 = L_16;
G_B2_1 = G_B1_1;
}
IL_004a:
{
RuntimeObject* L_17;
L_17 = Enumerable_GroupBy_TisMemberInfo_t_TisString_t_m851AA14DB80DE7AF5D282E5D08CA6ECD04BF9D1D(G_B2_1, G_B2_0, Enumerable_GroupBy_TisMemberInfo_t_TisString_t_m851AA14DB80DE7AF5D282E5D08CA6ECD04BF9D1D_RuntimeMethod_var);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Linq.IGrouping`2<System.String,System.Reflection.MemberInfo>>::GetEnumerator() */, IEnumerable_1_tB115F5F790744426D29118098864CADBAFD6E7C9_il2cpp_TypeInfo_var, L_17);
V_1 = L_18;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_012b:
{// begin finally (depth: 1)
{
RuntimeObject* L_19 = V_1;
if (!L_19)
{
goto IL_0134;
}
}
{
RuntimeObject* L_20 = V_1;
NullCheck(L_20);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_20);
}
IL_0134:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_011e_1;
}
IL_005a_1:
{
RuntimeObject* L_21 = V_1;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<System.String,System.Reflection.MemberInfo>>::get_Current() */, IEnumerator_1_t9DFF5CCD2F9C4E5CAEEB028E6189933EE4E77294_il2cpp_TypeInfo_var, L_21);
V_2 = L_22;
RuntimeObject* L_23 = V_2;
int32_t L_24;
L_24 = Enumerable_Count_TisMemberInfo_t_m29621F32121724ACF63D8E402ED67CA5E4F8EFC0(L_23, Enumerable_Count_TisMemberInfo_t_m29621F32121724ACF63D8E402ED67CA5E4F8EFC0_RuntimeMethod_var);
if ((!(((uint32_t)L_24) == ((uint32_t)1))))
{
goto IL_007b_1;
}
}
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_25 = V_0;
RuntimeObject* L_26 = V_2;
MemberInfo_t* L_27;
L_27 = Enumerable_First_TisMemberInfo_t_m01BAA12175FEE2329291832C52FAEB103CD37397(L_26, Enumerable_First_TisMemberInfo_t_m01BAA12175FEE2329291832C52FAEB103CD37397_RuntimeMethod_var);
NullCheck(L_25);
List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_inline(L_25, L_27, List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_RuntimeMethod_var);
goto IL_011e_1;
}
IL_007b_1:
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_28 = (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*)il2cpp_codegen_object_new(List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
NullCheck(L_28);
List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A(L_28, List_1__ctor_m1ECCAADF7DB1972688A2B429816CF4E0581D4E2A_RuntimeMethod_var);
V_3 = L_28;
RuntimeObject* L_29 = V_2;
NullCheck(L_29);
RuntimeObject* L_30;
L_30 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>::GetEnumerator() */, IEnumerable_1_t9BFC4EA32B04B96A5BB13A056B7E299ADC431143_il2cpp_TypeInfo_var, L_29);
V_4 = L_30;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_010b_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_31 = V_4;
if (!L_31)
{
goto IL_0116_1;
}
}
{
RuntimeObject* L_32 = V_4;
NullCheck(L_32);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_32);
}
IL_0116_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0100_2;
}
IL_008b_2:
{
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_33 = (U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35_il2cpp_TypeInfo_var);
NullCheck(L_33);
U3CU3Ec__DisplayClass31_0__ctor_m7612987B8526E3E7B8C0752E93148C8C7AC5F42C(L_33, NULL);
V_5 = L_33;
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_34 = V_5;
RuntimeObject* L_35 = V_4;
NullCheck(L_35);
MemberInfo_t* L_36;
L_36 = InterfaceFuncInvoker0< MemberInfo_t* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo>::get_Current() */, IEnumerator_1_t17A98E9C91AD59AC8DCA7D9C70E659E9F6583901_il2cpp_TypeInfo_var, L_35);
NullCheck(L_34);
L_34->___memberInfo_0 = L_36;
Il2CppCodeGenWriteBarrier((void**)(&L_34->___memberInfo_0), (void*)L_36);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_37 = V_3;
NullCheck(L_37);
int32_t L_38;
L_38 = List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_inline(L_37, List_1_get_Count_mD80F00AEBC44636925C55CCC66519387944DFA3C_RuntimeMethod_var);
if (L_38)
{
goto IL_00b7_2;
}
}
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_39 = V_3;
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_40 = V_5;
NullCheck(L_40);
MemberInfo_t* L_41 = L_40->___memberInfo_0;
NullCheck(L_39);
List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_inline(L_39, L_41, List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_RuntimeMethod_var);
goto IL_0100_2;
}
IL_00b7_2:
{
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_42 = V_5;
NullCheck(L_42);
MemberInfo_t* L_43 = L_42->___memberInfo_0;
int32_t L_44 = ___bindingAttr1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_45;
L_45 = ReflectionUtils_IsOverridenGenericMember_m0FEF3551507165ED8191B5D7911F2C6FE9E30D04(L_43, L_44, NULL);
if (!L_45)
{
goto IL_00de_2;
}
}
{
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_46 = V_5;
NullCheck(L_46);
MemberInfo_t* L_47 = L_46->___memberInfo_0;
NullCheck(L_47);
String_t* L_48;
L_48 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_47);
bool L_49;
L_49 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_48, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, NULL);
if (!L_49)
{
goto IL_0100_2;
}
}
IL_00de_2:
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_50 = V_3;
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_51 = V_5;
Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D* L_52 = (Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D*)il2cpp_codegen_object_new(Func_2_t20D2A8C4D064E72B901CA13A2A4DFFADEA092F9D_il2cpp_TypeInfo_var);
NullCheck(L_52);
Func_2__ctor_m2C15E9DEC22C319A97CBE1E10D4A1B23E468ED19(L_52, L_51, (intptr_t)((void*)U3CU3Ec__DisplayClass31_0_U3CGetFieldsAndPropertiesU3Eb__1_m2BDDF6D8B65C4A7704AC3E983E1145FB5A188006_RuntimeMethod_var), NULL);
bool L_53;
L_53 = Enumerable_Any_TisMemberInfo_t_mCD6D656C7D701A05B9B39CFD962AD3520F1FB490(L_50, L_52, Enumerable_Any_TisMemberInfo_t_mCD6D656C7D701A05B9B39CFD962AD3520F1FB490_RuntimeMethod_var);
if (L_53)
{
goto IL_0100_2;
}
}
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_54 = V_3;
U3CU3Ec__DisplayClass31_0_tA3CEF5B3C69FD5E677D1478E96B29CE892328C35* L_55 = V_5;
NullCheck(L_55);
MemberInfo_t* L_56 = L_55->___memberInfo_0;
NullCheck(L_54);
List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_inline(L_54, L_56, List_1_Add_m1B76CD20C4F1CF6BD59E08CF75B4E4CA97F23217_RuntimeMethod_var);
}
IL_0100_2:
{
RuntimeObject* L_57 = V_4;
NullCheck(L_57);
bool L_58;
L_58 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_57);
if (L_58)
{
goto IL_008b_2;
}
}
{
goto IL_0117_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0117_1:
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_59 = V_0;
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_60 = V_3;
NullCheck(L_59);
List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341(L_59, L_60, List_1_AddRange_mFDD370E143C78AA5DA55A6DD602C5B96A81B5341_RuntimeMethod_var);
}
IL_011e_1:
{
RuntimeObject* L_61 = V_1;
NullCheck(L_61);
bool L_62;
L_62 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_61);
if (L_62)
{
goto IL_005a_1;
}
}
{
goto IL_0135;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0135:
{
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_63 = V_0;
return L_63;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsOverridenGenericMember(System.Reflection.MemberInfo,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsOverridenGenericMember_m0FEF3551507165ED8191B5D7911F2C6FE9E30D04 (MemberInfo_t* ___memberInfo0, int32_t ___bindingAttr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PropertyInfo_t* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_3 = NULL;
{
MemberInfo_t* L_0 = ___memberInfo0;
int32_t L_1;
L_1 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)((int32_t)16))))
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_000c:
{
MemberInfo_t* L_2 = ___memberInfo0;
V_0 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_2, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_4;
L_4 = ReflectionUtils_IsVirtual_mC331EA066BD75E22FB4E83C1ADF51C9D14D2CB44(L_3, NULL);
if (L_4)
{
goto IL_001d;
}
}
{
return (bool)0;
}
IL_001d:
{
PropertyInfo_t* L_5 = V_0;
NullCheck(L_5);
Type_t* L_6;
L_6 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_5);
V_1 = L_6;
Type_t* L_7 = V_1;
bool L_8;
L_8 = TypeExtensions_IsGenericType_mFA2D9FC1A320475B39B52F302EAD1DEDD04ABC7C(L_7, NULL);
if (L_8)
{
goto IL_002e;
}
}
{
return (bool)0;
}
IL_002e:
{
Type_t* L_9 = V_1;
NullCheck(L_9);
Type_t* L_10;
L_10 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_9);
V_2 = L_10;
Type_t* L_11 = V_2;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_12;
L_12 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_11, (Type_t*)NULL, NULL);
if (!L_12)
{
goto IL_0040;
}
}
{
return (bool)0;
}
IL_0040:
{
Type_t* L_13 = V_2;
PropertyInfo_t* L_14 = V_0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14);
int32_t L_16 = ___bindingAttr1;
NullCheck(L_13);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_17;
L_17 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(91 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_13, L_15, L_16);
V_3 = L_17;
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_18 = V_3;
NullCheck(L_18);
if ((((RuntimeArray*)L_18)->max_length))
{
goto IL_0054;
}
}
{
return (bool)0;
}
IL_0054:
{
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_19 = V_3;
NullCheck(L_19);
int32_t L_20 = 0;
MemberInfo_t* L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
Type_t* L_22;
L_22 = ReflectionUtils_GetMemberUnderlyingType_m6228ECC08F48EF4FBCC02F00176B96325740BF4C(L_21, NULL);
NullCheck(L_22);
bool L_23;
L_23 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Type::get_IsGenericParameter() */, L_22);
if (L_23)
{
goto IL_0065;
}
}
{
return (bool)0;
}
IL_0065:
{
return (bool)1;
}
}
// System.Attribute[] Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ReflectionUtils_GetAttributes_mC731561D3A0317252C3D268A07312588DE64F468 (RuntimeObject* ___attributeProvider0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assembly_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Cast_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m15F338502F06EB3AFD250C4139A865AE3214A35A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m8CBAA4BADFBB32C06C6CB9209549C8406D79A5F4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemberInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FA35785030417D7D0231C7D255A20E8C43DAFD6);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Type_t* V_2 = NULL;
Assembly_t* V_3 = NULL;
MemberInfo_t* V_4 = NULL;
Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* V_5 = NULL;
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* V_6 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B9_0 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B25_0 = NULL;
{
RuntimeObject* L_0 = ___attributeProvider0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteral2FA35785030417D7D0231C7D255A20E8C43DAFD6, NULL);
RuntimeObject* L_1 = ___attributeProvider0;
V_0 = L_1;
RuntimeObject* L_2 = V_0;
V_2 = ((Type_t*)IsInstClass((RuntimeObject*)L_2, Type_t_il2cpp_TypeInfo_var));
Type_t* L_3 = V_2;
if (L_3)
{
goto IL_004a;
}
}
{
RuntimeObject* L_4 = V_0;
V_3 = ((Assembly_t*)IsInstClass((RuntimeObject*)L_4, Assembly_t_il2cpp_TypeInfo_var));
Assembly_t* L_5 = V_3;
if (L_5)
{
goto IL_006f;
}
}
{
RuntimeObject* L_6 = V_0;
V_4 = ((MemberInfo_t*)IsInstClass((RuntimeObject*)L_6, MemberInfo_t_il2cpp_TypeInfo_var));
MemberInfo_t* L_7 = V_4;
if (L_7)
{
goto IL_0087;
}
}
{
RuntimeObject* L_8 = V_0;
V_5 = ((Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0*)IsInstClass((RuntimeObject*)L_8, Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0_il2cpp_TypeInfo_var));
Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* L_9 = V_5;
if (L_9)
{
goto IL_00a3;
}
}
{
RuntimeObject* L_10 = V_0;
V_6 = ((ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F*)IsInstClass((RuntimeObject*)L_10, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_il2cpp_TypeInfo_var));
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_11 = V_6;
if (L_11)
{
goto IL_00bf;
}
}
{
goto IL_00db;
}
IL_004a:
{
Type_t* L_12 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_13;
L_13 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_12, (Type_t*)NULL, NULL);
if (L_13)
{
goto IL_005c;
}
}
{
Type_t* L_14 = V_2;
bool L_15 = ___inherit2;
NullCheck(L_14);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16;
L_16 = VirtualFuncInvoker1< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, bool >::Invoke(13 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_14, L_15);
G_B9_0 = L_16;
goto IL_0064;
}
IL_005c:
{
Type_t* L_17 = V_2;
Type_t* L_18 = ___attributeType1;
bool L_19 = ___inherit2;
NullCheck(L_17);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20;
L_20 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(14 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_17, L_18, L_19);
G_B9_0 = L_20;
}
IL_0064:
{
RuntimeObject* L_21;
L_21 = Enumerable_Cast_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m15F338502F06EB3AFD250C4139A865AE3214A35A((RuntimeObject*)G_B9_0, Enumerable_Cast_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m15F338502F06EB3AFD250C4139A865AE3214A35A_RuntimeMethod_var);
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_22;
L_22 = Enumerable_ToArray_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m8CBAA4BADFBB32C06C6CB9209549C8406D79A5F4(L_21, Enumerable_ToArray_TisAttribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_m8CBAA4BADFBB32C06C6CB9209549C8406D79A5F4_RuntimeMethod_var);
return L_22;
}
IL_006f:
{
Type_t* L_23 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_24;
L_24 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_23, (Type_t*)NULL, NULL);
if (L_24)
{
goto IL_007f;
}
}
{
Assembly_t* L_25 = V_3;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_26;
L_26 = Attribute_GetCustomAttributes_m18CB1B1F33393986F99C24ACF91845FED6E7DD27(L_25, NULL);
return L_26;
}
IL_007f:
{
Assembly_t* L_27 = V_3;
Type_t* L_28 = ___attributeType1;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_29;
L_29 = Attribute_GetCustomAttributes_m453F2B409BF91F0662378947B095DAD2B04E8F9A(L_27, L_28, NULL);
return L_29;
}
IL_0087:
{
Type_t* L_30 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_31;
L_31 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_30, (Type_t*)NULL, NULL);
if (L_31)
{
goto IL_0099;
}
}
{
MemberInfo_t* L_32 = V_4;
bool L_33 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_34;
L_34 = Attribute_GetCustomAttributes_m0769AE954BBEBA567C151001B00EC6386DFCCC2D(L_32, L_33, NULL);
return L_34;
}
IL_0099:
{
MemberInfo_t* L_35 = V_4;
Type_t* L_36 = ___attributeType1;
bool L_37 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_38;
L_38 = Attribute_GetCustomAttributes_m5FDA0A7B46138B19C39F3CBE9AAC1965DC1B7E79(L_35, L_36, L_37, NULL);
return L_38;
}
IL_00a3:
{
Type_t* L_39 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_40;
L_40 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_39, (Type_t*)NULL, NULL);
if (L_40)
{
goto IL_00b5;
}
}
{
Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* L_41 = V_5;
bool L_42 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_43;
L_43 = Attribute_GetCustomAttributes_mAD3D4BB166168FC3964929882B025CC046D193AF(L_41, L_42, NULL);
return L_43;
}
IL_00b5:
{
Module_tABB9217F7F2BA3E0F4277D03C2B234A7313BB8D0* L_44 = V_5;
Type_t* L_45 = ___attributeType1;
bool L_46 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_47;
L_47 = Attribute_GetCustomAttributes_m23096DF5EA713487E8064B4C035DEDBB4349DAF3(L_44, L_45, L_46, NULL);
return L_47;
}
IL_00bf:
{
Type_t* L_48 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_49;
L_49 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_48, (Type_t*)NULL, NULL);
if (L_49)
{
goto IL_00d1;
}
}
{
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_50 = V_6;
bool L_51 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_52;
L_52 = Attribute_GetCustomAttributes_m8B9BD902255772419F1334A89FD282A8C6ADACE8(L_50, L_51, NULL);
return L_52;
}
IL_00d1:
{
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_53 = V_6;
Type_t* L_54 = ___attributeType1;
bool L_55 = ___inherit2;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_56;
L_56 = Attribute_GetCustomAttributes_m699FB76E31771F04FB60A90A610A0389D036EE50(L_53, L_54, L_55, NULL);
return L_56;
}
IL_00db:
{
RuntimeObject* L_57 = ___attributeProvider0;
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_57, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var));
Type_t* L_58 = ___attributeType1;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_59;
L_59 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_58, (Type_t*)NULL, NULL);
if (L_59)
{
goto IL_00f4;
}
}
{
RuntimeObject* L_60 = V_1;
bool L_61 = ___inherit2;
NullCheck(L_60);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_62;
L_62 = InterfaceFuncInvoker1< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Boolean) */, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var, L_60, L_61);
G_B25_0 = L_62;
goto IL_00fc;
}
IL_00f4:
{
RuntimeObject* L_63 = V_1;
Type_t* L_64 = ___attributeType1;
bool L_65 = ___inherit2;
NullCheck(L_63);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_66;
L_66 = InterfaceFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(1 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Type,System.Boolean) */, ICustomAttributeProvider_tC47C1E6A3DC1ADA77819AF705CC1D1175315876D_il2cpp_TypeInfo_var, L_63, L_64, L_65);
G_B25_0 = L_66;
}
IL_00fc:
{
return ((AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1*)Castclass((RuntimeObject*)G_B25_0, AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1_il2cpp_TypeInfo_var));
}
}
// Newtonsoft.Json.Utilities.StructMultiKey`2<System.String,System.String> Newtonsoft.Json.Utilities.ReflectionUtils::SplitFullyQualifiedTypeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StructMultiKey_2_t6E68BC5B4E82B577ED926DDD328474297A4F65C3 ReflectionUtils_SplitFullyQualifiedTypeName_mAD886E2276A79A54268300CFC5050DBA6E1BAB6B (String_t* ___fullyQualifiedTypeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StructMultiKey_2__ctor_m86731997DA776682D68E49D641713A373FCB9844_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_0;
memset((&V_0), 0, sizeof(V_0));
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
String_t* L_0 = ___fullyQualifiedTypeName0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_1;
L_1 = ReflectionUtils_GetAssemblyDelimiterIndex_m10628DF753FE068503B1F99EC898FBCF57ED4243(L_0, NULL);
V_0 = L_1;
bool L_2;
L_2 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_0), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_2)
{
goto IL_0041;
}
}
{
String_t* L_3 = ___fullyQualifiedTypeName0;
int32_t L_4;
L_4 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_0), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
String_t* L_5;
L_5 = StringUtils_Trim_m68EFB6FA66C179F8B75B89FC0861A51681F02895(L_3, 0, L_4, NULL);
V_1 = L_5;
String_t* L_6 = ___fullyQualifiedTypeName0;
int32_t L_7;
L_7 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_0), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
String_t* L_8 = ___fullyQualifiedTypeName0;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
int32_t L_10;
L_10 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_0), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
String_t* L_11;
L_11 = StringUtils_Trim_m68EFB6FA66C179F8B75B89FC0861A51681F02895(L_6, ((int32_t)il2cpp_codegen_add(L_7, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_9, L_10)), 1)), NULL);
V_2 = L_11;
goto IL_0045;
}
IL_0041:
{
String_t* L_12 = ___fullyQualifiedTypeName0;
V_1 = L_12;
V_2 = (String_t*)NULL;
}
IL_0045:
{
String_t* L_13 = V_2;
String_t* L_14 = V_1;
StructMultiKey_2_t6E68BC5B4E82B577ED926DDD328474297A4F65C3 L_15;
memset((&L_15), 0, sizeof(L_15));
StructMultiKey_2__ctor_m86731997DA776682D68E49D641713A373FCB9844((&L_15), L_13, L_14, /*hidden argument*/StructMultiKey_2__ctor_m86731997DA776682D68E49D641713A373FCB9844_RuntimeMethod_var);
return L_15;
}
}
// System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.ReflectionUtils::GetAssemblyDelimiterIndex(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ReflectionUtils_GetAssemblyDelimiterIndex_m10628DF753FE068503B1F99EC898FBCF57ED4243 (String_t* ___fullyQualifiedTypeName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_3;
memset((&V_3), 0, sizeof(V_3));
{
V_0 = 0;
V_1 = 0;
goto IL_0039;
}
IL_0006:
{
String_t* L_0 = ___fullyQualifiedTypeName0;
int32_t L_1 = V_1;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
V_2 = L_2;
Il2CppChar L_3 = V_2;
if ((((int32_t)L_3) == ((int32_t)((int32_t)44))))
{
goto IL_002b;
}
}
{
Il2CppChar L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)((int32_t)91))))
{
goto IL_001f;
}
}
{
Il2CppChar L_5 = V_2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)93))))
{
goto IL_0025;
}
}
{
goto IL_0035;
}
IL_001f:
{
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
goto IL_0035;
}
IL_0025:
{
int32_t L_7 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
goto IL_0035;
}
IL_002b:
{
int32_t L_8 = V_0;
if (L_8)
{
goto IL_0035;
}
}
{
int32_t L_9 = V_1;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10;
memset((&L_10), 0, sizeof(L_10));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_10), L_9, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
return L_10;
}
IL_0035:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0039:
{
int32_t L_12 = V_1;
String_t* L_13 = ___fullyQualifiedTypeName0;
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_0006;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_15 = V_3;
return L_15;
}
}
// System.Reflection.MemberInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberInfoFromType(System.Type,System.Reflection.MemberInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfo_t* ReflectionUtils_GetMemberInfoFromType_mC7C8794B7F2A16B94C254A2E138B31A30CC84727 (Type_t* ___targetType0, MemberInfo_t* ___memberInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_TisType_t_m275E353BA1242C1B0AF4B73B7BEE3994E4DF6A84_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_SingleOrDefault_TisMemberInfo_t_mA18F069F81CC9297AE5C6D9A7C0B28D4711667F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisType_t_m28C7A2C8A923EDB686746CE65C1C0BD2BCF93A00_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t083860B929985EC8DF79C99B5157C38632F84196_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetMemberInfoFromTypeU3Eb__39_0_m93ECCDE074C7CACCA0696323587FDB748EF30032_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PropertyInfo_t* V_0 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* G_B3_0 = NULL;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* G_B3_1 = NULL;
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* G_B2_0 = NULL;
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* G_B2_1 = NULL;
{
MemberInfo_t* L_0 = ___memberInfo1;
int32_t L_1;
L_1 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)16)))))
{
goto IL_0059;
}
}
{
MemberInfo_t* L_2 = ___memberInfo1;
V_0 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_2, PropertyInfo_t_il2cpp_TypeInfo_var));
PropertyInfo_t* L_3 = V_0;
NullCheck(L_3);
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_4;
L_4 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_3);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* L_5 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__39_0_3;
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* L_6 = L_5;
G_B2_0 = L_6;
G_B2_1 = L_4;
if (L_6)
{
G_B3_0 = L_6;
G_B3_1 = L_4;
goto IL_0036;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2* L_7 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* L_8 = (Func_2_t083860B929985EC8DF79C99B5157C38632F84196*)il2cpp_codegen_object_new(Func_2_t083860B929985EC8DF79C99B5157C38632F84196_il2cpp_TypeInfo_var);
NullCheck(L_8);
Func_2__ctor_mABAC2A1749B8A3F716CAD567A9ABCC9654A7E97E(L_8, L_7, (intptr_t)((void*)U3CU3Ec_U3CGetMemberInfoFromTypeU3Eb__39_0_m93ECCDE074C7CACCA0696323587FDB748EF30032_RuntimeMethod_var), NULL);
Func_2_t083860B929985EC8DF79C99B5157C38632F84196* L_9 = L_8;
((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__39_0_3 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__39_0_3), (void*)L_9);
G_B3_0 = L_9;
G_B3_1 = G_B2_1;
}
IL_0036:
{
RuntimeObject* L_10;
L_10 = Enumerable_Select_TisParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_TisType_t_m275E353BA1242C1B0AF4B73B7BEE3994E4DF6A84((RuntimeObject*)G_B3_1, G_B3_0, Enumerable_Select_TisParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_TisType_t_m275E353BA1242C1B0AF4B73B7BEE3994E4DF6A84_RuntimeMethod_var);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_11;
L_11 = Enumerable_ToArray_TisType_t_m28C7A2C8A923EDB686746CE65C1C0BD2BCF93A00(L_10, Enumerable_ToArray_TisType_t_m28C7A2C8A923EDB686746CE65C1C0BD2BCF93A00_RuntimeMethod_var);
V_1 = L_11;
Type_t* L_12 = ___targetType0;
PropertyInfo_t* L_13 = V_0;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13);
PropertyInfo_t* L_15 = V_0;
NullCheck(L_15);
Type_t* L_16;
L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(16 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_15);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_17 = V_1;
NullCheck(L_12);
PropertyInfo_t* L_18;
L_18 = Type_GetProperty_m56B512B27B74B56735C0BC4973B3E3C3BE817C68(L_12, L_14, ((int32_t)60), (Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235*)NULL, L_16, L_17, (ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364*)NULL, NULL);
return L_18;
}
IL_0059:
{
Type_t* L_19 = ___targetType0;
MemberInfo_t* L_20 = ___memberInfo1;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_20);
MemberInfo_t* L_22 = ___memberInfo1;
int32_t L_23;
L_23 = TypeExtensions_MemberType_m84A2B3B577EBC89B02E8B417DC025798AF948BE7(L_22, NULL);
NullCheck(L_19);
MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_24;
L_24 = VirtualFuncInvoker3< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t, int32_t >::Invoke(92 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags) */, L_19, L_21, L_23, ((int32_t)60));
MemberInfo_t* L_25;
L_25 = Enumerable_SingleOrDefault_TisMemberInfo_t_mA18F069F81CC9297AE5C6D9A7C0B28D4711667F9((RuntimeObject*)L_24, Enumerable_SingleOrDefault_TisMemberInfo_t_mA18F069F81CC9297AE5C6D9A7C0B28D4711667F9_RuntimeMethod_var);
return L_25;
}
}
// System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetFields(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetFields_m50FD0565F40EB0966E0D6C9E0F25B8D63878DB90 (Type_t* ___targetType0, int32_t ___bindingAttr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Cast_TisFieldInfo_t_mAD6B4A40666C7952F692C3815439C6A9BD758E77_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6A67D9D691261F2556B731A8AE6B4929B8A94E31_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___targetType0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5, NULL);
Type_t* L_1 = ___targetType0;
int32_t L_2 = ___bindingAttr1;
NullCheck(L_1);
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_3;
L_3 = VirtualFuncInvoker1< FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8*, int32_t >::Invoke(89 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_1, L_2);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_4 = (List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4*)il2cpp_codegen_object_new(List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4_il2cpp_TypeInfo_var);
NullCheck(L_4);
List_1__ctor_m6A67D9D691261F2556B731A8AE6B4929B8A94E31(L_4, (RuntimeObject*)L_3, List_1__ctor_m6A67D9D691261F2556B731A8AE6B4929B8A94E31_RuntimeMethod_var);
List_1_t269913CE854C1793B808480C94E04A8DB19CD0A4* L_5 = L_4;
Type_t* L_6 = ___targetType0;
int32_t L_7 = ___bindingAttr1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
ReflectionUtils_GetChildPrivateFields_m84B6404076C97499FD07D76CAA860D974DB6C0F6(L_5, L_6, L_7, NULL);
RuntimeObject* L_8;
L_8 = Enumerable_Cast_TisFieldInfo_t_mAD6B4A40666C7952F692C3815439C6A9BD758E77(L_5, Enumerable_Cast_TisFieldInfo_t_mAD6B4A40666C7952F692C3815439C6A9BD758E77_RuntimeMethod_var);
return L_8;
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateFields(System.Collections.Generic.IList`1<System.Reflection.MemberInfo>,System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetChildPrivateFields_m84B6404076C97499FD07D76CAA860D974DB6C0F6 (RuntimeObject* ___initialFields0, Type_t* ___targetType1, int32_t ___bindingAttr2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_AddRange_TisMemberInfo_t_m2244102F15CA8B14A3269A8E8001A30E32E88049_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Where_TisFieldInfo_t_m3822895513BBCC2708F1B3A231E52A5ADBAEC44B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CGetChildPrivateFieldsU3Eb__41_0_mBB078BF564DD56F47E41357373E5240589CDD834_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* G_B4_0 = NULL;
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* G_B4_1 = NULL;
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* G_B3_0 = NULL;
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* G_B3_1 = NULL;
{
int32_t L_0 = ___bindingAttr2;
if (!((int32_t)((int32_t)L_0&((int32_t)32))))
{
goto IL_0055;
}
}
{
int32_t L_1 = ___bindingAttr2;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = ReflectionUtils_RemoveFlag_mE5086FC6997D9EF9C70815D7BB8603A411F90930(L_1, ((int32_t)16), NULL);
V_0 = L_2;
goto IL_0044;
}
IL_0011:
{
Type_t* L_3 = ___targetType1;
int32_t L_4 = V_0;
NullCheck(L_3);
FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8* L_5;
L_5 = VirtualFuncInvoker1< FieldInfoU5BU5D_t50D47CBECF1AEB152F555803E3329D9E34DBF8D8*, int32_t >::Invoke(89 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_3, L_4);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* L_6 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__41_0_4;
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* L_7 = L_6;
G_B3_0 = L_7;
G_B3_1 = L_5;
if (L_7)
{
G_B4_0 = L_7;
G_B4_1 = L_5;
goto IL_0037;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var);
U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2* L_8 = ((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* L_9 = (Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630*)il2cpp_codegen_object_new(Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630_il2cpp_TypeInfo_var);
NullCheck(L_9);
Func_2__ctor_m720E8683356B22FA89D3983D974FC700BDE279A3(L_9, L_8, (intptr_t)((void*)U3CU3Ec_U3CGetChildPrivateFieldsU3Eb__41_0_mBB078BF564DD56F47E41357373E5240589CDD834_RuntimeMethod_var), NULL);
Func_2_t03668587D04B8ECC3E6CE9EF3B2852118286E630* L_10 = L_9;
((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__41_0_4 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCFD1EB021F178BC4CD6867A82782E0ADC90CF5B2_il2cpp_TypeInfo_var))->___U3CU3E9__41_0_4), (void*)L_10);
G_B4_0 = L_10;
G_B4_1 = G_B3_1;
}
IL_0037:
{
RuntimeObject* L_11;
L_11 = Enumerable_Where_TisFieldInfo_t_m3822895513BBCC2708F1B3A231E52A5ADBAEC44B((RuntimeObject*)G_B4_1, G_B4_0, Enumerable_Where_TisFieldInfo_t_m3822895513BBCC2708F1B3A231E52A5ADBAEC44B_RuntimeMethod_var);
V_1 = L_11;
RuntimeObject* L_12 = ___initialFields0;
RuntimeObject* L_13 = V_1;
CollectionUtils_AddRange_TisMemberInfo_t_m2244102F15CA8B14A3269A8E8001A30E32E88049(L_12, L_13, CollectionUtils_AddRange_TisMemberInfo_t_m2244102F15CA8B14A3269A8E8001A30E32E88049_RuntimeMethod_var);
}
IL_0044:
{
Type_t* L_14 = ___targetType1;
Type_t* L_15;
L_15 = TypeExtensions_BaseType_m3A8CEAA95DE0C84FD927DC6720CF30D5A8503B6C(L_14, NULL);
Type_t* L_16 = L_15;
___targetType1 = L_16;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_17;
L_17 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_16, (Type_t*)NULL, NULL);
if (L_17)
{
goto IL_0011;
}
}
IL_0055:
{
return;
}
}
// System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetProperties(System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetProperties_m1BF5D5AB1FA2EF77CB86BFE0AC6F954624FB533E (Type_t* ___targetType0, int32_t ___bindingAttr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mBA5D755463D755BE7FDA512D25353813E0C8EB3E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF2EB4E16CD63260F4A40B2CB9D25CAE969F1EA79_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m355CEE6943458AA8FD801E55B91417D3872474EA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m42DD116FCC6A980B9B1DACDA2168961AAFA656A8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mEB3D88999B573EBB88F1A7D86721429006820CF8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5);
s_Il2CppMethodInitialized = true;
}
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* V_0 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
int32_t V_2 = 0;
Type_t* V_3 = NULL;
int32_t V_4 = 0;
PropertyInfo_t* V_5 = NULL;
PropertyInfo_t* V_6 = NULL;
{
Type_t* L_0 = ___targetType0;
ValidationUtils_ArgumentNotNull_m73ECC0CA34E9075680E80F7B34526E5EC8206587(L_0, _stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5, NULL);
Type_t* L_1 = ___targetType0;
int32_t L_2 = ___bindingAttr1;
NullCheck(L_1);
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_3;
L_3 = VirtualFuncInvoker1< PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7*, int32_t >::Invoke(111 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_1, L_2);
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_4 = (List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E*)il2cpp_codegen_object_new(List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E_il2cpp_TypeInfo_var);
NullCheck(L_4);
List_1__ctor_mF2EB4E16CD63260F4A40B2CB9D25CAE969F1EA79(L_4, (RuntimeObject*)L_3, List_1__ctor_mF2EB4E16CD63260F4A40B2CB9D25CAE969F1EA79_RuntimeMethod_var);
V_0 = L_4;
Type_t* L_5 = ___targetType0;
bool L_6;
L_6 = TypeExtensions_IsInterface_m4D973DDF986A880468989BCF6074CF83014FC4FC(L_5, NULL);
if (!L_6)
{
goto IL_0046;
}
}
{
Type_t* L_7 = ___targetType0;
NullCheck(L_7);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8;
L_8 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(117 /* System.Type[] System.Type::GetInterfaces() */, L_7);
V_1 = L_8;
V_2 = 0;
goto IL_0040;
}
IL_002b:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_9 = V_1;
int32_t L_10 = V_2;
NullCheck(L_9);
int32_t L_11 = L_10;
Type_t* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
V_3 = L_12;
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_13 = V_0;
Type_t* L_14 = V_3;
int32_t L_15 = ___bindingAttr1;
NullCheck(L_14);
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_16;
L_16 = VirtualFuncInvoker1< PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7*, int32_t >::Invoke(111 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_14, L_15);
NullCheck(L_13);
List_1_AddRange_mBA5D755463D755BE7FDA512D25353813E0C8EB3E(L_13, (RuntimeObject*)L_16, List_1_AddRange_mBA5D755463D755BE7FDA512D25353813E0C8EB3E_RuntimeMethod_var);
int32_t L_17 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0040:
{
int32_t L_18 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = V_1;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
{
goto IL_002b;
}
}
IL_0046:
{
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_20 = V_0;
Type_t* L_21 = ___targetType0;
int32_t L_22 = ___bindingAttr1;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
ReflectionUtils_GetChildPrivateProperties_mEC746493BD1FD47AA20E9D979402902F9E6D09F5(L_20, L_21, L_22, NULL);
V_4 = 0;
goto IL_0091;
}
IL_0053:
{
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_23 = V_0;
int32_t L_24 = V_4;
NullCheck(L_23);
PropertyInfo_t* L_25;
L_25 = List_1_get_Item_m42DD116FCC6A980B9B1DACDA2168961AAFA656A8(L_23, L_24, List_1_get_Item_m42DD116FCC6A980B9B1DACDA2168961AAFA656A8_RuntimeMethod_var);
V_5 = L_25;
PropertyInfo_t* L_26 = V_5;
NullCheck(L_26);
Type_t* L_27;
L_27 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_26);
Type_t* L_28 = ___targetType0;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_29;
L_29 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_27, L_28, NULL);
if (!L_29)
{
goto IL_008b;
}
}
{
PropertyInfo_t* L_30 = V_5;
NullCheck(L_30);
Type_t* L_31;
L_31 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_30);
PropertyInfo_t* L_32 = V_5;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
MemberInfo_t* L_33;
L_33 = ReflectionUtils_GetMemberInfoFromType_mC7C8794B7F2A16B94C254A2E138B31A30CC84727(L_31, L_32, NULL);
V_6 = ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_33, PropertyInfo_t_il2cpp_TypeInfo_var));
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_34 = V_0;
int32_t L_35 = V_4;
PropertyInfo_t* L_36 = V_6;
NullCheck(L_34);
List_1_set_Item_mEB3D88999B573EBB88F1A7D86721429006820CF8(L_34, L_35, L_36, List_1_set_Item_mEB3D88999B573EBB88F1A7D86721429006820CF8_RuntimeMethod_var);
}
IL_008b:
{
int32_t L_37 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_37, 1));
}
IL_0091:
{
int32_t L_38 = V_4;
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_39 = V_0;
NullCheck(L_39);
int32_t L_40;
L_40 = List_1_get_Count_m355CEE6943458AA8FD801E55B91417D3872474EA_inline(L_39, List_1_get_Count_m355CEE6943458AA8FD801E55B91417D3872474EA_RuntimeMethod_var);
if ((((int32_t)L_38) < ((int32_t)L_40)))
{
goto IL_0053;
}
}
{
List_1_t82D76CC5C6539DFC84C87B271B946836D31F9D1E* L_41 = V_0;
return L_41;
}
}
// System.Reflection.BindingFlags Newtonsoft.Json.Utilities.ReflectionUtils::RemoveFlag(System.Reflection.BindingFlags,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReflectionUtils_RemoveFlag_mE5086FC6997D9EF9C70815D7BB8603A411F90930 (int32_t ___bindingAttr0, int32_t ___flag1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___bindingAttr0;
int32_t L_1 = ___flag1;
int32_t L_2 = ___flag1;
if ((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) == ((int32_t)L_2)))
{
goto IL_0008;
}
}
{
int32_t L_3 = ___bindingAttr0;
return L_3;
}
IL_0008:
{
int32_t L_4 = ___bindingAttr0;
int32_t L_5 = ___flag1;
return (int32_t)(((int32_t)((int32_t)L_4^(int32_t)L_5)));
}
}
// System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateProperties(System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>,System.Type,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectionUtils_GetChildPrivateProperties_mEC746493BD1FD47AA20E9D979402902F9E6D09F5 (RuntimeObject* ___initialProperties0, Type_t* ___targetType1, int32_t ___bindingAttr2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tAE3782A30E2C5880223F5DBCAB3CBC888034E16A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tB15DAEB90BDCB6EC5FB36C426C9B01479C29D325_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__0_m316341F1F6DA72A17788F05336C856DAC0E4DE48_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__1_m21CBBD37F1D18EFF517A3FF644CB9B195D884696_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass44_1_U3CGetChildPrivatePropertiesU3Eb__2_mCC43F9E7E690F1F7A092C53E27B6AE49D38EFD08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* V_0 = NULL;
int32_t V_1 = 0;
PropertyInfo_t* V_2 = NULL;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* V_3 = NULL;
int32_t V_4 = 0;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* V_5 = NULL;
MethodInfo_t* G_B12_0 = NULL;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* G_B12_1 = NULL;
MethodInfo_t* G_B11_0 = NULL;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* G_B11_1 = NULL;
Type_t* G_B13_0 = NULL;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* G_B13_1 = NULL;
Type_t* G_B15_0 = NULL;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* G_B15_1 = NULL;
Type_t* G_B14_0 = NULL;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* G_B14_1 = NULL;
{
goto IL_012e;
}
IL_0005:
{
Type_t* L_0 = ___targetType1;
int32_t L_1 = ___bindingAttr2;
NullCheck(L_0);
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_2;
L_2 = VirtualFuncInvoker1< PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7*, int32_t >::Invoke(111 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_0, L_1);
V_0 = L_2;
V_1 = 0;
goto IL_0125;
}
IL_0014:
{
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
PropertyInfo_t* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_2 = L_6;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_7 = (U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185_il2cpp_TypeInfo_var);
NullCheck(L_7);
U3CU3Ec__DisplayClass44_0__ctor_mBC092A5561E02842F0507C1BD753AD361BE4E0FD(L_7, NULL);
V_3 = L_7;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_8 = V_3;
PropertyInfo_t* L_9 = V_2;
NullCheck(L_8);
L_8->___subTypeProperty_0 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&L_8->___subTypeProperty_0), (void*)L_9);
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_10 = V_3;
NullCheck(L_10);
PropertyInfo_t* L_11 = L_10->___subTypeProperty_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_12;
L_12 = ReflectionUtils_IsVirtual_mC331EA066BD75E22FB4E83C1ADF51C9D14D2CB44(L_11, NULL);
if (L_12)
{
goto IL_00b1;
}
}
{
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_13 = V_3;
NullCheck(L_13);
PropertyInfo_t* L_14 = L_13->___subTypeProperty_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_15;
L_15 = ReflectionUtils_IsPublic_mECFD8FF1C8082562F5BF92A423C8E72048E43298(L_14, NULL);
if (L_15)
{
goto IL_008e;
}
}
{
RuntimeObject* L_16 = ___initialProperties0;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_17 = V_3;
Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74* L_18 = (Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74*)il2cpp_codegen_object_new(Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74_il2cpp_TypeInfo_var);
NullCheck(L_18);
Func_2__ctor_m48337939E4E24F5ADE3777B5B57E73EEF3C2CEC7(L_18, L_17, (intptr_t)((void*)U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__0_m316341F1F6DA72A17788F05336C856DAC0E4DE48_RuntimeMethod_var), NULL);
int32_t L_19;
L_19 = CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E(L_16, L_18, CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E_RuntimeMethod_var);
V_4 = L_19;
int32_t L_20 = V_4;
if ((!(((uint32_t)L_20) == ((uint32_t)(-1)))))
{
goto IL_0069;
}
}
{
RuntimeObject* L_21 = ___initialProperties0;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_22 = V_3;
NullCheck(L_22);
PropertyInfo_t* L_23 = L_22->___subTypeProperty_0;
NullCheck(L_21);
InterfaceActionInvoker1< PropertyInfo_t* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.PropertyInfo>::Add(T) */, ICollection_1_tAE3782A30E2C5880223F5DBCAB3CBC888034E16A_il2cpp_TypeInfo_var, L_21, L_23);
goto IL_0121;
}
IL_0069:
{
RuntimeObject* L_24 = ___initialProperties0;
int32_t L_25 = V_4;
NullCheck(L_24);
PropertyInfo_t* L_26;
L_26 = InterfaceFuncInvoker1< PropertyInfo_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>::get_Item(System.Int32) */, IList_1_tB15DAEB90BDCB6EC5FB36C426C9B01479C29D325_il2cpp_TypeInfo_var, L_24, L_25);
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_27;
L_27 = ReflectionUtils_IsPublic_mECFD8FF1C8082562F5BF92A423C8E72048E43298(L_26, NULL);
if (L_27)
{
goto IL_0121;
}
}
{
RuntimeObject* L_28 = ___initialProperties0;
int32_t L_29 = V_4;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_30 = V_3;
NullCheck(L_30);
PropertyInfo_t* L_31 = L_30->___subTypeProperty_0;
NullCheck(L_28);
InterfaceActionInvoker2< int32_t, PropertyInfo_t* >::Invoke(1 /* System.Void System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>::set_Item(System.Int32,T) */, IList_1_tB15DAEB90BDCB6EC5FB36C426C9B01479C29D325_il2cpp_TypeInfo_var, L_28, L_29, L_31);
goto IL_0121;
}
IL_008e:
{
RuntimeObject* L_32 = ___initialProperties0;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_33 = V_3;
Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74* L_34 = (Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74*)il2cpp_codegen_object_new(Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74_il2cpp_TypeInfo_var);
NullCheck(L_34);
Func_2__ctor_m48337939E4E24F5ADE3777B5B57E73EEF3C2CEC7(L_34, L_33, (intptr_t)((void*)U3CU3Ec__DisplayClass44_0_U3CGetChildPrivatePropertiesU3Eb__1_m21CBBD37F1D18EFF517A3FF644CB9B195D884696_RuntimeMethod_var), NULL);
int32_t L_35;
L_35 = CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E(L_32, L_34, CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E_RuntimeMethod_var);
if ((!(((uint32_t)L_35) == ((uint32_t)(-1)))))
{
goto IL_0121;
}
}
{
RuntimeObject* L_36 = ___initialProperties0;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_37 = V_3;
NullCheck(L_37);
PropertyInfo_t* L_38 = L_37->___subTypeProperty_0;
NullCheck(L_36);
InterfaceActionInvoker1< PropertyInfo_t* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.PropertyInfo>::Add(T) */, ICollection_1_tAE3782A30E2C5880223F5DBCAB3CBC888034E16A_il2cpp_TypeInfo_var, L_36, L_38);
goto IL_0121;
}
IL_00b1:
{
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_39 = (U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037_il2cpp_TypeInfo_var);
NullCheck(L_39);
U3CU3Ec__DisplayClass44_1__ctor_m3140F854DE9DE3FD9E3BA541208EDBD13E85A1B3(L_39, NULL);
V_5 = L_39;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_40 = V_5;
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_41 = V_3;
NullCheck(L_40);
L_40->___CSU24U3CU3E8__locals1_1 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&L_40->___CSU24U3CU3E8__locals1_1), (void*)L_41);
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_42 = V_5;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_43 = V_5;
NullCheck(L_43);
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_44 = L_43->___CSU24U3CU3E8__locals1_1;
NullCheck(L_44);
PropertyInfo_t* L_45 = L_44->___subTypeProperty_0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
MethodInfo_t* L_46;
L_46 = ReflectionUtils_GetBaseDefinition_mF725A4FEEAA10EE60F8C529FDA8AEE6735C8BBBE(L_45, NULL);
MethodInfo_t* L_47 = L_46;
G_B11_0 = L_47;
G_B11_1 = L_42;
if (L_47)
{
G_B12_0 = L_47;
G_B12_1 = L_42;
goto IL_00da;
}
}
{
G_B13_0 = ((Type_t*)(NULL));
G_B13_1 = G_B11_1;
goto IL_00df;
}
IL_00da:
{
NullCheck(G_B12_0);
Type_t* L_48;
L_48 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, G_B12_0);
G_B13_0 = L_48;
G_B13_1 = G_B12_1;
}
IL_00df:
{
Type_t* L_49 = G_B13_0;
G_B14_0 = L_49;
G_B14_1 = G_B13_1;
if (L_49)
{
G_B15_0 = L_49;
G_B15_1 = G_B13_1;
goto IL_00f4;
}
}
{
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_50 = V_5;
NullCheck(L_50);
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_51 = L_50->___CSU24U3CU3E8__locals1_1;
NullCheck(L_51);
PropertyInfo_t* L_52 = L_51->___subTypeProperty_0;
NullCheck(L_52);
Type_t* L_53;
L_53 = VirtualFuncInvoker0< Type_t* >::Invoke(9 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_52);
G_B15_0 = L_53;
G_B15_1 = G_B14_1;
}
IL_00f4:
{
NullCheck(G_B15_1);
G_B15_1->___subTypePropertyDeclaringType_0 = G_B15_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B15_1->___subTypePropertyDeclaringType_0), (void*)G_B15_0);
RuntimeObject* L_54 = ___initialProperties0;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_55 = V_5;
Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74* L_56 = (Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74*)il2cpp_codegen_object_new(Func_2_tCD28BDB89F11535DBE4E546BC43614E1B575EB74_il2cpp_TypeInfo_var);
NullCheck(L_56);
Func_2__ctor_m48337939E4E24F5ADE3777B5B57E73EEF3C2CEC7(L_56, L_55, (intptr_t)((void*)U3CU3Ec__DisplayClass44_1_U3CGetChildPrivatePropertiesU3Eb__2_mCC43F9E7E690F1F7A092C53E27B6AE49D38EFD08_RuntimeMethod_var), NULL);
int32_t L_57;
L_57 = CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E(L_54, L_56, CollectionUtils_IndexOf_TisPropertyInfo_t_m926D5374E9B037623157DFCA19FABC1CB919BF1E_RuntimeMethod_var);
if ((!(((uint32_t)L_57) == ((uint32_t)(-1)))))
{
goto IL_0121;
}
}
{
RuntimeObject* L_58 = ___initialProperties0;
U3CU3Ec__DisplayClass44_1_tA9FC7D1FAC7BE26DB9098E9F8A5305B27ACFD037* L_59 = V_5;
NullCheck(L_59);
U3CU3Ec__DisplayClass44_0_t36D928626E92CA4F7B3619ED983B7D352C37E185* L_60 = L_59->___CSU24U3CU3E8__locals1_1;
NullCheck(L_60);
PropertyInfo_t* L_61 = L_60->___subTypeProperty_0;
NullCheck(L_58);
InterfaceActionInvoker1< PropertyInfo_t* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Reflection.PropertyInfo>::Add(T) */, ICollection_1_tAE3782A30E2C5880223F5DBCAB3CBC888034E16A_il2cpp_TypeInfo_var, L_58, L_61);
}
IL_0121:
{
int32_t L_62 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_62, 1));
}
IL_0125:
{
int32_t L_63 = V_1;
PropertyInfoU5BU5D_tD81C248B41D0C76207C42DB9C332DC79F490B1D7* L_64 = V_0;
NullCheck(L_64);
if ((((int32_t)L_63) < ((int32_t)((int32_t)(((RuntimeArray*)L_64)->max_length)))))
{
goto IL_0014;
}
}
IL_012e:
{
Type_t* L_65 = ___targetType1;
Type_t* L_66;
L_66 = TypeExtensions_BaseType_m3A8CEAA95DE0C84FD927DC6720CF30D5A8503B6C(L_65, NULL);
Type_t* L_67 = L_66;
___targetType1 = L_67;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_68;
L_68 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_67, (Type_t*)NULL, NULL);
if (L_68)
{
goto IL_0005;
}
}
{
return;
}
}
// System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsMethodOverridden(System.Type,System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionUtils_IsMethodOverridden_mA907EDF0FAE757476988D9E708FB80E73C531A65 (Type_t* ___currentType0, Type_t* ___methodDeclaringType1, String_t* ___method2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass45_0_U3CIsMethodOverriddenU3Eb__0_m5319FBEAE5E9480949FDFC7F82EEAFC722F71945_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* V_0 = NULL;
{
U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* L_0 = (U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass45_0__ctor_m9EC0C51E97EC0361FEB33F9EF48B8FF8A2A801ED(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* L_1 = V_0;
String_t* L_2 = ___method2;
NullCheck(L_1);
L_1->___method_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___method_0), (void*)L_2);
U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* L_3 = V_0;
Type_t* L_4 = ___methodDeclaringType1;
NullCheck(L_3);
L_3->___methodDeclaringType_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&L_3->___methodDeclaringType_1), (void*)L_4);
Type_t* L_5 = ___currentType0;
NullCheck(L_5);
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_6;
L_6 = VirtualFuncInvoker1< MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265*, int32_t >::Invoke(102 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_5, ((int32_t)52));
U3CU3Ec__DisplayClass45_0_tC6CF550C2F50A90C6E1ABC91FA5692092191E341* L_7 = V_0;
Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164* L_8 = (Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164*)il2cpp_codegen_object_new(Func_2_t48B62DF57727FFB990D76F189BB41D4DC86FF164_il2cpp_TypeInfo_var);
NullCheck(L_8);
Func_2__ctor_m85EFD3541E8A8498FD05A6169ED11E00D408A2F0(L_8, L_7, (intptr_t)((void*)U3CU3Ec__DisplayClass45_0_U3CIsMethodOverriddenU3Eb__0_m5319FBEAE5E9480949FDFC7F82EEAFC722F71945_RuntimeMethod_var), NULL);
bool L_9;
L_9 = Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32((RuntimeObject*)L_6, L_8, Enumerable_Any_TisMethodInfo_t_m09C3B13F7DC76FFC7647B5D00FC00CA078FCBC32_RuntimeMethod_var);
return L_9;
}
}
// System.Object Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultValue(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReflectionUtils_GetDefaultValue_mFB7D9023DCEDF62629DE400795DEDED194CD41D9 (Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1;
memset((&V_1), 0, sizeof(V_1));
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F V_2;
memset((&V_2), 0, sizeof(V_2));
Guid_t V_3;
memset((&V_3), 0, sizeof(V_3));
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_4;
memset((&V_4), 0, sizeof(V_4));
{
Type_t* L_0 = ___type0;
bool L_1;
L_1 = TypeExtensions_IsValueType_m22476DFC3DAFC7CC34E364C74CBDFFDBB7A6ED7A(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return NULL;
}
IL_000a:
{
Type_t* L_2 = ___type0;
il2cpp_codegen_runtime_class_init_inline(ConvertUtils_t3C1CAEF7394D81B972BD50219081D15B326D4797_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = ConvertUtils_GetTypeCode_mF911DD9600942D6B3D8F8919FCE5B45F92A4D4A8(L_2, NULL);
V_0 = L_3;
int32_t L_4 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, 2)))
{
case 0:
{
goto IL_00a3;
}
case 1:
{
goto IL_0114;
}
case 2:
{
goto IL_009c;
}
case 3:
{
goto IL_0114;
}
case 4:
{
goto IL_00a3;
}
case 5:
{
goto IL_0114;
}
case 6:
{
goto IL_00a3;
}
case 7:
{
goto IL_0114;
}
case 8:
{
goto IL_00a3;
}
case 9:
{
goto IL_0114;
}
case 10:
{
goto IL_00a3;
}
case 11:
{
goto IL_0114;
}
case 12:
{
goto IL_00a3;
}
case 13:
{
goto IL_0114;
}
case 14:
{
goto IL_00a3;
}
case 15:
{
goto IL_0114;
}
case 16:
{
goto IL_00aa;
}
case 17:
{
goto IL_0114;
}
case 18:
{
goto IL_00aa;
}
case 19:
{
goto IL_0114;
}
case 20:
{
goto IL_00b2;
}
case 21:
{
goto IL_0114;
}
case 22:
{
goto IL_00bd;
}
case 23:
{
goto IL_0114;
}
case 24:
{
goto IL_00d7;
}
case 25:
{
goto IL_0114;
}
case 26:
{
goto IL_0104;
}
case 27:
{
goto IL_0114;
}
case 28:
{
goto IL_00cc;
}
case 29:
{
goto IL_0114;
}
case 30:
{
goto IL_00f5;
}
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)36))))
{
goto IL_00e6;
}
}
{
goto IL_0114;
}
IL_009c:
{
bool L_6 = ((bool)0);
RuntimeObject* L_7 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_6);
return L_7;
}
IL_00a3:
{
int32_t L_8 = 0;
RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8);
return L_9;
}
IL_00aa:
{
int64_t L_10 = ((int64_t)0);
RuntimeObject* L_11 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_10);
return L_11;
}
IL_00b2:
{
float L_12 = (0.0f);
RuntimeObject* L_13 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_12);
return L_13;
}
IL_00bd:
{
double L_14 = (0.0);
RuntimeObject* L_15 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_14);
return L_15;
}
IL_00cc:
{
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_16 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_17 = L_16;
RuntimeObject* L_18 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_17);
return L_18;
}
IL_00d7:
{
il2cpp_codegen_initobj((&V_1), sizeof(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = V_1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = L_19;
RuntimeObject* L_21 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_20);
return L_21;
}
IL_00e6:
{
il2cpp_codegen_initobj((&V_2), sizeof(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F));
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_22 = V_2;
BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F L_23 = L_22;
RuntimeObject* L_24 = Box(BigInteger_tF7779A0AA6D6B9BE0E0C1C293E7708765DEF7D0F_il2cpp_TypeInfo_var, &L_23);
return L_24;
}
IL_00f5:
{
il2cpp_codegen_initobj((&V_3), sizeof(Guid_t));
Guid_t L_25 = V_3;
Guid_t L_26 = L_25;
RuntimeObject* L_27 = Box(Guid_t_il2cpp_TypeInfo_var, &L_26);
return L_27;
}
IL_0104:
{
il2cpp_codegen_initobj((&V_4), sizeof(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4));
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_28 = V_4;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_29 = L_28;
RuntimeObject* L_30 = Box(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var, &L_29);
return L_30;
}
IL_0114:
{
Type_t* L_31 = ___type0;
il2cpp_codegen_runtime_class_init_inline(ReflectionUtils_tAF70075D68E65666CDD73C84AB0BDE41A87C9E02_il2cpp_TypeInfo_var);
bool L_32;
L_32 = ReflectionUtils_IsNullable_m79DB5CF887FCC89E182972207FDB4DB190DA79E0(L_31, NULL);
if (!L_32)
{
goto IL_011e;
}
}
{
return NULL;
}
IL_011e:
{
Type_t* L_33 = ___type0;
RuntimeObject* L_34;
L_34 = Activator_CreateInstance_m0A28F274256F1444949E372089034D9FB66FBD67(L_33, NULL);
return L_34;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_0 = __this->___m_configuredTaskAwaiter_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AotHelper_IsFalse_m0E45B362E86CEEBA6F8F14F9B861B999912E0568_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var);
bool L_0 = ((AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_StaticFields*)il2cpp_codegen_static_fields_for(AotHelper_t25AEE9B481C82E565752D5B778B28D4BD372D674_il2cpp_TypeInfo_var))->___s_alwaysFalse_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____ticks_22;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* StringReference_get_Chars_mCAEA9DDED5058DE07529C24621E510E396B79A6B_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____chars_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringReference_get_StartIndex_mC3DD76078312694DB7C297115073EAE930B42925_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____startIndex_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t StringReference_get_Length_m65CF2F68237C0273F5BE4B4B0DCD4247CD940385_inline (StringReference_t699448489ADA552CAB49087CA0E213D0554EFE3C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____length_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___ticks0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___ticks0;
__this->____ticks_22 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* GetMemberBinder_get_Name_mCE0671772897ED1E0575E3BE2C06CAB8D52019C4_inline (GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool GetMemberBinder_get_IgnoreCase_mB2924A5209BB108C50B5DDB5C8B2C781F34631CD_inline (GetMemberBinder_t8D02CC2255370A525D6657487C0A7EB1DDD225B3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIgnoreCaseU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* DynamicMetaObject_get_Expression_mC74F5FF9AC58E0F938C2C15CA0B32CE999EEA7F4_inline (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* __this, const RuntimeMethod* method)
{
{
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_0 = __this->___U3CExpressionU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* DynamicMetaObject_get_Restrictions_mC56A7B16011CB2E190394A71B37293BDAC8CBF68_inline (DynamicMetaObject_tD1405F56818181F9ED29E520D40F2837B73EF825* __this, const RuntimeMethod* method)
{
{
BindingRestrictions_t82F6450C15BA76194E37B20305C3C2932527C424* L_0 = __this->___U3CRestrictionsU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SetMemberBinder_get_Name_mE683668DE73BFB110F155E377E26B506960A7B42_inline (SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SetMemberBinder_get_IgnoreCase_m41897B494A2B432A9D7C437C9C54AC51853E33AB_inline (SetMemberBinder_t0D70ED9A9888FF8074796DF76600BDBA3104C55F* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIgnoreCaseU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ConditionalExpression_get_Test_mFEB910B9D8397F9B9C54950355860E948E47A144_inline (ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* __this, const RuntimeMethod* method)
{
{
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_0 = __this->___U3CTestU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* ConditionalExpression_get_IfTrue_mEE0343EC7D38FD9712A72428B32B873CE10A140E_inline (ConditionalExpression_t4A487FB09E6FEA815F25AADA33335CD658B6A913* __this, const RuntimeMethod* method)
{
{
Expression_t70AA908ECBD33E94249BF235E4EBB0F831AD8785* L_0 = __this->___U3CIfTrueU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMemberAttribute_get_Value_mB41126B613B9FD1CD8A05D08FCEC4B6663864BE9_inline (EnumMemberAttribute_t65B5E85E642C96791DD6AE5EAD0276350954126F* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_FSharpCoreAssembly_m32C9B6A87994E00C34378B4B7C39B2E26C0C6506_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Assembly_t* ___value0, const RuntimeMethod* method)
{
{
Assembly_t* L_0 = ___value0;
__this->___U3CFSharpCoreAssemblyU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CFSharpCoreAssemblyU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_IsUnion_m8FCC8731B64FE062A4E1D311940B5F5B599A0A3A_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CIsUnionU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CIsUnionU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCases_m6149ED7891791ABDC0D92F829F7089FD24BD9700_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CGetUnionCasesU3Ek__BackingField_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCasesU3Ek__BackingField_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionTagReader_m847B8584BDDE2A8A3CF3C3F67E256D86FC3E5EBC_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionTagReaderU3Ek__BackingField_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionTagReaderU3Ek__BackingField_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionReader_m9DB56755B6E02862BC06346DE42EFB80F20BE07D_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionReaderU3Ek__BackingField_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionReaderU3Ek__BackingField_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_PreComputeUnionConstructor_mA9DBD858EA7027535AA2B08A9BA72A051FBA517D_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CPreComputeUnionConstructorU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPreComputeUnionConstructorU3Ek__BackingField_9), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoName_mFA1AF36D4D226B197D5A30F741FA99D340053863_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoNameU3Ek__BackingField_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoNameU3Ek__BackingField_11), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoTag_m03CFCF109DAE145593C6DAAF4E0415C4F12F389B_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoTagU3Ek__BackingField_12 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoTagU3Ek__BackingField_12), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoDeclaringType_mDBBCAAB7E10D51DF946D4D7D6FFF052DC1640AA5_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoDeclaringTypeU3Ek__BackingField_10), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FSharpUtils_set_GetUnionCaseInfoFields_m0A5E55FD9DFC698AD9FF477B2BE107CE0ECF3BDD_inline (FSharpUtils_t6E5D3F084219E7DE1901A716A194B2237A7A99AD* __this, MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* ___value0, const RuntimeMethod* method)
{
{
MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* L_0 = ___value0;
__this->___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetUnionCaseInfoFieldsU3Ek__BackingField_13), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_CreatedTypeName_mB6C5E4C0083F30B8A3E973B27B1743BA72E01688_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CCreatedTypeNameU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_BuilderTypeName_m45D8747B2EECD911E9B60C009A1E6A5FA2CC0416_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CBuilderTypeNameU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_ContractTypeName_m47BA9C385AB128EE5E9738349A9E03A8EEAF3031_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CContractTypeNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CContractTypeNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_CreatedTypeName_mDD7FC89BF73B105C1D0B1E3636015595A61BFF28_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CCreatedTypeNameU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCreatedTypeNameU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ImmutableCollectionTypeInfo_set_BuilderTypeName_mF5E3F9EC7F19DC62CC67FC65D15E5FE7E0B6390E_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CBuilderTypeNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBuilderTypeNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ImmutableCollectionTypeInfo_get_ContractTypeName_m8D183787036FB024B123860C9BBC82DB9567E1FE_inline (ImmutableCollectionTypeInfo_tABA4F728A9A2BA1C6AB88F6BFD1FF9F0C936E685* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CContractTypeNameU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ReflectionObject_get_Members_m11F407DD2A6380C05E18A03E8425A5175A0D3FD8_inline (ReflectionObject_tBC7C0875C7434F4B89AC4948A4ECBD5CF84AE2E7* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CMembersU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_tACBF5A1656250800CE861707354491F0611F6624* ReflectionMember_get_Getter_mED1E4624E99FB9D6DDF293693EFFBF3DA290DE83_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = __this->___U3CGetterU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ReflectionMember_get_Setter_mBBFE1CEC2ABEB9C80FA03A3C36D1978B3EE0B02E_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_0 = __this->___U3CSetterU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* ReflectionMember_get_MemberType_m434D9AB83992981B6F6E5E0641CEA721A590F664_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, const RuntimeMethod* method)
{
{
Type_t* L_0 = __this->___U3CMemberTypeU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_Getter_m75ECB835C1A8B2DD3E802D1631B32D3B6CA75187_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___value0, const RuntimeMethod* method)
{
{
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_0 = ___value0;
__this->___U3CGetterU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CGetterU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_Setter_m7B146640EE159DD3226E47E5383DFD8AD5A1E715_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* ___value0, const RuntimeMethod* method)
{
{
Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* L_0 = ___value0;
__this->___U3CSetterU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSetterU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReflectionMember_set_MemberType_m910CD710E590680C35E3663BDC07074A691C4CF3_inline (ReflectionMember_t4AD99222DEF2117A211A5835C05216E759D9605E* __this, Type_t* ___value0, const RuntimeMethod* method)
{
{
Type_t* L_0 = ___value0;
__this->___U3CMemberTypeU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CMemberTypeU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* CollectionUtils_ArrayEmpty_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1005F95AF51A45D5D734E3CF6FF9CE972BCEDB1F_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((EmptyArrayContainer_1_t45B0A7C4ACB68CC945B605D96658E27CE1A6B5AC_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Empty_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___arg0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___arg0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m9897CE72A58099ADB081E439D3A3EF0AA9CF5ED9_gshared_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Nullable_1_GetValueOrDefault_m4DC59B3219E9E81FFB2DBE02BF850B54E460DEB6_gshared_inline (Nullable_1_tD52F1D0FC7EBB336F119BE953E59F426766032C1* __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* MethodCall_2_Invoke_mAC350F7B2DCA000500300DF8D02E12C72DC0D194_gshared_inline (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___target0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (MethodCall_2_t442B9ECE1B9ABC22BDFC90B2BB9048805D1D2270* __this, RuntimeObject* ___target0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___target0, ___args1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_GetValueOrDefault_mC88988A0A4433E1F41D4A287D879E1DEEA780F61_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method)
{
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* CollectionUtils_ArrayEmpty_TisRuntimeObject_m39E8CA17BC3CDD914B63FC8BECB0EB1D430FC60E_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArrayContainer_1_tA8B33185667C5F8828299F30AE93A6BF24C94412_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Empty_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mF3227B0AAB9F7FED1883246395F1CEA0D0B06DC5_gshared_inline (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7* __this, Il2CppChar ___item0, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = V_0;
int32_t L_7 = V_1;
Il2CppChar L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (Il2CppChar)L_8);
return;
}
IL_0034:
{
Il2CppChar L_9 = ___item0;
(( void (*) (List_1_t1FDED00FA37F39564E09D01CFDF33C22BCF5C8A7*, Il2CppChar, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB4991C0F4C2664AB3CB2584DEECF5BCE6AB7757D_gshared_inline (Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m3AB938BCFAB883339EB05C02B33852D44401AA86_gshared_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, int64_t ___item0, const RuntimeMethod* method)
{
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_1 = (Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_6 = V_0;
int32_t L_7 = V_1;
int64_t L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int64_t)L_8);
return;
}
IL_0034:
{
int64_t L_9 = ___item0;
(( void (*) (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A*, int64_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB728D0ECC961C6D3BBB32044B7095D0E5B879731_gshared_inline (List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mC082C667C8EB3A6CA80E06BCAEA0BED00C6BC15A_gshared_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Nullable_1_GetValueOrDefault_m71CA753202BD77725CD20AE98F8FC452C306AD2A_gshared_inline (Nullable_1_t6E154519A812D040E3016229CD7638843A2CC165* __this, const RuntimeMethod* method)
{
{
double L_0 = (double)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___arg10, ___arg21, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_1_Invoke_m1412272198DFA4066C83206E5B43353AF10A2EEE_gshared_inline (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, const RuntimeMethod* method)
{
typedef RuntimeObject* (*FunctionPointerType) (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}